minor
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Tue, 19 Mar 2013 15:58:12 +0000 (16:58 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Tue, 19 Mar 2013 15:58:12 +0000 (16:58 +0100)
Makefile
unfold/plugin.py
unfold/templates/page-queries.js

index c5c98a3..e375ae7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -108,7 +108,7 @@ SSHCOMMAND:=ssh root@$(MYSLICEBOX)
 ### rsync options
 # the config file should probably not be overridden ??
 # --exclude settings.py 
-LOCAL_RSYNC_EXCLUDES   := --exclude '*.pyc' --exclude config.py --exclude all-static --exclude all-templates --exclude '*.sqlite3' 
+LOCAL_RSYNC_EXCLUDES   := --exclude '*.pyc' --exclude config.py --exclude all-static --exclude all-templates --exclude '*.sqlite3'  --exclude play/ 
 # usual excludes
 RSYNC_EXCLUDES         := --exclude .git --exclude '*~' --exclude TAGS --exclude .DS_Store $(LOCAL_RSYNC_EXCLUDES) 
 # make -n will propagate as rsync -n 
index c5ce3a0..c2bca29 100644 (file)
@@ -17,7 +17,7 @@ from unfold.prelude import Prelude
 
 DEBUG= False
 #DEBUG= [ 'SliceList' ]
-DEBUG=True
+#DEBUG=True
 
 # decorator to deflect calls on Plugin to its Prelude through self.page.prelude
 def to_prelude (method):
index 515196b..a6c470b 100644 (file)
@@ -1,8 +1,8 @@
 {% for json in queries_jsons %} manifold.insert_query({{ json|safe }});
 {% endfor %}
 $(document).ready(function () {
-var query_uuid_domids = new Array();
-{% for d in query_uuid_domids %} query_uuid_domids.push({'query_uuid':"{{ d.query_uuid }}", 'id':{{ d.domid }}});
+  var query_uuid_domids = new Array();
+{% for d in query_uuid_domids %}  query_uuid_domids.push({'query_uuid':"{{ d.query_uuid }}", 'id':{{ d.domid }}});
 {% endfor %}
-manifold.asynchroneous_exec(query_uuid_domids);
+  manifold.asynchroneous_exec(query_uuid_domids);
 })