[Zope-dev] DTML Documents == DTML Methods that are anchored?
What are the differences between DTML Documents and Methods internally? I was just thinking about the problems every new user (and experienced users, every so often) have regarding DTML Documents vs DTML Methods. Aren't they really the same except that Documents are anchored (ie, don't allow aquisition from the caller, but only from the location of the Document)? If that is true, couldn't they be simplified as a (example name) DTML Object that had an "anchor" flag? Just a thought. Ciao! -- So Buddha walks into a pizza parlor and says: "Hey, make me one with everything." The Doctor What: Need I say more?http://docwhat.gerf.org/ [EMAIL PROTECTED] KF6VNC ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
Re: [Zope-dev] DTML Documents == DTML Methods that are anchored?
You should look through the mailing lists there is generous amounts of answers to this. For me the two sit philosophically linked in the acquisition model. Acquisition is partially about actions working in environments, with the environment decribing the quality of the result. You can think of a DTMLMethod as an action, who itself has no substrate, i.e. properties, and DTMLDocuments as substrate, i.e. it contains properties etc, for example background colour, types of animals, whatever. One can then throw a method around into different environments, i.e. call it on documents, and one will get a result that is dependent on that environment(document). It is also nice that environments can acquire from their surrounding too, so you should think of acquisition in DTMLDocuments as been for more and more global properties as one moves out, eg: a company logo. Whereas acquisition for a method is to actually acquire an environment to work in. Well that's the way I view it, and it helps. Matt On Sat, 30 Dec 2000, The Doctor What wrote: What are the differences between DTML Documents and Methods internally? I was just thinking about the problems every new user (and experienced users, every so often) have regarding DTML Documents vs DTML Methods. Aren't they really the same except that Documents are anchored (ie, don't allow aquisition from the caller, but only from the location of the Document)? If that is true, couldn't they be simplified as a (example name) DTML Object that had an "anchor" flag? Just a thought. Ciao! -- So Buddha walks into a pizza parlor and says: "Hey, make me one with everything." The Doctor What: Need I say more?http://docwhat.gerf.org/ [EMAIL PROTECTED] KF6VNC ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope ) -- ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
[Zope-dev] PythonScripts
I looked at ZopeCVS's PythonScripts. I mostly like it -- with the following exceptions: * Namespace binding It does not yet work, apparently: In DTML, I have: dtml-call "REQUEST.set('a','a')" dtml-var pyscript in PythonScript "pyscript": return _['a'] and I get: "KeyError: a" * Try it It is very nice, that such a "try it" exists! However, as I am in Python, I would like to use Python expressions as argument values. Currently, the values are treated as strings. Default argument values are displayed as part of the argument name. If the values in the "try it" tab were Python expressions, the default values should be used to preset the value fields. * Preventing creation of large sequences Apparently, you try hard to prevent the creation of large sequences. For a malicious user, it is however quite easy to counter you measures: either with a "while" loop or with a nested sequence repetition. To make it safe, you would probably need to limit the total complexity of all objects (together) that are created in the script (or other scripts called by this one). Alternatively, you could document that various security issues remain, if PythonScripts are made editable through the web. * Import control I know that I can control what modules (and names) can be imported in PythonScripts by providing an __access_to_unprotected_subobjects__ definition *in the* module. However, this is a global control affecting all PythonScripts in an installation. I see the demand for more localized control, e.g. that a script not editable through the web should import modules that are not safe for use by anonymous users. Dieter ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
[Zope-dev] HiperDom-0.4.0-DC released
Hi all, I created a special release of HiperDom 0.4.0 (versioned as 0.4.0-DC), with fixes and additional features. This release is ment for experimentation with new features added by Digital Creations, and we'd appreciate feedback on these. The README attached to this email lists all differences. You can download the release from: http://www.zope.org/Members/mj/HiperDom Note that all fixes to HiperDom problems have been checked into the HiperDom CVS tree, a future release of HiperDom will include these fixes. -- Martijn Pieters | Software Engineer mailto:[EMAIL PROTECTED] | Digital Creations http://www.digicool.com/ | Creators of Zope http://www.zope.org/ - This is the Digital Creations' release of HiperDom 0.4.0. Differences with the Hiperlogica release are listed below. This release depends on Zope 2.2.5 for correct XHTML output of base and image tags. This release is ment for experimentation with new features added by Digital Creations. HiperDom is a new template system for Zope, based on XML and DOM. It depends on the PyXML library, version 0.6 or newer. Consult the HelpSys for info on using HiperDom Templates. The "official" HiperDom homepage is at http://www.zope.org/Members/lalo/HiperDom where you will also find the HiperDom Wiki (the "official" place for discussion, bug reporting and embrionary documentation). Discussion about the development of HiperDom takes place on the "HiperDom Wiki":http://dev.zope.org/Wikis/DevSite/Projects/HiperDom. Differences with the Hiperlogica 0.4.0 release: - The calling interface has been refactored; HiperDom templates now behave exactly like DTML Documents. This fixes the trailing slash problem in base tags inserted into XHTML documents. - Inclusion of non-callable objects (like Image objects) has been fixed. - Names can now also be paths, so you can include references to objects normally not in the acquisition path. Example:: div hdom:text="images/header.gif" / - XHTML output of empty elements will include an extra space before the slash to ensure compatibility with older browsers. - A new directive, 'call', allows calling of objects without including their return values. This is especially suitable for methods that manipulate the RESPONSE headers or have other side-effects. - A new directive, 'include', allows inclusion of other HiperDom templates into the DOM at render time. - The DataObject object is not included in this release. - Some non-relevant files have not been included (exemplo_pt.html and HiperDom.latte). Issues with this release can be listed on the "ImplementationIssues page":http://dev.zope.org/Wikis/DevSite/Projects/HiperDom/ImplementationIssues. Feedback is greatly appreciated!
[Zope] Re: [Zope-PTK] mynetscape-like product
On Tuesday 26 December 2000 21:53, albert boulanger wrote: Dose anyone have a product or modification to the user's page in the PTK to behave like the user customizable layout you get at sites like mynetscape.com? This would work with RSS and OCS syndication sources (as well as others). We at iuveno have something like that from a recent project, but it is not ready for prime time yet. The basic page layout works, but RSS-integration and customization forms are still missing. Keep asking us! Joachim. ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] How to make two racks work under one specialist?
Hi Dirksen, I think the problem you are having has to do with using 'getItem'. From the SkinScriptSyntax Wiki page: "If the RESULT is NOT_FOUND, the search for the attribute value falls through to the next declaration (or attribute provider if the SkinScript is finished). If there is an OTHERWISE LET clause, the assignments given there are computed and cached for the remainder of the (sub)transaction..." This is meant to work automatically for "WITH QUERY ... COMPUTE" scripts, but in your case the RESULT was _.None, so the test for NOT_FOUND didn't work. I think you could in principle set up a chain of attribute providers: WITH Deliverables.getItem(self.id) COMPUTE theStandInObject=RESULT or NOT_FOUND then WITH self.theStandInObject COMPUTE name OTHERWISE_LET name='not availble' so that if RESULT is _.None from Deliverables.getItem, then the 'StandIn' will be NOT_FOUND and the COMPUTE will fall through to the 'OTHERWISE LET' clause. However I don't think this works well when the existance of the virtual object in the Rack depends on 'theStandInObject' being found if theStandInObject is NOT_FOUND then the Rack returns _.None and you're out of luck. Here's a thought... what if you put a 'dummy' object somewhere accessable and did this: WITH Deliverables.getItem(self.id) COMPUTE theStandInObject=RESULT or theDummyObject then you could set all the attributes of theDummyObject to be whatever you wanted and you would never get a RESULT of NOT_FOUND. -steve "Dirksen" == Dirksen [EMAIL PROTECTED] writes: Dirksen Hi Steve, Dirksen It works! Thank you. Dirksen Still there's a couple of things to be cleared. What's Dirksen the use of 'otherwise' clause? And is it true that the Dirksen 1st 'with' clause fails, the whole skinscript process Dirksen fails (so one 'with' clause is all one skinscript can put Dirksen up with)? Dirksen Dirksen Dirksen __ Do You Dirksen Yahoo!? Yahoo! Photos - Share your holiday photos Dirksen online! http://photos.yahoo.com/ ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] standard_error_message woes!
Like: http://site.org/fish It finds the keyword fish, and sees there is a legit URL: http://site.org/software/beta/fish And redirects it. But that'd need t ZCatalog at least. And probably the PathHandler product to do what you want ;-) cheers, Chris ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
[Zope] Re: [Zope-PTK] Example activity-explicit workflow system
I am very interested in a general, fairly full featured workflow system on top of Zope as opposed to using an external workflow product for a fundamental reason. While one could come up with a way of getting what I need with an external system, it would be messy. I need workflows to be explicit and versioned. We make use of ZODB to version content that end users generate. We don't make use of Zope's versioning but use or own hierarchical version tree which is easy to do in Zope. End users generate new workflows and revisit past workflows. The user sees this versioning as notebook pages using a scientific notebook metaphor. It is much cleaner to use ZODB and ZPublisher to do all this instead of having a version tree in Zope and a bunch of correspondences to outside objects in an external workflow system. Thus, there is a lot of value in having a fairly general workflow system whose representation and publishing uses ZODB and ZPublisher. By the way, if there are other folks interested in such a workflow system let me know. We may just bite the bullet and build one. I have who will do most of the coding in mind. What will be produced is a Zope-based workflow system with a java thin client visual workflow/dataflow editor. Right now I do not have the funding but folks with resources could speak now ;-). Regards, Albert Boulanger CTO vPatch Technologies [EMAIL PROTECTED] http://www.vpatch.com ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] standard_error_message woes!
Tino Wildenhain wrote: facility for patches). This means including the error pages for 40x. I'm also a fan of localisated error messages as well as wap-alized ones ;) Hmm... well, this seems like a good Fishbowl project for me. Basically, that code shouldn't be tacked on the end, the error message should be generated by the standard_error_message entirely and not at all dependent on whether or not Zope is running in Debug mode. It's not a big change (maybe 1hrs work?) but, like you, I can't remember where the code lives. Almost related, how about in the same project changing the hard coded errors for security (and anything else like that) so that they use the nearest standard_error_message up the tree? Can't be more than a coupla person-days work... maybe DC has some resource they could spare for this? I would give it a go, but Squishdot seems quite buggy right now and I'd really like to fix it ;-) PS: Chris, will you be in amsterdam? Sorry, can't make it :-S cheers, good luck to all for the new year, Chris ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] Zope eating CPU/RAM - how do I find the culprit?
Are you using ZSQLMethods by any chance? -jon [EMAIL PROTECTED] (Cees de Groot) writes: Our production Zope machine has developed a habit over Christmas where it starts eating CPU and RAM (one Python thread on 100% CPU time, and I've seen kernel messages indicating that Zope was killed because it hit an out-of-memory condition which means it sat on ~500Mb RAM). I'm completely in the dark about what causes this (probably some of my own code, I installed some new bits a couple of days ago), but what's worse: I really don't know how to set about finding the problematic code. Is there a way to find out what code a thread is running? -- Cees de Groot http://www.cdegroot.com [EMAIL PROTECTED] GnuPG 1024D/E0989E8B 0016 F679 F38D 5946 4ECD 1986 F303 937F E098 9E8B ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev ) ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] can't change zclass meta type
Geoffrey L. Wright writes: I can't seem to completely change a zclass meta type. When I make a change on the "basic" tab of the zclass, my change seems to take, and the new meta type is displayed in the form. But when I try to add an instance of this metatype, I still see the old meta type name in the dropdown. When I try to reference objects by metatype in my code, the new name does work, so it appears that the new metatype is ... mostly ... applied. Is this a bug? Or is the some other location where I also need to change this info? New Meta Types must register with Zope to be available in the dropdown list. Apparently, this registration is not changed when you modify the meta type -- a bug. File a bug report into the collector. I would expect, the bug will get a low priority. Thus, if its fix is essential for you, you may look at the code and fix it yourself. A patch for the collector would be great in this case. Dieter ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] inserting half a dtml tag into a zclass
Tim Hicks writes: This is a multi-part message in MIME format. --=_NextPart_000_0009_01C07071.533E96C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable You are here long enough: you should know, we do not like MIME messages. ... isolating privacy checks ... dtml-var privacy dtml-var standard_html_header dtml-var standard_html_footer /dtml-if I know about 2 possible approaches: I. let your "privacy" method return a value (using "dtml-return") and check it above: dtml-if privacy ...header... ... ...footer... /dtml-if II. I think (this implies, I am not sure), that ZPublisher translates exceptions into HTTP response codes. This would mean, you could try: In your "privacy" method: dtml-call "RESPONSE.redirect(...)" dtml-raise type="Redirect"/dtml-raise in your other objects: dtml-call privacy ...header... ...footer... Dieter ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] Z-Commerce components
Jason Cunliffe writes: Looking for an e-commerce tool to use for a Zope-based site for artists to share, display and sell 'net art' and more. Also to allow sponsors to do just that. There is a (low traffic) mailing list especially for Z-Commerce (to be found via zope.org). Look into its archives. You will find a thread that discusses 2 or 3 approaches. Dieter ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] Re: Z-Commerce components
On 28 Dec 2000, at 15:38, Jason Cunliffe wrote: Thanks! Do you know is anyone _using_ Wampum : a. For handling real transactions, or is it still in development stages ? We are using it for real transactions at http://www.adirondackcraft.com (RH Linux 7) So far has worked perfectly. We created our own shopping cart and checkout stuff. Brad Clements,[EMAIL PROTECTED] (315)268-1000 http://www.murkworks.com (315)268-9812 Fax netmeeting: ils://ils.murkworks.com AOL-IM: BKClements ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] Zope install - cannot login
Odile =?iso-8859-1?Q?B=E9nassy?= writes: Here is a problem I'm encountering while installing Zope through PCGI : ZODB.POSException.StorageSystemError: Could not lock the database file. There must be another process that has opened the file. As the message tells you, there is another Zope process accessing your "var/Data.fs". Are you sure, that your ZServer started Zope is really stopped? python z2.py ImportError: No module named ZServer Do not start Zope in this way, use the "start" script. This script defines some environment variables (such as PYTHONHOME) before it executes "python z2.py". These environment variables are necessary to find Zope's infrastructure. Dieter ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
[Zope] Slow response with 2.2.5
Hi Brian, I have noticed a problem with 2.2.5b1 running under Win98. The ZServer seems to wait for 5 seconds or so before serving each page. My fresh installation of 2.2.4 has no noticable delay. To duplicate this, go to a Windows 98 machine and: - Install Zope-2.2.4-win32-x86.exe and start Zope - Try http://localhost:8080 and see the Zope welcome screen appear almost instantaneously - Shutdown Zope - Upgrade to 2.2.5 by installing Zope-2.2.x-to-2.2.5b1-win32-x86.tgz then starting Zope - Try http://localhost:8080 and wait for 5 seconds for the Zope welcome screen to appear This was observed on a brand new IBM Thinkpad T21 (700MHz PIII, 128MB) running Win98SR2 while not connected to any network (No cable modem while on holiday!). Regards, Stephen ___ Stephen Simmons, [EMAIL PROTECTED] HealthArena B.V., Amsterdam, The Netherlands phone +31 20 486 0555; mobile +31 6 1505 3086; fax +31 20 486 0559 ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] Zope eating CPU/RAM - how do I find the culprit?
[EMAIL PROTECTED] said: I've made zope inaccessible two different ways: - passing bad data to ZDGChart - sending mail when MailHost is down (i.e. the host it is supposed to connect to is not available) It seems a bug in my virtual hosting code (a Python method that acts as the AccessRule for the root) pushes an empty string on the TraversalRequestNameStack. Could that be the cause? -- Cees de Groot http://www.cdegroot.com [EMAIL PROTECTED] GnuPG 1024D/E0989E8B 0016 F679 F38D 5946 4ECD 1986 F303 937F E098 9E8B ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
[Zope] Hotfix_2000-12-08 and MailHost
Hello, after the installation of the 12-08 fix you can't add MailHost anymore. I see that the product use a "legacy" method. Any solution? Thank you in advance. -- Best regards, Salvatore Sciacco mailto:[EMAIL PROTECTED] ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
[Zope] Zope vs. Enhydra
I know, I know -- total flame bait... But really, has anyone had any experience with the *other* open source Web Application Server, Enhydra? I just "discovered" it the other day while writing an introduction to Zope for my co-workers, as we're about to embark on a serious new development project. At any rate, after already being *highly* impressed and sold on Zope - I ended up spending a little time at www.enhydra.org and became more and more enthused. I'm currently downloading it to give it a fair chance - but I was wondering if anyone else here has happened to have already given it a review, and if so, could you relay some of your findings/opinions? I've yet to stumble across any mention of Enhydra in any of the Zope documentation/introductory material or even yet on this list. I'd be interested in hearing any testimonials from Zopistas. Thanks for any input! Beers, Corey ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
[Zope] Ñ ÍÎÂÛÌ ÃÎÄÎÌ
Title: Æóðíàë "Íîâûé Àêðîïîëü" Äîðîãèå äðóçüÿ! Ðåäàêöèÿ æóðíàëà "Íîâûé Àêðîïîëü" îò âñåé äóøè ïîçäðàâëÿåò âàñ ñ Íîâûì ãîäîì è íàñòóïëåíèåì íîâîãî òûñÿ÷åëåòèÿ! Ïðåäñòàâëÿåì Âàì æóðíàë "Íîâûé Àêðîïîëü". Êîíå÷íî, ó Âàñ âîçíèêíóò âîïðîñû: "À ÷òî ýòî çà æóðíàë? ×åì îí îòëè÷àåòñÿ îò äðóãèõ? Íàéäó ëè ÿ â íåì ÷òî-íèáóäü èíòåðåñíîå äëÿ ñåáÿ?.." Ìû íàäååìñÿ, ÷òî íà ÷àñòü ýòèõ âîïðîñîâ îòâåòèò ñàì æóðíàë è åãî ìàòåðèàëû, íî íà íåêîòîðûå èç íèõ ñòîèò îòâåòèòü ñåé÷àñ. Íàø æóðíàë - ýòî íå ïîïûòêà âûãîâîðèòüñÿ, ýòî äîðîãà, êîòîðàÿ ïðîõîäèò ïî ìåñòàì, ãäå òâîðèëàñü èñòîðèÿ ÷åëîâå÷åñòâà, ãäå ðàáîòàëè âûäàþùèåñÿ ëþäè, ãäå ñîâåðøàëèñü ïîðàçèòåëüíûå îòêðûòèÿ. Ýòî âîçìîæíîñòü âìåñòå ïîðàçìûøëÿòü, çàíÿòüñÿ íàó÷íûì ïîèñêîì, óçíàòü ìíîãî íîâîãî è ïðîñòî ïîáîëòàòü. Íàì áû î÷åíü õîòåëîñü, ÷òîáû ìû ñòàëè íå ñëó÷àéíûìè ïîïóò÷èêàìè, à äîáðûìè äðóçüÿìè, ãîòîâûìè äåëèòü ðàäîñòü îòêðûòèé è òðóä ïîèñêà, à ñàìîå ãëàâíîå - ëþáîâü ê ìóäðîñòè, êîòîðàÿ ñîãðååò íàøè ñåðäöà. È òîãäà ìàòåðèàëû ýòîãî æóðíàëà íå áóäóò ïðîñòî èñòî÷íèêîì èíôîðìàöèè, à ïîçâîëÿò îòêðûòü çàãàäî÷íûé ìèð, æèâóùèé â êàæäîì èç íàñ, - ìèð íàøåé äóøè. Ïåðåä âàìè íåêîòîðûå òåìû íàøåãî æóðíàëà (æóðíàë èçäàåòñÿ ñ 1997 ã.): Áóäåì ëè ìû æèòü ñíîâà? Ïî÷åìó ìû, ëþäè, îáìàíûâàåì? Çàãàäî÷íûå öèêëû â æèçíè ÷åëîâåêà Êòî íàéäåò ñîêðîâèùà òàìïëèåðîâ? Íåôåðòèòè: ñòðàíñòâèå ÷åðåç ïåñêè âå÷íîñòè Èñêóññòâî: àëõèìèÿ òâîð÷åñòâà Áîåâûå èñêóññòâà è ðûöàðñêèå îðäåíû Òàèíñòâåííûé ìèð êåëüòîâ  ïîèñêàõ Ãðààëÿ "Íåâîçìîæíûå" ìå÷òû Èñòîðèÿ ìàãèè Âå÷íàÿ òàéíà ëþáâè Ïîäïèñíîé èíäåêñ æóðíàëà â Îáúåäèíåííîì êàòàëîãå (çåëåíîì) - 39052 Öåíà çà ïîëóãîäèå - 96,42 ðóá. Àäðåñ â Èíòåðíåòå: http://www.newacropol.ru
Re: [Zope] Zope eating CPU/RAM - how do I find the culprit?
Jon Prettyman [EMAIL PROTECTED] said: Are you using ZSQLMethods by any chance? Yes, why? (I think I've fixed /this/ problem, but if ZSQLMethods will cause similar behaviour I'd like to be prepared :-)) -- Cees de Groot http://www.cdegroot.com [EMAIL PROTECTED] GnuPG 1024D/E0989E8B 0016 F679 F38D 5946 4ECD 1986 F303 937F E098 9E8B ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] Slow response with 2.2.5
Stephen Simmons wrote: Hi Brian, I have noticed a problem with 2.2.5b1 running under Win98. The ZServer seems to wait for 5 seconds or so before serving each page. My fresh installation of 2.2.4 has no noticable delay. Interesting. I was just going to comment about the performance IMPROVEMENT that I got on RH Linux with the upgrade to 2.2.5b1 -- Tim Cook, President -- Free Practice Management,Inc. | http://FreePM.com Office: (901) 884-4126 Censorship: The reaction of the ignorant to freedom. ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Re: [Zope] Zope vs. Enhydra
Flame bait? Catch this: I have recently been reaching the disillusionment phase with Zope, so please take it all with several grains of salt. I happened upon an article in the ArsDigital Systems Journal that I thought was a fairly neutral review of Enhydra. http://www.arsdigita.com/asj/enhydra/index.adp The more thought-provoking part of the article was a reference to a fairly disparaging view of application servers in general. http://www.arsdigita.com/asj/application-servers What got me to ArsDigita was AMK's Zope frustrations. http://www.amk.ca/python/writing/why-not-zope.html (BTW, some of these issuses are being addressed.) Which also lead me to Chuck Esterbrook's musings http://pywx.idyll.org/advocacy/why-not-zope.html http://pywx.idyll.org/advocacy/why-not-zope-2.html Chuck Esterbrook created webware as his answer to Zope's limitations and complexity. http://webware.sourceforge.net/ Titus Brown advocates use AOLserver and Python (instead of TCL) http://pywx.idyll.org/advocacy/ IBM developerworks has a couple of Enhydra articles (which I have not read yet) http://www-106.ibm.com/developerworks/library/enhydra.html http://www-106.ibm.com/developerworks/library/w-friend.html?dwzone=web In summary: Don't build what you don't need -- do the simplest thing that could possibly work. Evaluate potential solutions in terms of business value to YOUR customers, not in terms of market hype. HTH -- Terrel Shumway ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )