Re: [Zope] Newbie Question

2006-09-24 Thread Andreas Jung
--On 24. September 2006 10:49:12 -0500 Perry Smith <[EMAIL PROTECTED]> wrote: Is it possible to have the same host running ZOPE 2 and ZOPE 3? I would like to put both on a Mac OS X server. I have Apache 2.2 running on it and PostgreSQL version 8.1.3 running my existing software. I'd li

[Zope] Newbie Question

2006-09-24 Thread Perry Smith
Is it possible to have the same host running ZOPE 2 and ZOPE 3?  I would like to put both on a Mac OS X server.  I have Apache 2.2 running on it and PostgreSQL version 8.1.3 running my existing software.  I'd like to add zwiki which uses ZOPE 2.  And then add ZOPE 3 so that I can start developing a

Re: [Zope] pointers in zope (newbie question)

2006-04-27 Thread Peter Bengtsson
I've done a similar app where there's an archive of files (zope File objects) that I'm doing stuff with in another place. I happily used:: return self.unrestrictedTraverse(self.actual_path) in a class that looks something like this:: class VirtualFile(SimpleItem): def __init__(self, id, a

Re: [Zope] pointers in zope (newbie question)

2006-04-25 Thread Andreas Jung
--On 25. April 2006 19:17:11 +0200 thomas desvenain <[EMAIL PROTECTED]> wrote: hello, i need to have the same object at different places, more properly, i need to refer an object at different places, in different folders, of my zope application Look in the mailinglist archive (of the las

[Zope] pointers in zope (newbie question)

2006-04-25 Thread thomas desvenain
hello, i need to have the same object at different places, more properly, i need to refer an object at different places, in different folders, of my zope application (i use formulator, and i would like that when i modify properties of the "same" field in different forms, all the others are updat

Re: [Zope] Newbie-question

2005-06-23 Thread Thomas Adams
Paul Winkler schrieb: On Thu, Jun 23, 2005 at 08:55:05PM +0200, Thomas Adams wrote: hi all, I have specific folder name "art" in Zope in which i installed a user folder, and a user with "manager role". now i want anaonymous user to access i.e view the website ubeneath the folder "art". Th

Re: [Zope] Newbie-question

2005-06-23 Thread Paul Winkler
On Thu, Jun 23, 2005 at 08:55:05PM +0200, Thomas Adams wrote: > hi all, > > I have specific folder name "art" in Zope in which i installed a user > folder, and a user > with "manager role". now i want anaonymous user to access i.e view > the website ubeneath the folder "art". Therefore i granted

[Zope] Newbie-question

2005-06-23 Thread Thomas Adams
hi all, I have specific folder name "art" in Zope in which i installed a user folder, and a user with "manager role". now i want anaonymous user to access i.e view the website ubeneath the folder "art". Therefore i granted "View Permission" to the "Anonymous Role" at the folder level "art", bu

Re: [Zope] newbie question

2005-05-25 Thread Florent Guillaume
Barry Drake <[EMAIL PROTECTED]> wrote: > I'm getting an error in CMFCore.utils in the > _mergedLocalRoles function. The error is: > > Exception Type TypeError > Exception Value can only concatenate tuple (not > "list") > to tuple Note, this problem is due to a non-core prod

Re: [Zope] newbie question

2005-05-24 Thread Phillip Hutchings
> It doesn't look like a monkey patch. Those aren't invisible in tracebacks. > > Follow the code path higher until you do get some effect. I've seen odd things before, but I agree, it isn't likely that it's a monkey patch. Chances are that some product is outdated. > I would imagine it's some so

Re: [Zope] newbie question

2005-05-24 Thread J Cameron Cooper
Phillip Hutchings wrote: Then generated the error. The error log shows the same output as before. Not only should the line number be one higher, I also put a dummy variable name on that line to generate a stupid error msg. How can it not be getting to that code? I've searched for another Zope

Re: [Zope] newbie question

2005-05-24 Thread Barry Drake
Thanks for your help. I really needed another brain to bounce things off of so I can get out of the rut I'm in. You've given me some fresh ideas to try. Thanks. Barry --- Phillip Hutchings wrote: > > Then generated the error. The error log shows the > > same output as before. Not only should

Re: [Zope] newbie question

2005-05-24 Thread Phillip Hutchings
> Then generated the error. The error log shows the > same output as before. Not only should the line > number be one higher, I also put a dummy variable name > on that line to generate a stupid error msg. > > How can it not be getting to that code? I've searched > for another Zope instance, bu

Re: [Zope] newbie question

2005-05-24 Thread Barry Drake
Thank you Phillip. I modified the zope.conf file as you suggested and did sudo ./zope stop ... usual msg sudo ./zope start ... usual msg Then generated the error. The error log shows the same output as before. Not only should the line number be one higher, I also put a dummy variable name o

Re: [Zope] newbie question

2005-05-24 Thread Phillip Hutchings
> I modify utils.py, after saving a copy, in order to > obtain diagnostic output. Then I delete utils.pyc, > after saving a copy, in order to force a recompile > (even used compilezpy.py for this a couple of times). > Zope never seems to use the new version. Restart Zope. Python will pick up the

[Zope] newbie question

2005-05-24 Thread Barry Drake
I'm getting an error in CMFCore.utils in the _mergedLocalRoles function. The error is: Exception Type TypeError Exception Value can only concatenate tuple (not "list") to tuple I modify utils.py, after saving a copy, in order to obtain diagnostic output. Then I delete utils

Re: [Zope] Newbie question: HTTP variables

2001-01-13 Thread Michael Bernstein
Dean & Deb Ekstrand wrote: > > I'm trying to figure out Zope (on a time crunch, too), and I'm wondering how > to do something. How can I access HTTP variables in my DTML code? > Specifically, I want to return code specific to the user's browser. I know > that HTTP has provisions for determing b

[Zope] Newbie question: HTTP variables

2001-01-12 Thread Dean & Deb Ekstrand
I'm trying to figure out Zope (on a time crunch, too), and I'm wondering how to do something. How can I access HTTP variables in my DTML code? Specifically, I want to return code specific to the user's browser. I know that HTTP has provisions for determing browser version, are those accessible i

Re: [Zope] Newbie question - Link between Methods based on Authorization

2000-12-19 Thread Timothy Wilson
On Tue, 19 Dec 2000, Michal Krejza wrote: > I have problem with access to method. Example - There are two methods: A and > B. Method A contains common information, accessible for all user (include > anonymous). Source code in method B updates data for method A and access for > method B is restric

Re: [Zope] Newbie question - Link between Methods based on Authorization

2000-12-19 Thread Oliver Bleutgen
> I am still newbie in Zope, so my question may be stupid - sorry. > I have problem with access to method. Example - There are two methods: A > and > B. Method A contains common information, accessible for all user (include > anonymous). Source code in method B updates data for method A and acces

Re: [Zope] Newbie question: adding a tinyTables object

2000-12-19 Thread peter bengtson
If a product contains only a Help object, it means that the product is a Python Product, rather than a ZClass Product. No broken box in front of the Product name, hmm... Does Zope raise any errors when you try to start it? Try to remove the whole TinyTable folder and reinstall it again after havi

Re: [Zope] Newbie question: adding a tinyTables objec

2000-12-19 Thread peter bengtson
If a product contains only a Help object, it means that the product is a Python Product, rather than a ZClass Product. No broken box in front of the Product name, hmm... Does Zope raise any errors when you try to start it? Try to remove the whole TinyTable folder and reinstall it again after havi

Re: [Zope] Newbie question: adding a tinyTables object

2000-12-19 Thread peter bengtson
If a product contains only a Help object, it means that the product is a Python Product, rather than a ZClass Product. No broken box in front of the Product name, hmm... Does Zope raise any errors when you try to start it? Try to remove the whole TinyTable folder and reinstall it again after havi

[Zope] Newbie question - Link between Methods based on Authorization

2000-12-19 Thread Michal Krejza
I am still newbie in Zope, so my question may be stupid - sorry. I have problem with access to method. Example - There are two methods: A and B. Method A contains common information, accessible for all user (include anonymous). Source code in method B updates data for method A and access for meth

Re: [Zope] Newbie question: adding a tinyTables object

2000-12-18 Thread Richard Blumberg
No, that's the problem. The icon isn't a broken box, but a regular product icon. Clicking on the link shows that there's one item in TinyTablesPlus, a Help document; when I open that, it tells me that there are no items in TinyTablesPlus. So Zope seems to be seeing the product, but not adding

Re: [Zope] Newbie question: adding a tinyTables object

2000-12-18 Thread Peter Bengtsson
Go to the Control Panel and click on Products. The TinyTable product is probably going to have a little "broken box"-icon. Click on it and wish that it will tell you the error so that you can fix it. Good luck, Peter > I'm running Zope on a Win98 machine; downloaded, unstuffed, and > installe

[Zope] Newbie question: adding a tinyTables object

2000-12-18 Thread Richard Blumberg
I'm running Zope on a Win98 machine; downloaded, unstuffed, and installed tinyTablesPlus folder in the lib\python\Products directory. TinyTablesPlus shows up in the product list of the Control_Panel/Products folder of my Zope installation. But it does not show up in the Available Objects pull-

Re: [Zope] newbie question -- database list/report with sort bycolumn header

2000-12-09 Thread Tino Wildenhain
Hi, Chris Gray schrieb: > > Here's a fragment from a table that allows sorting by clicking the header > in a dtml method named 'displayTable': > > > > ID > Product > > > > Then feed sort_key into your SQLSelectQuery to use in an ORDER BY clause. > > select * from table order by > You s

Re: [Zope] Newbie question, help with navigation method

2000-12-06 Thread Dieter Maurer
Richard Blumberg writes: > Navigation works when called directly, > does not work when included in "index_html" > > Navigation: > > > Is this a bug in Zope, or am I doing something wrong? Not directly. Almost surely, your "index_html" is a DTML document. A DTML doc

[Zope] Newbie question, help with navigation method

2000-12-05 Thread Richard Blumberg
I've a Zope newbie, trying to set up a Zope site at zope.org, and I'm running into problems with what seems like it should be a fairly simple navigation method. I've replaced the standard_html_header and footer methods with my own, which create a simple two column table; I'm trying to get the

Re: [Zope] newbie question -- database list/report with sort bycolumn header

2000-12-04 Thread Chris Gray
Here's a fragment from a table that allows sorting by clicking the header in a dtml method named 'displayTable': ID Product Then feed sort_key into your SQLSelectQuery to use in an ORDER BY clause. select * from table order by You can change the properties of an object in DTML by callling

Re: [Zope] newbie question -- database list/report with sort by column header

2000-12-04 Thread Steve Spicklemire
You could try: http://www.zope.org/Members/sspickle/Zieve Let me know if you have any troubles... it does exactly this. -steve > "John" == John Cappelletti <[EMAIL PROTECTED]> writes: John> I am listing the results of a database query using John> dtml-in. I'd like to be able to g

[Zope] newbie question -- database list/report with sort by column header

2000-12-03 Thread John Cappelletti
I am listing the results of a database query using dtml-in. I'd like to be able to give the user the option to re-sort the list by clicking on a column header. ok... I'm starting small with a form and radio buttons to allow the user to specify the sort. I've created what I believe to be a global

[Zope] Newbie question

2000-11-29 Thread gpgreen
I am just getting started in Zope and have what is probably an obvious question. I have an external method that returns a list. I understand how to write dtml to iterate through the list using . My question is how do I write a dtml-method that takes the current sequence-item and does something in

Re: [Zope] Newbie question

2000-11-29 Thread gpgreen
Awesome! That did the trick. I'm starting to like this. -- Greg Green e-mail: [EMAIL PROTECTED] http://www.olywa.net/gpgreen/ ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! *

Re: [Zope] Newbie question

2000-11-29 Thread gpgreen
On Sat, Apr 22, 2000 at 04:04:58PM +1000, Malcolm Tredinnick wrote: > The syntax you want, if I've understoof the question, is (untested): > > > You need to do it this way because the stuff inside the quotes is a python > expression and hyphens are not permitted in Python variable names. S

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread Paul Winkler
OK, this seems to work. def manage_addMyProduct(self, id, title='', REQUEST=None, RESPONSE=None): self._setObject(id, MyProduct(id, title)) if REQUEST is not None: whereto= REQUEST['URL3'] RESPONSE.redirect(whereto, lock=0) -- .paul winkler...

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread Paul Winkler
Dieter Maurer wrote: > > If you need it in the constructor, then you must > either pass in an object that is tied by acquisition > or REQUEST or RESPONSE itself, > or you must move the call out into the method > "manage_afterAdd" (where the object already is tied in). Well, I don't have that met

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread Dieter Maurer
Paul Winkler writes: > I want the user to be sent to a particular URL after calling the > product's manage_add method. How can I do that? > The URL I want is REQUEST['URL3']. > > I've tried RESPONSE.redirect(REQUEST['URL3']) but that's not it - the > RESPONSE doesn't seem to exist here. I h

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread Paul Winkler
Phil Harris wrote: > > You need to be careful when redirecting from an external Python wotsit. > > RESPONSE.redirect raises an exception which can make the transaction get > rolled back. > > This seems not to happen when called from dtml but I've seen it happen from > an external Python wotsit.

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread Paul Winkler
Michel Pelletier wrote: > > Paul Winkler wrote: (snip) > > Looking through various Zope docs, I thought RESPONSE.redirect might > > work, but RESPONSE is not mentioned anywhere in Boring.py. Boring > > only uses REQUEST. > > So pass it RESPONSE: > > def manage_addMyProduct(self, blah, blah, RE

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread Phil Harris
Sent: Monday, November 27, 2000 6:26 PM Subject: [Zope] newbie question: Redirect from Python? | I want the user to be sent to a particular URL after calling the | product's manage_add method. How can I do that? | The URL I want is REQUEST['URL3']. | | I've tried RESPONSE.red

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread Michel Pelletier
Paul Winkler wrote: > > seb bacon wrote: > > > > * Paul Winkler <[EMAIL PROTECTED]> [001127 19:54]: > > > I want the user to be sent to a particular URL after calling the > > > product's manage_add method. How can I do that? > > > The URL I want is REQUEST['URL3']. > > > > > > I've tried RESPONSE

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread Paul Winkler
seb bacon wrote: > > * Paul Winkler <[EMAIL PROTECTED]> [001127 19:54]: > > I want the user to be sent to a particular URL after calling the > > product's manage_add method. How can I do that? > > The URL I want is REQUEST['URL3']. > > > > I've tried RESPONSE.redirect(REQUEST['URL3']) but that's

Re: [Zope] newbie question: Redirect from Python?

2000-11-27 Thread seb bacon
* Paul Winkler <[EMAIL PROTECTED]> [001127 19:54]: > I want the user to be sent to a particular URL after calling the > product's manage_add method. How can I do that? > The URL I want is REQUEST['URL3']. > > I've tried RESPONSE.redirect(REQUEST['URL3']) but that's not it - the > RESPONSE doesn't

[Zope] newbie question: Redirect from Python?

2000-11-27 Thread Paul Winkler
I want the user to be sent to a particular URL after calling the product's manage_add method. How can I do that? The URL I want is REQUEST['URL3']. I've tried RESPONSE.redirect(REQUEST['URL3']) but that's not it - the RESPONSE doesn't seem to exist here. -- .paul winkler

Re: [Zope] Newbie Question

2000-11-24 Thread Chalu Kim
me. > > TIA > > Dany > > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > > Behalf Of Andy > > McKay > > Sent: Thursday, November 23, 2000 7:00 PM > > To: Chris Withers > > Cc: Dany Riou

RE: [Zope] Newbie Question Fixed but continuing.

2000-11-24 Thread Dany Rioux
uot;Welcome to Zope mailing list" email but if there is, my apologies. Thanks. Dany > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Michel Pelletier > Sent: Friday, November 24, 2000 12:17 PM > To: Dany Rioux > Cc: Zop

Re: [Zope] Newbie Question Fixed but continuing.

2000-11-24 Thread Michel Pelletier
Dany Rioux wrote: > > Thanks Philipp and Jim, > > It worked! But... (there's always a but! :) I thought I was clever > when I thought about naming my news files news999, news998 etc, > thinking it would parse the directory and print the news sorted by > their names. So news998 would be printed b

RE: [Zope] Newbie Question Fixed but continuing.

2000-11-24 Thread Dany Rioux
To: Zope Mailing List > Subject: Re: [Zope] Newbie Question > > > > > I'm probably just being dumb... :) > > > > -- > > > > > > > > > > > > > > > > > > > > > > >

Re: [Zope] Newbie Question

2000-11-24 Thread Jim Washington
Dany: These should work: -or- -or- --Jim Washington Dany Rioux wrote: > > I'm probably just being dumb... :) > > -- > > > > > > > > > > > -- > > This doesn't work. Nothing gets printed. > > In the News folder is a DTML me

Re: [Zope] Newbie Question

2000-11-24 Thread Philipp Dunkel
> I'm probably just being dumb... :) > > -- > > > > > > > > > > this should work out for you. cu Philipp ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts

RE: [Zope] Newbie Question

2000-11-24 Thread Dany Rioux
t: Thursday, November 23, 2000 7:00 PM > To: Chris Withers > Cc: Dany Rioux; Zope Mailing List > Subject: Re: [Zope] Newbie Question > > > Or even: > if this news thing is a file ;-P > > > Or even: > > > > > > > > ;-) > >

Re: [Zope] Newbie Question

2000-11-23 Thread Andy McKay
Zope Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, November 23, 2000 2:47 PM Subject: Re: [Zope] Newbie Question > Or even: > > > > ;-) > > Chris > > Andy McKay wrote: > > > > > > > > -- > > Andy McKay, Developer.

Re: [Zope] Newbie Question

2000-11-23 Thread Chris Withers
Or even: ;-) Chris Andy McKay wrote: > > > > -- > Andy McKay, Developer. > ActiveState. > - Original Message - > From: "Dany Rioux" <[EMAIL PROTECTED]> > To: "Zope Mailing List" <[EMAIL PROTECTED]> > Sent: Thursda

Re: [Zope] Newbie Question

2000-11-23 Thread Andy McKay
-- Andy McKay, Developer. ActiveState. - Original Message - From: "Dany Rioux" <[EMAIL PROTECTED]> To: "Zope Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, November 23, 2000 2:20 PM Subject: [Zope] Newbie Question > Hi everyone, > > Si

[Zope] Newbie Question

2000-11-23 Thread Dany Rioux
Hi everyone, Simple newbie question... :) I've made a directory called News into which I will put files named newsXXX. X being a number from 999 to 001. What I want to do is to tell zope to put each file into a document. Now, here is what I figured out. <--- that's where I'm stuck. I don't

Re: [Zope] Newbie question(s)

2000-11-13 Thread Rik Hoekstra
"Bowyer, Alex" wrote: > > Hi, > > I have what I'm sure is a very simple question about Zope programming style: > I want to count how many objects are contained in the current container > object and then do something with that value, but I can't do the bit I need > to do at the point of reading

RE: [Zope] Newbie question(s)

2000-11-12 Thread Max M
From: Bowyer, Alex >My query is really more general though, that was just an example, >I need to know what the generally accepted method is for >transferring values through the code (i.e between namespaces) I do believe that our ugly friend REQUEST.set() is the way to go here. I cannot remember

Re: [Zope] Newbie question(s)

2000-11-12 Thread Morten W. Petersen
[Alex Bowyer] | My query is really more general though, that was just an example, I need to | know what the generally accepted method is for transferring values through | the code (i.e between namespaces) Unless I've misunderstood your problem, wouldn't do the trick? (See DTML manual for more i

RE: [Zope] Newbie question(s)

2000-11-12 Thread Bowyer, Alex
> >I want to count how many objects are contained in the > current container > >object and then do something with that value, but I can't do > the bit I > >need to do at the point of reading the count variable > because I am in > >the wrong namespace. > > I would try and do it like this (unt

RE: [Zope] Newbie question(s)

2000-11-12 Thread Max M
From: Bowyer, Alex >I want to count how many objects are contained in the current container >object and then do something with that value, but I can't do the bit I >need to do at the point of reading the count variable because I am in >the wrong namespace. I would try and do it like this (unte

[Zope] Newbie question(s)

2000-11-12 Thread Bowyer, Alex
Hi, I have what I'm sure is a very simple question about Zope programming style: I want to count how many objects are contained in the current container object and then do something with that value, but I can't do the bit I need to do at the point of reading the count variable because I am in the

Re: [Zope] newbie question

2000-11-09 Thread Dieter Maurer
Stephan Goeldi writes: > ... > > > > ... > and the form_action method is this: > > "money" will come in as a string value not as a list. It would be a list, if you added a "multiple" to your "select". > This will always be true. It is constant (an expression without variable,

Re: [Zope] newbie question

2000-11-09 Thread seb bacon
* Stephan Goeldi <[EMAIL PROTECTED]> [001109 16:49]: > > > This is not much! > > > This is ok! > > > This is very much! > > > > I am sure that there is an error in my thinking of these tags. yup :) try This is not much This is OK

Re: [Zope] newbie question

2000-11-09 Thread Christian Scholz
HI! > I want to select from a select menu, 3 amounts: 1000, 5000 or 1. After > this, the form action method should reply: > > - "this is not much" if 1000 was selected, > - "this is ok" if 5000 was selected, > - "this is very much" if 1 was selected > > Now my form method looks like th

Re: [Zope] newbie question

2000-11-09 Thread Paul Zwarts
Another thing you can do, not sure if Im using it right, but the effect is good... You must specify a First Name. I have a support call form that is filed and submitted, and after the button is pressed, a seperate validate method is called (c

RE: [Zope] newbie question

2000-11-09 Thread hohage
Hallo Stephan you can't iterate over a string! That's working: This is not much! This is ok!

Re: [Zope] newbie question

2000-11-09 Thread Geir Bækholt
possibly not the cleanest way of doing it, but this ought to do what you want.. 1000 5000 .. etc.. and This is not much! This is ok! -- Geir Bækholt web-developer/designer [EMAIL PROTECTED] http://www.funcom.com on Thursday, November 09, 2000 Stephan Goeldi wrote : SG> I want to sele

[Zope] newbie question

2000-11-09 Thread Stephan Goeldi
I want to select from a select menu, 3 amounts: 1000, 5000 or 1. After this, the form action method should reply: - "this is not much" if 1000 was selected, - "this is ok" if 5000 was selected, - "this is very much" if 1 was selected Now my form method looks like this: How many money?

Re: [Zope] Newbie question

2000-11-06 Thread Holger Hoffmann
Hi, Brown Fox wrote: > > Hello, > i want to view a dtml-document, calling it as > a variable. > For example: > > > > > try > > > > where this file is called with this string: > test3 > > The result i now get is the id, not the content of the > file! > > Thanks, > Bruno ... Holg

[Zope] Newbie question

2000-11-06 Thread Brown Fox
Hello, i want to view a dtml-document, calling it as a variable. For example: where this file is called with this string: test3 The result i now get is the id, not the content of the file! Thanks, Bruno __ Do You

Re: [Zope] newbie question

2000-10-24 Thread Chris Withers
Hi Kathy, > Error Type: SyntaxError > > Error Value: invalid syntax > > Troubleshooting Suggestions It looks like your addEntry.py file has some syntax mistakes in it (think mis-spelled, badly indented or otherwise defective python ;-) Try comparing it with what it should be and see if the pro

[Zope] newbie question

2000-10-23 Thread Kathy Hester
Hello and thanks for your patience! I am beginning to learn zope. I am going through the tutorials in "the book". I have run into a problem creating an external method. I know I must be doing something stupid! I have my addEntry.py saved in the Extension folder in the Zope folder as it instal

Re: [Zope] Newbie question : ZopeTime & permissions

2000-10-16 Thread Manuel Amador (Rudd-O)
access contents information I guess. Aaron Straup Cope wrote: Hi, My name is Aaron. I am trying to set up zope with (atleast) three roles : manager, admin, user. I'd like to give the last two the bare minimum Security permissions possible and adding them as needed later on. My problem is that I c

Re: [Zope] Newbie question : ZopeTime & permissions

2000-10-10 Thread Dieter Maurer
Aaron Straup Cope writes: > I did not want to allow the Anonymous role *any* permissions, and the > site I am working in is contained in a folder beneath the root Zope > folder. > > The problem was that I had disabled the "Access contents > information" privilege for the Anonymous user (wh

Re: [Zope] Newbie question : ZopeTime & permissions

2000-10-10 Thread Aaron Straup Cope
Yes, it was a misunderstanding regarding basic user permissions and the Anonymous role on my part. I did not want to allow the Anonymous role *any* permissions, and the site I am working in is contained in a folder beneath the root Zope folder. The problem was that I had disabled the "Access co

Re: [Zope] Newbie question : ZopeTime & permissions

2000-10-08 Thread Dieter Maurer
Aaron Straup Cope writes: > My problem is that I can't seem to figure out, specifically, which > permissions to give a user that will allow them to read ZopeTime(). Strange... "DateTime.DateTime" objects (and therefore "ZopeTime") are explicitely unprotected (and can be used by everyone). I tr

Re: [Zope] Newbie question : ZopeTime & permissions

2000-10-06 Thread Aaron Straup Cope
Doh! Sorry. Error Type: KeyError Error Value: ZopeTime On Fri, 6 Oct 2000, knight wrote: > Aaron, you left out the error. What was it... > > On Fri, 6 Oct 2000, Aaron Straup Cope wrote: > > > Hi, > > > > My name is Aaron. > > > > I am trying to set up zope with (atleast) three roles : manag

Re: [Zope] Newbie question : ZopeTime & permissions

2000-10-06 Thread knight
Aaron, you left out the error. What was it... On Fri, 6 Oct 2000, Aaron Straup Cope wrote: > Hi, > > My name is Aaron. > > I am trying to set up zope with (atleast) three roles : manager, admin, > user. > > I'd like to give the last two the bare minimum Security permissions > possible and add

[Zope] Newbie question : ZopeTime & permissions

2000-10-06 Thread Aaron Straup Cope
Hi, My name is Aaron. I am trying to set up zope with (atleast) three roles : manager, admin, user. I'd like to give the last two the bare minimum Security permissions possible and adding them as needed later on. My problem is that I can't seem to figure out, specifically, which permissions t

[Zope] Newbie-question on ZCatalog

2000-09-26 Thread Marc Breitenreicher
Hi, I'm trying to build a Catalog with a report table just as the one on http://classic.zope.org:8080/Collector/tableBrowse?cfDescAndTitle=catalog That's a table with document-title, date and the first 30 words of the document-content. My problem: how can I insert the content into the ZSearch r

Re: [Zope] Newbie Question: File upload in from my own Product

2000-09-20 Thread Dieter Maurer
Dicken, Peer writes: > I´m new to Zope ;) I´m currently composing a set of products for my website > and have a little problem now: > I need to make a Product that makes it possible to upload a file, well, > basically a tuned "FILE" object. > I need to add a description. Is it right to add th

[Zope] Newbie Question: File upload in from my own Product

2000-09-20 Thread Dicken, Peer
Hi, I´m new to Zope ;) I´m currently composing a set of products for my website and have a little problem now: I need to make a Product that makes it possible to upload a file, well, basically a tuned "FILE" object. I need to add a description. Is it right to add the FILE object in my ZClass, or

[Zope] NEWBIE QUESTION: Receive TypeError when scheduling Xron events

2000-09-08 Thread Dwayne Morrison
Hello, I'm having trouble scheduling events with Xron 0.0.9. I try to create a scheduled event as described in the doc: When executed within a DTML method, the code reports this error: Error Type: TypeError Error Value: keyword parameter redefined I found that the 0.0.9 version o

Re: [Zope] XML and Zope newbie question...

2000-09-08 Thread Phil Harris
lstad" <[EMAIL PROTECTED]> To: "Zope@Zope. Org" <[EMAIL PROTECTED]> Sent: Thursday, September 07, 2000 7:53 PM Subject: [Zope] XML and Zope newbie question... > Hi All, > > I am just getting started in XML and am trying to figure out how it works > with Zope.

[Zope] XML and Zope newbie question...

2000-09-08 Thread Eric L. Walstad
Hi All, I am just getting started in XML and am trying to figure out how it works with Zope. I would like to be able to post some data to Zope in XML format and have Zope parse the data into Zope objects. Is this possible? It seems like I should be able to create the Zclasses and, when Zope re

[Zope] Newbie question: Unhandled requests.

2000-09-07 Thread Hannes
We currently started to run our site using Zope behind Apache using ProxyPass, when testing from the outside it seems that there many (about one-third) of the requests that are not handled by Zope, the browser seems to recieve nothing, (means the browser times out), this behaviour does not depe

Re: [Zope] newbie question: installing ZSiteMap and ZPhotoAlbum

2000-09-04 Thread Bill Anderson
Tamara Temple wrote: > > Hi all, > > My first posting here, please forgive if this is obvious, cause it > isn't to me. I already checked the How-To's and searched the zope-list > archives and came up with nothing. > > I downloaded the two zexp files for ZSiteMap and ZPhotoAlbum, and put > them

[Zope] newbie question: installing ZSiteMap and ZPhotoAlbum

2000-09-04 Thread Tamara Temple
Hi all, My first posting here, please forgive if this is obvious, cause it isn't to me. I already checked the How-To's and searched the zope-list archives and came up with nothing. I downloaded the two zexp files for ZSiteMap and ZPhotoAlbum, and put them in the import directory. When I try to i

Re: [Zope] Newbie question: FORM processing in Zope.

2000-08-28 Thread Loren Stafford
ps -- Loren - Original Message - From: "Amit Redij" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: August 28, 2000 04:45 AM Subject: [Zope] Newbie question: FORM processing in Zope. > > hi, > > I am a Perl/CGI programmer, trying out Zope. > I am confuse

Re: [Zope] Newbie question: FORM processing in Zope.

2000-08-28 Thread J. Atwood
and notice how the form is different for both). Same thing done twice. J > From: Amit Redij <[EMAIL PROTECTED]> > Date: Mon, 28 Aug 2000 17:15:03 +0530 > To: [EMAIL PROTECTED] > Subject: [Zope] Newbie question: FORM processing in Zope. > > > hi, > > I am a Perl/

[Zope] Newbie question: FORM processing in Zope.

2000-08-27 Thread Amit Redij
hi, I am a Perl/CGI programmer, trying out Zope. I am confused right now about HOW TO process FORM variables? and most important thing is how to validate form inputs.(like same thing is best done in PERL using regex) that is, if I have a html having some form variables and a submit button. I c

RE: [Zope] Newbie Question (Content Manager Tutorial)

2000-08-21 Thread Steve Drees
> With the advent of Zope 2.2, the first thing you need to do is to create a > management user. You cannot use the 'superuser' to manage content. I > know this is a little unfamiliar, but, for now, just suspend disbelief and > create another user with the 'Manager' role (by visiting the acl_user

RE: [Zope] Newbie Question (Content Manager Tutorial)

2000-08-21 Thread Chris McDonough
There is a proposal something like this in the works. > -Original Message- > From: Steve Drees [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 21, 2000 11:11 AM > To: Chris McDonough > Cc: Zope User Maillist > Subject: RE: [Zope] Newbie Question (Conten

Re: [Zope] Newbie Question (Content Manager Tutorial)

2000-08-19 Thread Dieter Maurer
Hi Mark, Mark A. Pappas writes: > I installed Zope 2.2.0 > I dloaded the Content Manager Guide > ... > Zope Error > Zope has encountered an error while publishing this resource. > > Error Type: SuperCannotOwn > Error Value: Objects cannot be owned by the superuser The Content M

Re: [Zope] Newbie Question (Content Manager Tutorial)

2000-08-19 Thread Chris McDonough
See (sneak peek) http://www.zope.org/Members/mcdonc/PDG/6-1-Security.stx, section named "The Superuser". I hope to have this chapter really finished this weekend. On Sat, 19 Aug 2000, Chris Withers wrote: > Chris McDonough wrote: > > With the advent of Zope 2.2, the first thing you need to do i

Re: [Zope] Newbie Question (Content Manager Tutorial)

2000-08-19 Thread Jan H. Haul
"Mark A. Pappas" wrote: > I installed Zope 2.2.0 on a Win 98 machine. Seems to work fine. I dloaded > the Content Manager Guide and started working through the tutorial. Went to > create a folder as instructed. > > Below is what I got. What am I doing wrong? > > Error Type: SuperCannotOwn > Erro

Re: [Zope] Newbie Question (Content Manager Tutorial)

2000-08-19 Thread Chris Withers
Chris McDonough wrote: > With the advent of Zope 2.2, the first thing you need to do is to create a > management user. You cannot use the 'superuser' to manage content. Can anyone remind me why? T0he problems it's caused, particularly with broswers caching basic auth info, seem to be pretty na

Re: [Zope] Newbie Question (Content Manager Tutorial)

2000-08-19 Thread Chris McDonough
Darn. Those docs are a little ( ok, a lot...) out of date. They're still useful, but they don't cover a few things. With the advent of Zope 2.2, the first thing you need to do is to create a management user. You cannot use the 'superuser' to manage content. I know this is a little unfamil

  1   2   >