summaryrefslogtreecommitdiff
path: root/src/client
AgeCommit message (Collapse)Author
2015-04-12client: zoom to selection button instead of automatic on selectionAlon Levy
2015-04-11client/graph: rewrite and rename getConnectedNodesAndLinksAlon Levy
It was buggy and did not deal with overlap. Renamed to neighbourhood.
2015-04-10search: only complete on: click, completion, enterAlon Levy
2015-04-10client: domain type_attributes are now a list for orderingAlon Levy
First type is default, and order is for shift-up/down selection, filter menu and type drop down in properties menu (so, basically everywhere).
2015-04-10client: hack to allow collaborator/person to be default (will fix today)Alon Levy
2015-04-10item_info.js: rm #info, info var, info_container max-height hackLV-426
2015-04-09textanalysis.js: temporary fix: update default_nodetype for leap instanceLV-426
2015-04-09client: graph_view: handle no filter (temporary graph). regresion #461 fixedAlon Levy
2015-04-09client/graph_view: show also nodes with non domain types - makes it easier ↵Alon Levy
to rename node types
2015-04-09client: remove custom radius that wasn't used anyway. radius is 10. if ↵Alon Levy
returned, place in domain specific type information
2015-04-09helpers: remove no longer used customColor (using css right now instead)Alon Levy
2015-04-09client/graph_view: small cleanupAlon Levy
2015-04-09client/view/layouts: add stp-bfs commented outAlon Levy
2015-04-09client: item_view: make type dropdown domain basedAlon Levy
2015-04-09client/graph_view, index: filter checkboxes: remove hardcodingAlon Levy
2015-04-09client/graph_view: extract init_checkboxesAlon Levy
2015-04-09client: layouts: extract bfs functionAlon Levy
2015-04-09client/layouts: force BFS implementation (anticipating backbone)Alon Levy
2015-04-09client/layouts: jshint fixesAlon Levy
2015-04-09client: graph_view,layouts: use atomic nodes_linksAlon Levy
2015-04-09rz_api_backend.js: fix misplaced quote in log messageLV-426
2015-04-09buttons.js: miscLV-426
2015-04-09rz_api_backend.js: better error loggingLV-426
2015-04-09rz_core.js, rz_mesh.js: we init/destroyLV-426
2015-04-09rz_mesh.js: rzdoc subscription handlingLV-426
2015-04-07client: unify deletion messages and update text. resolves #389Alon Levy
2015-04-07client/item_info: track changed attributes for submission or avoidance thereofAlon Levy
2015-04-07client: hide filter and layout menus on click on empty area. resolve partial ↵Alon Levy
#444
2015-04-06client/item_info: fix bug with diffBus received attr diffsAlon Levy
2015-04-06client: fix broken node and link deletion, plus fix selection after bothAlon Levy
2015-04-06client: return zoom buttons, make zoom conserve center pointAlon Levy
2015-04-06client: graph_view: use display instead of visibility.Alon Levy
SVG 1.1 visibility applies to element and not to children, display otoh does apply to the whole subtree resolves #401
2015-04-06client/view/graph_view: s/force__load_graph/layout__load_graph/Alon Levy
2015-04-06client: fix filter regressionAlon Levy
2015-04-06client: types: split types.js to form domain_types.js, containing ↵today-is-not-the-dayAlon Levy
declarative json
2015-04-06client/view/item_view: fix click on empty space regressionAlon Levy
2015-04-06wip: per-domain type systemLV-426
2015-04-06client/view/selection: on diff for link editing don't select too many nodesAlon Levy
2015-04-06client: item_info: commit on hideAlon Levy
2015-04-06client/item_view: only show 'updated' warning for remote changes by ↵Alon Levy
comparing form data to diff
2015-04-06client/item_view: use strictAlon Levy
2015-04-06client/item_edit: remove debug printsAlon Levy
2015-04-06client: property tab cleanup; resolve #396Alon Levy
2015-04-05client: link properties dialog: delete button identical to node dialogAlon Levy
2015-04-05client: rename edge_info to link_infoAlon Levy
for f in `git grep -l edge_info`; do sed -ie 's/edge_info/link_info/g' $f; done for f in `git grep -l EDGE_INFO`; do sed -ie 's/EDGE_INFO/LINK_INFO/g' $f; done git mv src/client/view/edge_info.js src/client/view/link_info.js
2015-04-05client: selection: enable selection of link via 0 depth selection of both ↵Alon Levy
nodes; resolve #393 shift selection still works, but now it's a bit not obvious when you shift select a link: - it acts as inverting the source and destination node. - an alternative could be to special case for both or single or none of the nodes already selected - a correct fix would be to track separately the nodes and links selection states. Right now we only have a nodes selection state (array of root nodes, the ones the user selected, and array of selected nodes, the ones we highlight as such).
2015-04-05client/layouts: respect node.fixedAlon Levy
2015-04-05client/graph_view: reset fixed before restoring a new layout (not actually ↵Alon Levy
required, except if a new node was introduced)
2015-04-05client/layouts: save+restore fixed propertyAlon Levy
2015-04-05client: graph_view: fix scope of node_url_dx definitionAlon Levy