[Zope-Checkins] SVN: Zope/trunk/lib/python/ use a specific revision of the Zope 3 trunk for now until we have some sort of tag

2005-11-11 Thread Philipp von Weitershausen
Log message for revision 40048: use a specific revision of the Zope 3 trunk for now until we have some sort of tag available (e.g. a Zope 3.2 beta tag). Changed: _U Zope/trunk/lib/python/ _U Zope/trunk/lib/python/zope/ -=- Property changes on: Zope/trunk/lib/python

Re: [Zope] Zope 2.8 or 3.1?

2005-11-11 Thread Luca Olivetti
En/na Jens Vagelpohl ha escrit: The only issues you might ever run into would be problems with the Python that comes with the OS. But then again if you run Zope in production you should never ever use the system Python and build your own instead. The system Python tends to be compiled with

Re: [Zope] help with url rewriting

2005-11-11 Thread Chris Withers
Faheem Mitha wrote: Why not just: /plone(.*) This is the way to go, I don't know what Sascha meant when he was talking about 2 rules. However, he did have a very good point about SSL. If you want Apache to do the SSL encryption and decryption, then you need to set up mod_ssl, sort out

Re: [Zope] msSql and python

2005-11-11 Thread Bertrand Croq
Floyd May a écrit : You can do it like this (inside the query): --8 dtml-if description WHERE description = dtml-sqlvar description type=string /dtml-if --8 Or like this: dtml-sqlgroup where dtml-if description

[Zope] Problem Inserting zsql query result

2005-11-11 Thread Ivan Stout
Greetings, I would like to insert the results of a query into another table and am doing this from a python script. I am setting the results of a queryequal to a variable with the following: variable = container.zsql_method(paramater=value)[0][0] This gives the results I want (in this case 0),

Re: [Zope] Problem Inserting zsql query result

2005-11-11 Thread Peter Bengtsson
On 11/11/05, Ivan Stout [EMAIL PROTECTED] wrote: Greetings, I would like to insert the results of a query into another table and am doing this from a python script. I am setting the results of a queryequal to a variable with the following: variable =

Re: [Zope] Problem Inserting zsql query result

2005-11-11 Thread Ivan Stout
Peter, Thank you, but unfortunately I still get the same error due to the newline character being there and still cannot remove it with variable.replace. Can a long object be converted to a string or integer some way? On 11/12/05, Peter Bengtsson [EMAIL PROTECTED] wrote: On 11/11/05, Ivan Stout

[Zope] experience w/ filestorage mount points? maximum?

2005-11-11 Thread Christoph Berendes
I am writing to tap the list's experience with running a single zope instance with a large number (30, 500, 2000?) of mount points. We're hosting a number of client sites, and for each client, e.g. clientX, we have a mount point: zodb_db clientX mount-point /clientX filestorage path

[Zope] Foundation status update

2005-11-11 Thread Rob Page
Hello everyone: We wanted to send an update on the status of the Zope Foundation. We circulated a number of documents to an advisory committee. The comments were excellent and precise. The comments also identified a number of documents that needed to be either developed or updated before we

Re: [Zope] help with url rewriting

2005-11-11 Thread Faheem Mitha
On Fri, 11 Nov 2005, Chris Withers wrote: Faheem Mitha wrote: Why not just: /plone(.*) This is the way to go, I don't know what Sascha meant when he was talking about 2 rules. However, he did have a very good point about SSL. If you want Apache to do the SSL encryption and decryption,

[Zope] plone contents error

2005-11-11 Thread José Adalberto F. Gualeve
I have installed - Zope 2.7.0 - CMF: 1.4.2 - Plone CMFPlone-2.0-final I am trying to migrate to zope-2.8/plone-2.1.1, Whats happens that when I try to import the site that run in the oldest version is not making some things, for example, plone content. After I finished to install zope

Re: [Zope] Problem Inserting zsql query result

2005-11-11 Thread Peter Bengtsson
What kind of a strange message is that? MySQL server version for the right syntax to use near '0\n)' Is that the ErrorValue? It can't be converted to a long or in because it contains a ) not because of the \n What's the SQL you're trying to use? (Only need to see the SELECT ... part) On

Re: [Zope] Problem Inserting zsql query result

2005-11-11 Thread Ivan Stout
Yes, the full error message is the following: ProgrammingError: (1064, You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '0\n)' at line 9) Here is the select portion of the query I am running: select count(*)

[Zope] Schedule correction

2005-11-11 Thread Rob Page
Hello (again) everyone: Earlier I wrote: This process is nearing completion. We will send the updated set of docs to the advisory committee, collect feedback, incorporated that feedback and then circulate those drafts to the community. Rough schedule: Nov 14: Circulate updated docs to

[Zope] Re: Adding permission to an action yields infinite recursion

2005-11-11 Thread Dieter Maurer
Please stay on the list! Readded... Lars von Wedel wrote at 2005-11-10 10:49 +0100: ... I don't understand how or where this is taking place in my example. The page template called consists of static HTML only. Does the following action definition cause the problem? {'action':

[Zope] Basket 0.1 (New Zope Packaging Regime Product) Released

2005-11-11 Thread Chris McDonough
Basket is a Zope 2 product which allows you to employ the Python Egg format to deploy other Zope 2 products. The Python Egg packaging format is described at http://peak.telecommunity.com/DevCenter/ setuptools . The development of Basket was funded by the Goldegg initiative described at

[Zope] Re: plone contents error

2005-11-11 Thread Alexander Limi
On Fri, 11 Nov 2005 10:37:15 -0800, José Adalberto F. Gualeve [EMAIL PROTECTED] wrote: After I finished to install zope and plone, I added a new plone site from ZMI. Thats Ok, but, inside of new plone site I try to add one plone content. It adds, but when I try to visualize this plone

[Zope] Sessions and Persistence

2005-11-11 Thread Dennis Allison
Current configuration: Linux RH7.3 Zope 2.8.4 Python 2.4.2 (but the same is observed with Python 2.3.5) I continue to observe occasional failures of the Zope session variable mechanism. The problem manifests itself by a KeyError when accessing data in the session data container. We

Re: [Zope] help with url rewriting

2005-11-11 Thread Faheem Mitha
On Fri, 11 Nov 2005, Faheem Mitha wrote: On Fri, 11 Nov 2005, Chris Withers wrote: Faheem Mitha wrote: Why not just: /plone(.*) This is the way to go, I don't know what Sascha meant when he was talking about 2 rules. However, he did have a very good point about SSL. If you want