[Zope] Z class complexities

2000-09-30 Thread Nolan Darilek

I'm having a kinda complex problem, and hopefully my explanation can
do it justice. :)

I'm using zope to construct an XML document from the contents of a
folder. Basically, the folder's index.xml iterates through the
folder's contents, rendering each object to produce the final
document. The objects are separate z classes which combine various
properties into a small snippet of the larger XML document.

The z class has a render() method which combines the properties into
the XML snippet. I have a Render view configured to run this method,
and it works. (Though for some reason it adds a ..., which
I'd really like to get rid of. How can I?)

I've written the index_html to collect the individual objects and
concatenate their contents into an XML document. The code for the
method is below:



   

 


This almost gives me what I want (I say "almost" because everything
works, short of the render() call.) Viewing this results in:



++
||Zope Error |
||   |
||Zope has encountered an error while publishing this resource.  |
||   |
||Error Type: KeyError   |
||Error Value: title |
||---|
||   |
||Troubleshooting Suggestions|
||   |
||   o This resource may be trying to reference a nonexistent object or  |
|| variable title.   |
||   o The URL may be incorrect. |
||   o The parameters passed to this resource may be incorrect.  |
||   o A resource that this resource relies on may be encountering an error. |
||   |
||For more detailed information about the error, please refer to the HTML|
||source for this page.  |
||   |
||If the error persists please contact the site maintainer. Thank you for|
||your patience. |
++


Traceback (innermost last):
  File /usr/local/zope/e1/lib/python/ZPublisher/Publish.py, line 222, in publish_module
  File /usr/local/zope/e1/lib/python/ZPublisher/Publish.py, line 187, in publish
  File /usr/local/zope/e1/lib/python/Zope/__init__.py, line 221, in 
zpublisher_exception_hook
(Object: Traversable)
  File /usr/local/zope/e1/lib/python/ZPublisher/Publish.py, line 171, in publish
  File /usr/local/zope/e1/lib/python/ZPublisher/mapply.py, line 160, in mapply
(Object: index.xml)
  File /usr/local/zope/e1/lib/python/ZPublisher/Publish.py, line 112, in call_object
(Object: index.xml)
  File /usr/local/zope/e1/lib/python/OFS/DTMLMethod.py, line 172, in __call__
(Object: index.xml)
  File /usr/local/zope/e1/lib/python/DocumentTemplate/DT_String.py, line 528, in 
__call__
(Object: index.xml)
  File /usr/local/zope/e1/lib/python/DocumentTemplate/DT_In.py, line 691, in renderwob
(Object: PARENTS[0].objectValues('ESPPackage'))
  File /usr/local/zope/e1/lib/python/DocumentTemplate/DT_Util.py, line 337, in eval
(Object: _[_['id']].render())
(Info: _)
  File , line 0, in ?
  File /usr/local/zope/e1/lib/python/OFS/DTMLMethod.py, line 168, in __call__
(Object: render)
  File /usr/local/zope/e1/lib/python/DocumentTemplate/DT_String.py, line 528, in 
__call__
(Object: render)
KeyError: (see above)

-->

I have a title variable in the z class which this index.xml method is
referencing. And, as previously stated, the render() method runs
without errors when invoked via the view. Yet, trying to display this
document from within another doesn't work. Can anyone please advise?

Thanks a bunch in advance.

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] handling date properties in

2000-09-30 Thread Timothy Wilson

Hi everyone,

I've created a simple ZClass to allow our Human Resources dept. to post job
openings on our Web site. There's a DTML method that iterates through a
folder containing all of the 'Job Board Entry' instances and displays them
in an HTML table. No problem there.

The ZClass has a number of properties including two dates, 'date_posted' for
the date that the job is officially available and 'offer_expires' for the
date the job opening officially closes. I want to display only those jobs
for which the current date is on or after the 'date_posted' and on or
before 'offer_expires'. I've tried a bunch of things, but haven't hit upon
the winning answer. Any takers?

-Tim

--
Tim Wilson  | Visit Sibley online: | Check out:
Henry Sibley HS | http://www.isd197.k12.mn.us/ | http://www.zope.org/
W. St. Paul, MN |  | http://slashdot.org/
[EMAIL PROTECTED] || http://linux.com/


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Hexcolors and DTML

2000-09-30 Thread Tim Cook

Peter Bengtsson wrote:
> 
> This might be a math-python question but...
> All I want to do is to print out the hexvalue of all black/white colors for a 
>"fading HTML table".
> 
> #ff, #fefefe, #fdfdfd, ... #020202, #010101, #00
> 
> I can do a loop from 1 to 255, but I don't know where to go from there.
> 
> BTW, are there non-websafe greycolors? Can the loop be for only websafe ones?

Not an expert on this at all. But, I believe that all the websafe
colors are defined in pairs of the following hex digits. 00, 33,
66, 99, cc, & ff.  So only colors that are composed of those
pairs are websafe.
If that's true then yes there are shades of gray that are not web
safe. Checkout this link for more info.
http://www.reallybig.com/visibone/lab/index.shtml

Therefore there are only six shades of websafe gray. 00,
33, 66, 99, cc, & ff.

Put those in a list?


-- Tim Cook --
Cook Information Systems | Office: (901) 884-4126 8am-5pm CDT
* It's easy to stop making mistakes. Just stop having ideas.  *
FreePM Project Coordinator http://www.freepm.org
OSHCA Founding Supporter http://www.oshca.org

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] XMLRPC:XML Compressors - anybody experienced it?

2000-09-30 Thread Chris McDonough

Phillip,

If your data transfers are bounded between a number of systems that you
control, it's possible to solve this problem the sledgehammer way by
having them communicate via a channel such as a compressed ssh tunnel
(if your processors aren't a bottleneck).

-- 
Chris McDonough
Digital Creations, Publishers of Zope
http://www.zope.org

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] XMLRPC:XML Compressors - anybody experienced it?

2000-09-30 Thread Philipp Auersperg



Since XML blows lots of overhead over the line sending large amounts 
of
data via XML becomes a performance question.
 
There exist XML-compressors, for example XMill that address this 
problem.
 
What I need is integrating such an XML compressor into the Zope XMLRPC 
mechanism, 
Before I do something that is already done by somebody else:
 
Did anybody play with XML compressors for Zope or at least have a hint how 
to do that?
 
thanks



[Zope] Hexcolors and DTML

2000-09-30 Thread Peter Bengtsson

This might be a math-python question but...
All I want to do is to print out the hexvalue of all black/white colors for a "fading 
HTML table".

#ff, #fefefe, #fdfdfd, ... #020202, #010101, #00

I can do a loop from 1 to 255, but I don't know where to go from there.

BTW, are there non-websafe greycolors? Can the loop be for only websafe ones?


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] WebTechniques "Web Tools Awards"

2000-09-30 Thread J. Atwood

Done and done.

You can also go directly to

http://www.webtechniques.com/wtawards/2000/form.shtml

It is not a quick form but well worth it.

Enjoy,
J

At 2:52 PM -0400 9/30/2000, Gary E Graham wrote:
>We have entered Zope in WebTechniques "Web Tools Awards" contest. We 
>would appreciate your help by voting for Zope for your Open Source 
>choice.
>
>Starting Monday, October 2nd, please visit 
>http://www.webtechniques.com and place your vote for Zope.
>
>Thank you for your support.
>
>--Gary
>
>Gary Graham [EMAIL PROTECTED] 
>Digital CreationsFredericksburg, Virginia
>
>Creators of Zope: The Open Source Application / Content Management Server
>www.zope.org
>www.digicool.com
>
>___
>Zope maillist  -  [EMAIL PROTECTED]
>http://lists.zope.org/mailman/listinfo/zope
>**   No cross posts or HTML encoding!  **
>(Related lists -
>  http://lists.zope.org/mailman/listinfo/zope-announce
>  http://lists.zope.org/mailman/listinfo/zope-dev )


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Help - Weird stuff.

2000-09-30 Thread Phil Harris

Steve,

Thanks for replying.

I wish I could!

I'll try to follow a chain of events though, maybe that will shed some
light.

I developed a site in 2.1.6 which was imported to a 2.2.1 installation.

I didn't try much of anything on that install before upgrading to 2.2.2.  So
I'm not sure if the problem was caused by the importation or the upgrade.

I eventually got round the problem by moving the site to aother 2.2.2
install manually, i.e. copy and paste the text of the methods etc. No
importation involved.

All this took place on a pair of NT4 boxes, one workstation(2.1.6) and one
server(2.2.1->2.2.2).

The problem has now gone away, so for the moment I'm happy to let it be.

Thanks again

Phil

- Original Message -
From: "Steve Alexander" <[EMAIL PROTECTED]>
To: "Phil Harris" <[EMAIL PROTECTED]>
Cc: "Zope@Zope. Org" <[EMAIL PROTECTED]>
Sent: Saturday, September 30, 2000 8:53 AM
Subject: Re: [Zope] Help - Weird stuff.


> Phil Harris wrote:
>
> > Hi all,
> >
> > Sorry for the subject but I don't really know how to describe this.
> >
> > I have a folder 'hp' which has loads of stuff in it, if I try to copy
and
> > paste into it though I get this error:
> >
> > 'The object index_html does not support this operation '
>
> I can't reproduce this in Zope 2.2.2, linux.
>
> Can you describe a simple case that has the problem?
>
> --
> Steve Alexander
> Software Engineer
> Cat-Box limited
> http://www.cat-box.net
>
>
>
>
> ___
> Zope maillist  -  [EMAIL PROTECTED]
> http://lists.zope.org/mailman/listinfo/zope
> **   No cross posts or HTML encoding!  **
> (Related lists -
>  http://lists.zope.org/mailman/listinfo/zope-announce
>  http://lists.zope.org/mailman/listinfo/zope-dev )


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Passing parameters to methods - how to?

2000-09-30 Thread Maik Roeder

Hi Cesar !

> Clicking in the "submit" button, it gives me an error, telling that
> 'username' is not defined. So I included an hidden field with
> name="username" and value="", but I'm thinking this
> is not the better way to do that...
> 
> Can someone helps me?

To my knowledge, it's the only way to do it, and if it works, why bother ?
 
Regards,

Maik

-- 
Uzopia - Digging la vida Zopa - http://uzopia.editthispage.com

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] newbie:zclasses within zclasses (down the hill)

2000-09-30 Thread Maik Roeder

Hi Sven !

> The constructor_site is on the top level of the website and he doesn't know
> the folders downside.How to solve the problem???Please help me because it's
> only two days to finish everything.

This is the right syntax:



 
Regards,

Maik


-- 
Uzopia - Digging la vida Zopa - http://uzopia.editthispage.com

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Use variable value by other file

2000-09-30 Thread Dieter Maurer

Rafael =?ISO-8859-1?Q?Sep=FAlveda?= writes:
 > How can I make a value of a variable be seen by another file that lies
 > on tha same folder than the first one?
 > 
 > I need this because I need a variable in each file describing who did
 > that page, but the display of that variable is on the
 > standard_html_footer file.

  ...
  
  



"standard_html_footer" uses "" to access
the author.

It is not necessary for "standard_html_footer" to be
in the same folder than your file.


Dieter

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Passing parameters to methods - how to?

2000-09-30 Thread Cesar A. K. Grossmann

Hi!

I'm making my own user managements methods, and I'm stucked with a
(simple) problem: How do I call another DHTML method, passing parameters
to it, in HTML?

I'm using a DTML Method that gives me a list of usernames. I want to
click on the username and get the properties for that username. I wrote
another DTML Method to do that, but I don't know how to pass the
username to this second DTML Method.

The username list page have, for every user, a line like that (suppose
two
usernames, fred and jorge):

fred
jorge

How do I pass the username to the ManageUserProperties DTML Method? I
have tried to use something like:

fred
jorge

It works, but the ManageUserProperties DTML Method have another form in
it, that calls itself, using the POST method:



Clicking in the "submit" button, it gives me an error, telling that
'username' is not defined. So I included an hidden field with
name="username" and value="", but I'm thinking this
is not the better way to do that...

Can someone helps me?

TIA
-- 
César A. K. Grossmann [EMAIL PROTECTED] http://members.xoom.com/ckant/
http://www.halcyon.com/sciclub/cgi-pvt/instr/instr.html

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] WebDAV's not really the problem...

2000-09-30 Thread Nils Kassube

Chris Withers wrote:

> It's a hard problem to solve, made harder by the fact that Zope supports
> loads of protocols and is totally manageable through the web. These are
> Zope's strengths, but they do raise itneresting problems :-S

It would be nice to have "security by default". This is the same problem 
that's really annoying with most Linux distributions. I'd prefer to see 
a more OpenBSD like approach. 

Cheers,
Nils
--
[EMAIL PROTECTED]
[EMAIL PROTECTED] 
[EMAIL PROTECTED]



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] WebTechniques "Web Tools Awards"

2000-09-30 Thread Gary E Graham


We have entered Zope in WebTechniques "Web Tools Awards" contest. We would appreciate 
your help by voting for Zope for your Open Source choice. 

Starting Monday, October 2nd, please visit http://www.webtechniques.com and place your 
vote for Zope.

Thank you for your support.

--Gary

Gary Graham [EMAIL PROTECTED]  
Digital CreationsFredericksburg, Virginia

Creators of Zope: The Open Source Application / Content Management Server
www.zope.org
www.digicool.com 

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] newbie:zclasses within zclasses (down the hill)

2000-09-30 Thread Sven Hohage

I've searched on a solution for this problem for hours.
I want to build a site-structure where users can add with help of templates new 
webpages. One webpage for itself is a ZClass(baseclasses:ZObject, _ZClass_for_Folder, 
_ZClass_for_CatalogAware, ZObjectManager).

---The formular:
---
  
  


   
The user can decide where to build the webpage(ZClass with metatype 'Spam')
In 'second' he can choose a template and then the constructor_site builds
it:
--
--


---
I've also tried -> and also with not saving the 'id' but 
the 'absolute_url' in 'destination'.
  The constructor_site is on the top level of the website and he doesn't know
the folders downside.How to solve the problem???Please help me because it's
only two days to finish everything.

___
1.000.000 DM gewinnen - kostenlos tippen - http://millionenklick.web.de
[EMAIL PROTECTED], 8MB Speicher, Verschluesselung - http://freemail.web.de



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Two inquiries

2000-09-30 Thread seb

Maik Roeder wrote:
> 
> Hi Manuel !
> 
> "Manuel Amador (Rudd-O) Gerente de desarrollo Alpha Omega Creative Solutions 
>http://www.alomega.com/" wrote:
> >
> > Hey there people,
> >
> > First, the customary thanks for such a great product.
> > Second - I have two problems.  First one is that I got
> > zope compiled for linux then installed Login Manager
> > then installed ZPatterns, but when trying to compile
> > DynPersist.c it can't find ExtensionClass.h.  It
> > honestly isn't in my system tho I have python and
> > python-devel installed.
> 
> The easiest way is to fetch the ZPatterns binary release, and put
> the file "DynPersist.so" into your folder

Incidentally, the reason Extensions.h isn't in your python-devel
libraries is because it's actually a DC python extension that comes with
the Zope source, and you've presumably got the Zope binaries.

Seb.

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Property problem - still the same...

2000-09-30 Thread Maik Roeder

Hi Lars !

Lars Heber wrote:
> I was told to use ZClasses, and I read a lot of documentation about it.
> But I found out that this isn't the thing I was searching for.

Why not use ZClasses ? Look at the ZDP-Tools, and your problems
of displaying the header differently depending upon the meta_type
is really easy.
 
> So, now I'll try it again, very concrete this time:
> 
> In my root folder, I have a property enterpriseName (string) =
> "myEnterprise".
> 
> Furthermore I have an arbitrary DTML document, and I want to include my
> global property enterpriseName in the title property of this document so
> that the title of the document is "myEnterprise" at the end.
> 
> The sense of that is that when I change the value of enterpriseName
> automatically all titles are updated.
> 
> It is not possible to include this enterpriseName into
> standard_html_header or similar, because there will be many documents,
> and only some of them need the enterpriseName in their titles, others
> want to add an own text to the enterpriseName resulting in e. g. "This
> is the Homepage of XYZ, who is working at myEnterprise".

If you have meta_type "Employee", then the "Header" would include
"This is the Homepage of , who is working at
. If you have another meta_type like "Project",
then the Header method could be " .
 
> I generally just want to insert one property into another...

Just have a look at how it is done in the ZDP-Tools.
 
> Please, please help me, I'm despairing in the meantime...

It's really just a problem of displaying headers differently
depending on meta_type.
 
Regards,

Maik Röder

-- 
Uzopia - Digging la vida Zopa - http://uzopia.editthispage.com

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] ZMySQLDA instal Import Error problem

2000-09-30 Thread Thomas Weiner

Richard Moon schrieb:
> 
> Installing MySQLDA-0.1.2 and running
> 
> python build.py
> 
> I get the error
> 
> Import Error: ./_mysqlmodule.so: undefined symbol: uncompress
> 
> Any clues ? I've just installed the latest (3.23.25) MySQL rpms on Linux

MySQL 3.23.25 needs the Zlib libraries. Append in your Setup file the
option -lz to the line '_mysql _mysqlmodule.c .. '

hth,
Thomas

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] [Q] Generating a dynamic navigation bar...

2000-09-30 Thread Maik Roeder

Hi Sudhakar !

Sudhakar Chandra wrote:
> Questions:
> 
> 1. The problem with this DTML method is that all the DTML Documents and
> Folders are represented as a link in the nav bar.  I want to build
> intelligence into this DTML method to make the tab / cell for the current
> document just textual (as opposed to a link).  If I am calling this method
> from foo_html, I do not the "tab" for foo_html to be a link.  How do I do
> this?  I'm guessing some kind of #if.

First you can store the your url:

 

Then, when you call your method, you can test whether your
url is the current url 



The must be another way of doing this, but I can't remember. Does
someone else see how this could be done differently ?
 
> 2. Currently, the TD cells of the table vary in length based on the
> contents of the cell.  I want all the TDs to be of equal length.  I want to
> first count the number of DTML Documents and Folders and make each TD to be
> width 100/n % (where n is the number of Documents and Folders).  Any ideas
> on how I can do math inside DTML methods?

You can set a REQUEST variable with the result of your computation:

 

Regards,

Maik Röder
-- 
Uzopia - Digging la vida Zopa - http://uzopia.editthispage.com

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Two inquiries

2000-09-30 Thread Maik Roeder

Hi Manuel !

"Manuel Amador (Rudd-O) Gerente de desarrollo Alpha Omega Creative Solutions 
http://www.alomega.com/" wrote:
> 
> Hey there people,
> 
> First, the customary thanks for such a great product.
> Second - I have two problems.  First one is that I got
> zope compiled for linux then installed Login Manager
> then installed ZPatterns, but when trying to compile
> DynPersist.c it can't find ExtensionClass.h.  It
> honestly isn't in my system tho I have python and
> python-devel installed.

The easiest way is to fetch the ZPatterns binary release, and put
the file "DynPersist.so" into your folder:

http://www.zope.org/Members/ngarcia/ZPatternsBinaryRelease/ZPatterns-linux2-x86-0_3_0.tgz/view

tar tfvz /home/maik/ZPatterns-linux2-x86-0_3_0.tgz | grep Dyn

-rw-r--r-- ngarcia/ngarcia 3312 2000-04-26 18:46 ZPatterns/DynPersist.c
-rw-rw-r-- ngarcia/ngarcia 29284 2000-06-09 18:44 ZPatterns/DynPersist.o
-rwxrwxr-x ngarcia/ngarcia 33586 2000-06-09 18:44 ZPatterns/DynPersist.so

Regards,

Maik Röder

-- 
Uzopia - Digging la vida Zopa - http://uzopia.editthispage.com

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Use variable value by other file

2000-09-30 Thread Maik Roeder

Hi Rafael !

"Rafael Sepúlveda" wrote:
> 
> How can I make a value of a variable be seen by another file that lies
> on tha same folder than the first one?
> 
> I need this because I need a variable in each file describing who did
> that page, but the display of that variable is on the
> standard_html_footer file.
> 
> Any ideas?

If you know the name of the file, you can do a dtml-with and display
the property with a dtml-var.

Regards,

Maik


-- 
Uzopia - Digging la vida Zopa - http://uzopia.editthispage.com

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Use variable value by other file

2000-09-30 Thread Rafael Sepúlveda


How can I make a value of a variable be seen by another file that lies
on tha same folder than the first one?

I need this because I need a variable in each file describing who did
that page, but the display of that variable is on the
standard_html_footer file.

Any ideas?

-- 
Rafael Sepúlveda <[EMAIL PROTECTED]>
http://www.linuxmty.org/people/rsepulveda

1024D/1981FDE7 F13B C41C 739B 7233 F738  D68E 2947 D868 1981 FDE7

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Help - Weird stuff.

2000-09-30 Thread Steve Alexander

Phil Harris wrote:

> Hi all,
> 
> Sorry for the subject but I don't really know how to describe this.
> 
> I have a folder 'hp' which has loads of stuff in it, if I try to copy and
> paste into it though I get this error:
> 
> 'The object index_html does not support this operation '

I can't reproduce this in Zope 2.2.2, linux.

Can you describe a simple case that has the problem?

--
Steve Alexander
Software Engineer
Cat-Box limited
http://www.cat-box.net




___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )