[CMF-checkins] CVS: CMF - slurp_release.py:1.5
Tres Seaver
tseaver at zope.com
Sun Aug 1 17:33:52 EDT 2004
Update of /cvs-repository/CMF
In directory cvs.zope.org:/tmp/cvs-serv25789
Modified Files:
slurp_release.py
Log Message:
- Accomocate new home for CMF releases.
=== CMF/slurp_release.py 1.4 => 1.5 ===
--- CMF/slurp_release.py:1.4 Fri May 14 18:16:29 2004
+++ CMF/slurp_release.py Sun Aug 1 17:33:52 2004
@@ -174,10 +174,10 @@
""" Upload the zipfile for the release to the dogbowl.
"""
- URL = ( '/download/%s/%s' % ( self._version_id, filename ) )
+ URL = ( '/Products/CMF/%s/%s' % ( self._version_id, filename ) )
body = open( filename ).read()
- conn = httplib.HTTPConnection( 'cmf.zope.org' )
+ conn = httplib.HTTPConnection( 'zope.org' )
print 'PUTting file, %s, to URL, %s' % ( filename, URL )
conn.request( 'PUT', URL, body, self._getAuthHeaders() )
response = conn.getresponse()
More information about the CMF-checkins
mailing list