summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-29buttons/index: add file load buttonAlon Levy
2014-09-29rhizicore:myGraph.addNodeComplete: add name to signatureAlon Levy
2014-09-29buttons: white space fixAlon Levy
2014-09-29rhizicore: replace 'text' attribute with 'name' for nodeAlon Levy
2014-09-29remove deliverableTestAlon Levy
2014-09-29rename 'load' button to 'load-storage-local'Alon Levy
2014-09-29buttons: factor out really_loadAlon Levy
2014-09-29miscLV-426
2014-09-29adapt tests to API changesLV-426
2014-09-29test logging - will move to a super class laterLV-426
2014-09-29add_node_setLV-426
2014-09-29deffer support for single object API operationsLV-426
2014-09-29load_node_by_id_attr -> load_node_single_by_id_attr (unimplemented ↵LV-426
currently), load_node_set_by_id_attr
2014-09-29more response handling with __common_resp_handle()LV-426
2014-09-29extract deliverableTest to node script in toolsAlon Levy
2014-09-29dor says it shouldn't be hereAlon Levy
2014-09-29tools/sage.csv+: we got Sage's project description as csv, convert to jsonAlon Levy
At the same time documenting our current requirements from a graph (pretty basic). Adds tools/sage_csv_to_sage_json.py
2014-09-29change #2 to issue #74Anmol Agrawal
2014-09-29textanalysis: fold a too long lineAlon Levy
2014-09-29Fixes #75: don't spew undefines in linktext.Alon Levy
TODO - code that doesn't make me choke up with tears
2014-09-29#74 fixedAnmol Agrawal
2014-09-29Fixes #73: pre first node text missing spacesAlon Levy
2014-09-29Improved tutorialgarbash
2014-09-29extend Flask class to allow customization of HTTP OPTIONS method responseLV-426
2014-09-29switch to app/json post argument content typeLV-426
2014-09-29rhizicore: fix popping node on top left when creating a new nodeAlon Levy
The fix is ugly. Basically we are relying on the force layout [1] for the locations of the nodes. I've hidden the node until the first tick. Since we do a tick calculation (tick is a function in rhizicore) when adding a node there is no associated delay. [1] https://github.com/mbostock/d3/wiki/Force-Layout
2014-09-29rhizicore: remove some more empty linesAlon Levy
2014-09-29rhizicore: remove unused code from tickAlon Levy
2014-09-29rhizicore: dash bugfixAlon Levy
another refactor introduced (by cd7157955d15802f34dee6ac4578ae249f3e397d), forgot to change style at update instead of enter.
2014-09-29rhizicore: fix bug: hide links not currently focused or temporaryAlon Levy
bug introduced by cd7157955d15802f34dee6ac4578ae249f3e397d
2014-09-29rhizicore: add TODO to get rid of mouse click overlay rectAlon Levy
2014-09-29rhizicore: bug fix: draw links below nodesAlon Levy
bug introduced in cd7157955d15802f34dee6ac4578ae249f3e397d before that we recreated the links and nodes every update, and since all links were created before nodes the document order was <link> <link> <node> <node> which per SVG rendering order [1] leads to nodes being drawn on top of links. But after that commit the new links and nodes where created as they were being edited, so we got <link> <node> <link> <node> With this commit all links are created in a single group, getting back the correct order: <g> <link> <link> </g> <node> <node> nodes are ungrouped but there is no need for that (except that it looks strangely assymetrical). [1] http://dev.w3.org/SVG/modules/renderorder/SVGRenderOrder.html
2014-09-29rhizicore: myGraph: some cleanupAlon Levy
2014-09-28cleanup test_add_node_setLV-426
2014-09-28type check against 'basestring' rather than str, tagging with: [python2]LV-426
2014-09-28DBO_add_node_set arg type sanity checkingLV-426
2014-09-28rm 'self.test_client' in favor of 'with ...' statementsLV-426
2014-09-28rhizicore: prevent click event when dragging a nodeAlon Levy
2014-09-28rhizicore: add TODO note to handle escape keyAlon Levy
2014-09-28rhizicore: we had a <g> leak, this fixes itAlon Levy
still have new/edited node visible at 0,0 briefly while edited The fix is by using d3 enter/update/exit and not killing all the nodes every time we run update.
2014-09-28rhizicore/update: use object for slight readability win/lose (line win)Alon Levy
2014-09-28rhizicore: remove deadcode and empty lines, fix single line ifsAlon Levy
2014-09-28__sanitize_input stubLV-426
2014-09-28__response_wrap on errrorLV-426
2014-09-28TestRhiziAPILV-426
2014-09-28Early Rhizi API prototype:LV-426
- load_node_by_id_attr() - response_wrap()
2014-09-28add jsdom based test - not actually history test yet, just calls textAnalyser2Alon Levy
2014-09-28rename conf fileLV-426
2014-09-28debug-ui: add forgotten css style (merge up)Alon Levy
2014-09-28textanalysis: move graph touching function to non ui partAlon Levy