summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2014-09-28textanalysis-ui: lookup textanalyser a single timeAlon Levy
2014-09-28index.html: debug menu frobbingAlon Levy
2014-09-28robot: reduce number of globalsAlon Levy
2014-09-28DBO_load_node_set_by_DB_id & testLV-426
2014-09-28flush_db neo4j utilityLV-426
2014-09-28db_controller test classLV-426
2014-09-28textanalysis-ui: protect #textanalyser access for easier node.js usage for ↵Alon Levy
testing
2014-09-28s/TextAnalyser2/textAnalyser2/ plus use function as varsAlon Levy
2014-09-28history: correct spelling mistake in field s/linkes/links/Alon Levy
2014-09-28history: save json as text editor viewableAlon Levy
2014-09-28parse_single_query_response_data: assist in single query result parsingLV-426
2014-09-28distinguish 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-28debug-ui: use div's and float's instead of tablesAlon Levy
2014-09-28rhizicore: start responsive ui: svg width/height in percentAlon Levy
2014-09-27Input box fixed - #62 solvedAnmol Agrawal
2014-09-24add DBO_load_node_set_by_id DB opLV-426
2014-09-24add listen_address, listen_port conf optionsLV-426
2014-09-24db_controller.DBO_add_node_set.__init__ - add optionalLV-426
input_to_DB_property_map property mapping argument
2014-09-23Fixes #51: type changes on mixed case / upper case node namesAlon Levy
2014-09-23textanalysis-ui: a little cleanupAlon Levy
according to my yet unwritten coding conventions: 1. no single line blocks 2. no empty lines without a good reason
2014-09-23rhizicore: adding nodes that exist is currently common practice, drop ↵Alon Levy
verbose logging
2014-09-23Fixes #50: drop parenthesis for prefix including sentencesAlon Levy
Previously: prefix #a does #b => ((a, b), [(a, b, "does (prefix)")]) now: => ((a, b), [(a, b, "prefix #a does #b")])
2014-09-23add a function comment to TextAnalyzer2; marking up it needs fixingAlon Levy
2014-09-23fix a #50 noticed error (introduced in af27835b)Alon Levy
2014-09-23initial implementationLV-426
2014-09-23use mediawiki markup in READMELV-426
2014-09-21textanalysis-ui: Fixes #42 - remove helper text when sentence is edited then ↵Alon Levy
deleted
2014-09-21Fixes #41: conjugation/connector only sentences keep their linksAlon Levy
2014-09-21Initial commitLV-426
2014-09-21textanalysis: drop two noisy logs introduced a few commits agoAlon Levy
2014-09-21rhizicore cleanup: use single if for a conjunction, reindentAlon Levy
2014-09-21Fixes #59 (rename node title changing case only results in node deletion)Alon Levy
2014-09-21rhizicore.js: Fix autosuggest on loadAlon Levy
Auto suggest doesn't work for nodes loaded from local storage Fixes #60
2014-09-21rhizicore: set minimal svg size to (1000,1000)Alon Levy
Works around a problem where you load rhizi with a small window size and then enlarge it, since we don't dynamically change the svg size (and it is fixed instead of filling a parent div or such) we lose access to a lot of the screen (i.e. can't drag nodes there, can't see anything there, etc).
2014-09-21textanalysis: multiple changes to autocompleteAlon Levy
1. move the sugg variable to textanalysis.js instead of the ui part 2. use a callback for the autocomplete widget (it supports three options: array, string as url for a json returning service, or callback) 3. use a dictionary instead of an array to keep the list of suggestions. We iterate on the dictionary instead of using a Trie or some other datastructure in the callback. But the dictionary avoids iteration when adding a word. Overall a loss in performance, but not noticeable. Googling / memory suggests a Trie is what we want here, but I'm postponing that for later. See: http://ejohn.org/blog/javascript-trie-performance-analysis
2014-09-21textanalysis-ui: add note about 200 Hz text analysis being perhaps overzealousAlon Levy
2014-09-21textanalysis-ui: spaces before and after assignment and opening curliesAlon Levy
2014-09-21scripts/autocomplete.js: use an instead of aAlon Levy
2014-09-21scripts/textanalysis.js cleanup: put switch & cases on same columnAlon Levy
2014-09-21scripts/autocomplete.js cleanup: remove empty lines at wrong placesAlon Levy
2014-09-12textanalysis-ui: use value and not keyAlon Levy
Fixes #58
2014-08-20textanalysis & textanalysis-ui split completeAlon Levy
2014-08-19textanalysis: remove usage of $Alon Levy