summaryrefslogtreecommitdiff
path: root/src/client/model
AgeCommit message (Collapse)Author
2015-08-09client/model/graph: position storing: store fixed per nodeAlon Levy
2015-08-09client/model/graph: remove debug printAlon Levy
2015-07-30client: record position to db when dragging + fixedAlon Levy
Record position when dragging. Record fixed status. this is still not clear - what fixed means exactly.
2015-07-30client: more specific logging for node position recordingAlon Levy
2015-07-30client/model/graph: use eps, short for epsilonAlon Levy
2015-07-30client/model/graph.nodes__update_positions: noop if change is too small (use ↵Alon Levy
configurable epsilon)
2015-07-30client: node position storing: change key format to use underscores, more ↵Alon Levy
cypher friendly
2015-07-30client/model/core: add a special Node for use for debugging NaN problemsAlon Levy
2015-07-30client: jshint fixesAlon Levy
2015-07-30Revert "wip: find the nan for position update from db"Alon Levy
This reverts commit ec899fb5dbbe39f45f5dcc47ea39df3a38f2229f.
2015-07-28wip: find the nan for position update from dbAlon Levy
2015-07-26client: store positions in db instead of local storageAlon Levy
attributes used are currently a bit lame, since we don't support nested attributes. So the attribute stored is: layouts.<layout_name>.{x,y} where layout_name is one of: force, user, ring. Note that force layout still takes time initially, because alpha is always set to 1 initially. This should probably be changed when a layout is loaded.
2015-07-26client/model/graph: reduce attribute write verbosity (node only)Alon Levy
2015-07-26client: various lint fixesAlon Levy
2015-07-25client: clone: fix pushed diff to contain links & nodesAlon Levy
2015-07-23client/model/core: add missing semicolonsAlon Levy
2015-07-23client/model/util: add missing semicolonsAlon Levy
2015-07-23client/model/graph: make addTempNode API a constant (fix FIXME)Alon Levy
2015-07-23client/model/graph: linting fixes from emacs js2 mode (jshint probably)Alon Levy
2015-07-06client/model/types: assert only that all used attriutes have a defined titlegarbash
2015-06-04add copyright and license headers for GNU AGPL v3Alon Levy
2015-05-18client/model/graph: shortests_paths: bug fixAlon Levy
2015-05-18graph.js: commit_and_tx_diff__topo: remove on_error which duplicates default ↵LV-426
on_error behavior
2015-05-18graph.js: miscLV-426
2015-05-18client/model/graph: add find_nodes__by_idAlon Levy
2015-05-18client/model/graph: implement BFS and shortest_paths on top of thatAlon Levy
2015-05-18client/model/graph: add get_node_idsAlon Levy
2015-05-18client/model/graph: refactor kind out of neighbourhoodAlon Levy
2015-05-13client/model/graph: commits shown need to be new on topAlon Levy
2015-05-12domain_types.js: depend on requirejs path configLV-426
2015-05-12client/model/graph: handle new clone with commit_logAlon Levy
2015-05-12client/model/graph: add activityBusAlon Levy
Very similar to Diff Bus, just includes initial clone commits. Will remove it in the future.
2015-05-12client/model/diff: add meta to Attr_Diff and Topo_DiffAlon Levy
2015-05-05client: improve text of delete messages, fix #521Alon Levy
2015-05-04client: domain_types: add misc.direction, takes valid css direction values, ↵Alon Levy
affects item_info only
2015-05-04client: show node titles, not internal node types. fix #537Alon Levy
2015-05-04client/model/types: order of attributes determines appearance order. make ↵Alon Levy
name+type first
2015-04-21client/model/diff: reindentAlon Levy
2015-04-13client/graph: graph now knows about filtered_types; should split to ↵Alon Levy
filtered_graph
2015-04-12client: graph: drop object_values, use _.valuesAlon Levy
2015-04-12client/graph: add helper find_links__by_nodesAlon Levy
2015-04-12client/graph: extract calc_neighboursAlon Levy
2015-04-12client: for more then one selected node, related is the mutual neighboursAlon Levy
i.e. related = |selected| == 1 N(selected) else intersection_{s in S}{neighbours(s)}
2015-04-12client/selection: rename: selected & relatedAlon Levy
selected nodes - nodes the user selected directly, via search or click. related - nodes that we choose to show the user as a result of the selection made.
2015-04-11client/graph: rewrite and rename getConnectedNodesAndLinksAlon Levy
It was buggy and did not deal with overlap. Renamed to neighbourhood.
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-07client: unify deletion messages and update text. resolves #389Alon Levy
2015-04-06client: types: split types.js to form domain_types.js, containing ↵today-is-not-the-dayAlon Levy
declarative json
2015-04-06wip: per-domain type systemLV-426
2015-04-06client: property tab cleanup; resolve #396Alon Levy