| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-10-05 | index.html: forgot to update d3.js location after changing to non min | Alon Levy | |
| 2014-10-05 | d3: use non minified version, upgrade to 3.4.11 from release | Alon Levy | |
| https://github.com/mbostock/d3/archive/v3.4.11.tar.gz Non scientifically, looks much faster on firefox. | |||
| 2014-10-05 | move all external scripts to a subdirectory 'external'; easier to grep stuff | Alon Levy | |
| 2014-10-02 | index.html: s/Expand/expand/ for #62 | Alon Levy | |
| 2014-10-02 | tests: get meaningful console.log in loaded scripts | Alon Levy | |
| 2014-10-02 | Undo of commit Merge branch '#62' into Prototype | garbash | |
| It broke the input box | |||
| 2014-10-01 | Merge branch '#62' into Prototype | Anmol Agrawal | |
| Conflicts: index.html scripts/rhizicore.js | |||
| 2014-09-30 | The text box is fixed except that it doesn’t return to it’s original | Anmol Agrawal | |
| size. | |||
| 2014-09-30 | change #2 to issue #74 | Anmol Agrawal | |
| 2014-09-30 | #74 fixed | Anmol Agrawal | |
| 2014-09-30 | textanalysis: remove trailing whitespace from link names | Alon Levy | |
| 2014-09-30 | #62 - Refactored code | Anmol Agrawal | |
| 2014-09-30 | Revert "Fix #63 - don't move graph on click (possible side effects?)" | Alon Levy | |
| This reverts commit 5c5f9a8cfe3edd6f1df31ab00885e58e4a36bfd1. reopen #63 this fix causes regressions - the update function does two things: 1. updates link & node graphical representation 2. causes the force layout to reposition links and edges (using tick to selectively do that) I need to change #2 without affecting #1. | |||
| 2014-09-30 | Fix #63 - don't move graph on click (possible side effects?) | Alon Levy | |
| 2014-09-30 | rhizicore: since s/text/name/ fix load | Alon Levy | |
| Loading an old save (with no 'name' in nodes) triggers this path. | |||
| 2014-09-30 | rhizicore: remove commented code | Alon Levy | |
| 2014-09-30 | #62 - Fix number 1 | Anmol Agrawal | |
| The text box is fixed except that it doesn’t return to it’s original size. | |||
| 2014-09-29 | adding sage.json: Fixes #19 | Alon Levy | |
| Together with 3e3c130b3eede854db602259215866a409618967 and the patches leading up to it starting at a6a7e30ca545e83f5291ecd5aee13e5d47270779 | |||
| 2014-09-29 | buttons/index: add file load button | Alon Levy | |
| 2014-09-29 | rhizicore:myGraph.addNodeComplete: add name to signature | Alon Levy | |
| 2014-09-29 | buttons: white space fix | Alon Levy | |
| 2014-09-29 | rhizicore: replace 'text' attribute with 'name' for node | Alon Levy | |
| 2014-09-29 | remove deliverableTest | Alon Levy | |
| 2014-09-29 | rename 'load' button to 'load-storage-local' | Alon Levy | |
| 2014-09-29 | buttons: factor out really_load | Alon Levy | |
| 2014-09-29 | extract deliverableTest to node script in tools | Alon Levy | |
| 2014-09-29 | dor says it shouldn't be here | Alon Levy | |
| 2014-09-29 | tools/sage.csv+: we got Sage's project description as csv, convert to json | Alon Levy | |
| At the same time documenting our current requirements from a graph (pretty basic). Adds tools/sage_csv_to_sage_json.py | |||
| 2014-09-29 | change #2 to issue #74 | Anmol Agrawal | |
| 2014-09-29 | textanalysis: fold a too long line | Alon Levy | |
| 2014-09-29 | Fixes #75: don't spew undefines in linktext. | Alon Levy | |
| TODO - code that doesn't make me choke up with tears | |||
| 2014-09-29 | #74 fixed | Anmol Agrawal | |
| 2014-09-29 | Fixes #73: pre first node text missing spaces | Alon Levy | |
| 2014-09-29 | Improved tutorial | garbash | |
| 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 | 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 | add jsdom based test - not actually history test yet, just calls textAnalyser2 | Alon Levy | |
| 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 | |
