RE: [Zope] Re: Lost in name Space...

2001-01-26 Thread James Sintz
You can also do the following: dtml-var "RandomGretting.Greet(_.None, _)" Jamey -Original Message- From: Prateep Siamwalla [SMTP:[EMAIL PROTECTED]] Sent: Friday, January 26, 2001 6:20 AM To: [EMAIL PROTECTED] Subject: [Zope] Re: Lost in name Space... Ok, found the

RE: [Zope] How to list objects across different containers in Zope's tree?

2001-01-17 Thread James Sintz
Ausum, It may be time to re-think your site structure. I have a news type site as well and here is how I handle it (my way... not saying it is by any means the best or right way). Instead of storing your news items in a series of folderish objects, maybe create folders for each section and then

RE: [Zope] How to list objects across different containers in Zope's tree?

2001-01-17 Thread James Sintz
br /dtml-in -Original Message- From: Ausum [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, January 17, 2001 3:18 PM To: James Sintz; [EMAIL PROTECTED] Subject: Re: [Zope] How to list objects across different containers in Zope's tree? Thanks for the tip, James. It seems

RE: [Zope] Re: EMarket 0.1.04b1

2001-01-09 Thread James Sintz
MarketItem in the marketItems folder? -steve "James" == James Sintz [EMAIL PROTECTED] writes: James Do I need to have ZPatterns installed to use Emarket James 0.1.04b1? I thought Zpatterns was only needed for EMarket James 0.2. James Jamey James -Origin

[Zope] EMarket 0.1.04b1

2001-01-08 Thread James Sintz
Perhaps I'm missing something fundamental, but I can't seem to figure out how to add products to EMarket 0.1.04b1 running on Zope 2.2.2 Everything installed just fine and I can add an EMarket object, but I don't see where, or how I go about adding things to sell. I don't care about the auction

RE: [Zope] Re: EMarket 0.1.04b1

2001-01-08 Thread James Sintz
to make a more complete example for folks. -steve "James" == James Sintz [EMAIL PROTECTED] writes: James Perhaps I'm missing something fundamental, but I can't seem James to figure out how to add products to EMarket 0.1.04b1 James running on Zope 2.2.2 James Everything

[Zope] ZCatalog and dates

2000-11-28 Thread James Sintz
I have a ZCatalog set up to index a date field and a title field. When I do a search for meta_type "news" I get a tabular list back of all 18 cataloged items showing, among other things the date field (goLiveDate) and the title field. If I do a search for both meta_type of "news" a date of

RE: [Zope] ZCatalog and dates

2000-11-28 Thread James Sintz
ED]] Sent: Tuesday, November 28, 2000 3:10 PM To: James Sintz; [EMAIL PROTECTED] Subject: Re: [Zope] ZCatalog and dates Are your dates actually of type date or string? If they are dates make sure your date index is a keyword index and that the input is also of type date. --

RE: [zope] Help!!! (was: sudden ZClass breakage)

2000-11-16 Thread James Sintz
k in 2.2.2? HELP!!! Thanks! Jamey -Original Message----- From: James Sintz [SMTP:[EMAIL PROTECTED]] Sent: Friday, November 10, 2000 5:17 PM To: '[EMAIL PROTECTED]' Subject: RE: [zope] sudden ZClass breakage Only seen a couple of posts on this and the suggested fixes di

[Zope] dtml-if and dtml-with problems

2000-11-16 Thread James Sintz
Could someone tell me why the follow statement is never true. dtml-in "news.objectValues(['newsLetters'])" sort="nl_goLiveDate" dtml-if "nl_goLiveDate == '2000/11/16'" h2dtml-var nl_subject - dtml-var nl_goLiveDate/h2 p dtml-var nl_body fmt=structured-text /p /dtml-if /dtml-in

RE: [Zope] dtml-if and dtml-with problems

2000-11-16 Thread James Sintz
IL PROTECTED]] Sent: Thursday, November 16, 2000 12:45 PM To: James Sintz; [EMAIL PROTECTED] Subject: Re: [Zope] dtml-if and dtml-with problems If your nl_goLiveDate is a date, then you might need to str() the variable dtml-if "_.str(nl_goLiveDate)=='2000/11/16'"

RE: [zope] sudden ZClass breakage

2000-11-10 Thread James Sintz
al Message- From: Timothy Wilson [SMTP:[EMAIL PROTECTED]] Sent: Friday, November 10, 2000 4:46 PM To: James Sintz Subject: RE: [zope] sudden ZClass breakage On Fri, 10 Nov 2000, James Sintz wrote: Did you ever figure out how to fix your ZClass problem? I have a application I have be

[Zope] calendar help (newbie)

2000-11-08 Thread James Sintz
I want to use the Calendar Tag product to display the subject of my daily newsletters (newsletter archive), but there are no examples of how to display anything other than propval stuff. I would like the calendar to show the subject for each day and link to the newsletter but only show

[Zope] importing data

2000-11-07 Thread James Sintz
I have created a simple zclass product for a web based newsletter. Each day's newsletter is input into a form and added into the ZODB as instances of this newsletter zclass. My question is... how do I import 2 years worth of newsletters from tab delimited files exported from another database? I