From a049b73f0e46ce698f8a647213fe0d6875bade35 Mon Sep 17 00:00:00 2001 From: helmutm Date: Mon, 3 Sep 2007 17:23:17 +0000 Subject: [PATCH] refactoring of browser/form.py - prepare for using cybertools.composer.schema instead of zope.formlib git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@1995 fd906abe-77d9-0310-91a1-e0d9ade77398 --- README.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.txt b/README.txt index bce59d5..69ccea1 100755 --- a/README.txt +++ b/README.txt @@ -709,12 +709,12 @@ that in turns calls formlibs ``setUpWidgets()``. The new technique uses the ``fields`` and ``data`` attributes... >>> for f in view.fields: - ... print f.name, f.fieldType, f.required, f.voc - title text True - description textarea False - data textarea False - contentType dropdown True - linkUrl text False + ... print f.name, f.fieldType, f.required, f.vocabulary + title text True None + description textarea False None + data textarea False None + contentType dropdown True <...SimpleVocabulary object...> + linkUrl text False None The object is changed via a FormController adapter created for a NodeView.