[Zope-dev] What to return to a document and how to access it

2000-05-19 Thread Thomas Weholt
Hi, These are defined in a product: #--- class SomeClass: """DocString""" def __init__(self): """DocString pass SomeDoc = HTMLFile('Some', globals()) # Some.dtml -> DTML-do

[Zope-dev] ZODB3 - updated stored objects

2000-05-23 Thread Thomas Weholt
Hi, I read somewhere on www.zope.org that each time you update an object stored in ZODB3 a new record will be appended. Does this mean the entire object will be stored in a new location with the updated values? If so, isn`t that kinda dumb, at least if there`s no way to override this "feature"? A

[Zope-dev] ZCatalog and Huge Customized Objects in ZODB

2000-05-23 Thread Thomas Weholt
Is it possible to store lots of huge objects, like 2-3 MB in size each, in ZODB and catalog them for easy searching? Can I catalog special properties of custom objects and skip others? Are there any limitations to ZCatalog and the amount of stuff to index, before the speed is affected? If somebo

[Zope-dev] Zope + Gadfly = Rapid Prototyping?!

2000-05-23 Thread Thomas Weholt
Hi, Now that I`ve a couple of SQL-methods working with Gadfly, I`m wondering if they will work without modification if I install a different SQL-database, like Postgres. Of course, that depends on SQL-syntax used and what part of SQL-standard the other database supports, but for rather simple

[Zope-dev] XML to SQL or XML into tables

2000-05-24 Thread Thomas Weholt
Hello, Has anybody tried to somehow get xml-data into SQL-statements or in some other way use xml-data as datasource for insertion into tables? It shouldn`t be impossible, if we could just agree on some format or DTD to use. Ex.

[Zope-dev] use ODBC to access other database

2000-05-28 Thread Thomas Weholt
Hi, I have a Interbase-database I want to access from Zope, but cannot seem to find any Database-adapter-products etc. anywhere. Could I use a ODBC-adapter in Zope to connect to this database, or on some other manner connect to this database using SQL-methods in Zope-pages? Does anybody know if

[Zope-dev] Zope`s global.asa

2000-06-13 Thread Thomas Weholt
Hi, This might be a stupid question, but I`ll remain stupid at least until someone answers so ... Is there a global.asa counterpart in Zope, a place to put stuff that is or should be accessable in the entire site, like database-connections etc.? I was forced ( it was terrible, just terrible I te

[Zope-dev] Zope vs. .... & missing features

2000-06-15 Thread Thomas Weholt
Hi, Have anybody compared Zope to Roxen? Midgard? Or similar products? I saw Roxen had document revision system, a thing I "reported missing" earlier in this list. It also had full support for XML 1.0 and XSLT 1.0 or at least that`s what they claimed. These two features should be stuffed into Zop

[Zope-dev] PostgreSQL 7.0.x support??

2000-06-20 Thread Thomas Weholt
Hi, Got some problems getting my ZPyGreSQL-adapter working. I`ve installed PostgreSQL 7.0.2. Eh ... is there something I should know? Are there any PostgreSQL zope-products out there supporting 7.0.x, other than that based on PoPy, cuz that was one helluva pain to compile and get to work the last

[Zope-dev] Error running on port 80, different IP than default

2000-06-21 Thread Thomas Weholt
rt 80. This could be off-topic, a Linux problem, but I need serious help on this one. Thanks. Thomas Weholt ___ Zope-Dev maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related

[Zope-dev] Searching a relational database

2000-06-25 Thread Thomas Weholt
Hi,   How can I search a relational database thru Zope? ( I`m using PostgreSQL 7.0.2 on Linux ). I have a DVD/VHS-organizing project that would be pretty useless if people couldn`t search for movies by entering just parts of the title.   Ex. typing alien should show "Alien" and "Alien 3".

[Zope-dev] Common Icons or Free Icon collection

2000-06-26 Thread Thomas Weholt
Hi, I need some icons/pics for my Zope project. Are there any common icons for Zope I could use, and if not, shouldn`t there be such a thing? Does anybody know of any other collection of free icon-collections available ? Thomas ___ Zope-Dev maillist

[Zope-dev] Full-text Indexing FOLLOW-UP

2000-06-27 Thread Thomas Weholt
Hi ( again ) Wouldn`t Zope as a web-database integrator benefit from a feature like full-text searching? ( Everybody answers yes and nods. ) It seems as if Zope is aimed at information-publishing, using a RDBMS as source for that information. An initiative from the Zope community to either create

[Zope-dev] Temporary tables expire when ??

2000-06-27 Thread Thomas Weholt
?   Can I override this, so that the temporary tables are destroyed after some time of inactivity or if the user logs off??   Thanks.   Thomas Weholt

[Zope-dev] Comments on Zopes performance-article??

2000-06-29 Thread Thomas Weholt
http://weblogs.userland.com/qube/2000/06/26 Just found this article were Zope scores really bad, - compared to the competition that is. Any comments? How can Zope improve performance in the future? I know Zope has alot of other good qualities, at least compared to Apache, but performance tends

[Zope-dev] Using Java-Script with DTML

2000-06-29 Thread Thomas Weholt
Hi I`m trying to send a parameter to a java-script function and then use that parameter in the java-script function to look up a record-set in a database with a dtml-method. With no luck so far. Ex. alert (text); } ... The link sends an id to the java-script-method. A

[Zope-dev] Use ZODB3 and ZCatalog for indexing purposes

2000-07-25 Thread Thomas Weholt
Hi, I'm wondering about using ZODB3 and ZCatalog for a CD-indexing project. The actual cd-roms will seldom change after they've been registered, and I'd like to have some sort of auto-full-text-search feature. How does ZODB3 and ZCatalog fit in this picture? I'm NOT making a Zope-product yet, jus

[Zope-dev] Now; - problems using ZODB/ZCatalog in Python

2000-07-25 Thread Thomas Weholt
First off, sorry for posting a huge, stinkin' post like this, but instead of posting ten times trying to explain what I do, I post this once and hope somebody can point out what's wrong and I'll leave you all alone, at least for a while. The example is from the Catalog outside Zope-tutorial avai

[Zope-dev] How can Catalog index all parts/words of a attribute

2000-07-25 Thread Thomas Weholt
Hi, I try to use Catalog with a object stored in ZODB3. I need to match single words in attributes in what might be a long string with several words in it. I've tried to set "self.cat.addIndex('name' ,'TextIndex' )" which is supposed to be full text searching at least said to be in the Zope-pages

[Zope-dev] Using Zope-modules in Python

2000-10-18 Thread Thomas Weholt
Hi, I want to use some Zope-modules in plain Python, no web-stuff, namely ZODB and Persistence (maybe others too ). I've installed BeOpen Python 2.0 and Zope 2.2.2. I want to import the Zope-modules, but adding the C:\Program Files\WebSite\lib\python-folder to sys.path just doesn't cut it. I g

[Zope-dev] Writing my own request-handler

2000-10-24 Thread Thomas Weholt
Hi, I want to write my own request in Zope. I want a specially formatted request or a command to be intercepted and processed by my own modules. If the user tries to access a url like http://www.myserver.org/myhandler or using a specific port on the server Zope traps this and my request_handle

[Zope-dev] Urgent code-review: code works on win2k, fails on Linux

2000-10-27 Thread Thomas Weholt
and the final product must run on Linux. Sorry for posting something this big, but I'm desperate. Thanks. Best regards, Thomas Weholt - script begins - # Standard modules import sys, os, sha sys.path.insert(0, /usr/local/Zope/ZServer/medusa/') # Medusa modules import as

[Zope-dev] Indexing/Searching lots of XML-data

2001-01-31 Thread Thomas Weholt
regards, Thomas Weholt ___ 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

[Zope-dev] Performance of Medusa ( Zope )

2001-04-09 Thread Thomas Weholt
Hi, Can anybody point to a review/benchmark/performance report on Zope and/or Medusa, preferrably compared against Apache and MS IIS. Most interested in Medusa stripped of any Zope related packages, but I'll be happy for any info you can provide. Thomas __

[Zope-dev] Project manager ala Sourceforge in Zope ??

2002-06-07 Thread Thomas Weholt
just getting started with Zope but has several years background in Python. What would be the best way to develop a product like this from scratch ?? Any comments, ideas or people who want to participate in a project like this, please contact me. Best regards, Thomas W

[Zope-dev] How-to : Defining custom DTML-tags ??

2002-06-10 Thread Thomas Weholt
lse. Best regards, Thomas Weholt ___ 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://list