summaryrefslogtreecommitdiff
path: root/src/client/app.js
AgeCommit message (Collapse)Author
2015-05-12app.js: support fragment path injectionLV-426
2015-05-12domain_types.js: depend on requirejs path configLV-426
2015-05-12app.js: sort pathsLV-426
2015-05-12client: removing unused jquery-uiLV-426
2015-04-02client: graph_view: layout abstraction, empty + concentric layouts (empty ↵Alon Levy
for temporary)
2015-03-17client: Bacon/jquery dependency: use shimAlon Levy
add shim requirement for Bacon to have jquery loaded first, since Bacon patches in asEventStream (and other APIs). Undo the Bacon_wrapper non fix: git grep -l Bacon_wrapper | while read f; do sed -i -e s/Bacon_wrapper/Bacon/g $f; done
2015-02-17client/server: support optimizing with require.js using node run r.jsAlon Levy
built is controlled by property do-client-optimize which defaults to false. Even if the optimized main is built (single file main-built.js and source map file main-built.js.map) they are not used unless rhizi-config.conf client_optimize is set to True which causes app.js to use main-built.js and not main.js The resulting file is 687 KiloBytes large. Pretty scary, but it still loads faster this way. (from very small tests locally). This is without compression done by the server.
2015-02-15add underscore, implement ctrl-click to append to selectionAlon Levy
2015-02-09rz_config: embed in index, remove as moduleAlon Levy
Still missing: remove host/port, let client use same as url it was served on. remove other flags no longer relevant. better mapping of server config to avoid double work?
2015-02-09server/client: move rz_config to templates, fill in to match server config ↵Alon Levy
host/post
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-12server/client: s/res/static/, drop dev_mode__resend_from_staticAlon Levy
2014-12-29requirejs config: sort, import socket.io via shimLV-426
2014-12-21app.js: configure baseUrl commentLV-426
2014-12-16client fixes to run with new layoutAlon Levy
directives for src names: any js file should be relative any resource should be absolute i.e. all images are /res/img/bla and all js files are bla.js / view/node_view.js etc
2014-12-16moving files around after repository mergerAlon Levy