# HG changeset patch # User Sylvain Thénault # Date 1261419907 -3600 # Node ID 0e97cf2cf55b80cc1fcadc562ebbd1e0600b0dc2 # Parent f7830377b21588613cc2a04b2d1e29dde7dacf79 missing imports diff -r f7830377b215 -r 0e97cf2cf55b web/formfields.py --- a/web/formfields.py Mon Dec 21 19:20:45 2009 +0100 +++ b/web/formfields.py Mon Dec 21 19:25:07 2009 +0100 @@ -11,12 +11,14 @@ from datetime import datetime from logilab.mtconverter import xml_escape +from logilab.common.decorators import cached + from yams.constraints import (SizeConstraint, StaticVocabularyConstraint, FormatConstraint) from cubicweb.utils import ustrftime from cubicweb import tags, uilib -from cubicweb.web import INTERNAL_FIELD_VALUE +from cubicweb.web import INTERNAL_FIELD_VALUE, eid_param from cubicweb.web.formwidgets import ( HiddenInput, TextInput, FileInput, PasswordInput, TextArea, FCKEditor, Radio, Select, DateTimePicker)