[Checkins] SVN: hurry.extjs/trunk/src/hurry/extjs/ Fix on resource inclusion

Santiago Videla santiago.videla at gmail.com
Mon May 4 18:39:13 EDT 2009


Log message for revision 99757:
  Fix on resource inclusion
  
  

Changed:
  U   hurry.extjs/trunk/src/hurry/extjs/basic.txt
  U   hurry.extjs/trunk/src/hurry/extjs/extjs.py

-=-
Modified: hurry.extjs/trunk/src/hurry/extjs/basic.txt
===================================================================
--- hurry.extjs/trunk/src/hurry/extjs/basic.txt	2009-05-04 22:38:11 UTC (rev 99756)
+++ hurry.extjs/trunk/src/hurry/extjs/basic.txt	2009-05-04 22:39:13 UTC (rev 99757)
@@ -32,13 +32,13 @@
   >>> needed.need(extjs.extjs_all)
   >>> print needed.render()
   <link rel="stylesheet" type="text/css" href="http://localhost/static/extjs/resources/css/ext-all.css" />
-  <script type="text/javascript" src="http://localhost/static/extjs/ext-core.js"></script>
+  <script type="text/javascript" src="http://localhost/static/extjs/adapter/ext/ext-base.js"></script>
   <script type="text/javascript" src="http://localhost/static/extjs/ext-all.js"></script>
 
   >>> needed.mode('debug')
   >>> print needed.render()
   <link rel="stylesheet" type="text/css" href="http://localhost/static/extjs/resources/css/ext-all.css" />
-  <script type="text/javascript" src="http://localhost/static/extjs/ext-core-debug.js"></script>
+  <script type="text/javascript" src="http://localhost/static/extjs/adapter/ext/ext-base.js"></script>
   <script type="text/javascript" src="http://localhost/static/extjs/ext-all-debug.js"></script>
 
 

Modified: hurry.extjs/trunk/src/hurry/extjs/extjs.py
===================================================================
--- hurry.extjs/trunk/src/hurry/extjs/extjs.py	2009-05-04 22:38:11 UTC (rev 99756)
+++ hurry.extjs/trunk/src/hurry/extjs/extjs.py	2009-05-04 22:39:13 UTC (rev 99757)
@@ -2,10 +2,9 @@
 
 extjs = Library('extjs')
 
-extjs_core = ResourceInclusion(extjs, 'ext-core.js',
-                               debug='ext-core-debug.js')
+extjs_base = ResourceInclusion(extjs, 'adapter/ext/ext-base.js')
 
-extjs_all = ResourceInclusion(extjs, 'ext-all.js', depends=[extjs_core],
+extjs_all = ResourceInclusion(extjs, 'ext-all.js', depends=[extjs_base],
                               debug='ext-all-debug.js')
 
 extjs_css = ResourceInclusion(extjs, 'resources/css/ext-all.css')



More information about the Checkins mailing list