summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-01-12client/graph.js: add two assertions on link integrity on load from backendAlon Levy
2015-01-12client/server: login is using POST, so use POST, not XMLHttpRequestAlon Levy
TODO: Logout requires styling plus only to appear if logged in.
2015-01-12server/client: s/res/static/, drop dev_mode__resend_from_staticAlon Levy
2015-01-12server/404: add debug print of requestAlon Levy
2015-01-12server: implement init_pw_db, update docs, set default Config.htpasswd_path ↵Alon Levy
to <config-dir>/htpasswd TODO: permissions - warn on lax permissions for password file (and for init file?)
2015-01-12server: add 404 redirection (no error page), Fixes #210Alon Levy
2015-01-12client: don't keep quotes in node name: Fixes #258Alon Levy
2015-01-12test_rz_mesh: adapt to multi-valued return values on diff commitLV-426
2015-01-12generate_random_node_dict(): include random nameLV-426
2015-01-12use q_arr with add_statement()LV-426
2015-01-12WebSocket_Graph_NS,on_diff_commit__attr/topo(): tx both diff-obj & commit_retLV-426
2015-01-12rz_mesh: handle multiple returned values, serialization special-case handlingLV-426
2015-01-12import sortLV-426
2015-01-12rz_kernel: return: a tuple containing the input diff and the result of it's ↵LV-426
commit
2015-01-11update_link(): mirror update_node() handlingLV-426
2015-01-11follow n_id var naming conventionLV-426
2015-01-11client: json loading: don't send invalid datesAlon Levy
i.e. start/end on node. It raises a scala error in neo4j (and isn't nice).
2015-01-11client: allow rename case of node (no merge et); Fixes #254Alon Levy
2015-01-11client/graph: fix node attr_diff return pathAlon Levy
2015-01-11test_rz_mesh(): use Topo_Diff.Commit_Result_Type, clean assertionsLV-426
2015-01-11test_rz_mesh(): use test_labelsLV-426
2015-01-11rz_api_websocket: object serialization, error handlingLV-426
2015-01-11replacing namedtuples with Topo_Diff.Commit_Result_TypeLV-426
2015-01-11use q_arrLV-426
2015-01-11update_node(): handle incoming attr_diff on ajax successLV-426
2015-01-11model_util: adapt_format_read_diff__attr()LV-426
2015-01-11update_node: rm incoming ID change detection - should not occur for incoming ↵LV-426
attr_diffs
2015-01-11Attr_Diff: remove spec from constructor, force use of prototype aux functionsLV-426
2015-01-11rename adapt_format_write_topo_diff -> adapt_format_write_diff__topoLV-426
2015-01-11__type, __label_set: expect array of length 1 in both cases on backendLV-426
2015-01-11test_db_controller: rm test_rm_node_set(), outdated, tested in ↵LV-426
test_diff_commit__topo()
2015-01-11test_db_controller.py: test orderingLV-426
2015-01-11test_diff_commit__topo(): adapt to node_set_rm -> node_id_set_rm, same for linksLV-426
2015-01-11update test_db_op_statement_iteration(), correct location in fileLV-426
2015-01-11sort importsLV-426
2015-01-11server/rz_server: reorder imports, system firstAlon Levy
2015-01-11server: document and test for simplejsonAlon Levy
flask uses itsdangerous which uses simplejson The default json converts namedtuples to arrays stripping the names. simplejson converts them to a dictionary, a behavior we rely on.
2015-01-11server: add index.html->index redirect, Fixes #218Alon Levy
2015-01-11server: give each redirect_entry function a different func_nameAlon Levy
To successfully pass a flask test preventing usage of the same method twice: AssertionError: View function mapping is overwriting an existing endpoint function: redirector
2015-01-11client/graph_view: root links in link_group regardless of selection, Fixes #207Alon Levy
2015-01-11client/view/graph_view: add missing semicolonAlon Levy
2015-01-11client/graph_view: disable reordering of links for now; Fixes #213Alon Levy
2015-01-11client/graph_view: set linktext class on update_viewAlon Levy
2015-01-11client/selection: add link_selected, use it for linktextAlon Levy
2015-01-11client/graph_view: remove unused parameter in showNodeInfoAlon Levy
2015-01-11client/selection: make explicit dependency on main_graph and not rz_coreAlon Levy
2015-01-11client: cleanup selectionAlon Levy
1. seperate root_nodes/selected_nodes 2. move graph update to rz_core.js Fixes #213
2015-01-11server: don't limit link length arbitrarilyAlon Levy
neo4j deals fine with length 1 or 2 labels. Fixes #252
2015-01-11server/Topo_Diff: use link_id_set_rm and node_id_set_rmAlon Levy
To distinguish id sets from Node/Link sets. Closes #250
2015-01-11client/textanalysis: fix node type change on tab to use cursor correctly ↵Alon Levy
(still cannot change type of chained node during editing)