Re: [Zope] Deleting a file in Python

2007-08-27 Thread Paul Winkler
APIs... it was never finished or updated for zope later than 2.7, but it's a lot better than nothing: http://www.plope.com/Books/2_7Edition/AppendixB.stx -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman

Re: [Zope] How to upgrade Python in older Zope?

2007-09-11 Thread Paul Winkler
accidentally rely on a security weakness that was subsequently tightened, so you get permission denied at unexpected times until your code and/or configuration is fixed. Install and turn on VerboseSecurity, it's a big help with things like that. -- Paul Winkler http://www.slinkp.com

Re: [Zope] How to know what are zope doing now?

2007-09-19 Thread Paul Winkler
time Is this posible? How can I know what my server is doing? -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope] storing python objects

2007-10-25 Thread Paul Winkler
On Thu, Oct 25, 2007 at 03:19:10PM -0700, David Bear wrote: but I've never seen this documented anywhere. Is it possible to store basic python objects directly in zodb? http://www.zope.org/Documentation/Books/ZDG/current/Persistence.stx -- Paul Winkler http://www.slinkp.com

Re: [Zope] Defining a dictionary in ZPT?

2007-11-01 Thread Paul Winkler
tal:replace=results/firstnameFirst Name/spannbsp; /li li tal content doesn't make any sense. I suspect you want that to be: li tal:define=results ... -- Paul Winkler ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope

[Zope] test, please ignore

2008-01-22 Thread Paul Winkler
I haven't received any mail from zope.org in quite while... -- http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists -

Re: [Zope] When to use a relational database

2008-02-09 Thread Paul Winkler
? Is it similarly true for the storing of DTML documents? You're confused. The relative speed of ZPT and DTML have only to do with rendering time. As far as the ZODB is concerned, they are equivalent. -- Paul Winkler http://www.slinkp.com ___ Zope maillist

Re: [Zope] Managing Zope objects in Subversion

2008-03-02 Thread Paul Winkler
/FSDump Definitely worth a try. -- Paul Winkler http://www.slinkp.com ___ 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

Re: [Zope] ZSyncer Zope 2.10

2008-03-31 Thread Paul Winkler
unlikely to do any ZSyncer-related work unless somebody pays me to do so. -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope] ZSyncer Zope 2.10

2008-04-01 Thread Paul Winkler
unlikely to do any ZSyncer-related work unless somebody pays me to do so. -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope] Re: zope-memory-readings

2008-05-30 Thread Paul Winkler
On Fri, May 30, 2008 at 3:56 PM, Tres Seaver [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter Bengtsson wrote: Check it out http://code.google.com/p/zope-memory-readings/ Perhaps useful Looks really cool. Thanks for releasing it! Yeah. It also looks nicely

[Zope] Call for new ZSyncer maintainer

2008-06-11 Thread Paul Winkler
. * The code is, in my opinion, badly in need of refactoring and cleaning up. * There is a suite of ZopeTestCase tests. Should probably be broken up into smaller cases. -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http

Re: [Zope] Re: Cache

2008-06-25 Thread Paul Winkler
/python /usr/local/Zope-2.9.6/bin/zeopack.py -p $PORT -S $STORAGE -d $PACKDAYS That's for packing the storage, which is totally different. -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo

Re: [Zope] Re: Deployment Best Practices?

2008-07-13 Thread Paul Winkler
that. Then you'd only ever have to change your application's site.zcml to load a new plugin. There's also this: http://pypi.python.org/pypi/z3c.autoinclude -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org

Re: [Zope] manage_cutObjects/manage_pasteObjects problem ...

2008-07-30 Thread Paul Winkler
a trailing comma: copy_info = obj_parent.manage_cutObjects((context.getId(),)) But that's not causing your problem; manage_cutObjects() helpfully wraps a string argument in a tuple for you. -- Paul Winkler http://www.slinkp.com ___ Zope maillist

Re: [Zope] Re: Problems with buildout and zope.interface

2008-07-30 Thread Paul Winkler
will then fetch and run virtualenv, install easy_install into the virtualenv, and do anything else you put in your bootstrapper. Personally I've never tried combining virtualenv and buildout. -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope

Re: [Zope] TAL conditional expression

2008-09-05 Thread Paul Winkler
On Fri, Sep 05, 2008 at 01:05:23PM -0700, David Bear wrote: Also, I would like to be able to use the same request object in both my template and the macro, but my macro doesn's seem to have access to the same request object. It is the same request. -- Paul Winkler http://www.slinkp.com

Re: [Zope] script calling template

2008-09-11 Thread Paul Winkler
, as per this document: http://plope.com/Books/2_7Edition/BasicScripting.stx#1-3 So, in your script, something like: doc = context.restrictedTraverse(some_path) return context.mytemplate(mydoc=doc) Then, in your template just do: p tal:content=structure options/mydoc/getText/p -- Paul Winkler

Re: [Zope] Security for objects being called

2008-09-16 Thread Paul Winkler
/Books/2_7Edition/Security.stx#2-62 -- Paul Winkler http://www.slinkp.com ___ 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

Re: [Zope] Security for objects being called

2008-09-17 Thread Paul Winkler
. -- Paul Winkler http://www.slinkp.com ___ 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

Re: [Zope] documentation for ZCatalog apart from the Zope Book?

2008-09-17 Thread Paul Winkler
/PluginIndexes. -- Paul Winkler http://www.slinkp.com ___ 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

Re: [Zope] Displaying PIL Images in Zope Templates

2008-09-17 Thread Paul Winkler
? Call its tag method. span tal:replace=structure item/tag / -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope] Displaying PIL Images in Zope Templates

2008-09-19 Thread Paul Winkler
, 'tag') Whoops, sorry, I didn't realize these were PIL images, I thought they were OFS.Image or some such. But I see you already got the solution. - PW -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org

Re: [Zope] Storing unicode in ZODB objects

2008-12-16 Thread Paul Winkler
= / Or, better, put the define in a tag that actually serves a purpose and you can leave out the omit-tag as well: head tal:define=dummy python:... ... /head -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman

[Zope] TraversalError in custom TALES namespace during Five tests

2008-12-16 Thread Paul Winkler
; pdb.set_trace() self.context = context def member_title(self): return member_title(self.context) ... Thanks for any advice, - Paul Winkler -- http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman

Re: [Zope] Touching an object / updating the modification time

2009-03-27 Thread Paul Winkler
(and then, if you're running in eg. a zopectl debug prompt, import transaction; transaction.commit()) -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding

Re: [Zope] Touching an object / updating the modification time

2009-03-30 Thread Paul Winkler
this in untrusted code. http://docs.zope.org/zope2/zope2book/source/ScriptingZope.html#script-security Another approach would be to just change any (small) attribute of the object. Something like: some_image.title = some_image.title -- Paul Winkler http://www.slinkp.com

Re: [Zope] ZSyncer fails to do authenticate under Zope 2.11

2009-07-16 Thread Paul Winkler
with ZSyncer-0.7.1 using a configuration which worked with Zope 2.9 and an earler version of the ZSyncer product. Both use Python 2.4. Has anyone seen this problem? Can you recommend a fix? Is the CVS version of ZSyncer on Sourceforge a better choice? -- Paul Winkler http://www.slinkp.com

Re: [Zope] ZSyncer fails to do authenticate under Zope 2.11

2009-07-16 Thread Paul Winkler
process. On Thu, Jul 16, 2009 at 8:37 AM, Paul Winkler sli...@gmail.com wrote: Nobody (including me) is maintaining ZSyncer at all. I'll take this opportunity to once again call for volunteers to take up the reins... anybody care enough about ZSyncer to maintain it? - Paul On Wed

Re: [Zope] Question about ZSyncer

2009-07-22 Thread Paul Winkler
That is supposed to work, if you enable the relative paths option. In fact, that was how I did most of my testing when I added that feature. But I don't work on ZSyncer at all anymore. If it doesn't work, I can't really help. - PW On Wed, Jul 22, 2009 at 6:20 AM, Ajay

Re: [Zope] maintaining session variables using zeocluster

2009-09-14 Thread Paul Winkler
-end server. Read the Sessions section of http://www.apsis.ch/pound/ The problem with this approach is that it tends to reduce the effectiveness of load-balancing. -- Paul Winkler http://www.slinkp.com ___ Zope maillist - Zope@zope.org https

[Zope-Checkins] SVN: Zope/branches/slinkp-collector_596/ Cleaned up an old branch.

2005-11-13 Thread Paul Winkler
Log message for revision 40067: Cleaned up an old branch. Changed: D Zope/branches/slinkp-collector_596/ -=- ___ Zope-Checkins maillist - Zope-Checkins@zope.org http://mail.zope.org/mailman/listinfo/zope-checkins

[Zope-Checkins] SVN: Zope/branches/slinkp_1726_zopeundo/ Cleaned out old branch.

2005-11-13 Thread Paul Winkler
Log message for revision 40069: Cleaned out old branch. Changed: D Zope/branches/slinkp_1726_zopeundo/ -=- ___ Zope-Checkins maillist - Zope-Checkins@zope.org http://mail.zope.org/mailman/listinfo/zope-checkins

[Zope-Checkins] SVN: Zope/branches/slinkp-configure_changes/configure - No longer try to execute directories.

2005-11-13 Thread Paul Winkler
Log message for revision 40075: - No longer try to execute directories. Changed: U Zope/branches/slinkp-configure_changes/configure -=- Modified: Zope/branches/slinkp-configure_changes/configure === ---

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/PythonScripts/module_access_examples.py Removed some unused imports.

2005-12-02 Thread Paul Winkler
Log message for revision 40494: Removed some unused imports. Changed: U Zope/trunk/lib/python/Products/PythonScripts/module_access_examples.py -=- Modified: Zope/trunk/lib/python/Products/PythonScripts/module_access_examples.py

[Zope-Checkins] SVN: Zope/trunk/doc/INSTALL.txt Trivial typo, WEBSERVER.txt was misspelled.

2005-12-12 Thread Paul Winkler
Log message for revision 40731: Trivial typo, WEBSERVER.txt was misspelled. Changed: U Zope/trunk/doc/INSTALL.txt -=- Modified: Zope/trunk/doc/INSTALL.txt === --- Zope/trunk/doc/INSTALL.txt 2005-12-12 15:56:57 UTC (rev

[Zope-Checkins] SVN: Zope/branches/2.9/doc/ Trivial doc fixes from trunk.

2005-12-12 Thread Paul Winkler
Log message for revision 40736: Trivial doc fixes from trunk. Changed: U Zope/branches/2.9/doc/FAQ.txt U Zope/branches/2.9/doc/INSTALL.txt -=- Modified: Zope/branches/2.9/doc/FAQ.txt === ---

[Zope-Checkins] SVN: Zope/branches/2.9/ OFS ObjectManager: Fixed list_imports() to tolerate missing

2005-12-12 Thread Paul Winkler
Log message for revision 40756: OFS ObjectManager: Fixed list_imports() to tolerate missing import directories. (Merged from trunk.) Changed: U Zope/branches/2.9/doc/CHANGES.txt U Zope/branches/2.9/lib/python/OFS/ObjectManager.py U

[Zope-Checkins] SVN: Zope/trunk/ Fixed collector 2057: Testing.makequest broke getPhysicalPath()

2006-04-05 Thread Paul Winkler
Log message for revision 66581: Fixed collector 2057: Testing.makequest broke getPhysicalPath() when used on anything other than an app object. Also added an 'environ' argument if you want to use something other than os.environ, and added a couple trivial tweaks from

[Zope-Checkins] SVN: Zope/trunk/lib/python/Testing/ZopeTestCase/utils.py Removed duplicate code from ZopeTestCase.utils.makerequest;

2006-04-05 Thread Paul Winkler
Log message for revision 66582: Removed duplicate code from ZopeTestCase.utils.makerequest; it now wraps Testing.makerequest.makerequest(). Changed: U Zope/trunk/lib/python/Testing/ZopeTestCase/utils.py -=- Modified: Zope/trunk/lib/python/Testing/ZopeTestCase/utils.py

[Zope-Checkins] SVN: Zope/branches/2.9/ Merged makerequest fixes from trunk (collector 2057).

2006-04-05 Thread Paul Winkler
Log message for revision 66583: Merged makerequest fixes from trunk (collector 2057). Changed: U Zope/branches/2.9/doc/CHANGES.txt U Zope/branches/2.9/lib/python/Testing/ZopeTestCase/utils.py U Zope/branches/2.9/lib/python/Testing/makerequest.py A

[Zope-Checkins] SVN: Zope/branches/2.9/configure Fixed acceptable versions, it wouldn't accept 2.4.2 properly.

2006-04-06 Thread Paul Winkler
Log message for revision 66597: Fixed acceptable versions, it wouldn't accept 2.4.2 properly. Changed: U Zope/branches/2.9/configure -=- Modified: Zope/branches/2.9/configure === --- Zope/branches/2.9/configure 2006-04-06

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Products/Sessions/tests/testBrowserIdManager.py Tests should not pollute os.environ when a dict will do just fine;

2006-04-06 Thread Paul Winkler
Log message for revision 66605: Tests should not pollute os.environ when a dict will do just fine; this caused failures in testVirtualHostMonster when Testing/makerequest was modified. Changed: U Zope/branches/2.9/lib/python/Products/Sessions/tests/testBrowserIdManager.py -=-

[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/Sessions/tests/testBrowserIdManager.py Merged environment pollution fix from 2.9 branch.

2006-04-06 Thread Paul Winkler
Log message for revision 66609: Merged environment pollution fix from 2.9 branch. Changed: U Zope/trunk/lib/python/Products/Sessions/tests/testBrowserIdManager.py -=- Modified: Zope/trunk/lib/python/Products/Sessions/tests/testBrowserIdManager.py

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Testing/ Reverting refactoring of ZopeTestCase.utils.makerequest,

2006-04-06 Thread Paul Winkler
Log message for revision 66621: Reverting refactoring of ZopeTestCase.utils.makerequest, and the related addition of an environ argument to Testing.makerequest. This was not a bugfix, thus inappropriate for the stable branch. Apologies. Changed: U

[Zope-Checkins] SVN: Zope/trunk/lib/python/Testing/makerequest.py Fixed makerequest to not use os.environ by default.

2006-04-07 Thread Paul Winkler
Log message for revision 66651: Fixed makerequest to not use os.environ by default. Changed: U Zope/trunk/lib/python/Testing/makerequest.py -=- Modified: Zope/trunk/lib/python/Testing/makerequest.py === ---

[Zope-Checkins] SVN: Zope/trunk/ - Backed out workaround for 2057; on second thought,

2006-04-07 Thread Paul Winkler
Log message for revision 66656: - Backed out workaround for 2057; on second thought, adding a getPhysicalPath() on a request just smells bad, and it's not that hard to roll your own root object. - Fixed thinko with mutable default arg, duh. - Improved docstrings.

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Testing/tests/test_makerequest.py Belatedly removed test for the reverted 2057 bugfix. Whoops.

2006-04-11 Thread Paul Winkler
Log message for revision 66856: Belatedly removed test for the reverted 2057 bugfix. Whoops. Changed: U Zope/branches/2.9/lib/python/Testing/tests/test_makerequest.py -=- Modified: Zope/branches/2.9/lib/python/Testing/tests/test_makerequest.py

[Zope-Checkins] SVN: Zope/branches/slinkp-1447-httpcache-fix-branch/ making a branch to fix collector 1447,

2006-05-04 Thread Paul Winkler
Log message for revision 67975: making a branch to fix collector 1447, AcceleratedHTTPCacheManager doesn't PURGE correctly for virtual hosts Changed: A Zope/branches/slinkp-1447-httpcache-fix-branch/ -=- Copied: Zope/branches/slinkp-1447-httpcache-fix-branch (from rev 67974,

[Zope-Checkins] SVN: Zope/branches/slinkp-1447-httpcache-fix-branch/lib/python/Products/StandardCacheManagers/ Fixes and unit tests for http://www.zope.org/Collectors/Zope/1447:

2006-05-04 Thread Paul Winkler
Log message for revision 67976: Fixes and unit tests for http://www.zope.org/Collectors/Zope/1447: when editing content on a virtual-hosted zope, changes will purge correctly. Also simplified the test framework (no more need to launch an HTTP server). Changed: U

[Zope-Checkins] SVN: Zope/branches/slinkp-1447-httpcache-fix-branch/doc/CHANGES.txt Noted fix for 1447 in CHANGES.txt.

2006-05-04 Thread Paul Winkler
Log message for revision 67977: Noted fix for 1447 in CHANGES.txt. Changed: U Zope/branches/slinkp-1447-httpcache-fix-branch/doc/CHANGES.txt -=- Modified: Zope/branches/slinkp-1447-httpcache-fix-branch/doc/CHANGES.txt ===

[Zope-Checkins] SVN: Zope/trunk/ Merged slinkp-1447-httpcache-fix-branch, -r 67975:67977.

2006-05-04 Thread Paul Winkler
Log message for revision 67978: Merged slinkp-1447-httpcache-fix-branch, -r 67975:67977. Fixes issue with AcceleratedHTTPCacheManager sending PURGE from a virtual-hosted zope, and adds a bunch of related tests and comments. Changed: U Zope/trunk/doc/CHANGES.txt U

[Zope-Checkins] SVN: Zope/branches/2.9/ Merged slinkp-1447-httpcache-fix-branch, -r 67975:67977.

2006-05-04 Thread Paul Winkler
Log message for revision 67979: Merged slinkp-1447-httpcache-fix-branch, -r 67975:67977. Fixes issue with AcceleratedHTTPCacheManager sending PURGE from a virtual-hosted zope, and adds a bunch of related tests and comments. Changed: U Zope/branches/2.9/doc/CHANGES.txt U

[Zope-Checkins] SVN: Zope/branches/slinkp-httpcache-improvements-branch/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.py added some TODO notes.

2006-05-04 Thread Paul Winkler
Log message for revision 67984: added some TODO notes. Changed: U Zope/branches/slinkp-httpcache-improvements-branch/lib/python/Products/StandardCacheManagers/AcceleratedHTTPCacheManager.py -=- Modified:

[Zope-Checkins] SVN: Zope/trunk/lib/python/DateTime/ Merged the slinkp-datetime-200007 branch: fix the DateTime(anotherDateTime) constructor to preserve timezones.

2008-04-28 Thread Paul Winkler
Log message for revision 85830: Merged the slinkp-datetime-27 branch: fix the DateTime(anotherDateTime) constructor to preserve timezones. Changed: U Zope/trunk/lib/python/DateTime/DateTime.py U Zope/trunk/lib/python/DateTime/tests/testDateTime.py -=- Modified:

[Zope-Checkins] SVN: Zope/branches/2.9/ Merged the slinkp-datetime-200007 branch: fix the DateTime(anotherDateTime) constructor to preserve timezones.

2008-04-28 Thread Paul Winkler
Log message for revision 85837: Merged the slinkp-datetime-27 branch: fix the DateTime(anotherDateTime) constructor to preserve timezones. Changed: U Zope/branches/2.9/configure U Zope/branches/2.9/doc/CHANGES.txt U Zope/branches/2.9/lib/python/DateTime/DateTime.py U

[Zope-Checkins] SVN: Zope/branches/slinkp-zopectl-exitcode-143813/ Making a branch to fix https://bugs.launchpad.net/zope2/+bug/143813

2008-05-04 Thread Paul Winkler
Log message for revision 85724: Making a branch to fix https://bugs.launchpad.net/zope2/+bug/143813 Changed: A Zope/branches/slinkp-zopectl-exitcode-143813/ -=- Copied: Zope/branches/slinkp-zopectl-exitcode-143813 (from rev 85723, Zope/trunk)

[Zope-Checkins] SVN: Zope/branches/slinkp-zopectl-exitcode-143813/lib/python/Zope2/Startup/zopectl.py Fixes bug 143813: zopectl should exit non-zero if child processes fail.

2008-05-04 Thread Paul Winkler
Log message for revision 85725: Fixes bug 143813: zopectl should exit non-zero if child processes fail. Changed: U Zope/branches/slinkp-zopectl-exitcode-143813/lib/python/Zope2/Startup/zopectl.py -=- Modified:

[Zope-Checkins] SVN: Zope/branches/2.11/ Fixes bug 143813: zopectl should exit non-zero if child processes fail.

2008-05-04 Thread Paul Winkler
Log message for revision 85727: Fixes bug 143813: zopectl should exit non-zero if child processes fail. Changed: U Zope/branches/2.11/doc/CHANGES.txt U Zope/branches/2.11/lib/python/Zope2/Startup/zopectl.py -=- Modified: Zope/branches/2.11/doc/CHANGES.txt

[Zope-Checkins] SVN: Zope/branches/slinkp-datetime-200007/ branch for fixing https://bugs.launchpad.net/zope2/+bug/200007

2008-05-04 Thread Paul Winkler
Log message for revision 85733: branch for fixing https://bugs.launchpad.net/zope2/+bug/27 Changed: A Zope/branches/slinkp-datetime-27/ -=- Copied: Zope/branches/slinkp-datetime-27 (from rev 85732, Zope/trunk) ___ Zope-Checkins

[Zope-Checkins] SVN: Zope/branches/slinkp-datetime-200007/lib/python/DateTime/ Fix for launchpad #200007: DateTime() surprisingly changes timezone if passed a DateTime instance.

2008-05-04 Thread Paul Winkler
Log message for revision 85734: Fix for launchpad #27: DateTime() surprisingly changes timezone if passed a DateTime instance. Changed: U Zope/branches/slinkp-datetime-27/lib/python/DateTime/DateTime.py U

[Zope-Checkins] SVN: Products.Five/branches/1.4/CHANGES.txt Fix release dates of 1.4.4 and 1.4.3 in CHANGES.txt. Commit logs reveal that they were off by 1 year

2008-05-29 Thread Paul Winkler
Log message for revision 87037: Fix release dates of 1.4.4 and 1.4.3 in CHANGES.txt. Commit logs reveal that they were off by 1 year Changed: U Products.Five/branches/1.4/CHANGES.txt -=- Modified: Products.Five/branches/1.4/CHANGES.txt

[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/Products/PageTemplates/PageTemplateFile.py Merge r41209 from trunk (use proper call signature for logging, not zLOG)

2008-06-03 Thread Paul Winkler
Log message for revision 87132: Merge r41209 from trunk (use proper call signature for logging, not zLOG) Changed: U Zope/branches/2.9/lib/python/Products/PageTemplates/PageTemplateFile.py -=- Modified: Zope/branches/2.9/lib/python/Products/PageTemplates/PageTemplateFile.py

[Zope-Checkins] SVN: Zope/trunk/ Fix for launchpad #267545: DateTime(DateTime()) should preserve the correct hour

2008-09-07 Thread Paul Winkler
Log message for revision 90920: Fix for launchpad #267545: DateTime(DateTime()) should preserve the correct hour Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/DateTime/DateTime.py U Zope/trunk/lib/python/DateTime/tests/testDateTime.py -=- Modified:

[Zope-Checkins] SVN: Zope/branches/2.11/ Fix for launchpad #267545: DateTime(DateTime()) should preserve the correct hour

2008-09-07 Thread Paul Winkler
Log message for revision 90921: Fix for launchpad #267545: DateTime(DateTime()) should preserve the correct hour Changed: U Zope/branches/2.11/doc/CHANGES.txt U Zope/branches/2.11/lib/python/DateTime/DateTime.py U Zope/branches/2.11/lib/python/DateTime/tests/testDateTime.py -=-

[Zope-Checkins] SVN: Zope/branches/2.10/ Fix for launchpad #267545: DateTime(DateTime()) should preserve the correct hour

2008-09-07 Thread Paul Winkler
Log message for revision 90922: Fix for launchpad #267545: DateTime(DateTime()) should preserve the correct hour Changed: U Zope/branches/2.10/doc/CHANGES.txt U Zope/branches/2.10/lib/python/DateTime/DateTime.py U Zope/branches/2.10/lib/python/DateTime/tests/testDateTime.py -=-

[Zope-Checkins] SVN: Zope/trunk/ Simpler, faster implementation of DocumentTemplate.DT_Var.newline_to_br(), with tests.

2008-11-18 Thread Paul Winkler
Log message for revision 93099: Simpler, faster implementation of DocumentTemplate.DT_Var.newline_to_br(), with tests. Changed: U Zope/trunk/doc/CHANGES.txt U Zope/trunk/lib/python/DocumentTemplate/DT_Var.py A Zope/trunk/lib/python/DocumentTemplate/tests/test_DT_Var.py -=-

Re: [Zope-Coders] Wrong username and password == Anonymous User?

2005-04-20 Thread Paul Winkler
. ;) That's what I was trying to tease out but I couldn't put my finger on it late last night. Thanks Lennart. -- Paul Winkler http://www.slinkp.com ___ Zope-Coders mailing list Zope-Coders@zope.org http://mail.zope.org/mailman/listinfo/zope-coders

Re: [Zope-Coders] Zope 2.8 coming this weekend

2005-06-10 Thread Paul Winkler
branch? I'm playing with a checkout of the Zope-2_8-branch right now, and while I was looking at doc/*txt to see what if anything is said about migrating to 2.8, I noticed some really trivial typos which I'd gladly check in (and merge to the trunk too). 5710 unit tests... holy cow. -- Paul Winkler

[Zope-dev] Re: CRITICAL!!!! CVS: Zope/lib/python/OFS - Image.py:1.141.4.3

2002-12-17 Thread Paul Winkler
, Andy - you asked me yesterday to verify that you'd checked in everything I'd sent you, and I said yes. There was also a change to lib/python/Products/OFSP/help/Response.py that was part of my fix for #342 as well, did that make it in? -- Paul Winkler http://www.slinkp.com Welcome to Muppet

[Zope-dev] z3 sprint at pycon?

2002-12-20 Thread Paul Winkler
Is anybody planning a zope 3 sprint at pycon? would be a good excuse for me to dive into z3 :) -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's COMPLEX ICE WITICIST! (courtesy of isometric.spaceninja.com) ___ Zope-Dev maillist

Re: [Zope-dev] Zope Publishing

2003-01-08 Thread Paul Winkler
when actually deploying a site, the system should resolve those images and put the required files. I don't know of any existing tool to do that for zope. You'd have to write your own. -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's PERFORMANCE ARTIST A-THON! (courtesy

Re: [Zope-dev] AdaptableStorage

2003-01-15 Thread Paul Winkler
... finally, a fully really transparent unix filesystem - ZODB solution that isn't a half-assed version of either! didn't get into detail but it seems like it should be doable. -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's THE BUTTERY THIGH! (courtesy

Re: [Zope-dev] [PATCH] Forking daemon in debug mode, and new start scripts

2003-01-21 Thread Paul Winkler
it's going to be possible in the short term. What he said. :( -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's THE TONGUE! (courtesy of isometric.spaceninja.com) ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org

Re: [Zope-dev] [PATCH] Forking daemon in debug mode, and new start scripts

2003-01-21 Thread Paul Winkler
suggesting a change to ZEO/start.py, to which I objected. Oh well. What a waste of time. Now I'm lost. He posted a patch to lib/python/zdaemon/Daemon.py. Nobody said anything about ZEO/start.py. -- Paul Winkler http://www.slinkp.com ___ Zope-Dev

[Zope-dev] absolute_url: why not publishable?

2003-02-05 Thread Paul Winkler
a stupidHttpClient.) - Paul Winkler http://www.slinkp.com Look! Up in the sky! It's HIGHLY TOXIC PIRATE! (random hero from isometric.spaceninja.com) ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross

Re: [Zope-dev] absolute_url: why not publishable?

2003-02-05 Thread Paul Winkler
. if I had the time, I'd go through the API Reference and catalog methods that are callable by URL and methods that are not, and try to make some sense of it. I suspect it would be pretty random ;-) For now, I think I will file a feature request patch in the collector. -- Paul Winkler http

[Zope-dev] What makes Zope twirl?

2003-02-06 Thread Paul Winkler
useful? * this does not sound like other zope spins I have heard of, in which python eats 99% CPU indefinitely due to (probably) an application error. see for example: http://www.zopezen.org/Members/zopista/News_Item.2003-01-28.1025 -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's

Re: [Zope-dev] What makes Zope twirl?

2003-02-07 Thread Paul Winkler
spin on a production zope system since Jan 1. My group has had *several* BEA server crashes in the same time. I consider Zope to be much more reliable than BEA. -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's LORD ORIGINATOR I LOVE YOU! (random hero from isometric.spaceninja.com

Re: [Zope-dev] Zope Server Control

2003-02-07 Thread Paul Winkler
to development of such a beast. Oooh! Oooh! One more: build in a window with a python prompt that connects straight in to a ZEO debugging session ( (possibly remotely). -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's BETA CAPTAIN! (random hero from isometric.spaceninja.com

Re: [Zope-dev] Zope Server Control

2003-02-07 Thread Paul Winkler
On Fri, Feb 07, 2003 at 03:16:46PM -0500, Shane Hathaway wrote: Okay, I added some features to the mockup: http://hathaway.freezope.org/Images/controller_snapshot2.png I dig it. (clicking on the mockup buttons) Ungh. Can't seem to make it work. (drool drool) -- Paul Winkler http

Bare except dangerous to ZODB? was Re: [Zope-dev] Accept-Charset hearders causing 500 internal server error.[correct but not lenient]

2003-02-10 Thread Paul Winkler
: {} \; | wc -l 133 Great, so there's at least 133 things to examine to see if they could catch a ConflictError. And I only wrote about 15 of those. The rest could be very time-consuming to audit. -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's THE GOBLET! (random hero from

Re: [Zope-dev] Multiple author and reviewer roles in Zope CMF

2003-02-12 Thread Paul Winkler
that as a Feature Request bug. +1 -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's JANITORIAL-BROOM-NINJA ANDREA KEG! (random hero from isometric.spaceninja.com) ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo

Re: [Zope-dev] Multiple author and reviewer roles in Zope CMF

2003-02-12 Thread Paul Winkler
On Thu, Feb 13, 2003 at 11:14:18AM +1100, Adrian van den Dries wrote: On February 12, Paul Winkler wrote: While we're on the subject - are local roles acquired in subfolders? Yes, to the point that globals roles are actually redundant, but serve as an optimisation of a local role

[Zope-dev] LOTS of roles?

2003-02-21 Thread Paul Winkler
applications, not all in zope, so LDAP is looking attractive. -- Paul Winkler http://www.slinkp.com ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists

Re: [Zope-dev] LOTS of roles?

2003-02-22 Thread Paul Winkler
. -- Paul Winkler www.slinkp.com ___ Zope-Dev maillist - [EMAIL PROTECTED] 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

Re: [Zope-dev] LOTS of roles?

2003-02-24 Thread Paul Winkler
do that in one place (LDAP) by adding or removing a role or two. You might wind up with less roles and I bet administration is a lot easier. my guess is that in our case, the number of roles would be comparable. 200 sites * 10 tasks = 2000 roles 200 sites * 10 users = 2000 roles -- Paul

Re: [Zope-dev] LOTS of roles?

2003-02-24 Thread Paul Winkler
greatly appreciate it if you could expand on this suggestion. Thanks! -- Paul Winkler http://www.slinkp.com ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related

Re: [Zope-dev] LOTS of roles?

2003-02-24 Thread Paul Winkler
user.getRolesInContext, but none of its default auth sources use this so far. Hope I made some sense :-) I think so. This stuff makes my head hurt. :) -- Paul Winkler http://www.slinkp.com ___ Zope-Dev maillist - [EMAIL PROTECTED] http

Re: [Zope-dev] LOTS of roles?

2003-02-25 Thread Paul Winkler
On Tue, Feb 25, 2003 at 11:33:54PM +0100, Dieter Maurer wrote: Paul Winkler wrote at 2003-2-24 16:27 -0500: ... It is easy to optimize this to u + a (via a dictionary), then thousands of roles should not be a problem. would that mean you have to build a (potentially huge

Re: [Zope-dev] LOTS of roles?

2003-03-04 Thread Paul Winkler
? there's a comment in there about checking roles manaully rather than with getRolesInContext... -- Paul Winkler http://www.slinkp.com ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML

Re: [Zope-dev] Declaring Dependencies for XML documents (Was: HowTo Improve Cache Coherency for RAM/Disk Cache Manager...?)

2003-03-04 Thread Paul Winkler
servers and push them to production in a big bunch. -- Paul Winkler http://www.slinkp.com ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope-dev] Re: [Vote] PEP308 voting began

2003-03-04 Thread Paul Winkler
On Tue, Mar 04, 2003 at 03:21:57PM -0600, Evan Simpson wrote: Is this worth a robust implementation, ZPT folks? maybe, but i'd rather first wait and see how the PEP goes. it would suck to have to constantly deal with two totally different flavors of ternary. -- Paul Winkler http

Re: Security internals, was Re: [Zope-dev] LOTS of roles?

2003-03-06 Thread Paul Winkler
a cache. !! OMG !!! thank you - for some obscure reason it never would have occurred to me in a million years that LDAPUserFolder already does this. Well, duh. Huzzah open-source software! Amen! -- Paul Winkler http://www.slinkp.com

Re: [Zope-dev] Re: [Vote] PEP308 voting began

2003-03-07 Thread Paul Winkler
the python expressions into a Script. If they were some new-fangled if: then: else: syntax in TAL, you'd have to rewrite from scratch... and we're right back in the mess we got into with DTML: the poor developer is forced to learn many ways of doing the same thing. -- Paul Winkler http

Re: [Zope-dev] Proposed installation changes for review

2003-03-10 Thread Paul Winkler
and this depends on debug mode (booo) ? -- Paul Winkler http://www.slinkp.com ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org

Re: [Zope-dev] Proposed installation changes for review

2003-03-10 Thread Paul Winkler
On Tue, Mar 11, 2003 at 12:11:25PM +1100, Adrian van den Dries wrote: Debug mode needs to be broken out into directives for its real effects. +L -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's ULTRA PENGUIN! (random hero from

Re: [Zope] Re: [Zope-dev] Proposed installation changes for review

2003-03-10 Thread Paul Winkler
On Mon, Mar 10, 2003 at 10:31:13PM -0500, Fred L. Drake, Jr. wrote: Detaching, or daemonizing, will be a separate configuration parameter from everything else. great, that is exactly what i really want. -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's GARGANTUAN SKULL

Re: [Zope] Re: [Zope-dev] Proposed installation changes for review

2003-03-11 Thread Paul Winkler
environment everywhere for sanity's sake * interactive debugging is very cool and has saved my butt more than once. -- Paul Winkler http://www.slinkp.com Look! Up in the sky! It's FAT BOY! (random hero from isometric.spaceninja.com) ___ Zope-Dev

Re: [Zope] Re: [Zope-dev] Proposed installation changes for review

2003-03-11 Thread Paul Winkler
nearly every day. of course it's just a convenience, but it's an important convenience because nearly every document i can find on debugging Zope says roughly ...and of course you can use ZEO, but that's beyond the scope of this article... -- Paul Winkler http://www.slinkp.com

<    1   2   3   4   5   6   7   >