Re: [Zope] Old Zope

2000-07-31 Thread R. David Murray
On Mon, 31 Jul 2000, Luis Cortes wrote: Does anybody know where I might still be able to download Zope 2.1.6? Thank ahead of time for any help, If you look at the URL you would access to download 2.2.0, and replace the version number with 2.1.6, I think you'll find you can still download

Re: [Zope] From a Folder to a Product

2000-07-31 Thread R. David Murray
On Mon, 31 Jul 2000, Cesar A. K. Grossmann wrote: If someone wants to point some general guidelines, the folder contains only the dtml docs/methods and SQL connection/SQL Queries used to do the report, and the only thing that changes from one to another customer is the SQL connection (every

RE: [Zope-dev] Stuff hanging off user not in cookies

2000-07-28 Thread R. David Murray
On Tue, 25 Jul 2000, Brian Lloyd wrote: I'm thinking of the dimensions/etc of the edit boxes and the like. I do a lot of work through virtual domains and it's a real pain having to resize that edit box every time I log in through a different domain or on a different computer... Have

Re: [Zope] Batchprocessing with multiple conditions?

2000-07-28 Thread R. David Murray
On Tue, 25 Jul 2000, Peter Arvidsson wrote: I have objects of a certain meta-type. They have some properties and one of the properties is a boolean. How do I make a dtml-in loop among those objects with the boolean set to yes? I dont want it to traverse any other value at all only those that

Re: [Zope] Re: Folderish objects and that BASE tag...

2000-07-26 Thread R. David Murray
On Mon, 24 Jul 2000, Chris Withers wrote: I belive that it is returning: http://my.zope/site/file.html/index_html I wonder what index_html that is then? :S From lib/python/OFS/Image.py (which also implements generic file object): def index_html(self, REQUEST, RESPONSE):

Re: [Zope] Re: Folderish objects and that BASE tag...

2000-07-21 Thread R. David Murray
On Mon, 17 Jul 2000, Chris Withers wrote: If you go to: http://my.zope/site/file.html/ It will just return the DTML document :-) I wonder if it is redirecting to http://my.zope/site/file.html? I belive that it is returning: http://my.zope/site/file.html/index_html --RDM

Re: [Zope] How to require an @ symbol in email form field??

2000-07-21 Thread R. David Murray
On Tue, 18 Jul 2000, Duncan Booth wrote: Use javascript to check that all required fields are present before the form is actually submitted. Here is some of the code I use: Note, however, that using Javascript to do the checking client side is only useful as a user convenience. If you have

Re: [Zope] (no subject)

2000-07-17 Thread R. David Murray
On 14 Jul 2000, Karl Anderson wrote: __bobo_traverse__ is another attribute that the object may have to drive the publishing process, but I haven't needed to understand why it's useful yet :) Isn't that where he'd hook in to do exactly what he wants? To have an (arbitrary) object "eat"

Re: [Zope] Urgent Problem - CMG - script is not working

2000-07-17 Thread R. David Murray
On Tue, 18 Jul 2000, Sven Hohage wrote: I know that's described in the CMG but the builder-script is not working. "Invalid syntax". The most import thing is to be able to clone an object and then to change the propertys. Please mail me a version that's working because tomorrow I have to

Re: [Zope] uncatalog of absent id?

2000-07-14 Thread R. David Murray
On Thu, 13 Jul 2000, Nitesh Dhanjani wrote: Im fairly new to the Zope world. Im trying to delete a PTK folder, and get this error: Zope Error Zope has encountered an error while publishing this resource. Error Type: ValueError Error Value: Uncatalog of absent id

Re: [Zope] Class Refactoring Question

2000-07-14 Thread R. David Murray
On Thu, 13 Jul 2000, James W. Howe wrote: I've developed a couple of simply Python classes which I'm using as base classes for some ZClasses that I've developed. I now realize that both of these Python classes could benefit from obtaining behavior from another class. Will I complete hose

Re: [Zope] Re: Re: [Zope] LocalFS Documentation

2000-07-13 Thread R. David Murray
On Thu, 13 Jul 2000, Kelvin Cheong wrote: I'm puzzled...there isn't any upload at the bottom of the page...but there has always been an upload at the top of the page in the Zope content management interface (along with "Contents", "Edit", "View", "Properties"...etc). Was the LocalFS upload

[Zope] RE: [Zope-dev] Problem with Zope

2000-07-12 Thread R. David Murray
On Wed, 12 Jul 2000, Tina Goyne (TT) wrote: click on the folder I created--it opens the folder, but it is as if the folder is empty. If I view the file, it opens Adobe Reader--but the page is If the folder appears empty, how do you view the file? When viewing the file, the fact that it opens

[Zope] RE: [Zope-dev] Problem with Zope

2000-07-12 Thread R. David Murray
On Wed, 12 Jul 2000, Tina Goyne (TT) wrote: we have actually narrowed the problem down a little more. If we use Netscape--there are no problems. The problem seems to be with IE--have you heard of a resolution? BTW - I can view the file on the network server. No, I hadn't heard about

Re: [Zope] How to uninstall a product such as PTK or KnowledgeKit

2000-07-12 Thread R. David Murray
I'm not saying this will fix it, but did you try restarting Zope? --RDM ___ Zope maillist - [EMAIL PROTECTED] http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists -

Re: [Zope] .dtml files

2000-07-12 Thread R. David Murray
On Wed, 12 Jul 2000, Daniel Rusch wrote: I have found function calls such as: manage_roleForm=HTMLFile('roleEdit', globals()) which I believe creates an HTML document template from the named file. But, what is the mechanism that calls/displays mange_roleForm? Actually, it creates a

Re: [Zope] Aligning Images With Text

2000-07-12 Thread R. David Murray
On Wed, 12 Jul 2000, Terry Babbey wrote: Here is my code: dtml-if "_[ProgCode + 'PIC']" dtml-var "_[ProgCode + 'PIC']" /dtml-if What I would like to do is align the picture to the right of my web page. If I was programming html I would do it like this: img src=T043PIC align=right

Re: [Zope] Aligning Images With Text

2000-07-12 Thread R. David Murray
On Wed, 12 Jul 2000, Terry Babbey wrote: Now if only I could get my dtml-if statement working. dtml-if "_[ProgCode + 'PIC']" I believe this should work (mostly tested): dtml-if "_.has_key(ProgCode + 'PIC')" Note that this will be true if the id exists anywhere in the acquisition path.

Re: [Zope] Aligning Images With Text

2000-07-12 Thread R. David Murray
On Wed, 12 Jul 2000, Peter Be wrote: If you use .tag you can only control ALT, HEIGHT, WIDTH and BORDER Look for these things in the Image module and see if you can add ALIGN. As far as I can see from the source, tag should handle arbitrary arguments. The comments certainly say that it does.

Re: [Zope] DTML?

2000-07-11 Thread R. David Murray
On Tue, 11 Jul 2000, Chris Withers wrote: Tino Wildenhain wrote: I want that too. When we are over it, how about replacing (or at least aliasing) these - variables to _ ? sequence-item, sequence-index etc. comes to mind. IF you've got a patch that will do this, please mail it to me

Re: [Zope] R: [Zope] dtml-in and maps...

2000-07-11 Thread R. David Murray
On Tue, 11 Jul 2000, Marcel Preda wrote: looks like the variable that you are using in dtml-in ... is noat a sequence (list || tuple) I suppose that your var is a dictionary Insted of : dtml-in x mapping you have to use: dtml-in "[x]" mapping as a list || dtml-in "(x,)" mapping

Re: [Zope] Stupid Question Time

2000-07-11 Thread R. David Murray
On Tue, 11 Jul 2000, Jerome ALET wrote: ' and " are equivalent Not quite true. dtml only recognizes " for surrounding dtml expressions. But you are right that they are equivalent in python. () are for functions or methods To call functions or methods: blah(somearg). But also used for

[Zope] Re: [Zope-dev] Problem with Zope

2000-07-11 Thread R. David Murray
On Tue, 11 Jul 2000, Tina Goyne (TT) wrote: I am a novice Zope user--my web master left my company and I have been pegged with the responsibility of maintaining our internal website. I am having a problem adding a new folder and then adding a file to the folder. The file is located on

RE: [Zope-dev] Request for amplification on new Product permissions API.

2000-07-10 Thread R. David Murray
On Fri, 7 Jul 2000, Brian Lloyd wrote: Are you calling: Globals.default__class_init__(MyBasketClass) on your Basket class? This is (poorly documented but) necessary for permissions declared in __ac_permissions__ to be correctly initialized. Poorly? grin Only three classes seem to use

RE: [Zope-dev] zope and UNIX permissions

2000-07-10 Thread R. David Murray
On Mon, 10 Jul 2000, Chris McDonough wrote: Which files? Know that if you untar as root, the files will be 'owned' by whoever tarred it up on our side. Untar it as a normal user. Reset the permissions of the ones you find too permissive. Then let us know so we can change the distribution.

Re: [Zope] data record exceeds transaction record (was C:\ProgramFiles\WebSite...)

2000-07-10 Thread R. David Murray
On Fri, 7 Jul 2000, Jonathan DESP wrote: I'm getting a problem, I don't understand what it is, my friend and me didnot find the problem too. [] data record exceeds transaction record at 34224435 This may not be of any help, but I got this kind of error when I was trying to build a Zope

Re: [Zope] DTML?

2000-07-10 Thread R. David Murray
On Mon, 10 Jul 2000, Chris Withers wrote: (Who just spent 1/2 hour figuring out how to do a multi-language site in Zope, and now after 6hrs of trying has given up doing a recursive tree copy to get the old site into the new structure with a DTML method or two and is resorting to ugly hacky

Re: [Zope] Installed Products

2000-07-09 Thread R. David Murray
On Sun, 9 Jul 2000, Tim Cook wrote: So all the really cool, useful stuff is being written in Python instead of ZClasses? g Is there a specific reason for this? Speed? Capability? ZClasses are a relatively recent addition. Some people swear by them, some people swear at them. Actually

[Zope-dev] Request for amplification on new Product permissions API.

2000-07-06 Thread R. David Murray
OK, I read Brian's excellent HowTo on the 2.2 Product permissions API, but it unfortunately doesn't give me the answer to my current 2.2 problem (or if it does there's something else I don't know that is preventing me from figuring it out). I'm trying to update EMarket to work under 2.2.

Re: [Zope] RE:How do I merge form URL vars into sql easily

2000-07-06 Thread R. David Murray
On Fri, 7 Jul 2000, Michael Blewett wrote: trial and error (and guidance from this list), I came up with these conclusions (which I'm sure someone will shoot down if I am wrong): 1) The request object you are setting with your REQUEST.set command is like a big bucket that gets passed

Re: [Zope] newbie questions

2000-07-06 Thread R. David Murray
On Fri, 7 Jul 2000, David Trudgett wrote: I don't understand this advice. Couldn't the file change while being read? Wouldn't a better way be to pack the database and use the Data.fs.old file as the backup? If you are a belt-and-suspenders type, sure grin. Data.fs only gets appended to,

Re: [Zope] The story with 900 files/Zope hanging..

2000-07-05 Thread R. David Murray
On Mon, 3 Jul 2000, Jonathan Desp wrote: then a problem appear, I mean zope stop, I cannot browse inside zope and I can't browse inside www.atomasoft.com/etc.. No one here know a patch for that problem ? no one here is smart enough in zope(because I'm not) for solving that problem ? Here

Re: [Zope] problem with ZopeFind and objectValues

2000-07-05 Thread R. David Murray
On Tue, 4 Jul 2000, Jerome Alet wrote: In fact if I give this method a proxy role of Manager then it works fine if I access directly to this method from my browser. However if I call this method from inside another dtml method then it seems that the method loose its proxy role of manager.

Re: [Zope] Zope and Security

2000-07-05 Thread R. David Murray
On Wed, 5 Jul 2000, Tom Scheidt wrote: information online, but Im concerned about security issues, such as entering social security #s etc. I have Zope running with Apache v1.3.x Zope has pretty strong internal security and delegation ability. If you couple that with SSL support either

[Zope-dev] ZCatalog lexicon bug is back?

2000-07-03 Thread R. David Murray
This is distressing. I'm building a new shopping cart site, and doing it under 2.2.0 CVS (as of 7/1). I've added four items. If I search for certain keywords that I know only appear on one item, I get two items returned. The other item has no trace of the specified keyword. This sounds very

Re: [Zope-dev] EMarket and 2.2.0b3

2000-07-01 Thread R. David Murray
On Sat, 1 Jul 2000, Adam Karpierz wrote: In installation of Zope Emarket and eTailer both installed and works ok on current 2.2.0 CVS. Well, they may work OK, but there's still a problem. Then you should update some files from current CVS. I did a full current CVS checkout, and if I access

Re: [Zope-dev] EMarket and 2.2.0b3

2000-06-30 Thread R. David Murray
On Thu, 29 Jun 2000, Steve Spicklemire wrote: I'm sure a lot of this is because EMarket was a 1.x product that has seen relatively little change, in basic structure, since. I'm working It doesn't look that way, actually. on some patched to allow (1) ZClasses to act as MarketItems and

Re: [Zope-dev] EMarket and 2.2.0b3

2000-06-30 Thread R. David Murray
On Fri, 30 Jun 2000, R. David Murray wrote: manage_options.append(copy(item)) makes the management interface behave normally with the product installed. Darn, I should have done more testing. I only fixed the prompt for permissions problem. manage_workspace still goes

Re: [Zope-dev] EMarket and 2.2.0b3

2000-06-30 Thread R. David Murray
On Fri, 30 Jun 2000, R. David Murray wrote: Darn, I should have done more testing. I only fixed the prompt for permissions problem. manage_workspace still goes to the import/export screen...back to the testing. Arg, it's worse than I thought. My original test was broken. I haven't found

[Zope-dev] EMarket and 2.2.0b3

2000-06-28 Thread R. David Murray
OK, so I didn't get very far in tracking down what inside EMarket is triggering the wierd auth behavior, because I had to run a bunch of tests against b3, where the behavior has changed from that of b2. For this testing my method of determining if "things are weird" is to see if I get prompted

Re: [Zope] Re[2]: [Zope] CASE tools and Zope

2000-06-28 Thread R. David Murray
On Wed, 28 Jun 2000, Alexander Chelnokov wrote: As i realize, ZSQL methods are merely SQL statements for data manipulation - select, insert, delete and so on. But some application logic and data integrity rules may be IMHO wrapped into ZClasses instead of triggers and stored procedures. It

Re: [Zope] range with variables

2000-06-28 Thread R. David Murray
On Tue, 27 Jun 2000, Armin Wappenschmidt wrote: dtml-let start=Variable_from_Formular # -- that's the problem!! dtml-let stop="100" dtml-let period="5" dtml-in "_.range(start,stop,period)" dtml-comment do something /dtml-comment /dtml-in /dtml-let /dtml-let /dtml-let

Re: [Zope] DTML question

2000-06-28 Thread R. David Murray
On Wed, 28 Jun 2000, Luke Tymowski wrote: If the subfolder is down 2, then size=1 works, size=2 works, but size=3 returns everything. By down 2 I mean like the example code above (folder I want to query is two levels down). Maybe it's a 2.2 bug? Maybe you need the 'orphan' parameter on

Re: [Zope] Can't override standard_error_message on NotFound?

2000-06-27 Thread R. David Murray
On Mon, 26 Jun 2000, matt wrote: I'm having some problems with standard_error_message on 2.2.0b2. According to the mailing list archives I should be able to override NotFound errors (I even cut-n-pasted http://www.zope.org/standard_error_message/view_source into my own standard_error_message

Re: [Zope-dev] New security model and products breaking zope management

2000-06-26 Thread R. David Murray
On Mon, 26 Jun 2000, Lalo Martins wrote: I had the same problem ("Contents" tab not appearing) and it didn't even occur to me that it might be a Product (because that happened before the update on Products was released). After much munching trough the code, I made the simple change

RE: [Zope] Moving Z Classes around

2000-06-26 Thread R. David Murray
On Mon, 26 Jun 2000, Brian Lloyd wrote: future to move ZClasses around, but something will still need to be done about existing instances created from a class that moves. So far we have avoided the hard thinking required to If there are no instances to worry about, could one export the

Re: [Zope] Generating products that perform a smart clone of a mastersite?

2000-06-26 Thread R. David Murray
On Mon, 26 Jun 2000, [iso-8859-1] Hamish Lawson wrote: What I think I need to do is to develop a facility that makes a tutor's site into a product. Instantiating such a generated product should make a smart clone of the master site, smart in the sense that only active objects are actually

Re: [Zope] parsing strings in DTML

2000-06-26 Thread R. David Murray
On Mon, 26 Jun 2000, Timothy Wilson wrote: "REQUEST.set('parsed_address', _.string.join(old_address, '$')" except for This is exactly correct. Inside the quotes you are in python, and so you can reference variables from the namespace by their unadorned name. Second question... Once I've got

Re: [Zope] Stupid question of the day

2000-06-24 Thread R. David Murray
On Sat, 24 Jun 2000, Dieter Maurer wrote: Andy McKay writes: How do I find the size of the results returned by the catalog? dtml-let results=Catalog() dtml-var "_.len(results)" -- the results' length -- /dtml-let Or you can use the variable 'sequence-length'. Remember that

Re: [Zope] Pointers in zope ??? object1 -- object2

2000-06-20 Thread R. David Murray
On Tue, 20 Jun 2000, NABETH Thierry wrote: I had also thought that I could store in this field, the url of the object. From this url, I would then be able to get the object. (since you can call an kind of method by url-of-the-object/mymethod) But it didn't work. For instance dtml-with

Re: [Zope] Internationalization 2nd post

2000-06-20 Thread R. David Murray
On Tue, 20 Jun 2000, Dan Rusch wrote: How are my fellow Zopers handling Internationalization, especially text. Check out the list of mailing lists in the resources section of zope.org. You'll find a mailing list for ZIP, the Zope Internationalization Project, complete with archives. --RDM

Re: [Zope] html templates?

2000-06-19 Thread R. David Murray
On Mon, 19 Jun 2000, Christian Scholz wrote: Imagine writing simple html templates with some custom tags which are quite abstract like addresslist. Then write some Python Product (or there might be one Product to make this happen a little simpler) which implements these tags. Insofar as I

Re: [Zope-dev] Zope`s global.asa

2000-06-13 Thread R. David Murray
On Tue, 13 Jun 2000, Thomas Weholt wrote: Is there a global.asa counterpart in Zope, a place to put stuff that is or should be accessable in the entire site, like database-connections etc.? I was forced ( it was terrible, just terrible I tell ya!! ) to work in ASP on MS IIS ( it just gets

Re: [Zope] ZCatalog in python

2000-06-13 Thread R. David Murray
On Sun, 11 Jun 2000, Dieter Maurer wrote: The Find machinery (and therefore, ZCatalog) uses the method "objectItems" to locate the children of an object. If such a method does not exist or does not return the sequence of children, the catalog will not find them. That shouldn't matter for

Re: [Zope] How do I do...

2000-06-13 Thread R. David Murray
On Mon, 12 Jun 2000, Andre van der Vlies wrote: However, if I want to use a "Utility.method()" which uses something in "Sql" I am at loss Furthermore I have the feeling that this isn't the way it was ment to be... Is there a 'correct' way of doing this??? Wait for the re-release of the

Re: [Zope] Newbie alert! Frustration right off the bat...

2000-06-13 Thread R. David Murray
On Tue, 13 Jun 2000, Rob Brandt wrote: The beginning of the tutorial says to create the ZAcme folder under my root installation. I take this to mean at the main manage entry point, When you create the folder there are a couple of checkboxes on the creation screen. One says "create public

[Zope-dev] ZCatalog text index search bugs?

2000-06-12 Thread R. David Murray
I am very confused. I'm looking at the SearchIndex source under 2.1.4 (2.1.6 seems to be the same). In Lexicon.py the 'query' method defines the default_operator to be 'or'. I can't see that TextIndex overrides this when it calls it. But the response to PR 1141 (against 2.1.6) in the

Re: [Zope] Zope 2.2 beta 1 released

2000-06-12 Thread R. David Murray
On Mon, 12 Jun 2000, Brian Lloyd wrote: Zope 2.2.0 beta 1 has been released - you can download it from Zope.org: http://www.zope.org/Products/Zope/2.2.0b1/ Either the -src file name is wrong, or the file is wrong, because it still says 2.2.0a1. I think it's the file, 'cause the control panel

Re: [Zope] Zope, Apache/NT, Reliability issues

2000-06-09 Thread R. David Murray
On Fri, 9 Jun 2000, J. Michael Mc Kay wrote: The conversation below suggests that pcgi passes requests to Zope. I am confused about this because I am told this is a Website issue, but when explained in it's simplest terms (below) it appears to be a pcgi or Zope issue. The error I am

Re: [Zope] search on search results, dynamically

2000-06-08 Thread R. David Murray
On Thu, 8 Jun 2000, Philipp Dunkel wrote: amount of results, e.g. if my ZClass would handle Cars, they first see 500 car-objects, then they specify only reds, they get 200 results from the 500. Now they can specify a price and again the amount goes from 200 to say 50. This means I have to

Re: [Zope] Problems uploading large attachments

2000-06-08 Thread R. David Murray
On Thu, 8 Jun 2000, Cary O'Brien wrote: Also, couldn't seem to run strace on the zope process. I started under strace but the system went bezerk opening sockets or something. Is there any way to start a single-process non-threaded zope server? I've noticed this, too, under BSDI 4.1 and

[Zope] Secure storage of credit card info

2000-06-08 Thread R. David Murray
OK, any of you out there who have thought about ecommerce, cryptography, and zope, I've got a design question for you. Actually, this question is independent of zope, but I need to solve it in a zope context. You have a ZCommerce site. You accept credit cards, and securely communicate with a

Re: [Zope] (no subject)

2000-06-07 Thread R. David Murray
On Tue, 6 Jun 2000, Alexandre A. Drummond Barroso wrote: We are posting e-mails about it on the list for a while and nobody answered, so I must think that nobody on Zope universe is using Oracle 8i (neither NT nor Linux Oracle 8i client). I installed DCOracle for a client using 8i. The only

Re: [Zope] Re: import-export

2000-06-07 Thread R. David Murray
On Wed, 7 Jun 2000 [EMAIL PROTECTED] wrote: So how do I export everything from root? Ok .. this is a real bugger, I can't believe it's taken me so long to figure it out (I was first checking file permissions etc). Answer: Make sure you are in the root folder and then click the Export...

Re: [Zope] Greetings,

2000-06-07 Thread R. David Murray
On Wed, 7 Jun 2000, ethan mindlace fremen wrote: CURTIS David wrote: I wish to use use the data of the database file in my html code. For example, this database was last updated on 06/06/2000. I suppose that there must be a dynamic html tag that zope uses. What could it be? I looked at

Re: [Zope] Python and Zope Question

2000-06-01 Thread R. David Murray
On Thu, 1 Jun 2000, Scott Burton wrote: for x in folderObject : return x I am going to do things to the items once I have access to them, I just can't figure out how to reference ZODB objects in Python. I have for x in folderObject.objectValues(['some_meta_type','some_other_type']):

Re: [Zope-dev] TextIndex Questions

2000-05-31 Thread R. David Murray
On Sun, 28 May 2000, Chris Withers wrote: may be queried with a simple boolean query language that allows 'and', 'or', phrasing, parenthesized boolean expressions, and proximity matching. Relevance ranking is supported and returns the sum of the occurances of all query terms in the

Re: [Zope] Ordered list

2000-05-31 Thread R. David Murray
On Wed, 31 xxx 2000, Marcio Moreira wrote: My question is: How can I have an ordered listing of all popular names of all plants (in other words, how can I have an ordered listing of data stored in "lines"-type properties on diferent class instances)? My off the cuff thought would be to use a

Re: [Zope] Switch, Attribution and NT

2000-05-23 Thread R. David Murray
On Tue, 23 May 2000, peter wrote: Q1 {A} Is it possible to rewrite the following piece of DTML into something easier and managable? dtml-if "_.string.split(URL,'/')[-1]=='foobar_html'" Cool! You are viewing foobar_html dtml-elif

Re: [Zope] creating a generic field gadget

2000-05-23 Thread R. David Murray
On Wed, 24 May 2000, Graham Chiu wrote: But I now want this dtml-document when rendered to read the values of fieldname, and fieldname-error, and then generate the dtml equivalent to this ... dtml-if userid value="dtml-var userid" /dtml-if br dtml-if userid-error font size="2"

Re: [Zope-Dev] Zope 2.1.6 Memory issue

2000-05-22 Thread R. David Murray
On Mon, 22 May 2000, Jason Spisak wrote: i did it again, and now I'm down to 160 objects total. That's more liek it. But system memory is still dropping. I was at 173632 available (This is only a half our after the Zope restart BTW. It ate 100MB in under that time.) before the second pass

Re: [Zope] Fw:

2000-05-19 Thread R. David Murray
On Fri, 19 May 2000, Tom Scheidt wrote: Do you know if I can limit the id to the last 3 letters, rather than the first? My images have _xl, _l etc. on the end. [...] ul dtml-in "tester.fileValues()" dtml-if "type=='image/jpeg'" dtml-if "id[0:3]=='tn_'" img

[Zope-dev] How does the submit magic work in, eg, ZCatalog manage_addIndex?

2000-05-18 Thread R. David Murray
. "R. David Murray" wrote: I was just looking at the ZCatalog code to figure out how to programatically add an index to a Catalog. I figured out how to do that fairly easily, but the code I was looking at has me a bit mystified. The method manage_addIndex is defined. The for

<    1   2   3