summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-03-07client/node_info: hack for y-overflow. creates horizontal bar as well which ↵Alon Levy
is ugly Together with addition of new attributes fixes #357
2015-03-07client/node_info: add missing attributes to html at runtimeAlon Levy
2015-03-07client/model/types: store titles for types and attributesAlon Levy
2015-03-07client: return default node type to personAlon Levy
2015-03-07client: remove third-internship-proposal; Fixes #356Alon Levy
2015-03-07client: move nodetypes from consts to model/typesAlon Levy
2015-03-07client/node_info: bug fixAlon Levy
2015-03-06client: introduce model/types, cleanup node_info (not quite enough)Alon Levy
2015-03-04cypher language parsing test caseLV-426
2015-03-04wip: cypher language parserLV-426
2015-03-04client:selection: invert on shiftAlon Levy
2015-03-04client: node_view: delete button: popup confirmation dialogAlon Levy
2015-03-04client: fix res/static forgotten rename; Fixes #355Alon Levy
2015-03-04client: s/setup_merge_button/setup_toolbar/Alon Levy
2015-03-04client/view/selection: add confirm dialog to delete buttonAlon Levy
2015-03-03client: toolbar: add delete buttonAlon Levy
2015-03-03client/selection: add skipDuplicatesAlon Levy
2015-03-03client: fix toolbar buttons flashing when augmenting |selection|>=2Alon Levy
2015-03-03client: rename consistently links__delete, nodes__deleteAlon Levy
2015-03-03client/view/selection: rz_core is not updated by the initial define, remove ↵Alon Levy
from declaration
2015-03-03client: add keyshortcuts.js, implement ctrl-a for selecting allAlon Levy
switch to onkeydown to capture ctrl-a before browser action ctrl-a works on text fields since we only handle it if the target is the body (which it is when svg is in focus, although that may be accidental, don't know the logic).
2015-03-03client/view/completer: sort completions (required with substring results)Alon Levy
2015-03-03client/view/completer: allow completions for any subsetAlon Levy
2015-03-03client: fix completer regression breaking search completion. Fixes #354Alon Levy
At the same time lets completion work with spaces in the graph entry bar. In the search bar it still doesn't work, will require some thinking - how to let a space be both and/or and part of a name. It's better to ditch it as an operator and use |/& or AND/OR.
2015-03-03client/node_info: do not update not when diff arrives, fix warningsAlon Levy
needs more complex logic to account for user changes that have not round-tripped yet, so for now just do not update the dialog. Fixes #349
2015-03-03client/textanalyser_input: remove debug printAlon Levy
2015-03-03client/textanalyser_input: use classesAlon Levy
2015-03-03textanalysis: fix multiple same names in sentence (a q b q c a => triangle)Alon Levy
2015-03-03client/text_analyser_input: fix cursor position move on enterAlon Levy
2015-03-03client/text_analyser_input: specify setter+getter+selectionStart for ↵Alon Levy
completer, plus some cleanup
2015-03-03client/completer: generalize getter, setter, selectionStartAlon Levy
2015-03-03client/completer: rename variableAlon Levy
2015-03-03client/completer: fix handling of separator that is more then one charAlon Levy
2015-03-02client: extract textanalyser_input componentAlon Levy
Killed some dead code in the process.
2015-03-02textanalyser: switch to div, update to create blue and red spans (Fixes #118 ↵Alon Levy
almost entirely) Missing: - no placeholder text now (since div doesn't support it). Will need to implement it myself, there are plenty of examples And code wise: - need to split out a component graph_input.js which will hide the underlying implementation.
2015-03-02client/textanalysis.ui: update to work with both div and inputAlon Levy
2015-03-02completer: update to work with both input and div elementsAlon Levy
2015-03-02domain/cri/from_csv: fixes and update to take comma separated csvAlon Levy
2015-03-02util: add text selection and functional utils for later red&blue inputAlon Levy
2015-03-01rz_cli_tool: add role add and remove functionalityAlon Levy
Fixes #148 Usage: ./src/local/rz_cli_tool.py --config-dir res/etc --user-db-path res/user_db.db --email alon@rhizi.local --role-add admin ./src/local/rz_cli_tool.py --config-dir res/etc --user-db-path res/user_db.db --email alon@rhizi.local --role-rm admin
2015-03-01server/rz_user_db: add matching user_rm_role plus valid_role, admin & user ↵Alon Levy
only valid roles for now
2015-03-01client: node_info: status: only admin can change itAlon Levy
2015-03-01rz_api: index: set correct role_setAlon Levy
2015-03-01add a fixed role_set to the client, to be replaced with one coming from the ↵Alon Levy
current logged in user
2015-03-01textanalysis.ui.js: adapt to css changesLV-426
2015-03-01adding missing 'quoted' function, call introduced in ↵LV-426
dfc93cf003e8b4484e98ead7f7eac63ad10182e7
2015-03-01client/svg-input: rewrite using width:auto, no more measure hack (Fix #338)Alon Levy
Source for inspiration / copying: http://jsfiddle.net/brx3xm59/ http://stackoverflow.com/questions/9308938/inline-text-editing-in-svg comment 2 by John Ktejik
2015-03-01client/graph_view: don't translate/zoom if node already in viewAlon Levy
2015-03-01client: add Bacon_wrapper, use instead of Bacon; forced loading of jquery ↵Alon Levy
before Bacon
2015-03-01client/rz_api_backend: shorten ajax_success print to one lineAlon Levy