Re: [Zope] Problem With External Method (was: Second Request:: Where Is This Module???)

2006-08-09 Thread Dieter Maurer
but *NORMAL* behaviour. You did not make anything wrong. All it well -- apart from your error_log configuration (which should ignore Redirect). -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

Re: [Zope] mysql socket problem, MOSX 10.4.7

2006-08-09 Thread Dieter Maurer
connections there). -- Dieter ___ 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

Re: [Zope] LocalFS/Zope CGI Question

2006-08-09 Thread Dieter Maurer
did not aim for Web server functionality. -- Dieter ___ 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] ZEO Problem Clients Waiting

2006-08-08 Thread Dieter Maurer
the datatransfer from the appserver starts. The storage lock is set when one of these function is called: vote, abortVersion, commitVersion and undo. -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

Re: [Zope] EMERGENCY!

2006-08-08 Thread Dieter Maurer
the methods undoable_transactions and manage_undo_transactions. The transaction_info parameter to manage_undo_transactions is a sequence of tids where the tid stands for transaction id is is given by the id key in the result of undoable_transactions. -- Dieter

Re: [Zope] Where Is This Module?

2006-08-08 Thread Dieter Maurer
(they are not real exceptions but normal behaviour). -- Dieter ___ 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] Zope 2.9 Product Refreshing

2006-08-07 Thread Dieter Maurer
, this might force me to look into this problem earlier than I currently think. ... Dieter Maurer wrote a RefreshTool product lately (not sure if this would solve your problem and not sure if he released it). The refresh tool is employer's work and therefore not released. Furthermore, it solves

Re: [Zope] Re: Zope 2.9 Refreshing

2006-08-07 Thread Dieter Maurer
Peter Bengtsson wrote at 2006-8-7 15:14 +0100: ... Apparently the bug is somewhere deep in the ZODB code (thanks Dieter Maurer for pointing this out some time ago) and that's a domain I'm very very novice in debugging. You must have misinterpreted me: I can assure you that the ZODB

Re: [Zope] Zope 2.9 Product Refreshing

2006-08-07 Thread Dieter Maurer
? Or can even products not using Five not be refreshed? -- Dieter ___ 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] Zope 2.9 Product Refreshing

2006-08-07 Thread Dieter Maurer
session data must be stored persistently for this to work (which is considerably less efficient that storing them in RAM). -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding

Re: [Zope] ZEO Problem Clients Waiting

2006-08-07 Thread Dieter Maurer
persistency design (either far too huge objects or an immense number of tine objects or just some stupidity (e.g. writing objects unnecessary). -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

Re: [Zope] FastCGI server crashing

2006-08-07 Thread Dieter Maurer
, Apache abort the request. When Zope finally completes, it tries to send the response and fails because the connection was closed by Apache (that's the ZServer uncaptured python exception). You may try to increase the timeout -- or avoid long running requests ... -- Dieter

Re: [Zope] Zope 2.9 Product Refreshing

2006-08-07 Thread Dieter Maurer
it worse but even without it, we want something comparable to refresh. -- Dieter ___ 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

Re: [Zope] adding product-based objects programmatically

2006-08-04 Thread Dieter Maurer
far too old and outdated, and confuses people. The Zope Developer's Guide is still useful. We should keep it until we got something better... -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

Re: [Zope] adding product-based objects programmatically

2006-08-04 Thread Dieter Maurer
, your objects are likely to be already there. This means that you have explicitely to check for this case. -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists

Re: [Zope] maximum recursion depth exceeded - SimpleUserFolder

2006-08-04 Thread Dieter Maurer
that a customization method getUserIds is present. Apparently, it is missing. Therefore, it is acquired -- and this enters an infinite loop... -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML

Re: [Zope] Get uploaded file size

2006-08-03 Thread Dieter Maurer
is the file name and not a ZPublisher.HTTPRequest.FileUpload object, then you are doing something wrong. Either you use an HTTP GET request or you do not use multipart/formdata as mime type. A FileUpload object behaves like a file and you can use the usual way to determine its size. -- Dieter

Re: [Zope] adding product-based objects programmatically

2006-08-03 Thread Dieter Maurer
, dispatcher lacks a Destination method. Why are you using it? Usually dispatcher._setObject is enough. -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists

Re: [Zope] Can't nest dtml-in using prefix ...

2006-08-02 Thread Dieter Maurer
Jesper Steen Steffensen wrote at 2006-7-29 22:30 +0200: ... @ Dieter - thanks for clearing that up. Maybe [sequence]-var-[variable] or rather outer-var-role will work then.. Will give it a try when I get back to work. I am unaware that this will work -- though I may be wrong. Usually, you would

Re: [Zope] WebServices

2006-08-02 Thread Dieter Maurer
is a bit more difficult. Again, the libraries above can help you with it. -- Dieter ___ 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

Re: [Zope] How can i improve performance of website under heavy load in Zope2.6.1

2006-08-02 Thread Dieter Maurer
increases linearly with the number of connections. ... Can anyone suggest any other option to improve performance under heavy load in Zope 2.6.1 Cache whatever is cachable... -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman

Re: [Zope] Newbie: Missing a Variable (TAL/METAL Question)

2006-07-29 Thread Dieter Maurer
. The tal:block is another standard use... Another advice: carefully read the PageTemplate section in the Zope Book (2.7 edition, on plope.org). -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross

Re: [Zope] Newbie: Missing a Variable (TAL/METAL Question)

2006-07-29 Thread Dieter Maurer
/number; number python:`number` I removed the global (as you no longer need it due to the introduction of tal:block). The `...` is a Python operator equivalent to a call to repr(...) which converts into a string. -- Dieter ___ Zope maillist - Zope

Re: [Zope] Can't nest dtml-in using prefix ...

2006-07-29 Thread Dieter Maurer
definied by the dtml-in. -- Dieter ___ 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

Re: [Zope] Newbie: Missing a Variable (TAL/METAL Question)

2006-07-28 Thread Dieter Maurer
, then repeat/variable/number should work. -- Dieter ___ 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] Newbie: Missing a Variable (TAL/METAL Question)

2006-07-27 Thread Dieter Maurer
like here/?var/ ?var reads the contents of the variable var and inserts this content into the path expression. Note that the value must be a string and that embedded '/' are *not* treated as path separators. -- Dieter ___ Zope maillist - Zope

Re: [Zope] VerboseSecurity not working

2006-07-27 Thread Dieter Maurer
in the ZPublisher. -- Dieter ___ 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

Re: [Zope] Running 2 instances of Zope on Apache

2006-07-26 Thread Dieter Maurer
and this works for just the internal address http://commsg6lds How would I configure this for http://live.commsg6lds Do I have to enable NameVirtualHost? What should I have for listen? Currently: Listen 80 You really should read Apache's NameVirtualHost documentation... -- Dieter

Re: [Zope] DB in Zope

2006-07-25 Thread Dieter Maurer
(among others, it was not thread safe). Do l loose my database if Zope is restarted? No. Which other option, easy to use? A tutorial? Maybe, TinyTable[Plus] is an option for you? -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org

Re: [Zope] Mark Pilgrim's Feed Parser in Zope

2006-07-25 Thread Dieter Maurer
method (newsfeed) which uses Mark Pilgrim's feed parser to parse the xml into a python data type. The object might look like a dictionary but it probably is not. Ensure that your ExternalMethod really returns a dict (or other simple data structure). -- Dieter

Re: [Zope] Running 2 instances of Zope on Apache

2006-07-25 Thread Dieter Maurer
of zope. Read about Named Virtual Hosts in the Apache documentation. -- Dieter ___ 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

RE: [Zope] Script execute with every request

2006-07-24 Thread Dieter Maurer
Joshua Burvill wrote at 2006-7-24 14:01 +1000: ... Basically I just want to do an insert into a database of some stuff from each request. Sounds like work for a SiteAccess AccessRule... -- Dieter ___ Zope maillist - Zope@zope.org http

Re: [Zope-dev] ZClasses and Versioning

2006-07-14 Thread Dieter Maurer
this preliminary work, you would need to contact Jim to get more details about the road he envisaged. I fear some good Zope 3 knowledge would be a requirement, though... -- Dieter ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo

Re: [Zope-dev] ZClasses and Versioning

2006-07-14 Thread Dieter Maurer
) and do not observe problems. -- Dieter ___ 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

Re: [Zope] __bobo_traverse__ and a no-object

2006-07-14 Thread Dieter Maurer
. The hack in Zope 2.10 checks in this case whether the value could as well have been obtained by attribute lookup and then checks along this route. If waiting is not an option for you, you can also backport the fix to your Zope version. -- Dieter

Re: [Zope-dev] 2.9.4? reStructuredText support?

2006-07-13 Thread Dieter Maurer
recent expression of distain for testing causes me to be unsurprised by this position. I do not feel distain for testing altogether -- just for testing posing a burden without significantly increasing quality... -- Dieter ___ Zope-Dev maillist

Re: [Zope-dev] ZClasses and Versioning

2006-07-13 Thread Dieter Maurer
Christopher Lozinski wrote at 2006-7-10 19:28 -0700: I am interested in upgrading ZClasses and versioning. What does upgrading mean here? -- Dieter ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev

Re: [Zope] Importing a site with missing products

2006-07-13 Thread Dieter Maurer
. -- Dieter ___ 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 )

Re: [Zope] Inavlid Refernce Counts in Temporary Storage

2006-07-13 Thread Dieter Maurer
'\x00\x00\x00\x00\x00\x00\x00;' had refcount -1) You may see a bug in the pack implementation for TemporaryStorage. Few people will probably try to pack a TemporaryStorage... Are you shure to need it? -- Dieter ___ Zope maillist - Zope@zope.org http

Re: [Zope-dev] 2.9.4? reStructuredText support?

2006-07-08 Thread dieter
extensive tests. I also agree with you, that this is preferable to dropping reST altogether (despite the fact, that I personnally do not use it). Of course, an artistically set Python path could cause Python's docutils to be used -- but hey, that's then a locally caused problem. -- Dieter

Re: [Zope] Trying to trap ConflictError

2006-07-06 Thread dieter
is raised. -- Dieter ___ 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

Re: [Zope-dev] Random SESSION variables disappearing

2006-07-05 Thread dieter
. -- Dieter ___ 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

Re: [Zope-dev] local namespace optimizations?

2006-07-05 Thread dieter
da Silva Enfold Systemshttp://enfoldsystems.com Fax +1 832 201 8856 Office +1 713 942 2377 Ext 214 -- Dieter ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML

Re: [Zope-dev] local namespace optimizations?

2006-07-05 Thread dieter
-- although it probably does not dominate the total time. -- Dieter ___ 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

Re: [Zope-dev] local namespace optimizations?

2006-07-05 Thread dieter
, local access (i.e. cell reference in local scope) *IS* faster than global access. -- Sidnei da Silva Enfold Systemshttp://enfoldsystems.com Fax +1 832 201 8856 Office +1 713 942 2377 Ext 214 -- Dieter ___ Zope-Dev maillist - Zope

Re: [Zope] Trying to trap ConflictError

2006-07-05 Thread dieter
, that happens in your case? -- Dieter ___ 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] Zope 2.9.3/2.9.1 On Suse 10.1 box version

2006-07-05 Thread dieter
: No module named ImplPython This looks like a missing installation step (generation of the C-extensions did not happen). Recheck the installation instructions and try again. -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman

Re: [Zope] Help on installing ZFSPath / LocalFS

2006-07-05 Thread dieter
insinjoori wrote at 2006-7-5 08:00 -0700: So, I've unpacked the files to Products dir. I'm supposed to create a ZFSPath object somewhere. How do I excactly do that? Maybe, you start reading the Zope Book (2.7 edition, online) and learn how objects are created in general. -- Dieter

Re: [Zope] Trying to trap ConflictError

2006-07-05 Thread dieter
look like what you decribe above... -- Dieter ___ 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-DB] regarding zope

2006-07-05 Thread dieter
, a restart is necessary that Zope sees a change. -- Dieter ___ Zope-DB mailing list Zope-DB@zope.org http://mail.zope.org/mailman/listinfo/zope-db

Re: [Zope] Trying to trap ConflictError

2006-07-04 Thread dieter
rather than committed. -- Dieter ___ 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

Re: [Zope] Rollback and delete weird behavior

2006-07-03 Thread dieter
transaction unaware (to allow the use of non-transaction capable tables). -- Dieter ___ 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

Re: [Zope] Re: database conflict errors

2006-06-30 Thread Dieter Maurer
get written. But in multi-threaded mode, this very spreading leads to better conflict resolution behavior. But still can reduced performance... That's why the catalog uses the initial id randomly but then assigns id's (within a single thread) sequentially. -- Dieter

Re: [Zope] ConflictError with *one* ZEO client?

2006-06-29 Thread Dieter Maurer
that a ConflictError propagates to the user. In your place, I would start investigating what causes the conflicts and look for ways to reduce their probability. -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross

Re: [Zope] ConflictError with *one* ZEO client?

2006-06-29 Thread Dieter Maurer
Berthold Stöger wrote at 2006-6-29 20:35 +0200: On Thursday 29 June 2006 18:56, Dieter Maurer wrote: Good application design would make the conflict probability so low that it is very unlikely that a ConflictError propagates to the user. For more complicated applications this is only possible

Re: [Zope] ConflictError with *one* ZEO client?

2006-06-28 Thread Dieter Maurer
). Together with the misfeature (others disagree) that in development mode (aka debug-mode) Zope does not start when a product can not be initialized, this might explain your observation. Whenever you have startup problems, start Zope in the foreground and what the error messages. -- Dieter

Re: [Zope] storing blob data in SQLServer using ZSQL

2006-06-28 Thread Dieter Maurer
is not too large. -- Dieter ___ 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

Re: [Zope] Improved Zope Org Proposal

2006-06-28 Thread Dieter Maurer
, they probably contain what I am looking for -- but it takes me a while until I find it... That's one of my major interests to get a single site rather than one splintered across the world. -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman

Re: [Zope-dev] DomainAuthenticationMode with Sockets

2006-06-26 Thread Dieter Maurer
questions in the mailing list and usually no followups after the domain_auth_mode has been activated. Cannot tell you why it does not work for you... -- Dieter ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev

Re: [Zope-dev] Database mounting problem in 2.9.3?

2006-06-26 Thread Dieter Maurer
after the exception has been reported? I do not know -- as I did not yet analyse such a problem. -- Dieter ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related

Re: [Zope] OracleStorage - DCOracle2

2006-06-26 Thread Dieter Maurer
can then talk to the Oracle server whereever it may be. -- Dieter ___ 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] Problem running zopectl

2006-06-26 Thread Dieter Maurer
Zope 2.9, I cannot tell you what are the relevant steps. -- Dieter ___ 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] Zope not sending images problem

2006-06-26 Thread Dieter Maurer
the resource is then okay, you proabably have this problem. -- Dieter ___ 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] Improved Zope Org Proposal

2006-06-26 Thread Dieter Maurer
for example Perl (with its cpan) the information and products are spread around the world and not easy to locate. I would prefer a single big site as an access point to the most relevant information. But, if this is not possible... -- Dieter ___ Zope

Re: [Zope] Content Disposition - Download files

2006-06-26 Thread Dieter Maurer
R.setHeader(...) # your additional headers ... return context.index_html(r, R) -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope] get non-acquired attributes of an instance

2006-06-26 Thread Dieter Maurer
the associated class. -- Dieter ___ 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

[Zope-Annce] [Ann] AdvancedQuery 2.0 supports incremental ranking

2006-06-25 Thread Dieter Maurer
is performed incrementally. This way, ranking can be quite efficient when you only look at the first (few hundred) hits -- despite the fact that ranking is very expensive in general. More information and download: http://www.dieter.handshake.de/pyprojects/zope -- Dieter

[Zope] [Ann] AdvancedQuery 2.0 supports incremental ranking

2006-06-25 Thread Dieter Maurer
is performed incrementally. This way, ranking can be quite efficient when you only look at the first (few hundred) hits -- despite the fact that ranking is very expensive in general. More information and download: http://www.dieter.handshake.de/pyprojects/zope -- Dieter

Re: [Zope] zcatalog strange behavior

2006-06-25 Thread Dieter Maurer
never triggered reindexing when a property was changed -- only indexing when the object was created and unindexing when it was deleted. Call indexObject (or reindexObject) after you have make changes. -- Dieter ___ Zope maillist - Zope@zope.org http

Re: [Zope] Improved Zope Org Proposal

2006-06-25 Thread Dieter Maurer
of valuable content (software, howtos, faqs). Why should it be different for Zope.org? -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org

Re: [Zope] Improved Zope Org Proposal

2006-06-25 Thread Dieter Maurer
. But it's quite a bit more difficult when the content comes from independent microsites on different servers. As I understood we have one adminstrator. Are you sure he want to administer not one but several Zope installations? -- Dieter ___ Zope maillist

Re: [Zope-dev] Database mounting problem in 2.9.3?

2006-06-24 Thread Dieter Maurer
-database support. Something tries to ad the database packed to a multi-database that already contains a packed. This might happen when you mount the same storage at different places into your hierarchy. -- Dieter ___ Zope-Dev maillist - Zope-Dev

Re: [Zope] Improved Zope Org Proposal

2006-06-24 Thread Dieter Maurer
will decides which content is worth migration? -- Dieter ___ 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] Improved Zope Org Proposal

2006-06-24 Thread Dieter Maurer
/{collector,faq,wiki,...}? This way, you would have an integrating site (zope.org) which would be able to provide integrationg services, e.g. a search where you are interested in a concept and happy to find hits in faq, wiki, product,... -- Dieter ___ Zope

Re: [Zope-dev] Proposal: Scrap zpkg for Zope2 releases

2006-06-22 Thread Dieter Maurer
. I have never worked with zpkg but have read numerous messages about problems. I, for my part, am therefore in favour of your proposal. -- Dieter ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross

Re: [Zope-dev] Re: default view

2006-06-22 Thread Dieter Maurer
:) Abandon = deprecate, yes :) Congratulations: up to know one of the proposals with the highest rate of breakage :-( Hopefully, it will happen only after a very long time... -- Dieter ___ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org

Re: [Zope-dev] Re: default view

2006-06-22 Thread Dieter Maurer
Philipp von Weitershausen wrote at 2006-6-22 09:03 +0200: Dieter Maurer wrote: ... If you are working on it, then you should implement a means that __bobo_traverse__ can tell the caller that it should use the normal default. ... In our private Zope version, I have used an exception

Re: [Zope-dev] Re: Time-based releases a good idea?

2006-06-21 Thread Dieter Maurer
away when moving forward. I do not agree with you that Zope2 did not move forward in the past 5 years. I agree that currently it moves faster -- but not because you cast out things but because you move lots of new functionality in. -- Dieter ___ Zope

Re: [Zope-dev] Re: default view

2006-06-21 Thread Dieter Maurer
the normal default. This feature makes lots of __bobo_traverse__ implementations much saner. A prominent example is the Archetypes' one. In our private Zope version, I have used an exception (UseTraversalDefault) for this purpose. -- Dieter ___ Zope

Re: [Zope] load balancing ftp over ZEO clients

2006-06-21 Thread Dieter Maurer
for a much longer time, thereby bindung resources). ... Can I forward both port 20 and 21 to the ftp port of the ZEO? ZEO itself is not FTP capable. You need a ZEO client (e.g. Zope) for this. Is it possible to use passive and active ftp? It depends on what your firewall allows. -- Dieter

Re: [Zope] how improving dtml-in nested?

2006-06-21 Thread Dieter Maurer
idea (and thinking) was very good! -- Dieter ___ 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] DeadlockDebugger revisited

2006-06-21 Thread Dieter Maurer
symbols. Debugging symbols are almost a must when you try to analyse problems at this level. I would rebuild Python with debugging symbols (and, if possible, without optimizations). -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org

Re: [Zope] converting Dictionary to Result

2006-06-21 Thread Dieter Maurer
-in This will not return me this: value1 value2 It gives me a key error. You should tell the dtml-in that it is iterating over a sequence of mapping objects. You do this with its mapping attribute. -- Dieter ___ Zope maillist - Zope@zope.org http

[Zope-dev] Re: Time-based releases a good idea?

2006-06-18 Thread Dieter Maurer
Philipp von Weitershausen wrote at 2006-6-18 12:28 +0200: ... Its configuration was documented in the Zope schema file. Its single API method was self explaining... Not everybody is as smart as you are, Dieter. Thank you :-) And certainly not everyone would get the idea of reading code

Re: [Zope] Re: Render DTML inslide ZPT slot

2006-06-16 Thread Dieter Maurer
write: Path expressions do it automatically. -- Dieter ___ 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

Re: [Zope] transaction.begin() ??

2006-06-16 Thread Dieter Maurer
transaction should have a begin method. If it does not exist anymore, by what is the method replaced? It moved from the transaction to the transaction manager (what is resonable, as begin starts a *NEW* transaction). -- Dieter ___ Zope maillist - Zope

Re: [Zope] SSL Redirect for CookieCrumbler

2006-06-16 Thread Dieter Maurer
in your login form to use https... -- Dieter ___ 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] manage_changeProperties has strange side effect on response Content-Type.

2006-06-16 Thread Dieter Maurer
the management_charset (or something like that) as encoding. Use manage_changeProperties(**dict) instead of manage_changeProperties(dict) to avoid this problem. -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

Re: [Zope] DeadlockDebugger revisited

2006-06-16 Thread Dieter Maurer
the state -- especially that of the main thread. There is a howto around how to do that. -- Dieter ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org

Re: [Zope-dev] Re: Time-based releases a good idea?

2006-06-15 Thread Dieter Maurer
Chris McDonough wrote at 2006-6-14 14:50 -0400: ... PsycoPG-DA does, MySQLDA does, one of my products named ZopeMailArchive does. CCSQLMethods does (because until very recently ZSQLMethods did, hopefully changed now). -- Dieter ___ Zope-Dev

Re: [Zope] Render DTML inslide ZPT slot

2006-06-15 Thread Dieter Maurer
Jonathan Bowlas wrote at 2006-6-15 14:05 +0100: ... Is it possible to render DTML methods inside a slot of a ZPT? If so, how would I achieve this? XXX metal:fill-slot=slot tal:content=structure your_dtml_method / -- Dieter

Re: [Zope-dev] Re: OFS.Application deprecations for Zope 2.10

2006-06-14 Thread Dieter Maurer
. -- Dieter ___ 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

Re: [Zope-dev] Time-based releases a good idea?

2006-06-14 Thread Dieter Maurer
. -- Dieter ___ 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] sessions in an iframe

2006-06-14 Thread Dieter Maurer
henk laloli wrote at 2006-6-13 12:13 +0200: ... Thanks, Dieter, your comments make me realize the problem clearer. The iframe's domain name does not conform to that of the parent window. So, it will not pass that test. As far as IE is concerned it is a third party cookie and many IE browsers

Re: [Zope] sessions in an iframe

2006-06-12 Thread Dieter Maurer
(on the Netscape site) to check whether IE should pass the cookie (this can be controlled by the path and domain parameters when the cookie is created). If it should, check the IE bug reports for potential cookie problems related to iframes. -- Dieter ___ Zope

Re: [Zope] Changing class of objects in the ZODB

2006-06-12 Thread Dieter Maurer
with the old class. This potentially leads to non-deterministic behaviour). I usually solve you problem with proxy classes: When I want to refactor something, I do, but leave at the old place something like: from NewPlace import NewClass as OldClass -- Dieter

Re: [Zope] zwiki connection error

2006-06-11 Thread Dieter Maurer
, ...? ... Unable to connect Firefox can't establish a connection to the server at my ip:8080. Looks like a redirection to some page, FireFox cannot connect to. A TCPLogger (e.g. Shane's tcpwatch) may help to understand what happens. -- Dieter

Re: [Zope] REQUEST within a property() getter/setter

2006-06-08 Thread Dieter Maurer
methods (__getattribute__, __getattr__, __setattr__, property setter/getter) are below the reach of acquisition. Their self is not acquisition wrapped. That's why your self.REQUEST is Acquisition.Acquired (rather then the acquire object). -- Dieter

Re: [Zope] RE: zope LDAP deadlock problem

2006-06-07 Thread Dieter Maurer
DeadlockDebugger to find out what happens. -- Dieter ___ 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] python is using 99.9% CPU in Zope

2006-06-06 Thread Dieter Maurer
, could tell you where the time is spent... -- Dieter ___ 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

<    4   5   6   7   8   9   10   11   12   13   >