| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-09-29 | Improved tutorial | garbash | |
| 2014-09-29 | extend Flask class to allow customization of HTTP OPTIONS method response | LV-426 | |
| 2014-09-29 | switch to app/json post argument content type | LV-426 | |
| 2014-09-29 | rhizicore: fix popping node on top left when creating a new node | Alon 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-29 | rhizicore: remove some more empty lines | Alon Levy | |
| 2014-09-29 | rhizicore: remove unused code from tick | Alon Levy | |
| 2014-09-29 | rhizicore: dash bugfix | Alon Levy | |
| another refactor introduced (by cd7157955d15802f34dee6ac4578ae249f3e397d), forgot to change style at update instead of enter. | |||
| 2014-09-29 | rhizicore: fix bug: hide links not currently focused or temporary | Alon Levy | |
| bug introduced by cd7157955d15802f34dee6ac4578ae249f3e397d | |||
| 2014-09-29 | rhizicore: add TODO to get rid of mouse click overlay rect | Alon Levy | |
| 2014-09-29 | rhizicore: bug fix: draw links below nodes | Alon 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-29 | rhizicore: myGraph: some cleanup | Alon Levy | |
| 2014-09-28 | cleanup test_add_node_set | LV-426 | |
| 2014-09-28 | type check against 'basestring' rather than str, tagging with: [python2] | LV-426 | |
| 2014-09-28 | DBO_add_node_set arg type sanity checking | LV-426 | |
| 2014-09-28 | rm 'self.test_client' in favor of 'with ...' statements | LV-426 | |
| 2014-09-28 | rhizicore: prevent click event when dragging a node | Alon Levy | |
| 2014-09-28 | rhizicore: add TODO note to handle escape key | Alon Levy | |
| 2014-09-28 | rhizicore: we had a <g> leak, this fixes it | Alon 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-28 | rhizicore/update: use object for slight readability win/lose (line win) | Alon Levy | |
| 2014-09-28 | rhizicore: remove deadcode and empty lines, fix single line ifs | Alon Levy | |
| 2014-09-28 | __sanitize_input stub | LV-426 | |
| 2014-09-28 | __response_wrap on errror | LV-426 | |
| 2014-09-28 | TestRhiziAPI | LV-426 | |
| 2014-09-28 | Early Rhizi API prototype: | LV-426 | |
| - load_node_by_id_attr() - response_wrap() | |||
| 2014-09-28 | add jsdom based test - not actually history test yet, just calls textAnalyser2 | Alon Levy | |
| 2014-09-28 | rename conf file | LV-426 | |
| 2014-09-28 | debug-ui: add forgotten css style (merge up) | Alon Levy | |
| 2014-09-28 | textanalysis: move graph touching function to non ui part | Alon Levy | |
| 2014-09-28 | textanalysis-ui: lookup textanalyser a single time | Alon Levy | |
| 2014-09-28 | index.html: debug menu frobbing | Alon Levy | |
| 2014-09-28 | robot: reduce number of globals | Alon Levy | |
| 2014-09-28 | DBO_load_node_set_by_DB_id & test | LV-426 | |
| 2014-09-28 | flush_db neo4j utility | LV-426 | |
| 2014-09-28 | db_controller test class | LV-426 | |
| 2014-09-28 | textanalysis-ui: protect #textanalyser access for easier node.js usage for ↵ | Alon Levy | |
| testing | |||
| 2014-09-28 | s/TextAnalyser2/textAnalyser2/ plus use function as vars | Alon Levy | |
| 2014-09-28 | history: correct spelling mistake in field s/linkes/links/ | Alon Levy | |
| 2014-09-28 | history: save json as text editor viewable | Alon Levy | |
| 2014-09-28 | parse_single_query_response_data: assist in single query result parsing | LV-426 | |
| 2014-09-28 | distinguish between loading by DB id and by id attribute: | LV-426 | |
| - DBO_load_node_set_by_attribute - DBO_load_node_set_by_id_attribute (convenience op) | |||
| 2014-09-28 | debug-ui: use div's and float's instead of tables | Alon Levy | |
| 2014-09-28 | rhizicore: start responsive ui: svg width/height in percent | Alon Levy | |
| 2014-09-27 | Input box fixed - #62 solved | Anmol Agrawal | |
| 2014-09-24 | add DBO_load_node_set_by_id DB op | LV-426 | |
| 2014-09-24 | add listen_address, listen_port conf options | LV-426 | |
| 2014-09-24 | db_controller.DBO_add_node_set.__init__ - add optional | LV-426 | |
| input_to_DB_property_map property mapping argument | |||
| 2014-09-23 | Fixes #51: type changes on mixed case / upper case node names | Alon Levy | |
| 2014-09-23 | textanalysis-ui: a little cleanup | Alon Levy | |
| according to my yet unwritten coding conventions: 1. no single line blocks 2. no empty lines without a good reason | |||
| 2014-09-23 | rhizicore: adding nodes that exist is currently common practice, drop ↵ | Alon Levy | |
| verbose logging | |||
| 2014-09-23 | Fixes #50: drop parenthesis for prefix including sentences | Alon Levy | |
| Previously: prefix #a does #b => ((a, b), [(a, b, "does (prefix)")]) now: => ((a, b), [(a, b, "prefix #a does #b")]) | |||
