Stefan H. Holek writes:
Do you have a SiteRoot-ed environment? I believe I saw this error when
trying to use the Catalog in a SiteRoot-ed folder...
No solution, sorry ;)
We use the Catalog together with a SiteRoot without problems.
I remove the host part of the URL before I index
[EMAIL PROTECTED] writes:
There's a way to get the size of a file uploaded in a form before write it?
I am not sure, what type of object is used at the base of
"FileUpload" objects (to give them there file like behaviour).
If this a "cStringIO" objects, they may have a "len" attribute.
This
Simple question (I presume): How do I change the Zope service under Windows
NT to listen on port 80 (instead of 8080).
Steve Smith
___
Zope maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
** No cross posts or HTML
From: Steve Alexander
I found your discussion of ZPatterns terms very thought-provoking.
Thanks. The first positive comment about it :-)
Your reply seems thorough. I will read it through in a day or two. (Has a
deadline right now.)
Max, I'm extremely impressed! When I first read through your
I used this code in my "logoutForm" to logout user in my old setup
(LoginManager-0_8_7a1, ZPatterns-0-4-2a1 and Zope 2.2.1):
dtml-call "AUTHENTICATED_USER.logout()"
It doesn't work when using LoginManager-0-8-8b1 + ZPatterns-0-4-3b2 +
Zope 2.2.4.
I've found a work-around:
dtml-call
* Michael Bernstein ([EMAIL PROTECTED]) [001214 01:06]:
I read your access rule, and it seems like you've got it set
up to ignore the gTLD, so that www.gerf.org and www.gerf.com
etc. get routed to the same object automatically. Is that
correct?
Yes. I have several sites that use that
I still got it under construction. Zope shouldn't work with Python
1.6 so I removed the package and downloaded the python 1.5.2 sources
you ./configure --with-thread to have threads enabled and that's it.
Runs beautifully but I didn't have time to install Zope so far. It's
running very well
At 06:25 PM 2000/12/13 +0100, you wrote:
My question is: Did someone of you got zope running with obsd 2.8? The
documentation of zope says it runs in any case with 2.7 and python 1.6
You cannot run Zope with OpenBSD 2.8.
Zope triggers an obscure bug in the threading library that comes with 2.8.
I have started building asset management/role-based publishing system
for multimedia application. It struck me that I could not tell who
created objects in the first place. I see in undoable_transaction
"user_name" by following UndoForm.
I was building author into a few Z classes we fashioned
No, you are right. It does not work. It is because LM's default login
method is Basic. Basic logout does not work because of Basic
authentication and that the browser caches the credential. This means
unless you shut down your browser, whatever you do, you are back to
square one.
The remedy is
In the interest of getting Zope into the picture, I'm registering some 5,700
sites I just brought up at Netcraft. Every little bit helps, they say...
--
Cees de Groot http://www.cdegroot.com [EMAIL PROTECTED]
GnuPG 1024D/E0989E8B 0016 F679 F38D 5946 4ECD 1986 F303 937F E098
Loren Stafford wrote:
Just for your entertainment
- Original Message -
From: "Charles Knerr" [EMAIL PROTECTED]; "Webmaster"
[EMAIL PROTECTED]
To: "Loren Stafford" [EMAIL PROTECTED]
Sent: December 15, 2000 10:54 PM
Subject: Zope.org feedback
URL:
Bill Anderson wrote:
...
The archives show that Loren was using this term for this usage by
nearly a month. if nothing else, the timing of the application
coinciding with the introduction of the term by Loren is at best
suspicious. In fact, it occurs on the very day that Loren made the
Hi everyone
Currently I am using the RPM version of ZOPE(2.2.2) from Jeff Rush.
I have installed the current verion 2.2.4 non RPM version.
I want to transfer my files from websites products from the current site
to the new install.
Which files and directories do I copy?.
The RPM versions
On Sun, 17 Dec 2000, Chalu Kim wrote:
No, you are right. It does not work. It is because LM's default login
method is Basic. Basic logout does not work because of Basic
authentication and that the browser caches the credential. This means
unless you shut down your browser, whatever you do,
I have a ZSQL method, createClassTable, where the paramter 'classCode'
is used to name the table:
create table dtml-sqlvar classCode type=string
(
matric float,
fname varchar,
lname varchar,
.. etc
)
Is there anyway to execute this in a DTML document 'on the fly'?
I
Bill Anderson wrote:
Bill Anderson wrote:
...
The archives show that Loren was using this term for this usage by
nearly a month. if nothing else, the timing of the application
coinciding with the introduction of the term by Loren is at best
suspicious. In fact, it occurs on the very
+---[ Michael Bernstein ]--
|
| Federal registration is not required to establish rights in a trademark.
| Common law rights arise from actual use of a mark. Generally, the first
| to either use a mark in commerce or file an intent to use application
| with the Patent
Hi Steve,
Both racks are set to be loaded by accessing 'id', which, as you guessed right, don't
appear in handling attributes list!
This is the simplified skinscript in maleMemberRack:
WITH getMale(self.id) COMPUTE original_object=RESULT
WITH self.original_object COMPUTE
name=id,
Josh Zeidner writes:
OK. Is it possible to query keyword indexes for several keywords at once?
Not that I know of.
You either have to extend ZCatalog or wait some time.
There are different people working on ZCatalog enhancements.
Again, I am reporting a bug
You already know the
Jimmie Houchin writes:
I just updated my current CVS build of Zope2.
ImportError: cannont import name end_of_header_search
This may be the effect of a fix for a problem discussed
recently in "zope-dev":
Zope looked for "/head" and added it, if not present.
Unfortunately, it
seb bacon writes:
IE does not get last 11 bytes
- it's always the last 11 bytes that are missing, however large the
page is
- I've sent exact copies of the HTTP headers to the server, using
telnet, and there's no problem there
I made the experience that IE is very
From: "Itai Tavor" [EMAIL PROTECTED]
import urllib
urllib.__allow_access_to_unprotected_subobjects__ = 1
Ok, this is simple enough, and it works. But... it opens access to
everything in urllib.
For now, the best way is to use a dictionary of names, like this:
import urllib
Hi Itai,
Ok.. I'm working an DumbZPatternsExample V3.0 so this is exactly
the sort of conversation that needs to take place for me. ;-)
Godd to hear that (both that the discussion is helping you, and that
you're working on a new dumb example :-) )
It seems to me that when you want a
Evan Simpson wrote:
From: "Itai Tavor" [EMAIL PROTECTED]
import urllib
urllib.__allow_access_to_unprotected_subobjects__ = 1
Ok, this is simple enough, and it works. But... it opens access to
everything in urllib.
For now, the best way is to use a dictionary of names, like this:
Itai Tavor wrote:
I have the following ZClasses, with matching Specialists: Product,
Graphic, Order, OrderLineItem. When a customer adds a product to
their order, they have to provide a graphic file which will be
printed on the product (imagine buying a lunch box with your cat's
photo on
26 matches
Mail list logo