[Zope-Annce] Issue Dealer 0.9.124 released

2007-04-05 Thread Morten W. Petersen

Issue Dealer (http://issuedealer.com) is a issue management tool
featuring a weblog publisher (client), weblog (server), WebDAV client,
Mail gateway (mailing list and archive), WYSIWYG editing of HTML and
Images and more.

Changes since the last announcement:

0.9.124:

 - Added issue past due date to notification email
 - Added documentation on how to setup notifications
 - Implemented past due date listing of events

0.9.123:

 - Fixed bug where search_string wasn't found (due to
   double ??)
 - Fixed bug where some URLs included in a text were
   not detected properly

0.9.122:

 - Changed things around so that issues can have
   multiple owners
 - Implemented support for setting owner on incoming
   mail issues

0.9.121:

 - Added support for removing and adding tags to
   multiple issues at once.
 - Fixed bug where mail messages going through
   verification lost their from info.

If you're interested in trying a demo, sign up at the demo site
(http://demos.issue-dealer.net). To see the Issue Dealer Weblog Server
in action, have a look at The Blogologue (http://www.blogologue.com). :)
Nidelven IT (http://www.nidelven-it.no) and others use the product to
manage their knowledge and action items, it's a great tool to keep track
issues in different departments for example. Try it!

This release is sponsored by Nidelven IT, provider of Zope/Plone hosting
services.

___
Zope-Announce maillist  -  Zope-Announce@zope.org
http://mail.zope.org/mailman/listinfo/zope-announce

 Zope-Announce for Announcements only - no discussions

(Related lists - 
Users: http://mail.zope.org/mailman/listinfo/zope

Developers: http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py Fix import for Zope 3.2.

2007-04-05 Thread Stefan H. Holek
Log message for revision 74027:
  Fix import for Zope 3.2.
  

Changed:
  U   Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py

-=-
Modified: Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py
===
--- Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py 
2007-04-05 17:29:43 UTC (rev 74026)
+++ Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py 
2007-04-05 17:31:49 UTC (rev 74027)
@@ -19,7 +19,7 @@
 from zope.app.container.interfaces import IObjectMovedEvent
 from zope.app.container.interfaces import IObjectRemovedEvent
 from zope.app.container.interfaces import IContainerModifiedEvent
-from zope.lifecycleevent.interfaces import IObjectCopiedEvent
+from zope.app.event.interfaces import IObjectCopiedEvent
 from OFS.interfaces import IObjectWillBeAddedEvent
 from OFS.interfaces import IObjectWillBeMovedEvent
 from OFS.interfaces import IObjectWillBeRemovedEvent

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


[Zope-Checkins] SVN: Zope/trunk/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py Fix stacklevel.

2007-04-05 Thread Stefan H. Holek
Log message for revision 74028:
  Fix stacklevel.
  

Changed:
  U   Zope/trunk/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py

-=-
Modified: Zope/trunk/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
===
--- Zope/trunk/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
2007-04-05 17:31:49 UTC (rev 74027)
+++ Zope/trunk/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
2007-04-05 20:12:46 UTC (rev 74028)
@@ -291,7 +291,7 @@
 name = test_class.__name__
 warnings.warn((The test_class you are using doesn't 
subclass from ZopeTestCase.Functional. 
-   Please fix that.), UserWarning, 2)
+   Please fix that.), UserWarning, 4)
 if not 'Functional' in name:
 name = 'Functional%s' % name
 test_class = type(name, (Functional, test_class), {})

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


[Zope-Checkins] SVN: Zope/branches/2.10/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py Fix stacklevel.

2007-04-05 Thread Stefan H. Holek
Log message for revision 74029:
  Fix stacklevel.
  

Changed:
  U   
Zope/branches/2.10/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py

-=-
Modified: 
Zope/branches/2.10/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
===
--- 
Zope/branches/2.10/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
2007-04-05 20:12:46 UTC (rev 74028)
+++ 
Zope/branches/2.10/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
2007-04-05 20:13:17 UTC (rev 74029)
@@ -291,7 +291,7 @@
 name = test_class.__name__
 warnings.warn((The test_class you are using doesn't 
subclass from ZopeTestCase.Functional. 
-   Please fix that.), UserWarning, 2)
+   Please fix that.), UserWarning, 4)
 if not 'Functional' in name:
 name = 'Functional%s' % name
 test_class = type(name, (Functional, test_class), {})

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


[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py Fix stacklevel.

2007-04-05 Thread Stefan H. Holek
Log message for revision 74031:
  Fix stacklevel.
  

Changed:
  U   
Zope/branches/Zope-2_8-branch/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py

-=-
Modified: 
Zope/branches/Zope-2_8-branch/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
===
--- 
Zope/branches/Zope-2_8-branch/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
 2007-04-05 20:14:04 UTC (rev 74030)
+++ 
Zope/branches/Zope-2_8-branch/lib/python/Testing/ZopeTestCase/zopedoctest/functional.py
 2007-04-05 20:14:40 UTC (rev 74031)
@@ -287,7 +287,7 @@
 name = test_class.__name__
 warnings.warn((The test_class you are using doesn't 
subclass from ZopeTestCase.Functional. 
-   Please fix that.), UserWarning, 2)
+   Please fix that.), UserWarning, 4)
 if not 'Functional' in name:
 name = 'Functional%s' % name
 test_class = type(name, (Functional, test_class), {})

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


[Zope-dev] Zope Tests: 5 OK

2007-04-05 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Wed Apr  4 12:00:00 2007 UTC to Thu Apr  5 12:00:00 2007 UTC.
There were 5 messages: 5 from Zope Unit Tests.


Tests passed OK
---

Subject: OK : Zope-2.7 Python-2.3.6 : Linux
From: Zope Unit Tests
Date: Wed Apr  4 20:50:24 EDT 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-April/007543.html

Subject: OK : Zope-2.8 Python-2.3.6 : Linux
From: Zope Unit Tests
Date: Wed Apr  4 20:51:54 EDT 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-April/007544.html

Subject: OK : Zope-2.9 Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Wed Apr  4 20:53:25 EDT 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-April/007545.html

Subject: OK : Zope-2.10 Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Wed Apr  4 20:54:55 EDT 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-April/007546.html

Subject: OK : Zope-trunk Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Wed Apr  4 20:56:25 EDT 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-April/007547.html

___
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-dev] buildbot failure in Zope branches 2.10 2.4 Windows 2000 zc-bbwin2

2007-04-05 Thread buildbot
The Buildbot has detected a failed build of Zope branches 2.10 2.4 Windows 2000 
zc-bbwin2.

Buildbot URL: http://buildbot.zope.org/

Build Reason: changes
Build Source Stamp: 871
Blamelist: 
alecm,baijum,batlogg,ctheune,dobe,fdrake,jens,jim,jinty,jukart,mgedmin,mj,mkerrin,philikon,rogerineichen,schwendinger,shh,srichter,timt,wichert

BUILD FAILED: failed failed slave lost

sincerely,
 -The Buildbot

___
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-dev] buildbot failure in Zope branches 2.9 2.4 Linux zc-buildbot

2007-04-05 Thread buildbot
The Buildbot has detected a failed build of Zope branches 2.9 2.4 Linux 
zc-buildbot.

Buildbot URL: http://buildbot.zope.org/

Build Reason: changes
Build Source Stamp: 876
Blamelist: shh

BUILD FAILED: failed svn

sincerely,
 -The Buildbot

___
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-dev] buildbot failure in Zope branches 2.10 2.4 Linux zc-buildbot

2007-04-05 Thread buildbot
The Buildbot has detected a failed build of Zope branches 2.10 2.4 Linux 
zc-buildbot.

Buildbot URL: http://buildbot.zope.org/

Build Reason: changes
Build Source Stamp: 875
Blamelist: shh

BUILD FAILED: failed svn

sincerely,
 -The Buildbot

___
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-dev] buildbot failure in Zope trunk 2.4 Linux zc-buildbot

2007-04-05 Thread buildbot
The Buildbot has detected a failed build of Zope trunk 2.4 Linux zc-buildbot.

Buildbot URL: http://buildbot.zope.org/

Build Reason: changes
Build Source Stamp: 874
Blamelist: shh

BUILD FAILED: failed svn

sincerely,
 -The Buildbot

___
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-dev] buildbot failure in Zope branches 2.9 2.4 Windows 2000 zc-bbwin2

2007-04-05 Thread buildbot
The Buildbot has detected a failed build of Zope branches 2.9 2.4 Windows 2000 
zc-bbwin2.

Buildbot URL: http://buildbot.zope.org/

Build Reason: changes
Build Source Stamp: 876
Blamelist: shh

BUILD FAILED: failed failed slave lost

sincerely,
 -The Buildbot

___
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 )


Re: [Zope] Re: ImportError: No module named cPersistence when creating new instance

2007-04-05 Thread michael nt milne

if the make install step had been missed then wouldn't the initial zope
instance be faulty?

On 4/4/07, Laurence Rowe [EMAIL PROTECTED] wrote:


Sounds like you have missed the make install step. You should then be
able to run $SOFTWARE_HOME/bin/mkzopeinstance.py directly to create a
new instance using this version of the software.

Laurence


michael nt milne wrote:
 yes, the main instance runs fine but not the new one which was created
 using mkzopeinstance.py...I checked the archives but they don't help

 On 4/4/07, *Martijn Pieters *
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:

 On 4/4/07, michael nt milne 
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
   I'm getting this when running ./zopectl after creating a new
 instance. This
   was simply using the /utilities/mkzopeinstance.py script from
 within the
   main zope directory and running the system python on it. The
original
   instance works fine but not the new one. Any ideas?

 Did you compile the Zope C extensions? ./configure; make

 --
 Martijn Pieters




 --
 michael


 

 ___
 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 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 )





--
michael
___
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 )