| Age | Commit message (Collapse) | Author |
|
window.commit_idx hack
|
|
|
|
not undefined (undefined not appropriate for this case.
|
|
This is a hack, here is the code comment:
FIXME: should not do a server roundtrip, should keep this data local
and part of the temporary graph, and send it on user enter in a single commit.
The current implementation is just a quick way to get sorta the same outcome.
it misses atomicity (since we create a commit for every tab click on an existing node),
and responsiveness (since there is a roundtrip to the server and it isn't client side)
|
|
|
|
|
|
|
|
|
|
|
|
together with previous server commit Fixes #257
|
|
|
|
|
|
|
|
i.e. start/end on node. It raises a scala error in neo4j (and isn't nice).
|
|
|
|
|
|
|
|
attr_diffs
|
|
""right""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
map now, plus cached lists
|
|
of need to add nodes before links
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
clone+input-to-diff to db and back flow working
|
|
|
|
|
|
for nodes/links not helping. thinking of graph trees
|
|
|
|
Multiple fixes / changes. _bugs introduced_
Changes:
graph has two change functions (i.e. the internal API):
- commit_and_tx_diff_topo
This currently transmits, later will optimistically apply first
- commit_diff__topo
This only applies. Used on the ajax success path for commit_and_tx_diff__topo
and when changes are only local.
It signals on the diffBus
- diffBus - a Bacon.Bus that all UI listens to
- selection UI
- node/link dialogs
- main view (rz_core/update_view__graph)
Small changes:
whitespace
rename filer->filter
Completely broken:
- text entry. should use commit_diff__topo
Problems introduced:
selection doesn't work correctly.
editing not verified yet
|
|
|
|
|
|
Broken because of changed server return struct, now uses link_rm
dictionary (i.e. topo diff).
|
|
Broken during recent overzealous precondition addition
|
|
Doesn't fix node color, that is fixed in next commit
|
|
|