[Zope-Checkins] SVN: Zope/tags/Zope-2-8-0/inst/WinBuilders/mk/zope.mk ZOPEVERSION didn't match the name of the tarball ==

2005-06-12 Thread Tim Peters
Log message for revision 30774:
  ZOPEVERSION didn't match the name of the tarball ==
  the name of the tarball's top-level directory.  This
  prevented making a Windows installer from the 2.8.0
  tag.
  

Changed:
  U   Zope/tags/Zope-2-8-0/inst/WinBuilders/mk/zope.mk

-=-
Modified: Zope/tags/Zope-2-8-0/inst/WinBuilders/mk/zope.mk
===
--- Zope/tags/Zope-2-8-0/inst/WinBuilders/mk/zope.mk2005-06-12 14:34:33 UTC 
(rev 30773)
+++ Zope/tags/Zope-2-8-0/inst/WinBuilders/mk/zope.mk2005-06-12 16:35:56 UTC 
(rev 30774)
@@ -3,7 +3,7 @@
 REQUIRED_FILES=$(PYTHON_REQUIRED_FILES)\
$(ZOPE_REQUIRED_FILES)
 
-ZOPEVERSION=2.8.0
+ZOPEVERSION=2.8.0-final
 ZOPEDIRNAME=Zope-$(ZOPEVERSION)
 
 MAKEZOPE=$(MAKEFILEDIR)/bin/makezope.bat $(WIN_BUILD_DIR)

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] CVS: Zope/doc - CHANGES.txt:1.625.2.337

2005-06-12 Thread Tres Seaver
Update of /cvs-repository/Zope/doc
In directory cvs.zope.org:/tmp/cvs-serv20955/doc

Modified Files:
  Tag: Zope-2_7-branch
CHANGES.txt 
Log Message:


 - Collector #1548: Fix 'httplib' usage in ZPublisher.Client.


=== Zope/doc/CHANGES.txt 1.625.2.336 = 1.625.2.337 ===
--- Zope/doc/CHANGES.txt:1.625.2.336Fri Jun  3 12:29:04 2005
+++ Zope/doc/CHANGES.txtSun Jun 12 20:41:06 2005
@@ -14,6 +14,8 @@
 
 Bugs fixed
 
+  - Collector #1548: Fix 'httplib' usage in ZPublisher.Client.
+
   - Collector #1797: when a File/Image object returned a 304 response
 code in response to an If-Modified-Since request, it did not
 collaborate with any cache managers.  It used to, and it has been

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ - Forward port fix for collector #1548.

2005-06-12 Thread Tres Seaver
Log message for revision 30779:
   - Forward port fix for collector #1548.

Changed:
  U   Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
  U   Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/Client.py

-=-
Modified: Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
===
--- Zope/branches/Zope-2_8-branch/doc/CHANGES.txt   2005-06-12 22:01:51 UTC 
(rev 30778)
+++ Zope/branches/Zope-2_8-branch/doc/CHANGES.txt   2005-06-13 01:10:44 UTC 
(rev 30779)
@@ -22,6 +22,12 @@
 
- Collector #1233: port ZOPE_CONFIG patch from Zope 2.7 to Zope 2.8
 
+  After Zope 2.8.0
+
+Bugs Fixed
+
+  - Collector #1548: Fix 'httplib' usage in ZPublisher.Client.
+
   Zope 2.8.0 (2005/06/11)
 
 Bugs Fixed

Modified: Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/Client.py
===
--- Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/Client.py   
2005-06-12 22:01:51 UTC (rev 30778)
+++ Zope/branches/Zope-2_8-branch/lib/python/ZPublisher/Client.py   
2005-06-13 01:10:44 UTC (rev 30779)
@@ -141,8 +141,7 @@
 )
 
 try:
-h=HTTP()
-h.connect(self.host, self.port)
+h=HTTP(self.host, self.port)
 h.putrequest(method, self.rurl)
 for hn,hv in headers.items():
 h.putheader(translate(hn,dashtrans),hv)

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Checkins] SVN: Zope/trunk/ - Forward port fix for collector #1548.

2005-06-12 Thread Tres Seaver
Log message for revision 30780:
   - Forward port fix for collector #1548.

Changed:
  U   Zope/trunk/doc/CHANGES.txt
  U   Zope/trunk/lib/python/ZPublisher/Client.py

-=-
Modified: Zope/trunk/doc/CHANGES.txt
===
--- Zope/trunk/doc/CHANGES.txt  2005-06-13 01:10:44 UTC (rev 30779)
+++ Zope/trunk/doc/CHANGES.txt  2005-06-13 01:30:38 UTC (rev 30780)
@@ -34,6 +34,8 @@
 
 Bugs fixed
 
+  - Collector #1548: Fix 'httplib' usage in ZPublisher.Client.
+
   - Collector #1792: applied patch for broken ZClasses
 
   - Collector #1803: Fixed InitializeClass for some corner case.

Modified: Zope/trunk/lib/python/ZPublisher/Client.py
===
--- Zope/trunk/lib/python/ZPublisher/Client.py  2005-06-13 01:10:44 UTC (rev 
30779)
+++ Zope/trunk/lib/python/ZPublisher/Client.py  2005-06-13 01:30:38 UTC (rev 
30780)
@@ -141,8 +141,7 @@
 )
 
 try:
-h=HTTP()
-h.connect(self.host, self.port)
+h=HTTP(self.host, self.port)
 h.putrequest(method, self.rurl)
 for hn,hv in headers.items():
 h.putheader(translate(hn,dashtrans),hv)

___
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins


[Zope-Coders] Zope tests: 8 OK

2005-06-12 Thread Zope tests summarizer
Summary of messages to the zope-tests list.
Period Sat Jun 11 11:01:02 2005 UTC to Sun Jun 12 11:01:02 2005 UTC.
There were 8 messages: 8 from Zope Unit Tests.


Tests passed OK
---

Subject: OK : Zope-2_6-branch Python-2.1.3 : Linux
From: Zope Unit Tests
Date: Sat Jun 11 23:24:54 EDT 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-June/002327.html

Subject: OK : Zope-2_6-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Sat Jun 11 23:26:24 EDT 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-June/002328.html

Subject: OK : Zope-2_7-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Sat Jun 11 23:27:54 EDT 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-June/002329.html

Subject: OK : Zope-2_7-branch Python-2.4.1 : Linux
From: Zope Unit Tests
Date: Sat Jun 11 23:29:24 EDT 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-June/002330.html

Subject: OK : Zope-2_8-branch Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Sat Jun 11 23:30:54 EDT 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-June/002331.html

Subject: OK : Zope-2_8-branch Python-2.4.1 : Linux
From: Zope Unit Tests
Date: Sat Jun 11 23:32:24 EDT 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-June/002332.html

Subject: OK : Zope-trunk Python-2.3.5 : Linux
From: Zope Unit Tests
Date: Sat Jun 11 23:33:54 EDT 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-June/002333.html

Subject: OK : Zope-trunk Python-2.4.1 : Linux
From: Zope Unit Tests
Date: Sat Jun 11 23:35:24 EDT 2005
URL: http://mail.zope.org/pipermail/zope-tests/2005-June/002334.html

___
Zope-Coders mailing list
Zope-Coders@zope.org
http://mail.zope.org/mailman/listinfo/zope-coders


[Zope-dev] Windows Builds

2005-06-12 Thread Christian Theune
Hi,

it looks like in principle the windows building mechanism got a bit
better in the last time. Unfortunately I'm extremely busy and couldn't
follow all the changes that are required on my building site, so I'm
technically currently not able to compile the release for 2.8 final.

If Tim (or someone else) is able (regarding time and technical
abilities) and willing to care for the Windows builds in future, I'd
like to step back from the job of creating the Windows builds. I'm not
using Windows on a daily basis and it is very time consuming to keep a
working building environment around when something changes.

Cheers,
Christian

-- 
gocept gmbh  co. kg - schalaunische str. 6 - 06366 koethen - germany
www.gocept.com - [EMAIL PROTECTED] - phone +49 3496 30 99 112 -
fax +49 3496 30 99 118 - zope and plone consulting and development


signature.asc
Description: This is a digitally signed message part
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope] Assiging Owner Roles to subfolders

2005-06-12 Thread Dan E
Ok - newbie here,
This may be a basic question but I can't figure it out. I have series
of folders that I want different groups to be able to modify the
contents of (including the sub-folders). I thought the easy way to do
this is to create the folder and then share the contents of the folder
with the group of interest. But for some reason, it doesn't
automatically share all the subfolders with the user. Any ideas on how
to do this would be appreciated.

thanks in advance,
Dan
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] Re: datetime bug

2005-06-12 Thread Dennis Allison

Thanks Lupa.

I have tracked it down and created a patch which fixes the problem in 
general.   Seems the ISO 8601 implementation had some warts.  We are 
testing the patch now.  When I am sure it's OK I'll submit it to the
Collector with an URGENT tag.  I'll also send you a copy.  

I suspect that the daylight savings time behavior is unrelated to this 
problem and is likely to be a bad entry in a table.  

Thanks for you helpful response.  BTW if you want an alpha copy of the 
patch, let me know and I'll send it to you.  The more testing the better.


The patched version has the following semantics

dates and times with no timezone tag resolve to the 
timezone of the host machine (Zope standard behavior)

dates and times with a trailing Z are guaranteed to be 
GMT

dates and times with a trailing offset have the offset
as their time zone.

It is illegal to combine a 'Z' and an offset.  (Hacked in 
the code for 2.7 beta)

I think this matches the spec at 

http://www.w3.org/TR/NOTE-datetime

On Sun, 12 Jun 2005, +lupa+ wrote:

 Hi Dennis,
 I'm responding directly to you as I'm not on the zope list.  I see the 
 same error on Zope 2.7.6 and with 2.3.5 python, not 2.4.x.  I've narrowed 
 the behavior down a bit more and it seems that
 
   dd = '%d-%02d-%02d' % (y,m,d,)
   D  = DateTime(dd)
 
 converts to local time, while
 
   ee  = '%d/%d/%d' % (m, d, y)
   E  = DateTime(ee)
 
 converts to Mean time.  I'm not absolutely sure of that, but in a quick 
 look, I can see that the difference between D and E changes from -5 hours 
 to -3 when Daylight Savings Time change comes around... which seems a bit 
 weird in itself.   I wrote and maintain CalendarX for Plone, so this 
 behavior concerns me greatly and I'll be looking into it more very soon.
 
 +lupa+
 Lupa Zurven, CalendarX.org
 
 
 
 
 
 
 
 At 12:00 PM 6/12/2005 -0400, you wrote:
 From: Dennis Allison [EMAIL PROTECTED]
 Precedence: list
 Subject: [Zope] Datetime bug in Zope-2.7.6?
 Date: Sat, 11 Jun 2005 16:54:03 -0700 (PDT)
 To: zope@zope.org
 Message-ID: [EMAIL PROTECTED]
 Content-Type: TEXT/PLAIN; charset=US-ASCII
 MIME-Version: 1.0
 Message: 5
 
 
 Zope 2.7.6
 Python 2.4.1 (and yes, I know I am jumping the gun a bit)
 
 The problem appears to be in the parse component --
 
 Consider a test script:
 
 for y in range(1995,2005):
  for d in (1, 3, 13, 25,):
  for m in (1,4,5,6,):
   dd = '%d-%02d-%02d' % (y,m,d,)
   ee  = '%d/%d/%d' % (m, d, y)
   D  = DateTime(dd)
   E  = DateTime(ee)
   print dd, D.strftime('%Y-%m-%d')
   print ee, E.strftime('%Y-%m-%d')
 return printed
 
 In all cases, each of the dates shoudl be the same.  As can be seen,
 for dates sourced from a string of the form
 
 1995-04-25
 
 the resulatant date is off by one day
 
 1995-04-24
 
 The problem is not seen with Zope 2.6.4 running with
 Python 2.3.5.
 
 A quick diff shows tht there are many changes between 2.6 and 2.7.
 Anyone else seen this problem?
 
 
 Partial Results:
 
 1995-04-25 1995-04-24
 4/25/1995 1995-04-25
 
 1995-05-25 1995-05-24
 5/25/1995 1995-05-25
 
 1995-06-25 1995-06-24
 6/25/1995 1995-06-25
 
 --
 Dennis Allison * Computer Systems Laboratory * Gates 227
 * Stanford University *  Stanford CA  94305
 * (650) 723-9213 * (650) 723-0033 fax
 * [EMAIL PROTECTED]
 * [EMAIL PROTECTED]
 

-- 
Dennis Allison * Computer Systems Laboratory * Gates 227
   * Stanford University *  Stanford CA  94305
   * (650) 723-9213 * (650) 723-0033 fax
   * [EMAIL PROTECTED]
   * [EMAIL PROTECTED]


___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )