[Checkins] SVN: hurry.extjs/trunk/ Update README and set the version number to the latest stable ExtJS version

Santiago Videla santiago.videla at gmail.com
Mon May 4 18:05:40 EDT 2009


Log message for revision 99749:
  Update README and set the version number to the latest stable ExtJS version
  

Changed:
  U   hurry.extjs/trunk/README.txt
  U   hurry.extjs/trunk/setup.py

-=-
Modified: hurry.extjs/trunk/README.txt
===================================================================
--- hurry.extjs/trunk/README.txt	2009-05-04 21:50:06 UTC (rev 99748)
+++ hurry.extjs/trunk/README.txt	2009-05-04 22:05:40 UTC (rev 99749)
@@ -4,18 +4,19 @@
 Introduction
 ============
 
-This library packages ExtJS_ for `hurry.resource`_.
+This library provides a simple API to use ExtJS_ with `hurry.resource`_.
 
 .. _`hurry.resource`: http://pypi.python.org/pypi/hurry.resource
 
 .. _ExtJS: http://www.extjs.com/
 
+Due to licenses conflicts, `hurry.extjs` can't packages the sources of ExtJS. So you need
+to do it manually.
+
 How to use?
 ===========
 
-In order to avoid licenses conflicts, first you need to download ExtJS_ and place it in your
-project. Once it's finished, add `hurry.zoperesource` and `hurry.extjs` to your setup.py
-and run ./bin/buildout::
+Add `hurry.zoperesource` and `hurry.extjs` to your setup.py and run ./bin/buildout::
 
         install_requires=[
            ...,
@@ -23,8 +24,9 @@
            'hurry.extjs',
         ],
 
-Next step, it's to publish the sources of ExtJS as a resource directory. Using Grok,
-you should have something like this in your configure.zcml::
+Download ExtJS_ and place it in your project. Next step, it's to publish the sources of
+ExtJS as a resource directory. Using Grok, you should have something like this in your
+configure.zcml ::
 
     <configure xmlns="http://namespaces.zope.org/zope"
                xmlns:grok="http://namespaces.zope.org/grok"
@@ -43,7 +45,7 @@
     </configure>
 
 `hurry.extjs` will look for the resourceDirectory named `extjs`, so it's important that
-you use the same name in the resourceDirectory statement.
+you use the same `name` in the resourceDirectory statement.
 
 Now, you can import ``extjs`` like this::
 

Modified: hurry.extjs/trunk/setup.py
===================================================================
--- hurry.extjs/trunk/setup.py	2009-05-04 21:50:06 UTC (rev 99748)
+++ hurry.extjs/trunk/setup.py	2009-05-04 22:05:40 UTC (rev 99749)
@@ -1,6 +1,8 @@
 from setuptools import setup, find_packages
 import sys, os, shutil, tempfile
 
+EXTJS_VERSION = '2.2.1'
+
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
@@ -15,7 +17,7 @@
 
 setup(
     name='hurry.extjs',
-    version='0.1dev',
+    version= EXTJS_VERSION + 'dev',
     description="ExtJS for hurry.resource.",
     long_description=long_description,
     classifiers=[],



More information about the Checkins mailing list