summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-01-13client/graph: find_node_* returns null on unfound, not undefined. Fixes #275Alon Levy
2015-01-13wip: rz_req_handling.pyLV-426
2015-01-13add_user_login(): refactoring out of cryp_util (not needed in production)LV-426
2015-01-13rz_cli_tool: mv under local/LV-426
2015-01-13rz_mesh.js: attempt to actively disconnect on 'beforeunload' eventLV-426
2015-01-13server/feedback: get rid of flask-mail; left todo: filenames for attachmentsAlon Levy
2015-01-13rz_server: import cleanupLV-426
2015-01-13server: __type is always a [str], fix #264 again correctlyAlon Levy
2015-01-13Revert "client: fix link name regression on clone (Fixes #264)"Alon Levy
This reverts commit f17c7d27b510c033aa2861598e49a90c56aa9a13.
2015-01-13client/drag_n_drop: reindentAlon Levy
2015-01-13client: prevent default drag n drop behavior when not in debugAlon Levy
Fixes #220
2015-01-13client: disable drag_n_drop unless ?debug=1Alon Levy
2015-01-13client: move NEW_NODE_NAME to consts, use everywhereAlon Levy
2015-01-13textanalysis: only send new nodes. Fixes #260Alon Levy
2015-01-13client/graph: find_node__by_id now returns Node/nullAlon Levy
not undefined (undefined not appropriate for this case.
2015-01-13server: remove dependency on magic, hardcode mime typesAlon Levy
2015-01-13client/graph: allow updating property of a backend backed nodeAlon Levy
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)
2015-01-13client/graph: find_node__* default to recursion but optionalAlon Levy
2015-01-13client/model/grah: bug fix in update_nodeAlon Levy
2015-01-13client: textanalysis: fix type changing. Fixes #262Alon Levy
2015-01-13client/textanalysis: use constant for 'new node'Alon Levy
2015-01-13client/graph: editType: drop stateAlon Levy
2015-01-13client: fix link name regression on clone (Fixes #264)Alon Levy
2015-01-13incorporate https://github.com/ivoviz/feedbackAlon Levy
allows user to mark an image and send it. sends an email to configured recipient. defaults to using localhost:25 as the SMTP server (no user name, no password, see [1] for configuration parameters of flask-mail). Introduces a config parameter: FEEDBACK_RECIPIENT = feedback@localhost left TODO: 1. customize the 'thank you' text 2. document in user guide (setting MAIL_DEFAULT_SENDER correctly) [1] https://pythonhosted.org/Flask-Mail/#configuring-flask-mail
2015-01-13add feedback - no email yet, just client side plus server parse client postAlon Levy
Notes: * using https://github.com/ivoviz/feedback + commit 337a8146e567a06035fb1f1ffedfce083be2a2d1 * with tiny changes to use require.js: + html2canvas.js & feedback.js (not minified) start+end lines changed to call define + feedback.js changed to not load html2canvas since require.js does that for us (dropping _html2canvas and getScript usage)
2015-01-13mv init_pw_db to rz_cli_tool, improveLV-426
2015-01-13commit_diff__attr doc stringLV-426
2015-01-13rz_mesh: ws_diff_merge__attr()LV-426
2015-01-13graph.js: commit_diff__attr()LV-426
2015-01-13Attr_Diff.prototype.for_each_node, _linkLV-426
2015-01-13add_node_attr_rm -> add_node_attr_removeLV-426
2015-01-13model/diff: new_attr_diff_from_spec()LV-426
2015-01-12update fcgi scriptLV-426
2015-01-12test_ws_event__topo_diff(): augment test with linkLV-426
2015-01-12rz_mesh: ws_diff_merge__topo() - note: type safety is still lackingLV-426
2015-01-12rz_mesh.js: prefix functions with 'ws_'LV-426
2015-01-12util.js: fix adapt_format_read_link_ptr issue resulting from both in,out set ↵LV-426
containing the same key
2015-01-12client: fix link renameAlon Levy
together with previous server commit Fixes #257
2015-01-12server/db_op: fix DBO_diff_commit__attr for name writeAlon Levy
Since we used delete on the __attr_write key value dictionary, the return value we cached was missing the name attribute, causing the client not to see it. Fix it with a deepcopy.
2015-01-12login+logout: using ajax, not POST, plus document.window (worst of both worlds)Alon Levy
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