[Zope] PTK question ..

2000-07-30 Thread Jean Jordaan
Hi all I'm trying to get the PTK up and running. Everything works OK, but when I try to review a pending document, this is what I get: PSTRONGResource not found/STRONG/P Sorry, the requested Zope resource does not exist.pCheck the URL and try again.p !-- Document instance at 019E8DC0 -- !--

[Zope] Sorting XML nodes?

2000-07-31 Thread Jean Jordaan
Hi Zopers (and Lex), From the (excellent) 'How-To: XMLDocument Example' (Created by eukreign. Last modified on 2000/06/06) I get the following to display all the nodes of an XML document: dtml-in "contacts[0].getElementsByTagName('contact')" tr td dtml-var

[Zope] How do I control iteration over XML elements?

2000-07-31 Thread Jean Jordaan
Hi all If I have (in an XML Document): teams team nameName of team/name descWhite papers, brochures, case studies./desc member class="leader"Tracey/member memberEduan/member memberJacqui/member /team /teams Then: dtml-in "teams[0].getElementsByTagName('team')" dtml-var

RE: [Zope] How do I control iteration over XML elements?

2000-08-01 Thread Jean Jordaan
hi Curtis Yaaay! It works :) Thanks a lot! I wouldn't have found "objectValues" on my own .. where'd you learn about that? I'm ploughing through docs and wiki's now, just don't know if they're the right ones. I also need to read more about Python .. Anyway, I messed about with your

[Zope] Querying XML in Zope

2000-08-01 Thread Jean Jordaan
Hi group Here's a new thread for this question: In an XML Document, how do I show all teams that a specific member is part of? In other words, if I have: teams team nameHam/name descWhite papers, brochures, case studies./desc memberEduan/member memberJacqui/member /team team

[Zope] PTK binary distribution?

2000-08-02 Thread Jean Jordaan
Hi Zopers .. Using PTKSnap.tgz , I find lib\python\Products\ZPatterns\DynPersist.so lib\python\Products\ZPatterns\DynPersist.o lib\python\Products\ZPatterns\DynPersist.pyd lib\python\Products\ZPatterns\DynPersist.c in the archive. This looks just fine for Linux use, but I'm on W2K

[Zope] How to prime a selection?

2000-08-03 Thread Jean Jordaan
Hi all I'm making a document class for a warehouse of papers. It's based on ZCatalogAware and ObjectManager (to wrap mainly PDFs and DOCs), and has fields: title (string type) origin (string type) format No value for format_value. typeNo value for type_value. "format" and

[Zope] Using MailHost with an SMTP server that wants authentication

2000-08-05 Thread Jean Jordaan
Hi Zopers Looking at the attributes of the dtml-sendmail tag, I don't see any way of conveying authentication data to the smtphost. Our setup here (using Exchange) requires a username/password to send. Any way of coping with this? -- Jean Jordaan --technical writer--Mosaic

[Zope] About Squishdot and permissions

2000-08-08 Thread Jean Jordaan
hi Zopers, In case this is very obvious (I'm RTFM'ing meantime) .. while hacking Squishdot's DTML, I did something to make 'leftbox_items' inaccessible to 'Anonymous': Unauthorized You are not authorized to access leftbox_items. in / , Anonymous has these permissions: Access contents

[Zope] dtml-in sort question

2000-08-10 Thread Jean Jordaan
Hi all I'd like to sort bunch of objects, and this doesn't seem to work: dtml-in "PARENTS[0].objectItems(['ccDocClassMetaType'])" sort=id Should it work? How does one sort the results returned by an expression such as the above? -- jean ___

[Zope] Adding a bunch of ZTopics at once

2000-08-10 Thread Jean Jordaan
Hi Zopers How would one programmatically add a whole bunch of ZTopics? For example, I'd like to have ones for: Getting to know Manual Presentation Press Release Press Coverage Technical Paper User Guide White Paper And adding them

[Zope] application/octet-stream vs. application/msword

2000-08-10 Thread Jean Jordaan
Hi Zopers How does Zope recognize the type of a file? Mostly it recognizes .doc's correctly as 'application/msword', but sometimes they turn up as 'application/octet-stream'. Others, like .fh8 (Freehand) and .exe (self-extracting zip) are (unsurprisingly) also turning up as

RE: [Zope] application/octet-stream vs. application/msword

2000-08-11 Thread Jean Jordaan
Hi Dieter all How does Zope recognize the type of a file? It uses "OFS.content_types.guess_content_type" OK, so 'manage_addFile' uses 'guess_content_type'? I'm a bit confused here .. I see three lists of content types, excerpted below. They are in: 1. 'lib/python/OFS/content_types.py'

[Zope] Letting a content manager add ZClass instances

2000-08-14 Thread Jean Jordaan
Hi Zopers .. I want content managers to be able to add and edit ZClass instances without having to negotiate the Zope management interface. So I want them to visit the Add and Edit forms, but to be redirected back to where they were browsing. The best I could do was: in 'ccDocClass_add', the

[Zope] Editing ZClasses properties as ContentManager

2000-08-14 Thread Jean Jordaan
Hi Zopers, In my ccDocClass / propertysheets / methods / edit_properties method, right after reindexing the changed instance like so: dtml-call "propertysheets.ccDocProperties.manage_changeProperties(REQUEST)" dtml-call reindex_object (from the How-To: Creating a CatalogAware ZClass

RE: [Zope] application/octet-stream vs. application/msword

2000-08-14 Thread Jean Jordaan
Hi Dieter all The problem is, currently, not interesting enough for me to analyse is seriously. I can well understand, I wish I could forget about it :( If you know, that you add only "*.doc" files I add .doc, .zip, .exe (self-extracting zip), .pdf and .ppt ... so the quick and dirty

[Zope] zcatalog -- returning context of hits on fulltext

2000-08-14 Thread Jean Jordaan
Hi all I've got a lot of Word docs and Powerpoint presentations and PDFs etc in the ZOBD, stored with their full text in a property of the containing object, so that all those binary docs are searchable. This works great, but returns only the found objects and the cached properties specified

RE: [Zope] zcatalog -- returning context of hits on fulltext

2000-08-14 Thread Jean Jordaan
Hi Geir make a pythonmethod that returns the first 200 letters or something of the text , I've already got a pretty structured-text "Abstract" field that tells about the document, but I'd like to *see* the sentence on page 67 or wherever in a document where my term matches, so I know

RE: [Zope] zcatalog -- returning context of hits on fulltext

2000-08-14 Thread Jean Jordaan
Dunno if Catalog can do it either .. not even if I do include the fulltext in the MetaData Table. 'Cause the hit will have come from the indexed text, so it has no way of knowing *which* hit in the original fulltext it was .. right? -- jean ___ Zope

RE: [Zope] zcatalog -- returning context of hits on fulltext

2000-08-14 Thread Jean Jordaan
Hi Toby If you really do have a 67 page document, For the sake of the argument, that was page 67 of a 149-page document .. it would be better to store each page in its own ZODB object, and index each page individually. Well, the number of pages depends on the formatting .. but it might

[Zope] Struggling with Permissions

2000-08-15 Thread Jean Jordaan
I have ContentManager and Manager role(s).) Also, this doesn't *always* happen. Perhaps it's an IE problem? Does anyone know exactly how this works? -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.16 on W2K ___ Zope ma

RE: [Zope] Struggling with Permissions

2000-08-15 Thread Jean Jordaan
Hi RDM My bet is that this is a browser caching issue. Mine too. But how does everyone else manage authentication? -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.16 on W2K ___ Zope maillist - [EMAIL PROTECTED

[Zope] Simple acquisition (?) question

2000-08-16 Thread Jean Jordaan
html_header' renders no title. This seems inconsistent. Because there's acquisition stuff that escapes me, doubtless. Anyone have 50c worth of enlightenment? -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.1.6 on W2K ___ Zope

[Zope] Extra spaces on the end of id's?

2000-08-16 Thread Jean Jordaan
TD ALIGN="LEFT" VALIGN="TOP" A HREF="edit_properties%20/manage_workspace" edit_properties/A /TD [...] A HREF="edit_propertiesForm%20/manage_workspace" IMG SRC="/misc_/OFSP/dtmlmethod.gif" ALT="[DTML Method]" BORDER="0&qu

[Zope] jcNTUserFolder questions

2000-08-17 Thread Jean Jordaan
e) to have nested NT User Folders. What puzzles me is this: in the root I have a user 'zopeman' with Manager rights. When I create an NTUserFolder in '/docs', zopeman doesn't have rights to access it. Neither does the superuser. ?? -- Jean Jordaan --technical writer-- Mosa

[Zope] jcNTUserFolder troubles ..

2000-08-17 Thread Jean Jordaan
der? Has anyone used it under stress? -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding

[Zope] NTUserFolder-1.3-Comments

2000-08-17 Thread Jean Jordaan
for these parameters once I ## have independant verification that there are no problems. Have you had any feedback? Does this work at all? -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL

[Zope] Getting rid of PTK

2000-08-17 Thread Jean Jordaan
, line 373, in _register (Object: ccDocClass) File C:\programs\ZopeJean\lib\python\ZODB\Connection.py, line 396, in setstate File C:\programs\ZopeJean\lib\python\ZODB\Connection.py, line 205, in _persistent_load (Info: What do I have to do with PTKDemo?? -- Jean Jordaan

RE: [Zope] NTUserFolder-1.3-Comments

2000-08-18 Thread Jean Jordaan
Hi Toby No feedback on this from anyone yet. Well, that doesn't really sound encouraging .. So it looks like the main NT-based authentication for Zope is currently jcNTUserFolder, running as pcgi behind IIS. I'm making an intranet for 100-200 people, with offices on three continents

RE: [Zope] NTUserFolder-1.3-Comments

2000-08-18 Thread Jean Jordaan
Or maybe everyone is quietly happy Well, yes :) So, would all of those quietly happy people perhaps give a shout to reassure those of us who are loathe to install all of IIS for the sake of NT domain authentication? -- Jean Jordaan --technical writer-- Mosaic Sofware

[Zope] cutting and pasting large folders

2000-08-18 Thread Jean Jordaan
'/in/docs' .. or maybe this is a good time to move them to TinyTables. -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope **

[Zope] Prowler etc.

2000-08-19 Thread Jean Jordaan
integrated Java/XML environment. ... -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org

[Zope] How To Shoot Yourself In The Foot With Zope

2000-08-19 Thread Jean Jordaan
and rendering *nothing*. At least, I *think* this is what happened. Enlightenment even more welcome. -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http

[Zope] Newbie's ZWiki patch

2000-08-21 Thread Jean Jordaan
nx and W3, for example, certainly wouldn't do any better with the table than with the CSS .. AFAIK .. -- Jean Jordaan --technical writer-- Mosaic Sofware --Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lis

[Zope] Renderable-ZClass-0.2 enquiry

2000-08-21 Thread Jean Jordaan
Hi all Is 'Renderable-ZClass-0.2' (aka "Lalo's excellent RenderableZClass" [1]) from 1999/11/04 the latest version of this? Are there any reports from people using it? Does anyone out there perhaps have a private homegrown 0.99 version? -- Jean Jordaan --techni

[Zope] Managing with Opera

2000-08-22 Thread Jean Jordaan
encountered anything similar using Opera? -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts

[Zope] Permissions / roles question

2000-08-22 Thread Jean Jordaan
/acl_users', (Generic User Folder), where 'jean' does *not* feature. Hmm, so 'DTML Method at /debugging_info' doesn't show the roles of 'jean' in the context of 'this()'? But surely this doesn't change the fact that 'jean' *does* have the 'Change ZWiki Pages' permission, and does *not* have the 'Anonym

[Zope] generalizing DTML method question

2000-08-22 Thread Jean Jordaan
Hi Zopers How do I generalize this DTML method? ... dtml-call "REQUEST.set('myList', [])" dtml-in origin_values dtml-call "myList.append(name)" /dtml-in dtml-return myList ... The problem is that 'origin_values' bit.

[Zope] followup question (faulty default ZClass constructor)

2000-08-22 Thread Jean Jordaan
so should I change:: dtml-call "RESPONSE.redirect( URL2+'/manage_workspace')" to:: dtml-call "RESPONSE.redirect( URL2()+'/manage_workspace')" too? (Obviously not grokking it all yet .. ) -- Jean Jordaan --technical writer-- Mosaic Software

[Zope] (my) faulty ZClass constructor

2000-08-22 Thread Jean Jordaan
DestinationURL()+'/index_html')) (Info: DestinationURL) File lt;stringgt;, line 0, in ? TypeError: (see above) What difference does the dtml-if make to DestinationURL? -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.

[Zope] that weird manage role ..

2000-08-22 Thread Jean Jordaan
e 'Manager'. Is this documented somewhere? -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTM

RE: [Zope] Permissions / roles question

2000-08-23 Thread Jean Jordaan
t my users are both 'ZWikiUsers' and 'Anonymous', for example, and that makes no sense. Anonymous /dtml-comment -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope maillist

[Zope] PYTHONPATH issue .. import failing

2000-08-23 Thread Jean Jordaan
when no executable file named "python" is found along $PATH.) The user can override this behavior by setting the environment variable $PYTHONHOME, or insert additional directories in front of the standard path by setting $PYTHONPATH. The Zope install has no 'lib/pythonN.M' director

[Zope] Including a method returning batches inside a page.

2000-08-23 Thread Jean Jordaan
way to do this to carry the relevant variable ('sequence-query', 'next-sequence-start-number' back and forth between 'index_html' and 'docsByTitle' in the REQUEST? How would you tackle this? -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on Win

RE: [Zope] Including a method returning batches inside a page.

2000-08-23 Thread Jean Jordaan
r next-sequence-start-number" Thanks! -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross po

[Zope] dtml-let .. method /dtml-let

2000-08-23 Thread Jean Jordaan
yTitle How do I get 'sort_key' in there? -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTM

RE: [Zope] dtml-let .. method /dtml-let

2000-08-23 Thread Jean Jordaan
Hi Phil, RDM, Adam I seem to remember a entry to the collector about this, I think your stuck with having a 'static' sort key. yeech! or you could do something like dtml-if "sort_key=='sort1'" that'll do as a workaround .. You can always you his patch in the meantime, though. I'm

RE: [Zope] Including a method returning batches inside a page.

2000-08-24 Thread Jean Jordaan
hi Dieter For a DTML method(!), "id" is the id of the object of which the method is used as a method. In your case, this is the folder. No, actually -- since 'index_html' is a document, it turns out to be the id of 'index_html'. In some cases, you would use "this().id". OK, I'll try and

[Zope] Where do I find out about cookies?

2000-08-24 Thread Jean Jordaan
the lists -- it seems to refer only to querying them, AFAICS .. -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No c

[Zope] RE: [Squishdot] Yes Please!

2000-08-25 Thread Jean Jordaan
to be in on this, please let me know. -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related

RE: [Zope] Where do I find out about cookies?

2000-08-25 Thread Jean Jordaan
received again) and the form variable governs. - If there is a only a cookie and no form variable, it governs. Now I want to extend it so that choosing a sort-order for the *second* time reverses the order -- does this really entail repeating the entire 'dtml-if "sort_key=='title'"' sectio

[Zope] Showing the name of a file-type form variable

2000-08-28 Thread Jean Jordaan
y rather have the filename. How does one do that? -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross po

[Zope] Smarter Forms (variant example)

2000-08-28 Thread Jean Jordaan
Hi all While playing with jules's nice Smarter Forms example, I've made a (perhaps obvious) slightly elaborated variant of it. dtml-comment njj == Jean Jordaan /dtml-comment dtml-var standard_html_header dtml-comment njj

[Zope] snippets (was RE: [Zope] Where do I find out about cookies?)

2000-08-28 Thread Jean Jordaan
body_len b(dtml-if reply_cntdtml-var reply_cnt commentdtml-if "reply_cnt 1"s/dtml-if, /dtml-ifdtml-var body_len in body)/b /dtml-if body_len -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K

[Zope] How to Delete ZClass Instances programmatically??

2000-08-28 Thread Jean Jordaan
don't necessarily want to give the 'ContentManager' rights to delete objects; I'd rather manage this through a delete method with the appropriate proxy role. Any advice or RTFM pointers? -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K __

[Zope] The difference between ControlSet 001 and 002 ..

2000-09-04 Thread Jean Jordaan
configuration changes that might otherwise prevent you from starting the system. .. So that's that, anyway. For the record, the current one in my case was number 1. -- Jean Jordaan --technical writer-- Mosaic Software

[Zope] The Zope (ZopeDev) service terminated with service-specific error1. 1.

2000-09-11 Thread Jean Jordaan
Hi all For the record, I'm getting this in the NT Event Log: The Zope (ZopeDev) service terminated with service-specific error 1. No Zope. Let's see if I can get it running again .. -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K

[Zope] [zwiki] What is the 'Wiki-Safetybelt'?

2000-09-12 Thread Jean Jordaan
only the the Wiki-Safetybelt. I'd appreciate it if you Cc: me on answers .. I'm on digest mode (and waaay behind on reading those!) -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.1.6 on WinNT and W2K ___ Zope

[Zope] Tesh sues Vignette (fwd)

2000-09-27 Thread Jean Jordaan
Go Zope? -Original Message- From: Justin Mason [mailto:[EMAIL PROTECTED]] Sent: 27 September 2000 02:07 To: [EMAIL PROTECTED] Subject: [IRR] [cms-list] Tesh sues Vignette (fwd) --- Forwarded Message Date:Wed, 27 Sep 2000 11:17:37 +1100 From:David Walker [EMAIL PROTECTED]

[Zope] Last-modified header missing -- time-stamps turned off.

2000-10-04 Thread Jean Jordaan
returned by Zope. Does Zope not include last-modified headers since it predominantly serves dynamic pages? Regards, -- Jean Jordaan --technical writer-- Mosaic Software--Zope 2.2 on WinNT and W2K ___ Zope maillist - [EMAIL PROTECTED

[Zope] Uploading textfiles into Zope using LoadSite

2000-11-09 Thread Jean Jordaan
r=1)" /dtml-with /dtml-with /dtml-with /dtml-let /dtml-let /dtml-in /dtml-with It iterates over all the DTML Documents in the 'DTML_texts' folder, and creates a 'ZClass_texts' folder inside it. If no folder 'ni

Re: [Zope] Dynamic dictionary keys?

2006-02-27 Thread Jean Jordaan
Hi Andrew Allow me to preface this by saying I am a complete newbie to Zope In that case, please skip DTML and go straight to ZPT. DTML is like the ghost train in an amusement park, but the ghosts are real. Especially if you're a newbie. dtml-let eventsDict={} dtml-let calstart=somestring

Re: [Zope] management of project

2006-03-13 Thread Jean Jordaan
Hi gus Is there a program in zope for management project!!! Here's a basic one: http://plone.org/products/upfrontproject/ -- Jean Jordaan http://www.upfrontsystems.co.za ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo

Re: [Zope] debug with ipython

2006-06-15 Thread Jean Jordaan
Hi thomas is it possible to use zopectl debug with ipython ? http://zopewiki.org/DebuggingWithIPythonAndOtherTips -- jean ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! **

Re: [Zope] debug with ipython

2006-06-15 Thread Jean Jordaan
Hi Martijn I've added your script to http://zopewiki.org/DebuggingWithIPythonAndOtherTips I hope that's OK. Regards, -- jean ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! **

Re: [Zope] Problem with constructTransientObjectContainer - Resolved

2006-06-22 Thread Jean Jordaan
Hi Jonathan user once, then it is discarded. In order to eliminate many writes to the zodb (disk), I have decided to put the customized images into a temporary folder (RAM). Can't you just put the images in the TOC and let them expire by themselves? -- jean

Re: [Zope] wher i can find network device content types to develop network manage system?

2006-07-03 Thread Jean Jordaan
Hi LYNN develope a network manage sytem based on zope/plone on web. Maybe you can find something useful here: http://zenoss.org/ Zenoss is a powerful, integrated, easy-to-use IT infrastructure monitoring software product. [...] Zenoss is a written in Python using Zope, MySQL, RRDtool,

Re: [Zope] Programatically logging out of Zope

2006-08-03 Thread Jean Jordaan
Would anyone here know how to programmatically log out of Zope ? Redirect the user to a page that always raises Unauthenticated. See manage_zmi_logout. -- jean ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No

Re: [Zope] new user, teething problems

2006-08-03 Thread Jean Jordaan
Hi John File /usr/lib/zope/lib/python/ZODB/FileStorage.py, line 232, in __init__ self._lock_file = LockFile(file_name + '.lock') [...] IOError: [Errno 11] Resource temporarily unavailable Anyone know what's going on ? Is it trying to read a file called 'string' ? No, it's failing

[Zope] Strange ZEO related Tracebacks (ZEO.cache, line 915, in _makeroom)

2007-01-08 Thread Jean Jordaan
Hi all I packed and copied a Data.fs file from one machine to another. Now I see this on the new machine: Traceback (innermost last): * Module ZPublisher.Publish, line 187, in publish_module_standard * Module Products.PlacelessTranslationService.PatchStringIO, line 51, in new_publish

[Zope] Solved (Re: Strange ZEO related Tracebacks (ZEO.cache, line 915, in _makeroom))

2007-01-08 Thread Jean Jordaan
Hi all * Module ZEO.cache, line 915, in _makeroom KeyError: 10201651 It turns out that this was due to an undersized /tmp partition (17M, while the default cache size is 20M). Configuring Zope to use a persistent cache made this error go away. -- jean

[Zope] ZEO clusters on a single box

2008-08-12 Thread Jean Jordaan
Hi there We have a server running many ZEO clusters (many more than the number of CPUs, of course). Each cluster consists of a master and two clients. Would it make sense to run both clients and spread requests across them? Or would it be better to just increase the number of threads of a

Re: [Zope] re ad-only-database

2009-03-12 Thread Jean Jordaan
Hi there The only place I find a clue about 'read-only' is in .../zope2/lib/python/ZODB/component.xml after grepping (after reading Dieter's message) .. and in the same Zope instance .../zope2/skel/etc/zope.conf.in still pushes the 'read-only-database' relic. Doesn't look like many people use

Re: [Zope] re ad-only-database

2009-03-16 Thread Jean Jordaan
Hi Dieter It describes a configuration option for your storage subsections of the zodb_db sections in your Zope configuration file. Yes, that's what I understood -- thank you! What I meant was that few people seem to use this functionality, as the outdated howtos stand uncorrected, and the

Re: [Zope] re ad-only-database

2009-03-17 Thread Jean Jordaan
Hi Tres Tres Seaver wrote: Can you please file a bug suggesting changing the '.in' file? Certainly: https://bugs.launchpad.net/zope2/+bug/344098 -- View this message in context: http://www.nabble.com/read-only-database-tp3438824p22553862.html Sent from the Zope - General mailing list

[Zope] Storage names being lowercased by collective.recipe.filestorage ?

2009-07-21 Thread Jean Jordaan
Hi there It looks like the filestorage recipe lowercases storage names somewhere, making storage names containing uppercase characters fail. In a buildout, I have a [filestorages] section with parts like this: parts = ClmE GclMe TwaP It generates zeo.conf and zope.conf containing

Re: [Zope] Storage names being lowercased by collective.recipe.filestorage ?

2009-07-22 Thread Jean Jordaan
Hi all Turns out this bug is venerable. For the archives: https://bugs.launchpad.net/zope2/+bug/287550 https://bugs.launchpad.net/collective.buildout/+bug/287543 Now I still don't know why upper-case storage names *does* work in one of my instances. It stopped working when trying to drive

Re: [Zope] Zope Digest, Vol 64, Issue 7

2009-09-13 Thread Jean Jordaan
Hi Nair       We are using a zeocluster with six clients and use pound for load balancing betwwen them. However I am having problems using session variables. I think that session variables are maintained separately for  each client You're right. Either configure pound so that sessions from

Re: [Zope] Alternatives to ZWIKI?

2013-11-14 Thread Jean Jordaan
Have a look at https://pypi.python.org/pypi/wicked also. -- jean . .. //\\\oo///\\ ___ Zope maillist - Zope@zope.org https://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding!

Re: [Zope] Alternatives to ZWIKI?

2013-11-23 Thread Jean Jordaan
On Sat, Nov 16, 2013 at 8:12 AM, Jesus Cea j...@jcea.es wrote: On 14/11/13 10:36, Jean Jordaan wrote: Have a look at https://pypi.python.org/pypi/wicked also. Do you know if that product can migrate a ZWIKI instance?. I have tens of thousands of ZWIKI pages in severan dozens of ZWIKI

[Zope] Zope.org fading away ..

2014-03-11 Thread Jean Jordaan
Hi all I've been unsubscribed from the Zope mailing lists due to excessive bounces. So for some reason despite my clicking ignore, I trust this message 100s of times, gmail doesn't like the mails zope.org sends. When I try to visit the mailing list web interface, Firefox is stopped in its tracks

Re: [Zope] Zope in The Netherlands

2015-07-09 Thread Jean Jordaan
Hi Kees Try http://zestsoftware.nl/ https://www.fourdigits.nl/blog/ https://www.goldmund-wyldebeast-wunderliebe.nl/ http://cosent.nl/en On Wed, Jul 8, 2015 at 3:10 PM, Kees de Brabander cj.de.braban...@hccnet.nl wrote: Hi there, I desperately need a zope server, at least for a

Re: [Zope] Advice on Blob Storage?

2015-09-24 Thread Jean Jordaan
Hi Michael Without knowing anything about your setup let me chuck a few stones into the bushes .. > I'm seeing behavior using relstorage and blobs that I didn't expect: >If I upload a large file, say 2 gigs, I am noticing that our SQL database > also grows by 2 Gigs, along with the blob

[Zope-dev] ZMailIn patch (index 'date' as DateTime object)

2001-11-09 Thread Jean Jordaan
use 'datetime', also sortable? Regards, Jean Jordaan [jean@blommie ZMailIn]$ diff -u ./ZMailMessage.py ./ZMailMessage_hacked.py --- ./ZMailMessage.py Tue Mar 6 12:33:03 2001 +++ ./ZMailMessage_hacked.pyFri Nov 9 11:42:32 2001 @@ -61,6 +61,9 @@ self.subject = subject

RE: [Zope-dev] ZMailIn patch (index 'date' as DateTime object)

2001-11-09 Thread Jean Jordaan
Hi Steve Jean Jordaan wrote: But it's still a string, and can't be used in comparisons with DateTimes. Why not just use 'datetime', also sortable? DateTime objects are huge. Hmm, OK, I'll keep that in mind .. For sorting my mails, though, I'll stick with the DateTimes. It would

[Zope-dev] RE: Component Architecture / A modest proposal: Replace medusa with Twisted

2001-10-11 Thread Jean Jordaan
Hi all I don't know if you're all familiar with this already, but reading about Twisted didn't immediately bring to mind Medusa, but rather certain aspects (specifically, *aspects*) of TransWarp, and of the Component Architecture (interfaces). I'm including a bite from

[Zope-dev] Required final newline in Script (Python) in Zope 2.4.3

2001-12-17 Thread Jean Jordaan
the ), everything is fine. Is this a feature? An inevitability? Is it Good For Me? Regards, Jean Jordaan ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http

[Zope-dev] Marshalling of records in REQUEST.form

2002-03-14 Thread Jean Jordaan
that 'properties_to_show' is a record, and not a dictionary? -- Jean Jordaan Upfront Systems http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross

RE: [Zope-dev] Marshalling of records in REQUEST.form

2002-03-14 Thread Jean Jordaan
I quoted in the previous message appears in the logfile. My Zope is 2.4.3 -- Jean Jordaan Upfront Systems http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope

Re: [Zope-dev] find unused objects: hopefully the last misunderstanding...

2002-08-30 Thread Jean Jordaan
the same kind of thing ('ls -R' and 'grep') from the Zope Management Interface using Jerome Alet's zshell. -- Jean Jordaan Upfront Systems http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http

[Zope-dev] Is the aliasing of 'hasRole' correct?

2002-09-25 Thread Jean Jordaan
that be:: return self.allowed(*args, **kw) ? -- Jean Jordaan Upfront Systems http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding

[Zope-dev] KeywordIndex errors: This should not happen.

2002-09-30 Thread Jean Jordaan
in the dict returned by getIndexDataForRID. Did the RID get removed from the KeywordIndex list of RIDs prematurely? Or did it never get inserted? Can anyone shed any enlightenment? Where else should I be looking? -- Jean Jordaan Upfront Systems http

Re: [Zope-dev] KeywordIndex errors: This should not happen.

2002-09-30 Thread Jean Jordaan
If you feel this is a bug, you should file a collector issue for it. We don't have a deep enough understanding of the Catalog to diagnose :/ We're not sure if it's a Catalog issue, or something we're doing wrong; i.e. we don't know how the Catalog gets into that state. -- Jean Jordaan Upfront

Re: [Zope-dev] KeywordIndex errors: This should not happen.

2002-10-01 Thread Jean Jordaan
collector issues, perhaps? -- Jean Jordaan Upfront Systems http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related

Re: [Zope-dev] KeywordIndex errors: This should not happen.

2002-10-01 Thread Jean Jordaan
of the affected class are cataloged OK. -- Jean Jordaan Upfront Systems http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding

Re: [Zope-dev] http://cvs.zope.org/Products/Scheduler vs Xron forcron-like functionality. Advice?

2002-10-05 Thread Jean Jordaan
email (using MailHost). When this fails, Xron goes into a spin, the Reminder retriggering forever, bloating Data.fs with a Gb or more overnight. We've started looking at the code a couple of times, but everything looked fine .. -- Jean Jordaan Upfront Systems http

[Zope-dev] How about some details about SGI's Supportfolio?

2003-01-27 Thread Jean Jordaan
Zope implementations, if anyone has time to tell them, and is not bound by confidentiality issues. -- Jean Jordaan http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross

[Zope-dev] ExternalEditor losing its lock?

2003-02-04 Thread Jean Jordaan
/manage_workspace HTTP/1.1 302 467 http://blommie:17081/test; Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20021212 -- Jean Jordaan http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL PROTECTED] http://mail.zope.org/mailman/listinfo/zope-dev

[Zope-dev] Trying to understand the nuances of a VerboseSecurity report ..

2003-02-20 Thread Jean Jordaan
if the user has any of the listed roles but is not defined in a context which is not an ancestor of object. ''' Surely either one of those 'not's should go? -- Jean Jordaan http://www.upfrontsystems.co.za ___ Zope-Dev maillist - [EMAIL

Re: [Zope-dev] Offtopic: it's vs. its

2003-02-25 Thread Jean Jordaan
grammatical issues (I can be compulsive that way .. ) but have always refrained from submitting them as issues, because I was afraid they'd be considered noise. Is this a justified fear? -- Jean Jordaan http://www.upfrontsystems.co.za ___ Zope-Dev maillist

  1   2   >