summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-19init_force_layout() - adapt Link with __src,__dst property aliaseswip/addNode-refactoringLV-426
2014-11-19addLink refactoring - call create_link__set_random_id()LV-426
2014-11-19wide source/target -> __src,__dst rename, align with DB modelLV-426
2014-11-19rm redundant obj defLV-426
2014-11-19rm id_generatorLV-426
2014-11-19node_info: fix 'id' showing rather than 'name'LV-426
2014-11-19replace _addNodeNoHistory() call with addNodeLV-426
2014-11-19rm unused el paramLV-426
2014-11-19__addNode improve loggingLV-426
2014-11-19add rz_config, provide id generation scheme control: hash/seq, defaulting to seqLV-426
2014-11-17findNodeByName - make state param optionalLV-426
2014-11-17addNode refactoring:LV-426
- rename, return value - add notify param - set id via create_node__set_random_id()
2014-11-17miscLV-426
2014-11-17textanalysis.js: for_each_X sugarLV-426
2014-11-17textanalysis.js - route node,link create calls via model_coreLV-426
2014-11-17new_topo_diff() default constructor - add node_set_add, link_set_add arraysLV-426
2014-11-17Topo_Diff - for_each_X() convenience functionsLV-426
2014-11-17crete_node_from_spec, create_node__set_random_id & link equivalentsLV-426
2014-11-16rename newnodes,newlinks -> token_set_new_node_names,token_set_new_link_namesLV-426
2014-11-13rename scripts/ -> src/LV-426
2014-11-13commenting out debug lines...LV-426
2014-11-13moving customSize to view/helpersLV-426
2014-11-13canvas_handler_dblclick(): add node on doubleclickLV-426
2014-11-13model/core: create_node__set_random_id()LV-426
2014-11-13editNode(): partial cleanup, doc & set_focus paramLV-426
2014-11-13DOM object observer module + Mutation_Handler__on_dxy_slowdownLV-426
2014-11-13locate_visual_element() using model object's idLV-426
2014-11-13rename model/model -> model/coreLV-426
2014-11-13append rhizi node id to <g> element to enable data->visual mappingLV-426
2014-11-12Fixes #87: hide autocomplete messages; see noteAlon Levy
TODO 1: Autocomplete is spamming the dom. This is a jqueryui bug, or actually by design - it's appending $('<div>')'s with message text to a span parent (no idea why span in particular) and they are never cleaned up. Similar code is used for accessability messages.
2014-11-11show edge/link (not consistent) title. Fixes #136Alon Levy
2014-11-11Fix highlight of node and edgeAlon Levy
TODO 1: This is a bit magic. The problem is that I'm not sure exactly if the nodes/edges given to the click callback are updated correctly when we just do renames. So the code is a bit protective - it compares names instead of comparing objects. This might work or not later with multiple edges. But I really need to fix it so we never have callbacks with stale data. TODO 2: Plus I'm not using classes correctly, instead setting attributes in the d3 update function (update). This is already done but is a bad smell, makes it harder to change properties easily. Used for stroke-width here and for nodes, for color.
2014-11-11add .gitattributes for better js diffAlon Levy
you need to add to $HOME/.gitconfig [diff "js"] xfuncname = ".*\\<function\\>.*"
2014-11-11graph: fix getConnectedNodesAndLinksAlon Levy
2014-11-11bug fix: subtitle text+ghost edge sizegarbash
2014-11-11rename load/save file; Fixes #111Alon Levy
The browse button still needs to be fixed. Maybe this: http://www.shauninman.com/archive/2007/09/10/styling_file_inputs_with_css_and_the_dom
2014-11-11add ghostlink for easier edge selection (Fixes #131)Alon Levy
This changes our current svg. We already had a <g id="link-group"> and under it <path class="link graph"> elements (class changes for selection). Now we have <g class="link graph"> elements containing two paths: one for display, one for selection. the display has stroke-width of 2 (defined in res/css/style.css) and the selection has stroke-width of 5 and stroke not defined to make it invisible plus a higher z-index to catch the click.
2014-11-11fold to edge_info introductionAlon Levy
2014-11-11rz_core: remove link path default d (i.e. coordinates) propertyAlon Levy
we reset it correctly at the first tick. The default value doesn't make any sense.
2014-11-11Add edge_info tab; implements edge deletionAlon Levy
2014-11-11view/node_info: use Tab.getAlon Levy
2014-11-11graph: add removeLink function (not used yet)Alon Levy
2014-11-11graph: add id to links (not used yet)Alon Levy
2014-11-11rz_core: make edge name editing input appear at correct place wrt translationAlon Levy
2014-11-11view.hide: must use method access or this is global objectAlon Levy
2014-11-11fix missing .info change to view.hideAlon Levy
2014-11-11put .info into a tabAlon Levy
not using jquery tab since I just want an abstraction for 'show just one' which is simpler, no labels.
2014-11-11introduce a view wrapper, view/viewAlon Levy
2014-11-11rz_core: split off view/node_infoAlon Levy
2014-11-11rz_core: split off view/helpersAlon Levy