summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-09split highlight (search neighborhood of node) between graph & rhizicoreAlon Levy
multiple TODOs added in code. in general, datastructure = graph, control/view state in rhizicore.
2014-11-03Fixes #119Alon Levy
It's a bit ugly. In that it uses the explicit string 'and' to avoid creating those links. But that was the wording of the request. In general we are missing an AST step. That would let us switch between '#' and ' ' much more cleanly.
2014-11-03Fixes #121 - Large part of map unclickable due to autocomplete suggestionsAlon Levy
See http://stackoverflow.com/questions/5643767/jquery-ui-autocomplete-width-not-set-correctly/11845718#11845718 A relevant bug on jquery-ui for width: http://bugs.jqueryui.com/ticket/7303 Additionally I considered measuring the exact width before noticing I can set the width to 10px and the text itself is perfectly clickable, see: http://stackoverflow.com/questions/6961022/measure-bounding-box-of-text-node-in-javascript
2014-11-03update jquery-ui.js to v1.11.2Alon Levy
2014-11-03fixes #79; note that hightlightNode sucksAlon Levy
It should be implemented as setting a chosen state, containing id's of chosen nodes and possibly links as well (although links are defined by their source and target ids).
2014-11-03accidentally left verbose onAlon Levy
2014-11-03add helper script to commit run_tests outputAlon Levy
2014-11-03update run_tests.js outputAlon Levy
2014-11-03fix whitespaceAlon Levy
2014-11-03fixes #122: show node text edit box over node regardless of position/zoomAlon Levy
2014-11-03fix _addNodeNoHistory to correctly look for existing nodesAlon Levy
2014-11-03change id to be distinct from nameAlon Levy
TODO: introduce a Node class split from the Graph. TODO: use a GUID and not just an incrementing number (trivial change).
2014-11-03drag_n_drop: fix load break on graph.js introduction (Fixes #123)Alon Levy
2014-11-02graph: make addNodeNoHistory internalAlon Levy
2014-11-02graph: fix missing semicolonAlon Levy
2014-11-02getting rid of bad object names: myGraph -> GraphLV-426
2014-11-02fix borked tests - must use typeof to avoid exception on undefined variableAlon Levy
2014-11-02move .gitignore from scripts to rootAlon Levy
2014-11-02split off model/graph.jsAlon Levy
2014-11-02add a gitignored local_config for the urlArgsAlon Levy
.. cache busting feature so it won't be accidentally committed
2014-11-02recomment 'urlArgs', causes debug script naming issuesLV-426
2014-10-31rhizicore: have a default size for nodes to avoid setting circle.r to nanAlon Levy
2014-10-29fix multiple warnings from zed (zedapp.org)Alon Levy
css: use 0 instead of 0px (0 doesn't need a unit) fallback rgb(r,g,b) for rgba code: missing semicolons don't use initial caps for a function name unused variables
2014-10-29small move to allow numeric id; not enoughAlon Levy
2014-10-29save/load xy positionAlon Levy
2014-10-28robot: unbreak - setting value doesn't trigger input eventAlon Levy
Broken since e299a57a72ee786818cad4f9b8e3aea3b6fb8544 Polling replaced by input event. Polling was a catch all - it checked value change. catching events requires they be thrown, so throw an input even explicitly from robot.
2014-10-28history: show last logged action (ui has negative z-index)Alon Levy
2014-10-28make debug ui click handlers only apply to the labels, remove some debug printsAlon Levy
2014-10-28history/rhizicore: record zoom events; zoom g element selector: svg g.zoomAlon Levy
2014-10-28history: refactor action key to record parameterAlon Levy
2014-10-28textanalysis.ui: use input event if it exists, fallback to polling of 50ms ↵Alon Levy
(not 5ms) otherwise
2014-10-28textanalysis{,.ui}: fix remaining globals, use strictAlon Levy
2014-10-28wip/history zoomAlon Levy
2014-10-28follow neo4j semantics: rename filter_type to filter_labelLV-426
2014-10-28random neo4j label generatorLV-426
2014-10-28test_rz_clone - DBO_rz_clone testLV-426
2014-10-28initial random neo4j data generator - use to avoid loading DB dumpsLV-426
2014-10-28initial DBO_rz_clone opLV-426
2014-10-28DBO_cypher_queryLV-426
2014-10-27update test output, mark issue 86 test as suchAlon Levy
2014-10-27Fixes #116 - no star graph for a single nodeAlon Levy
2014-10-27textanalysis: s/abnormalGraph/starGraph/Alon Levy
2014-10-27miscLV-426
2014-10-27rm single obj api callsLV-426
2014-10-27REST api impl: '/graph/attr-diff-commit'LV-426
2014-10-27REST api impl: '/graph/topo-diff-commit'LV-426
2014-10-27support node removals in DBO_topo_diff_commitLV-426
2014-10-27DBO_rm_node_set & testLV-426
2014-10-26history switch to events; using a single GRAPH_DIFF action. todo - replay; ↵Alon Levy
zoom in/out; clicks on nodes/edges
2014-10-26introduce signal, start using in history; use consts for signal nameAlon Levy
introduces two new modules: scripts/consts.js scripts/signal.js signal is a thin wrapper for jquery('window').on and jquery('window').trigger, which seems like an adaquete signal library - there are faster things around, but why introduce another dependency.