[KSS-checkins] r44150 - in kukit/kss.core/trunk: docs kss/core kss/core/pluginregistry kss/core/pluginregistry/browser

reebalazs at codespeak.net reebalazs at codespeak.net
Mon Jun 11 18:05:25 CEST 2007


Author: reebalazs
Date: Mon Jun 11 18:05:25 2007
New Revision: 44150

Added:
   kukit/kss.core/trunk/kss/core/pluginregistry/browser/
      - copied from r44147, kukit/kss.core/branch/ree-stripout-comments/kss/core/pluginregistry/browser/
   kukit/kss.core/trunk/kss/core/pluginregistry/browser/__init__.py
      - copied unchanged from r44147, kukit/kss.core/branch/ree-stripout-comments/kss/core/pluginregistry/browser/__init__.py
   kukit/kss.core/trunk/kss/core/pluginregistry/browser/configure.zcml
      - copied unchanged from r44147, kukit/kss.core/branch/ree-stripout-comments/kss/core/pluginregistry/browser/configure.zcml
   kukit/kss.core/trunk/kss/core/pluginregistry/browser/develui.css
      - copied unchanged from r44147, kukit/kss.core/branch/ree-stripout-comments/kss/core/pluginregistry/browser/develui.css
   kukit/kss.core/trunk/kss/core/pluginregistry/browser/develui.js
      - copied unchanged from r44147, kukit/kss.core/branch/ree-stripout-comments/kss/core/pluginregistry/browser/develui.js
   kukit/kss.core/trunk/kss/core/pluginregistry/browser/develui.kss
      - copied unchanged from r44147, kukit/kss.core/branch/ree-stripout-comments/kss/core/pluginregistry/browser/develui.kss
   kukit/kss.core/trunk/kss/core/pluginregistry/browser/develui.pt
      - copied unchanged from r44147, kukit/kss.core/branch/ree-stripout-comments/kss/core/pluginregistry/browser/develui.pt
   kukit/kss.core/trunk/kss/core/pluginregistry/browser/develview.py
      - copied unchanged from r44147, kukit/kss.core/branch/ree-stripout-comments/kss/core/pluginregistry/browser/develview.py
Modified:
   kukit/kss.core/trunk/docs/HISTORY.txt
   kukit/kss.core/trunk/kss/core/concatresource.zcml
   kukit/kss.core/trunk/kss/core/pluginregistry/configure.zcml
Log:
Merge in ree-stripout-comments branch (-r42580:44147)

Modified: kukit/kss.core/trunk/docs/HISTORY.txt
==============================================================================
--- kukit/kss.core/trunk/docs/HISTORY.txt	(original)
+++ kukit/kss.core/trunk/docs/HISTORY.txt	Mon Jun 11 18:05:25 2007
@@ -6,6 +6,21 @@
 
     - ...
 
+    - implement new packing directives and two disctint
+      versions of the javascript (development and production),
+      this is achieved from javascript with the ;;; marker
+      Also add the @@kss_devel_mode/ui view for changing
+      the development mode from the browser.
+      [ree]
+
+    - Add the passnode selector that can be used to access
+      the value of a default parm passed programmatically
+      from the event (via makeActionOper)
+      [ree]
+
+    - Add action moveNodeAsLastChild
+      [ree]
+
     - Death to Azax (... long live KSS)!
       Removing last traces of the old name from the sources
       [gotcha]

Modified: kukit/kss.core/trunk/kss/core/concatresource.zcml
==============================================================================
--- kukit/kss.core/trunk/kss/core/concatresource.zcml	(original)
+++ kukit/kss.core/trunk/kss/core/concatresource.zcml	Mon Jun 11 18:05:25 2007
@@ -8,6 +8,21 @@
 	
   to cache concatenation of kukit.js -->
 
+  <!--
+
+  Available values for compress_level in javascript:
+
+    - none:        the raw sources
+    - devel:       like none but the ;;;-s themselves are removed
+    - stripped:    the production version unpacked, readable
+    - safe-devel:  safe packing, devel version
+    - safe:        safe packing of the production version
+    - full-devel:  full packing, devel version
+    - full:        full packing of the production version
+
+  -->
+
+  <!-- Production version -->
   <browser:concatresource
     files="kukit/kukit/utils.js
         kukit/kukit/errors.js
@@ -30,7 +45,35 @@
     name="kukit.js"
     compress_level="safe"
   />
+
+  <!-- Development version -->
+  <browser:concatresource
+    files="kukit/kukit/utils.js
+        kukit/kukit/errors.js
+        kukit/kukit/oper.js
+        kukit/kukit/kukit.js
+        kukit/kukit/tokenizer.js
+        kukit/kukit/providerreg.js
+        kukit/kukit/resourcedata.js
+        kukit/kukit/kssparser.js
+        kukit/kukit/eventreg.js
+        kukit/kukit/actionreg.js
+        kukit/kukit/dom.js
+        kukit/kukit/commandreg.js
+        kukit/kukit/serveraction.js
+        kukit/kukit/requestmanager.js
+        kukit/kukit/commandprocessor.js
+        kukit/kukit/selectorreg.js
+        kukit/kukit/forms.js
+        kukit/kukit/plugin.js"
+    name="kukit-devel.js"
+    compress_level="devel"
+    caching="memory"
+    lmt_check_period="5"
+  />
  
+  <!-- Old source version used by RR -->
+
   <browser:concatresource
     files="kukit/kukit/utils.js
         kukit/kukit/errors.js
@@ -51,7 +94,7 @@
         kukit/kukit/forms.js
         kukit/kukit/plugin.js"
     name="kukit-src.js"
-    compress_level="none"
+    compress_level="devel"
   />
   
 </configure>

Modified: kukit/kss.core/trunk/kss/core/pluginregistry/configure.zcml
==============================================================================
--- kukit/kss.core/trunk/kss/core/pluginregistry/configure.zcml	(original)
+++ kukit/kss.core/trunk/kss/core/pluginregistry/configure.zcml	Mon Jun 11 18:05:25 2007
@@ -7,6 +7,8 @@
 
     <include package=".json" />
     
+    <include package=".browser" />
+
     <!-- Register an adapter for concatresource -->
     
     <utility 
@@ -21,4 +23,10 @@
         component=".registry.kssConcatResourceAddon"
         />
 
+    <utility 
+        provides="concatresource.interfaces.IConcatResourceAddon"
+        name="kukit-devel.js"
+        component=".registry.kssConcatResourceAddon"
+        />
+
 </configure>


More information about the Kukit-checkins mailing list