[Zope] is it possible to import from Excel

2000-12-26 Thread K H Subrahmanyan

Hello,


Now we have developed some database using gadfly in zope.
Actually there are some datum which are there in Excel. I would like to know
is it possible to import all that datum from Excel to zope database, instead
of giving all the data to zope manually.

Actually all those data are the Emp. records. Currently they are
maintaining it in Excel. Now they want to make it web based stuff. We have
developed a tool for that.
Since all that data are there in Excel I wanted some stuff to import that.
Hoping your reply.

bye
yours
subrahmanyan.


___
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] tuples in DTML

2000-12-26 Thread Michael Bernstein

Michael Bernstein wrote:
> 
> Hi everybody,
> 
> I've been messing with some external methods and I've got
> one that returns a tuple. The tuple consists of a list and a
> few strings.
> 
> How do I access the tuple elements from DTML?

Ok, I've been messing with it some more and I should have
tried simply iterating over the tuple elements before:


  


Which (of course) displays the list as an single item along
with each of the strings:

  ['list item 1', 'list item 2', 'list item 3']
  String 1
  String 2
  String 3

Now, how do I iterate over the list in DTML?

Michael Bernstein.

___
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] tuples in DTML

2000-12-26 Thread Michael Bernstein

Hi everybody,

I've been messing with some external methods and I've got
one that returns a tuple. The tuple consists of a list and a
few strings.

How do I access the tuple elements from DTML?

Cheers,

Michael Bernstein.

___
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] How to make two racks work under one specialist?

2000-12-26 Thread Dirksen

Hi Steve,

Here is the skinscript of my experiment(only one rack in the specialist folder):
WITH Deliverables.getItem(self.id) COMPUTE 
 Name
OTHERWISE LET
 Name='not available'

I though when the 'with' clause fails, the 'otherwise' would fire. Instead, I got the
'notFound' error. I got the same from this version of skinscript:
WITH Deliverables.getItem(self.id) COMPUTE 
 Name

WITH SELF COMPUTE
 Name='not available'

It seems that the 1st 'with' failure terminates the execution of following clauses 
rather
than passing down. 

cheers
Dirksen

__
Do You Yahoo!?
Yahoo! Shopping - Thousands of Stores. Millions of Products.
http://shopping.yahoo.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] passing parameters in a call/in/with

2000-12-26 Thread Lloyd Kvam

I did finally get that to work.  My actual table has a string id, so did it with:


I did not need the
expr=

Thank you for your response.

Jens Vagelpohl wrote:

> try...
>
> 
>
> jens
>
> on 12/26/00 17:32, Lloyd Kvam at [EMAIL PROTECTED] wrote:
>
> > This is also a problem for me.
> >
> >> From using ZNOLK I have a DTML document that uses dtml-in to execute a query.
> > The query is get_names_for_id and is:
> >   select name from name_table where id = 
> >
> > I can now call the form using:
> >   http://localhost:8080/form?chosen_id=123
> >
> > My dtml form would be simpler if there was a way to code:
> >   
> >
> > I was unable to make that work.
> >
> > Olaf Zanger wrote:
> >
> >> hi there,
> >>
> >> with the znolk product i get data by "select * ..." out of my database.
> >> some fields
> >> are id's and i would like to get data out of an other table basing on
> >> this id.
> >>
> >> how can i pass the id through a ?
> >>
> >> olaf
> >>
>
> ___
> 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 )

--
Lloyd Kvam
Venix Corp.
1 Court Street, Suite 378
Lebanon, NH 03766-1358

voice: 603-443-6155
fax: 801-459-9582



___
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 in a call/in/with

2000-12-26 Thread Jens Vagelpohl

try...




jens


on 12/26/00 17:32, Lloyd Kvam at [EMAIL PROTECTED] wrote:

> This is also a problem for me.
> 
>> From using ZNOLK I have a DTML document that uses dtml-in to execute a query.
> The query is get_names_for_id and is:
>   select name from name_table where id = 
> 
> I can now call the form using:
>   http://localhost:8080/form?chosen_id=123
> 
> My dtml form would be simpler if there was a way to code:
>   
> 
> I was unable to make that work.
> 
> Olaf Zanger wrote:
> 
>> hi there,
>> 
>> with the znolk product i get data by "select * ..." out of my database.
>> some fields
>> are id's and i would like to get data out of an other table basing on
>> this id.
>> 
>> how can i pass the id through a ?
>> 
>> olaf
>> 


___
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 in a call/in/with

2000-12-26 Thread Lloyd Kvam

This is also a problem for me.

>From using ZNOLK I have a DTML document that uses dtml-in to execute a query.
The query is get_names_for_id and is:
select name from name_table where id = 

I can now call the form using:
http://localhost:8080/form?chosen_id=123

My dtml form would be simpler if there was a way to code:


I was unable to make that work.

Olaf Zanger wrote:

> hi there,
>
> with the znolk product i get data by "select * ..." out of my database.
> some fields
> are id's and i would like to get data out of an other table basing on
> this id.
>
> how can i pass the id through a ?
>
> olaf
>
> --
> soli-con Engineering Zanger
> Dipl.-Ing. (FH) Olaf Zanger Nusch
> Lorrainestrasse 23
> 3013 Bern / Switzerland
> Fon: +41-31-332 9782
> Mob: +41-76-572 9782
> mailto:[EMAIL PROTECTED]
> mailto:[EMAIL PROTECTED]
> http://www.soli-con.com

--
Lloyd Kvam
Venix Corp.
1 Court Street, Suite 378
Lebanon, NH 03766-1358

voice: 603-443-6155
fax: 801-459-9582



___
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] mynetscape-like product

2000-12-26 Thread albert boulanger


Dose anyone have a product or modification to the user's page in the
PTK to behave like the user customizable layout you get at sites like
mynetscape.com? This would work with RSS and OCS syndication sources
(as well as others).

Regards,
Albert Boulanger
[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 )




Re: [Zope] A Picture of Zope, The Fish

2000-12-26 Thread Takashi Veikko Linzbichler

"LEE, Kwan Soo" wrote:
> 
> * I only subscribes to zope-dev. but the recent messages of zope list seems makes me 
>to write to zope list*
> 
> Here is a picture of Zope, the fish and some facts:
> 
>http://www.fishbase.org/Summary/SpeciesSummary.cfm?genusname=Abramis&speciesname=ballerus
> 

Well, I've got another picture of a zope, maybe I'll try in the next few
days ...

ta

--
smartferret it-consulting Dipl.-Ing. Linzbichler KEG

Dipl.-Ing. Takashi Veikko Linzbichler
Tannhofweg 28/3
A-8044 Graz, Austria

Tel.:   0316 / 39 89 40 -0
Fax:0316 / 39 89 40 -20
Mobil:  0676 / 31 26 286
eMail:  [EMAIL PROTECTED]

WWW:http://www.smartferret.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] CZAN Anyone?

2000-12-26 Thread Jonathan \(Listserv Account\)

> What does cpan give you that zope.org doesnt, I can go into
> zope.org, look at modules documentation, download them and
> so on. Same with CPAN. Ok so maybe it doesnt have simple and
> interfaces to it such as listings by author, module and so
> on...
>
> The next step would be automated installation, which would be
> nice. A simple interface to select a module, install it and
> restart your Zope. A much extended Control Panel...

Zope.org does not know my particular installation, I cannot have it
notify me when a new version is out. It doesn't automatically 'follow'
dependencies etc. etc.

Lots of reasons, mainly motivated by laziness^H^H^H^H^H^H^H^H me not
having the time to keep up with everything, I want to be informed
automatically :)

Cya
Jonathan


___
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] A Picture of Zope, The Fish

2000-12-26 Thread Richard Blumberg
Title: Re: [Zope] A Picture of Zope, The
Fish


"Importance:    fisheries: minor commercial
 Threatened:    Not
in IUCN Red List  () , (Ref. 36508)
 Dangerous: harmless"

Surely that should be
"mostly harmless".

Richard


At 12:31 AM +0900 12/27/00, LEE, Kwan Soo wrote:
?* I only subscribes to zope-dev. but the
recent messages of zope list seems makes me to write to zope list*

Here is a picture of Zope, the fish and some facts:
http://www.fishbase.org/Summary/SpeciesSummary.cfm?genusname=Abramis&speciesname=ballerus

Its zoological name is Abramis ballerus and named by Linnaeus
himself.

Any volunteer to make a nice emblem for zope from this picture?

LEE Kwan Soo.
http://phps.snu.ac.kr:8080/ZOPE
http://users.python.or.kr/PyKUG/

___
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] A Picture of Zope, The Fish

2000-12-26 Thread LEE, Kwan Soo

* I only subscribes to zope-dev. but the recent messages of zope list seems makes me 
to write to zope list*

Here is a picture of Zope, the fish and some facts:
http://www.fishbase.org/Summary/SpeciesSummary.cfm?genusname=Abramis&speciesname=ballerus

Its zoological name is Abramis ballerus and named by Linnaeus himself.

Any volunteer to make a nice emblem for zope from this picture?

LEE Kwan Soo.
http://phps.snu.ac.kr:8080/ZOPE
http://users.python.or.kr/PyKUG/

___
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] The meaning of Zope

2000-12-26 Thread Takashi Veikko Linzbichler

Bill Welch wrote:
> 
> Here's what some Americans think it means. From ARTFL Project, Webster's
> 1913 Unabridged at
> http://humanities.uchicago.edu/forms_unrest/webster.form.html
> 
> Zope (?), n. [G.] (Zoöl.) A European fresh-water bream (Abramis ballerus).

Which is correct. It's a fish living mostly in the danube regions and
eastward of that. BTW, a lot of bones, not very delicate flesh :-(

But I'm really surprised at the fact that anyone outside middle-/eastern
europe ever noticed the existence of this creature :-)

ta

--
smartferret it-consulting Dipl.-Ing. Linzbichler KEG

Dipl.-Ing. Takashi Veikko Linzbichler
Tannhofweg 28/3
A-8044 Graz, Austria

Tel.:   0316 / 39 89 40 -0
Fax:0316 / 39 89 40 -20
Mobil:  0676 / 31 26 286
eMail:  [EMAIL PROTECTED]

WWW:http://www.smartferret.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] The meaning of Zope

2000-12-26 Thread Bill Welch

Here's what some Americans think it means. From ARTFL Project, Webster's
1913 Unabridged at
http://humanities.uchicago.edu/forms_unrest/webster.form.html

Zope (?), n. [G.] (Zoöl.) A European fresh-water bream (Abramis ballerus).

for completeness:

Bream (?), n. [OE. breme, brem, F. br\'88me, OF. bresme, of German origin;
cf. OHG. brahsema, brahsina, OLG. bressemo, G. brassen. Cf. Brasse.]
1. (Zoöl) A European fresh-water cyprinoid fish of the genus Abramis,
little valued as food. Several species are known.

Cyp"ri*noid (s?p"r?-noid), a. [Gr. a kind of carp + -oid.] (Zoöl.) Like
the carp (Cyprinus). -- n.  One of the Cyprinidae, or Carp family, as the
goldfish, barbel, etc.

On Tue, 26 Dec 2000, Pierre-Julien Grizel wrote:

> Paul, can you give us the actual meaning of "Zope" in Britain ?


___
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] Zope under Irix 5.3 ?

2000-12-26 Thread Dimitris Andrakakis

Merry Xmas everybody !
I'm trying to get zope to work on an SGI, Irix 5.3.
Python isn't available, so I have to compile it my own
being a normal user, not root, with quota and all...
anyway.

I compile Python (1.5.2), in my home dir with threads and all
(as I've read in tyhe how-to's). Then I untar zope (2.2.4)
run the -wo_pcgi (I'll be working with ZServer only, so
it should be fine), set the superuser password and make
the ./start script as follows:

reldir=`dirname $0`
PYTHONHOME=`cd $reldir; pwd`
export PYTHONHOME
exec /path-to-my-python-installation/bin/python \
 $PYTHONHOME/z2.py \
 -w 8000 "$@"

Then go to my zope dir and ./start... but it doesn't work :-(
That's what I get:

Traceback (innermost last):
  File "/my-home-dir/zope/z2.py", line 554, in ?
exec "import "+MODULE in {}
  File "", line 1, in ?
  File "/my-home-dir/zope/lib/python/Zope/__init__.py", line 94, in ?
import ZODB, ZODB.ZApplication, imp
  File "/my-home-dir/zope/lib/python/ZODB/__init__.py", line 85, in ?
import sys, ExtensionClass, TimeStamp, cPersistence, Persistence
ImportError: No module named ExtensionClass

Is it something I've missed when I compiled python ? Or a specific
irix issue ? or something else ?

Have the best of times,
Dimitris


___
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] The meaning of Zope

2000-12-26 Thread Pierre-Julien Grizel


>From Paul, Zope is a britain word, taken in an English/Britain
dictionnary...


Paul, can you give us the actual meaning of "Zope" in Britain ?



Thanks,


P.-J.




Bob Sidebotham wrote:
> 
> >From http://www.kabalarians.com/male/zope.htm
> 
> Zope
> 
> Your first name of Zope has given you an expressive, diplomatic, and
> refined nature. Although you have a good appreciation of material
> values, business ability, and skill in organizing and managing others,
> your success is restricted by a lack of self-confidence and initiative.
> You have very expensive tastes, and your desires could well exceed your
> initiative in providing for them through your own efforts. Personal
> appearance is important to you. You are always well-groomed yourself,
> and you judge others by your own standard. You do not like to rough it
> or use much physical energy. Through your diplomatic ways you are able
> to call on the assistance of others to avoid such matters. You have
> good business judgment but lack the confidence to carry out your own
> ideas unless assisted by an associate. From a desire to eat too many
> rich foods, your health could suffer through kidney and generative
> troubles or any problems affecting the fluid functions of the body.
> 
> Bob Sidebotham
> [EMAIL PROTECTED]
> 
> __
> Do You Yahoo!?
> Yahoo! Shopping - Thousands of Stores. Millions of Products.
> http://shopping.yahoo.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 )

-- 
If the only tool you have is a hammer, 
you tend to see every problem as a nail.
Si le seul outil dont vous disposez est un marteau, 
vous avez tendance à voir chaque problème comme un clou. 
   --Abraham Maslow

___
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 )