[Zope] getProperty()

Jose Soares jose@sferacarta.com
Wed, 25 Oct 2000 11:10:26 +0200


Hi all,

This is a newbie question.

I'm trying to get the 'title' property of a SQLConnectionIDs.
I can do this work using python but in zope I can't do it.
I want to create an html SELECT object to display a list of
all SQL Connections and I want to display the id and the title,
like this:

id             title
---------       ---------------------------------------------
gadfly       Gadfly_database_connection
mysql       MySQL_database_connection
postgres   PyGres_database_connection
dbmaker   DBMaker_database_connection


I tryed the following:

<SELECT name="myList">
  <dtml-in SQLConnectionIDs>
  <OPTION value="<dtml-var sequence-item html_quote>">
  <dtml-var sequence-key></option>
  </dtml-in>
</SELECT>

but sequence-key and sequence-item are equals.

Thank for any help

Jose'