[Checkins] SVN: hurry.jquery/trunk/ Do some safety checks to avoid these entry points being triggered

Martijn Faassen faassen at startifact.com
Wed Jul 28 11:36:26 EDT 2010


Log message for revision 115165:
  Do some safety checks to avoid these entry points being triggered
  even when jqueryui is released.
  

Changed:
  U   hurry.jquery/trunk/CHANGES.txt
  U   hurry.jquery/trunk/setup.py
  U   hurry.jquery/trunk/src/hurry/jquery/prepare.py

-=-
Modified: hurry.jquery/trunk/CHANGES.txt
===================================================================
--- hurry.jquery/trunk/CHANGES.txt	2010-07-28 15:28:12 UTC (rev 115164)
+++ hurry.jquery/trunk/CHANGES.txt	2010-07-28 15:36:25 UTC (rev 115165)
@@ -1,12 +1,14 @@
 CHANGES
 *******
 
-1.4.2.3 (unreleased)
+1.4.2.3 (2010-07-28)
 ====================
 
-- Nothing changed yet.
+* We needed to do some safety checks in the zest.releaser entry points
+  as otherwise these entry points would be triggered even for the
+  release process of packages that depend on this (such as
+  hurry.jqueryui).
 
-
 1.4.2.2 (2010-07-28)
 ====================
 

Modified: hurry.jquery/trunk/setup.py
===================================================================
--- hurry.jquery/trunk/setup.py	2010-07-28 15:28:12 UTC (rev 115164)
+++ hurry.jquery/trunk/setup.py	2010-07-28 15:36:25 UTC (rev 115165)
@@ -2,7 +2,7 @@
 import os
 
 JQUERY_VERSION = '1.4.2'
-version = '1.4.2.3dev'
+version = '1.4.2.3'
 # Name version after JQUERY_VERSION + .suffix
 
 

Modified: hurry.jquery/trunk/src/hurry/jquery/prepare.py
===================================================================
--- hurry.jquery/trunk/src/hurry/jquery/prepare.py	2010-07-28 15:28:12 UTC (rev 115164)
+++ hurry.jquery/trunk/src/hurry/jquery/prepare.py	2010-07-28 15:36:25 UTC (rev 115165)
@@ -64,8 +64,12 @@
     prepare_jquery(os.path.dirname(__file__))
 
 def working_entrypoint(data):
+    if data['name'] != 'hurry.resource':
+        return
     prepare_jquery(os.path.dirname(__file__))
 
 def tag_entrypoint(data):
+    if data['name'] != 'hurry.resource':
+        return
     prepare_jquery(data['tagdir'] + '/src/hurry/jquery')
     



More information about the checkins mailing list