Re: [Zope] Asynchronous triggering of events

2010-10-19 Thread Jeff Peterson
-Original Message- From: zope-bounces+jeff.peterson=crary@zope.org [mailto:zope- bounces+jeff.peterson=crary@zope.org] On Behalf Of Brian Sullivan Sent: Tuesday, October 19, 2010 1:13 PM To: Chris Withers Cc: zope@zope.org Subject: Re: [Zope] Asynchronous triggering of

Re: [Zope] Asynchronous triggering of events

2010-10-18 Thread Jeff Peterson
I'd start by looking at the logs to see what's failing, should be a traceback there somewhere. Other than that there is clockserver, but I am not sure that was/is available in the version you are using. -- Jeffrey D Peterson Webmaster Crary Industries, Inc. 237 12th St NW West Fargo, ND 58078

Re: [Zope] Asynchronous triggering of events

2010-10-18 Thread Jeff Peterson
58078 P: 701-499-5928 E: jeff.peter...@crary.com -Original Message- From: Brian Sullivan [mailto:briansulli...@gmail.com] Sent: Monday, October 18, 2010 3:46 PM To: Jeff Peterson Cc: Zope Users Subject: Re: [Zope] Asynchronous triggering of events Clockserver seems to install

Re: [Zope] Asynchronous triggering of events

2010-10-18 Thread Jeff Peterson
: 701-499-5928 E: jeff.peter...@crary.com -Original Message- From: Brian Sullivan [mailto:briansulli...@gmail.com] Sent: Monday, October 18, 2010 3:46 PM To: Jeff Peterson Cc: Zope Users Subject: Re: [Zope] Asynchronous triggering of events Clockserver seems to install -- can't

Re: [Zope] Logging a user onto zope

2010-09-20 Thread Jeff Peterson
http://www.zope.org/Products/PluggableAuthService/ -- Jeffrey D Peterson Webmaster Crary Industries, Inc. 237 12th St NW West Fargo, ND 58078 P: 701-499-5928 E: jeff.peter...@crary.com -Original Message- From: zope-bounces+jeff.peterson=crary@zope.org [mailto:zope-

Re: [Zope] Logging a user onto zope

2010-09-20 Thread Jeff Peterson
Sorry, new releases are on pypi now: http://pypi.python.org/pypi/Products.PluggableAuthService -- Jeffrey D Peterson Webmaster Crary Industries, Inc. 237 12th St NW West Fargo, ND 58078 P: 701-499-5928 E: jeff.peter...@crary.com -Original Message- From:

Re: [Zope] Storing DTML in SQL

2010-08-18 Thread Jeff Peterson
Why must it be stored in a RDB? Can you not store the DTML in the ZODB and store the path or id to the DTML in the RDB or a python script that can massage whatever data you need and call the DTML.. -- Jeffrey D Peterson Webmaster Crary Industries, Inc. 237 12th St NW West Fargo, ND 58078 P:

Re: [Zope] string formatting

2010-08-13 Thread Jeff Peterson
def inc(s): id, count = (s[:1], int(s[1:4])) count += 1 return '%s%03d' % (id, count) -- Jeffrey D Peterson Webmaster Crary Industries, Inc. From: zope-boun...@zope.org [mailto:zope-boun...@zope.org] On Behalf Of Ebbe Kvist Sent: Friday, August 13, 2010 11:17 AM To: zope@zope.org

Re: [Zope] string formatting

2010-08-13 Thread Jeff Peterson
To be more flexible it should probably look more like this: def inc(s): import string id, count = (s[:1], s[1:]) count = string.zfill(str(int(count) + 1), len(count)) return '%s%s' % (id, count) That way even 'B0006' would get incremented properly. -- Jeffrey D Peterson

Re: [Zope] questions about migrating forwards

2010-03-11 Thread Jeff Peterson
-- Jeffrey D Peterson Webmaster Crary Industries, Inc. From: zope-boun...@zope.org [mailto:zope-boun...@zope.org] On Behalf Of Andrew Watkins Sent: Wednesday, March 10, 2010 9:35 PM To: zope@zope.org Subject: [Zope] questions about migrating forwards Hi list We have a legacy web service

Re: [Zope] questions about migrating forwards

2010-03-11 Thread Jeff Peterson
I have used LocalFS, but at the time I upgraded it had to be patched too, you could check around and see if it's been updated. I believe it's still actively maintained. -- Jeffrey D Peterson Webmaster Crary Industries, Inc. From: zope-boun...@zope.org [mailto:zope-boun...@zope.org] On Behalf

Re: [Zope] /Manage access from some networks

2009-12-10 Thread Jeff Peterson
http://httpd.apache.org/docs/1.3/mod/mod_access.html -- Jeffrey D Peterson Webmaster Crary Industries, Inc. From: zope-boun...@zope.org [mailto:zope-boun...@zope.org] On Behalf Of iarly selbir | ski0s Sent: Thursday, December 10, 2009 6:13 AM To: zope@zope.org Subject: [Zope] /Manage access

Re: [Zope] dynamically call zsqlmethod

2009-11-25 Thread Jeff Peterson
IF it's a variable passed to the script wouldn't you simply access it as 'column'? Also, is it a variable or a function? Or is the variable the name of a function somewhere? If it's the former just call it: column(). If it's the latter, Andreas should be correct, getattr(context, column)() or

Re: [Zope] dtml-in pagination

2009-04-08 Thread Jeff Peterson
dtml-if REQUEST.has_key('b_start') dtml-call REQUEST.set('b_start',_.int(b_start)) dtml-else dtml-call REQUEST.set('b_start',0) /dtml-if dtml-call REQUEST.set('size', 3) dtml-call REQUEST.set('foods',['sandwiches', 'pie', 'meatloaf', 'berries',

Re: [Zope] Error in python method...

2009-01-13 Thread Jeff Peterson
Agreed, if you are going through the learning curve anyway, may as well be the new way. Grok, in fact, may take less time to get into for basic apps. -- Jeffrey D Peterson Webmaster Crary Industries, Inc. -Original Message- From: zope-boun...@zope.org [mailto:zope-boun...@zope.org] On

Re: [Zope] Question about URL lookups

2008-12-29 Thread Jeff Peterson
Script (Python) has a feature called traverse_subpath (you can rename in under the bindings tab, but why?) that may do what you want. Given domain.com/[script name]/L-Fredericksburg/S-VA/C-Plumbing: request.traverse_subpath should contain ['L-Fredericksburg', 'S-VA', 'C-Plumbing'] There may

Re: [Zope] Problem using dtml-in in ZSQL method

2008-12-11 Thread Jeff Peterson
Shouldn't this: dtml-sqlvar sequence-item type=int be dtml-var sequence-item type=int ? -- Jeffrey D Peterson Webmaster Crary Industries, Inc. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Françoise CONIL Sent: Thursday, December 11, 2008 4:21 AM To: zope@zope.org Subject:

Re: [Zope] standard_error using zpt

2008-10-31 Thread Jeff Peterson
. From: Miguel Beltran R. [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2008 9:43 PM To: Jeff Peterson Cc: Andrew Milton; zope@zope.org Subject: Re: [Zope] standard_error using zpt Not work :(, say Error Type: TraversalError Error Value: ({'args': ()}, 'error_type') : /a/b

Re: [Zope] standard_error using zpt

2008-10-30 Thread Jeff Peterson
Just for independent confirmation he's right, options is what you want. -- Jeffrey D Peterson Webmaster Crary Industries, Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Milton Sent: Wednesday, October 29, 2008 11:02 PM To: Miguel Beltran R.

Re: [Zope] Moving zope data.fs

2008-09-30 Thread Jeff Peterson
What's the error? -- Jeffrey D Peterson Webmaster Crary Industries, Inc. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jakob Carlsson Sent: Tuesday, September 30, 2008 2:39 PM To: zope@zope.org Subject: [Zope] Moving zope data.fs Hi everybody, I have two Data.fs files and the

RE: [Zope] Page template issues

2008-07-15 Thread Jeff Peterson
install must've gotten corrupted with the hard reboot. -- Jeffrey D Peterson Webmaster Crary Industries, Inc. -Original Message- From: Andreas Jung [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2008 12:22 PM To: Jeff Peterson; zope@zope.org Subject: Re: [Zope] Page template issues

[Zope] Page template issues

2008-07-14 Thread Jeff Peterson
Greetings, I recently upgraded from Zope 2.8.7 to 2.11.0. After working out some issues, everything worked OK for a couple weeks. There were minor page template issues, but they weren't stopping the pages from rendering. Then our server locked up..we had to reboot it. When I got everything

RE: [Zope] ZcxOracleDA, LocalFS, ZMySQLDA

2008-06-27 Thread Jeff Peterson
PM To: Jeff Peterson; zope@zope.org Subject: Re: [Zope] ZcxOracleDA, LocalFS, ZMySQLDA --On 26. Juni 2008 17:03:27 -0500 Jeff Peterson [EMAIL PROTECTED] wrote: I upgraded my Zope server to 2.11.0 from 2.8.7. To do that I needed to update the above 3 products. I am not sure of the process

[Zope] ZcxOracleDA, LocalFS, ZMySQLDA

2008-06-26 Thread Jeff Peterson
I upgraded my Zope server to 2.11.0 from 2.8.7. To do that I needed to update the above 3 products. I am not sure of the process to get the products updated so others can use them. Any guidance is appreciated. -- Jeffrey D Peterson Webmaster Crary Industries, Inc.

[Zope-PAS] New to PAS

2006-06-27 Thread Jeff Peterson
Hi all, Is there any localized documentation for using PAS? I read this one: http://tech.canterburyschool.org/tech/UsingPluggableAuthentication and that helped me to get it installed and give me the general idea that I could use this. But some more specific documentation would be nice. I

Re: [Zope-PAS] New to PAS

2006-06-27 Thread Jeff Peterson
at this source code file). In the meantime, reading the PAS interfaces in its interfaces directory is instructive just to give you an idea of what it *can* do. - C On Jun 27, 2006, at 11:57 AM, Jeff Peterson wrote: Hi all, Is there any localized documentation for using PAS? I read

Re: [Zope-PAS] New to PAS

2006-06-27 Thread Jeff Peterson
Ok, After poking around PAS for a while I think I have a bit of a handle on it. This seems to be built primarily for managing Zope users. My solution needs to be able to manage a group of existing users not in Zope currently. Is this something that can be done? I know I can create SQL

[Zope-PAS] PAS instance

2006-06-27 Thread Jeff Peterson
So how do I get PAS to prompt for credentials? I created a PAS object, and inside that a scriptable plugin. Inside that a script called challenge and a loginForm which challenge redirects to for input, I set that as my interface and activated it. Then I went to the folder level and changed

RE: [Zope] Some help required but no sarcastic comments this time please

2001-01-24 Thread Jeff Peterson
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of alankirk Sent: Tuesday, January 23, 2001 5:18 PM To: [EMAIL PROTECTED] Subject: [Zope] Some help required but no sarcastic comments this time please I am using Zope 2.2.2 on windows(this time i'd

RE: [Zope] (Cc || Bcc) dtml-sendmail

2001-01-19 Thread Jeff Peterson
Thanks! I had done exactly that, prior to writing my request for help. It turns out the problem was not Zope at all (surprise, surprise) or my code. I was using a test case that sent the message to an address aliased to my address and then was also Cc'ing the message to my address. The mailer

[Zope] (Cc || Bcc) dtml-sendmail

2001-01-19 Thread Jeff Peterson
We built our intranet on ZOPE 2.2.x, mostly it is a tech support app that ensures our techs only deliver the info we need. Anyway, the method of doing this is sending a form via email with the info. The Problem: I would like to Cc or Bcc the originator of the request with a copy of the request

[Zope] The new UI rules!

2001-01-17 Thread Jeff Peterson
Kudos to the Digital Creation guysthe new UI rocks, all sorts of new and handy gadgets and a far better layout. Keep it coming! __ Jeffrey D. Peterson Webmaster/Web Web Applications Developer Range TV Cable Broadband 1813 E. 3rd Ave. Hibbing,

RE: [Zope] FTP in HTML-Kit? (Or other editor on MS-Windows)

2000-12-04 Thread Jeff Peterson
Homesite is NOT shareware, it is a licensed product from Allaire. There is a 30 day trial available which you are obviously referring to. While I agree that Homesite 4.5.1 is great, I personally cannot use it even though I paid for the license. It has a terrible memory leak which forces you to

[Zope] HTML Editors that recognize DTML (was bastardized form ofXML)

2000-06-26 Thread Jeff Peterson
ot out of vi. RPM's, and source are both available, for free of course. That's my $.02, Jeff Peterson Software Engineer The Bridge/Befera Interactive Cablenet ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No

RE: [Zope] ANN: Perl For Zope

2000-05-31 Thread Jeff Peterson
then sorry, but you will be missing out. Fighting over this is silly and it wastes the time of those who would like to find meaningful answers to posed questions. JMHO, Jeff Peterson Software Engineer The Bridge/Befera Interactive Cablenet -Original Message- From: [EMAIL PROTECTED] [mailto

RE: [Zope] HomeSite Question

2000-05-31 Thread Jeff Peterson
suggest creating what you want HTML wise and ZOPEing it after, it will likely take time either way. Jeff Peterson Software Engineer The Bridge/Befera Interactive Cablenet -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Luis Cortes Sent: Wednesday, May 31