Re: [Zope] can not install ZMySQLDA

2007-03-09 Thread Daniel
Sorry! I'm new to this fields. Where can I change this "PYTHON_EGG_CACHE"? Is it in zope.conf? I can not find it. Thanks, -DY On Thu, March 8, 2007 10:28 pm, Maciej Wisniowski wrote: > >> I already change the permission. >> 8 drwxrwxrwx 4 zope zope 4096 Mar 7 22:13 .python-eggs >> The result

Re: [Zope] can not install ZMySQLDA

2007-03-09 Thread Daniel
export PYTHON_EGG_CACHE="/tmp" chmod 777 tmp /opt/Plone-2.5.2/zeocluster/bin/restartcluster.sh It still has the same error, and did not got to the /tmp directory. Where did I set wrong? Thanks, Daniel ExtractionError: Can't extract file(s) to egg cache The following error

[Zope] Tutorial

2000-05-26 Thread Daniel Fairs
Hi, I see Amos has a tutorial. Could this be added by default to each member's Zope area on Zope.org? Might me useful almost as a small 'demo' of Zope's features. Cheers, Dan Daniel Fairs [EMAIL PROTECTED], [EMAIL PROTECTED] http://www.darkalley.co.uk, http://listen.

[Zope] newbie: zope not finding python libs

2000-06-06 Thread Daniel Chudnov
I've had a series of problems getting products to install correctly and importing some test external methods to go; each of these seems to be related to zope finding the right python libraries at the right time. Looking through the misc docs I find comments about PYTHONPATH but nothing that indi

[Zope] PowerMac 7500 with LinuxPPC and Zope?

2000-06-27 Thread Daniel Muller
Hi, I would like to turn an old Mac 7500 into a Zope server. LinuxPPC installs on the Mac PowerPC using the Red Hat 6.1 linux distribution. Does anyone have any experience with Zope with this type of set up? Should I consider a different linux distribution than PPC? Thanks, Daniel

Re: [Zope] HEELLPP - Please !!!

2000-07-11 Thread Daniel Rusch
> I think this line: > where users.user_login= Should be: where users.user_login= <--- no name= DR > Hi, > I have the following ZSQL-Method: > > arguments : login > - > > select user_passwd as real_password > from users > where users.user_login= > > > when I now press "ch

[Zope] .dtml files

2000-07-12 Thread Daniel Rusch
I've been digging into to the inner workings of Zope trying to gleen as much Zen as possible, before I implement a write of our existing framework. During this process I have noticed that Zope's dtml pages are stored on the file system as .dtml files (i.e. roleEdit.dtml) The question then is how

Re: [Zope] Zope-killer: zSQL method that crashes Zope

2000-07-21 Thread Daniel Rusch
If it matters to anyone, Andy isn't the only one with Zope killing ZSQL Methods I just spent way too much time trying to figure out why our stage enviroment was crashing. Turns out to be a ZSQL method which fails. Of course it wasn't wrapped in a try/except . Oh well, so much for standards...

Re: [Zope] zope 2.2.0 simply dies

2000-07-24 Thread Daniel Rusch
Make sure that ALL your dtml-in's are wrapped in try/excepts we have seen this happened when there is a problem with either the sql or database adaptor. DR   Andy Pahne wrote: I have a Zope-2.2.0 installation running on a Redhat 6.0 Linux Box. It simply dies sometimes. Three times in the last

Re: [Zope] while

2000-07-26 Thread Daniel Rusch
Try: "Leichtman, David J" wrote: > Is there an easy way to simulate the functionality of a while loop in DTML? > > ___ > Zope maillist - [EMAIL PROTECTED] > http://lists.zope.org/mailman/listinfo/zope > ** No cross posts or HTML encoding! **

[Zope] CorruptedDataError

2000-08-08 Thread Daniel Rusch
My colleague had a dtml document turn itself into a folder. When we try to delete it we get a "CorruptedDataError". Any thoughts on how to kill the offending vermin? DR ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zop

[Zope] gif getting dumped...

2000-08-10 Thread Daniel Rusch
Hey all, I know this isn't exactly a zope question, but it is occuring in my zope site so here goes: I have a gif file (a company logo) that I use on pdf files. The pdf's are created by a python app that I wrote which uses report lab. This python app is called from my zope site. Everything works

[Zope] Product question

2000-08-15 Thread Daniel Rusch
I've created a product, installed it and it appears on the Product Management at /Control_Panel / Products list. The question is how do I get it to appear in the drop down of Available Objects? Dan ___ Zope maillist - [EMAIL PROTECTED] http://lists

Re: [Zope] Product question

2000-08-15 Thread Daniel Rusch
orrectly for that product, so that > you are allowed to create it. > > -- > Andy McKay, Developer, ActiveState > http://www.ActiveState.com > Programming for the People > > - Original Message - > From: "Daniel Rusch" <[EMAIL PROTE

[Zope] Another Product question

2000-08-15 Thread Daniel Rusch
Stafford wrote: > From: "Daniel Rusch" <[EMAIL PROTECTED]> > > > I've created a product, installed it and it appears on the Product > > Management at /Control_Panel / Products list. > > > > The question is how do I get it to appear in the drop

Re: [Zope] Creating properties with a product.

2000-08-16 Thread Daniel Rusch
Take a look at the doc string in the class definition of PropertyManager. It states that: An object may specify that it has one or more predefined properties, by specifying an _properties structure in its class:: _properties=({'id':'title', 'type': 'string', 'mode': 'w'},

[Zope] The mysteries of Product icons ?????

2000-08-16 Thread Daniel Rusch
I made an icon form my new product, Zope loaded it correctly. Then someone had the brilliant idea to change it. I can not figure out how to get Zope to load the new icon. I have deleted the product from Product Management at /Control_Panel / Products, rm the *.pyc files, bounced Zope, but it stil

Re: [Zope] How to assing a string value to a variable in DTML?

2000-08-17 Thread Daniel Rusch
Notice the quotes. See the How to on Let tags: http://www.zope.org/Members/michel/HowTos/LetTagHow-To DR "iap_y2fun.com" wrote: > Forgive me for this stupid question: > How to assing a string value to a variable in DTML? > for example: > > b='b'> > > > > it causes error, not what I

[Zope] Product inhetitance question

2000-08-17 Thread Daniel Rusch
Hey all, Say I have a fully functional (and more importantly, working) Product will call A. I want to extend this Product's capabilities so I wish to derive another class from it, call it B. No problem, class B(A): . The question is, (I think the answer is no) is there a way to i

[Zope] getting base classes's (super class) _properties tuple

2000-08-17 Thread Daniel Rusch
Say I have a fully functional (and more importantly, working) Product will call A. I want to extend this Product's capabilities so I wish to derive another class from it, call it B. No problem, class B(A): . now in class B I want to add a new property. Is the a way of getting the

Re: [Zope] Product inhetitance question

2000-08-17 Thread Daniel Rusch
ies) Andy McKay wrote: > Hmm i just tested it in Zope and it worked fine for me. > -- > Andy McKay, Developer, ActiveState > http://www.ActiveState.com > Programming for the People > > - Original Message - > From: "Daniel Rusch" <[EM

Re: [Zope] getting base classes's (super class) _properties tuple

2000-08-17 Thread Daniel Rusch
27;bb':'BB'}, ] > _properties = _properties + A._properties > > b = B() > print b._properties > > Works for me. > -- > Andy McKay, Developer, ActiveState > http://www.ActiveState.com > Programming for the People > > - Original Message -

[Zope] Creating an object from within another

2000-08-17 Thread Daniel Rusch
So far so good, Next hurdle, at least the problems have been cut down to hurdles from walls. I have a folderish product say myFolder, in the manage_addMyFolder function I want to create an object of my product B. so I do this: def manage_addmyFolder(self, id, title='', REQU

Re: [Zope] Creating an object from within another

2000-08-17 Thread Daniel Rusch
n Andy McKay wrote: > Not to sure there Im afraid. The obvious answer is the manage_addB doesnt > exist whereas manage_addDTMLDocument does. > > -- > Andy McKay, Developer, ActiveState > http://www.ActiveState.com > Programming for the People > > ----- Or

[Zope] Product question, third posting

2000-08-18 Thread Daniel Rusch
I've created a folderish product. When I select that product from the available objects list, thus creating an instance of that product, I can create objects like dtml document and dtml method in the new folderish object (very similar to what happens when you instantiate a folder object, you can h

[Zope] Fourth Posting, is this really that difficult or have I been blackballed :)balled :)

2000-08-18 Thread Daniel Rusch
I've created a folderish product. When I select that product from the available objects list, thus creating an instance of that product, I can create objects like dtml document and dtml method in the new folderish object (very similar to what happens when you instantiate a folder object, you can

Re: [Zope] Creating an object from within another

2000-08-21 Thread Daniel Rusch
while you're in > Python. > > On Fri, 18 Aug 2000, Kapil Thangavelu wrote: > > > Dieter Maurer wrote: > > > > > > Daniel Rusch writes: > > > > So far so good, > > > > > > > > Next hurdle, at least the problems have be

Re: [Zope] Fourth Posting, is this really that difficult or have I been blackballed :)balled :)

2000-08-21 Thread Daniel Rusch
not sure what you mean by "subobject adding in your __init__ method" Dan Kapil Thangavelu wrote: > btw daniel, > > i've looked at some your postings for the day and i thought i should > tell you that most of your problems would go away if you did subobject >

[Zope] I'm really confused: Creating an object from within another

2000-08-21 Thread Daniel Rusch
on. > > On Fri, 18 Aug 2000, Kapil Thangavelu wrote: > > > Dieter Maurer wrote: > > > > > > Daniel Rusch writes: > > > > So far so good, > > > > > > > > Next hurdle, at least the problems have been cut down to hurdles from walls. > &

[Zope] I think I'm close, but still no luck

2000-08-24 Thread Daniel Rusch
Hello, (See bottom of this message for all the iterations I have tried) I've created a product called BasicDocument. I've installed it and it works great. I've also created a folderish product (called SimpleSite). When a user selects the SimpleSite product from the available objects list, thus

[Zope] What does context.registerBaseClass() do ???

2000-08-24 Thread Daniel Rusch
I have searched the FM's and I cannot find anything on context.registerBaseClass(). Can anyone explain what this does for me and what the syntax of the argument list should be? Thanks, Dan ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.

[Zope] It Works!!!! I think I'm close, Product Creation and other threads

2000-08-25 Thread Daniel Rusch
dBasicDocument), #icon='basicDoc.gif', legacy=(BasicDocument.manage_addBasicDocument,), ) context.registerBaseClass(BasicDocument.BasicDocument, 'Basic Document') except: print "She's sucking mud in BasicDocument land capt&#

[Zope] Sub Class Question

2000-08-25 Thread Daniel Rusch
I've created a BasicMethod which is derived from the DTMLMethod. everything works great until I try to have the sub class's (BasicMethod) __call__ method call the super class's (DTMLMethod) __call__ method. class BasicMethod(DTMLMethod): """BasicMethod objects are DocumentTemplate.HTML obje

[Zope] Product creation question

2000-08-23 Thread Daniel Rusch
I've created a product called BasicDocument. I've installed it and it works great. I've also created a folderish product. Installed. When a user selects that product from the  available objects list, thus creating an instance of that product, they have an option to  create sub folders which conta

[Zope] newbie dtml-if/expr ?

2000-09-10 Thread Daniel Chudnov
(zope-2.1.6, rh6-linux) How come I can't do this: ...or other obvious (e.g. (extra) (parenthesized)) variations thereupon, but the following seem to work: ... ...or this... ... ...or even worse, this... ... Can't seem to find the answer

Re: [Zope] newbie dtml-if/expr ?

2000-09-11 Thread Daniel Chudnov
present. How's the openhealth effort going? Have you had much direct contact with the O'Reilly folks who are thinking along the same lines? Regards, -Dan Daniel Chudnov Systems Architect Cushing/Whitney Medical Library Yale University Sch

Re: [Zope] How to Pass values to a DTML method ??

2000-09-11 Thread Daniel Rusch
'Test' is single quoted if it is a string, if it is a variable then don't quote it. Notice also the double quotes "some_method(param='Test')" Dan Stuart Foster wrote: > > I have a DTML method that is called from a document. I need to pass a value > to it like a parameter would be passed to a

Re: [Zope] How to Pass values to a DTML method ??

2000-09-12 Thread Daniel Rusch
They pass in the current name space, the context if you will. Someone posted a reply that had a link to the faq that attempts to explains this. DR Stuart Foster wrote: > > This is the way I had to do it what's up with the two extra params? > > -Original Message- > From: [EMAIL PROTECTED

[Zope] Desperate Zope is crashing ....

2000-09-18 Thread Daniel Rusch
Hey all, I have a major problem! Our Zope site is crashing every few hours. I've grep'ed the python processes and they are still running but I can't access any pages. It's very strange because it just started happening last thursday. Prior to that we had no problems. No changes were made to the s

Re: [Zope] DTML Loop, is there a 'continue'?

2000-09-22 Thread Daniel Rusch
I hope there is a dtml-continue, I also have not been able to find it though. What I have done is resorted to an dtml-if (or some times an dtml-unless) that catches the condition I want to short circuit and wrapped the code in the dtml-else. The dtml-unless probably the better choice. dtml-in S

[Zope] Zope Hosting in .au

2000-09-23 Thread Daniel Harris
Hi, Are there any organisations in .au that offer Zope hosting? Thanks, Daniel. ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org

[Zope] Getting properties of objects

2000-09-28 Thread Daniel Rusch
I am trying to build a property seach engine that will search an entire Zope site for a names property (i.e. color) and it would return a list of all objects with that property and it's corresponding value. Addtionally, as an option, I would like to display all properties of all objects (i.e. pass

Re: [Zope] Detecting Roles not working

2000-10-04 Thread Daniel Rusch
This works for me, no pun intended :) Dan Kapil Thangavelu wrote: > > Jonathan Cheyne wrote: > > > > Hi all > > > > I have built the basis of a site with full, form-based webediting of > > objects. Coming round to cleanup time and I wanted to remove certain > > visible functions from the defa

[Zope] Subtracting DateTimes?????

2000-10-05 Thread Daniel Rusch
We backup our database every night at 3:00 AM CT. 15 minutes prior to this (i.e. 2:45 AM) I would like to display a warning. How do I compare the current time to 3:00 AM Central Time ? doesn't work. Any thoughts??? Dan ___ Zope maillist - [E

Re: [Zope] pop back namespace from stack ?

2000-10-10 Thread Daniel Rusch
> In fact I need the id from the dtml-method I'm was called from Try Dan Beuserie Frédéric (stbrice dsi) wrote: > > hi, > > How can I pop back one namespace from the stack ?. In fact I need the id > from the > dtml-method I'm was called from. > > thanks a lot. > > -

[Zope] Error List

2000-10-10 Thread Daniel Rusch
Take a look at this http://www.python.org/doc/current/lib/module-exceptions.html Dan ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/

[Zope] Q: Advantages of storing ZODB in RDBMS

2000-10-13 Thread Daniel Dittmar
ng writing such a storage for a specific RDBMS and I would like to know whether it's worth the trouble. Daniel Dittmar ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! **

Re: [Zope] urgent

2000-10-17 Thread Daniel Rusch
To: From: Subject: PrintServiceOrder is a folder PrintPdfs is a localFileSystem Object Hope this helps Dan jacintha menezes wrote: > > hi, >i am using zope(2.2.1) for sending mails, but it is not possible to send > attachment. > kindly let me know the reason have made use of mime

Re: [Zope] Looking for short term Zope contractor

2000-10-24 Thread Daniel Rusch
If you don't find the person(s) you are looking for, let me know. I am an experienced Zope/Python/SQL/HTML/JavaScript/Unix/Windows developer. Additionally, I have an excellent working relationship with two other developers with similar skills. Unfortunately, we are located in Wisconsin. Dan Ro

Re: [Zope] redirect

2000-10-24 Thread Daniel Rusch
http://zope.org/index.htm?cod='+_.str(test))"> You can't (and don't need to) put dtml tags inside dtml tags. Joaldo Junior wrote: > > how to for that function REDIRECT understand a variable. > > ex. > > http://zope.org/index.htm?cod= test>')"> > > ___

[Zope] [Fwd: [Zope] Not grocking RESQUEST.set syntax]

2000-10-25 Thread Daniel Rusch
Try: This assumes that MyFavoiteZSQLMethod returns the variable filename Dan Noah wrote: > > I'm still not grocking the syntax for setting REQUEST fields. > I want to set a REQUEST field "filename" to be the value returned > by a ZSQL call. I want something like this (pseudo-code of w

[Zope] Re: [Image-SIG] Properly integrating PIL, reportlab, and zope

2000-11-01 Thread Daniel Rusch
I have no idea if this will help you. We use PIL, reportlabs and zope to create P.O.'s, to place a logo on the page we use the following line of code: c.drawInlineImage("gclogo_color.gif", .5*inch, 10.*inch,4*inch) where c is created thusly: c = canvas.Canvas(fileName,(PAGE_WIDTH*inch,PAGE_LENG

[Zope] Check for JavaScript:

2000-11-02 Thread Daniel Rusch
Hey all, Is there a way from zope to check to see if a user has Javascript enabled Thanks, Dan ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http:/

Re: [Zope] images in directories

2000-11-02 Thread Daniel Rusch
When you create your image object set the path correctly then your should work :) Dan CURTIS David wrote: > > Hi, > I check the archives but could not find an answer. How do you display images that >are burried in directories? > For example, > works with the image1 at same level > but > do

Re: [Zope] Check for JavaScript:

2000-11-02 Thread Daniel Rusch
Advice: client issues should be dealt with on client side. Great I agree completely, except if the client has Java/JavaScript turned off it is pretty darn difficult to have client issues dealt with on client side!! Dan Oleg Broytmann wrote: > > On Thu, 2 Nov 2000, Daniel Rusch

[Zope] redirect on Authorization

2000-11-02 Thread Daniel Rusch
Is there a way of having all users redirected upon Authorization? Let me explian. We have a very large site and many of Users bookmark pages. This can cause several problems especially if the site layout changes, security changes at different levels and a user bookmarks a result pages that depe

[Zope] Re: sending query output as an attachment

2000-11-03 Thread Daniel Rusch
This is what we do To: From: Subject: Dan jacintha menezes wrote: > > Hi, > I am developing a product in which a output report (tabular form with > data) is produced in result of a query. I have to send that report to > different people through the mail > facility available in zo

[Zope] Local Time Zone

2000-11-03 Thread Daniel Rusch
Hey all, I know I can get the users language preference like this: The question then is, is there a similar method of getting the users Local Time Zone??? Thanks, Dan ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/z

Re: [Zope] Sorting 'in'

2000-11-06 Thread Daniel Rusch
If it's a database query sorting with sql first. i.e. ORDER BY X,Y HTH Dan > Yvonne Totty wrote: > > Hi! > > I need a query sorted by 2-3 different attributes. The > 'in' sort only lets me do it by one. Is there a way to > get around it? > > TIA > -y > ~~~

Re: [Zope] SAP DB with Zope?

2000-11-08 Thread Daniel Dittmar
eads, so a SAP DB client believes there was a fork () when there was only a change of thread (anyone got a solution to that one?) - you could try the ODBC DA, but I hadn't much luck with that one Daniel Dittmar "Jonathan (ListServ Account)" wrote: > > Hi all, > > Will

[Zope] Advanced search in Zcatalog...

2000-11-13 Thread daniel dias
iven that each field has a priority in the search results. Any ideas on how to implement this? I´ve tried several approaches with absolutely no sucess, and I´m pretty stuck, so any help will be welcome. Thanks, Daniel Dias

[Zope] Advanced search in ZCatalog

2000-11-13 Thread daniel dias
iven that each field has a priority in the search results. Any ideas on how to implement this? I´ve tried several approaches with absolutely no sucess, and I´m pretty stuck, so any help will be welcome. Thanks, Daniel Dias

[Zope] Re: [Fwd: [Zope] Re: Advanced search in ZCatalog (Micha)]

2000-11-14 Thread daniel dias
. if a query is requested for "a b c" it will be interpreted as "a" and "b" and "c"), and I'd like to implement an "or" chain in the queries. Thanks for the help, Daniel --- Maik Röder <[EMAIL PROTECTED]> wrote: > Hi Daniel !

[Zope] Re: [Fwd: [Zope] Re: Advanced search in ZCatalog (Micha)]

2000-11-14 Thread daniel dias
. if a query is requested for "a b c" it will be interpreted as "a" and "b" and "c"), and I'd like to implement an "or" chain in the queries. Thanks for the help, Daniel --- Maik Röder <[EMAIL PROTECTED]> wrote: > Hi Daniel !

Re: [Zope] Search and replace

2000-11-20 Thread Daniel Rusch
I have been following this thread with mild amusement. Those of you who don't think that there is any need for a search and replace are being, at the least, disingenuous. Have you never needed to replace a dtml var that is on a hundred or more pages with another one, but replace it only on some of

Re: [Zope] SAP Database Adapter available?

2000-11-21 Thread Daniel Dittmar
> since the SAP Database has been release on Linux as GPLed Engine > (http://www.sapdb.org), is there a compatible adapter for Zope ? > Nope, but I'm working on it. You'll hear it here first. Daniel ___ Zope maillist - [EM

Re: [Zope] [Urgent] Zope good for multiprocessor hardware

2000-11-22 Thread Daniel Dittmar
I don't think Python (and therefor Zope) will profit from a multiprocessor as there is something known as the 'global lock' which prevents more than one Python thread to run at a time. Things look different if you're accessing a database (other than ZODB) because a properly written database modu

Re: [Zope] How to pass parameters to dtml methods in making

2000-12-15 Thread Daniel Rusch
I tried your code and it works fine both ways for me, are you sure that para exists in the second scenario. DR Dirksen wrote: > > Hi, > > The case is like this: > > > Works fine. > > > The system complains the para being unknown. How come? > > cheers > Dirksen > > _

[Zope] Urgent Help, raise CorruptedTransactionError, message

2000-12-28 Thread Daniel Rusch
When I try to start zope I get the following error. root@capsprodt1:/home/caps/test/zope$ Traceback (innermost last): File "/home/caps/test/zope/z2.py", line 386, in ? exec "import "+MODULE in {} File "", line 1, in ? File "/home/caps/test/zope/lib/python/Zope/__init__.py", line 109, in

[Zope] How to prevent the user from going "Back" to a page???

2001-01-25 Thread Daniel Rusch
All, Has anyone figured out a way to prevent a user from going "Back" to a page once they have passed it. The situation: We have an Order Entry/Billing intranet site where users fill out several pages of data an then submit the information. After the order is submitted we would like to preve

[Zope] Sorting is broken with UTF-8?

2005-04-14 Thread Daniel Dekany
l either (at least I couldn't achieve that), I guess the root of the problem is there. So, what should I do now? UTF-8 charset doesn't work in reality with Zope so I should forget it and switch to ISO-8859-x? -- Best regards, Daniel Dekany

Re: [Zope] Sorting is broken with UTF-8?

2005-04-14 Thread Daniel Dekany
Thursday, April 14, 2005, 12:35:37 PM, Andreas Jung wrote: > --On Donnerstag, 14. April 2005 12:20 Uhr +0200 Daniel Dekany > <[EMAIL PROTECTED]> wrote: > >> I have a Zope 2.7.0(+Plone) instance that uses utf-8 encoding >> everywhere. The problem is that alph

[Zope] How to convert Zope instance charset?

2005-04-24 Thread Daniel Dekany
tored inside the lot of already existing objects of the ZODB. Any idea how to do it, like an already existing tool for it? -- Best regards, Daniel Dekany ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or

Re: [Zope] How to convert Zope instance charset?

2005-04-24 Thread Daniel Dekany
Sunday, April 24, 2005, 2:36:24 PM, Andreas Jung wrote: > --On Sonntag, 24. April 2005 14:18 Uhr +0200 Daniel Dekany > <[EMAIL PROTECTED]> wrote: > >> I have a Zope instance that uses utf-8 for everything. Since >> Python/Zope/etc practically doesn't support ut

Re: [Zope] How to convert Zope instance charset?

2005-04-24 Thread Daniel Dekany
Sunday, April 24, 2005, 4:22:10 PM, Andreas Jung wrote: > > > --On Sonntag, 24. April 2005 16:03 Uhr +0200 Daniel Dekany > <[EMAIL PROTECTED]> wrote: > >> Sunday, April 24, 2005, 2:36:24 PM, Andreas Jung wrote: >> >>> --On Sonntag, 24. April 2005

Re: [Zope] How to convert Zope instance charset?

2005-04-24 Thread Daniel Dekany
Sunday, April 24, 2005, 6:05:42 PM, Andreas Jung wrote: > > > --On Sonntag, 24. April 2005 17:45 Uhr +0200 Daniel Dekany > <[EMAIL PROTECTED]> wrote: > >> Sunday, April 24, 2005, 4:22:10 PM, Andreas Jung wrote: >> First of all, in this thread I don't care wh

Re: [Zope] How to convert Zope instance charset?

2005-04-24 Thread Daniel Dekany
Sunday, April 24, 2005, 7:22:42 PM, Andreas Jung wrote: > > > --On Sonntag, 24. April 2005 18:34 Uhr +0200 Daniel Dekany > <[EMAIL PROTECTED]> wrote: > >> >> Maybe *you* don't get the point. Python has a "virtual machine level" >> setting tha

Re: [Zope] How to convert Zope instance charset?

2005-04-25 Thread Daniel Dekany
plain strings as well, but anybody has successfully done that with Zope? Like, what about the C parts of Zope then? > -aj -- Best regards, Daniel Dekany ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts

Re: [Zope] Forcing all Zope access to come through an Apache/SSL proxy

2005-04-28 Thread Daniel Dekany
Thursday, April 28, 2005, 8:23:27 AM, Reuven M. Lerner wrote: > I've written a Zope application that needs to be behind SSL. I assumed > that the most straightforward way to do this would be to (1) set up Zope > on port 8080 and (2) use Apache to act as a proxy between the outside > world and Zo

Re: [Zope] Charset

2005-04-28 Thread Daniel Dekany
he > config, too. Out of curiosity: How is that? I would think that Zope creates the whole HTTP response (so including the Content-Type: text/html;charset=utf-8 header). OK, mod proxy and such may change some headers in it, but the Content-Type's charset? The charset

Re: [Zope] Re: Epoz and Tidy

2005-04-29 Thread Daniel Dekany
uldn't be changed when he saves it. That effect is really evil.) > -mj -- Best regards, Daniel Dekany ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related li

Re: [Zope] Re: ZWiki and Kupu

2005-04-30 Thread Daniel Dekany
xt.) Or am I lame again? I have tried newer ZWiki, google... no success. -- Best regards, Daniel Dekany ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http:/

Re: [Zope] Re: Epoz and Tidy

2005-05-05 Thread Daniel Dekany
ean, the input shouldn't even be HTML (as far as the user sees it at least), but something like DocBook. > AFAIK, Kupu is integrated in Plone 2.1. > > Daniel Dekany wrote: >> Friday, April 29, 2005, 7:12:30 PM, Maik Jablonski wrote: >> >> >>>Robert (Jamie) M

Re: [Zope] Re: Epoz and Tidy

2005-05-05 Thread Daniel Dekany
Thursday, May 5, 2005, 9:10:23 AM, Duncan Booth wrote: > Cyrille Bonnet wrote: > >> Daniel Dekany wrote: [snip] > One of my thoughts is to provide a separate 'clean this up' button which > would apply a more aggressive tidy-up than the one when saving. Also, I > ag

[Zope] What does Access Content Info. mean for folders?

2005-05-15 Thread Daniel Dekany
r the most commonly used objects at least? Especially, what does it mean for folders? At the first glance it specifies if I can get a contained object, but then I have found that somehow it doesn't apply to the contained objects that are folders, because I can always get those. Is this the

[Zope] strcoll_nocase gone after moving site?

2005-06-30 Thread Daniel Dekany
x27;s going on? Why is the locale module be expected to be already imported, and why is it not imported when it was on the other server? -- Best regards, Daniel Dekany ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope

Re: [Zope] strcoll_nocase gone after moving site?

2005-07-02 Thread Daniel Dekany
Friday, July 1, 2005, 8:11:22 PM, Dieter Maurer wrote: > Daniel Dekany wrote at 2005-6-30 22:28 +0200: >>I have to move a Plone site to another server (from some FreeBSD to a >>new Trustix), while also switching from Zope 2.7.x<5 to 2.7.6, and from >>Python 2.3.x<5

[Zope] Apache 2 + Zope can't gzip HTTP response body?

2005-07-02 Thread Daniel Dekany
t are coming through ProxyPass/ProxyPassReverse. And with Zope I can't rely on extensions (like .html), just on the MIME-type. Do I think these well? Somebody have solved this (gzip-ing the response bodies)? -- Best regards, Daniel Dekany _

Re: [Zope] Apache 2 + Zope can't gzip HTTP response body?

2005-07-03 Thread Daniel Dekany
Monday, July 4, 2005, 12:00:38 AM, Dieter Maurer wrote: > Daniel Dekany wrote at 2005-7-2 20:56 +0200: >>Can I use HTTP "Content-Encoding: gzip" for Zope if I use Apache 2? (And >>should I use gzip content-encoding?) >> >>The mod_gzip doesn't work wit

[Zope] Re: [Plone-users] Re: To gzip or not to gzip?

2005-07-05 Thread Daniel Dekany
Tuesday, July 5, 2005, 4:17:11 PM, Shaun Hills wrote: > Daniel Dekany <[EMAIL PROTECTED]> writes: >> >> But how should I use that? That compresses everything regardless of the >> MIME type (which is of course not good). > > A review of the Apache documentation sh

Re: [Zope] Zope update

2005-07-13 Thread Daniel Dekany
) > (All this is because the instance scripts point to a specific > SOFTWARE_HOME. You could also change that.) > > --jcc -- Best regards, Daniel Dekany ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listi

[Zope] Help with Apache and Plone & Zope Intranet configurations

2005-11-28 Thread Daniel Berhane
rder deny,allow deny from all allow from 172.24 AuthType Basic AuthName "Company Intranet" LDAP_Debug On LDAP_Server ldap.company.com LDAP_Connect_Timeout 1000 Base_DN "o=company" require valid-user Satisfy any thanks, Daniel. ___

[Zope] installing zope in a "web" hosted environment

2006-01-08 Thread Daniel Gross
not use its built in web server but the apache server of the web host. appreciating your response, Daniel ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http

Re: [Zope] installing zope in a "web" hosted environment

2006-01-08 Thread Daniel Gross
which is way too expensive for my resources and needs ... thanks, Daniel Rakotomandimby Mihamina wrote: On Sun, 2006-01-08 at 09:30 -0500, Daniel Gross wrote: Hello, Hi, to install zope using ftp only. If FTP-only, you wont be abble. If you have ssh/

[Zope] changing listening port for zope

2006-03-25 Thread Daniel Godefroy
into my portal but it told me that I did not defined any user, which I did. I restored zope.conf to use 8080 and everything is back to normal. Could you tell me how to have the server listen to port 80 for zope management interface as well as the portals created. Daniel Godefroy 3445

[Zope] Z2.log

2006-05-26 Thread Daniel G
, Daniel G __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No

Re: [Zope] Z2.log

2006-05-26 Thread Daniel G
any thanks, Daniel G --- Andreas Jung <[EMAIL PROTECTED]> wrote: > > > --On 26. Mai 2006 12:42:39 -0400 Daniel G > <[EMAIL PROTECTED]> wrote: > > > > > > > hello, > > > > I am new to Zope and I have a small problem with > it. I > > w

[Zope] processing time

2006-05-30 Thread Daniel G
hello list! I want to profile some http methods (GET, POST) for Zwiki; (I am not an expert in Zope ); I tried a requestprofiler.py and I need to get execution times at a lower resolution (millisecs); could be possible? or any other method to get the execution time the most accurate possible ;

[Zope] Re: zope fork in external method - mysql connection dropped

2006-10-16 Thread Daniel Lopez
at 1 second will always be enough... can anyone suggest a cleaner solution? Perhaps I shouldn't kill the child with sys.exit(0)? -Daniel On Fri, 13 Oct 2006, Jonathan wrote: Pls keep your posts on the list - so that others can help and so that others can search for problems/solutions!

Re: [Zope] zope fork in external method - mysql connection dropped

2006-10-17 Thread Daniel Lopez
uire a great deal of work, as the grandchild makes a few calls back into zope, along with using some information in the request, which I'd need to pass to the standalone script. I'm happy the lazier approach worked. Thanks to all... -D On Tue, 17 Oct 2006, Dieter Maurer wrote:

  1   2   >