Changeset 832
- Timestamp:
- 06/14/07 10:53:05 (2 years ago)
- Files:
-
- Bibliomane/trunk/bibliomane/browser/corp.pt (modified) (1 diff)
- Bibliomane/trunk/bibliomane/browser/expression.pt (modified) (1 diff)
- Bibliomane/trunk/bibliomane/browser/form.py (added)
- Bibliomane/trunk/bibliomane/browser/item.pt (modified) (1 diff)
- Bibliomane/trunk/bibliomane/browser/manifestation.pt (modified) (1 diff)
- Bibliomane/trunk/bibliomane/browser/person.pt (modified) (2 diffs)
- Bibliomane/trunk/bibliomane/browser/principals.py (modified) (2 diffs)
- Bibliomane/trunk/bibliomane/browser/work.pt (modified) (1 diff)
- Bibliomane/trunk/bibliomane/browser/works.py (modified) (1 diff)
- Bibliomane/trunk/bibliomane/interfaces.py (modified) (1 diff)
- Bibliomane/trunk/bibliomane/principals.py (modified) (1 diff)
- Bibliomane/trunk/bibliomane/works.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Bibliomane/trunk/bibliomane/browser/corp.pt
r822 r832 1 <html> 1 <html 2 xmlns="http://www.w3.org/1999/xhtml" 3 xmlns:tal="http://xml.zope.org/namespaces/tal" 4 xmlns:metal="http://xml.zope.org/namespaces/metal" 5 xmlns:i18n="http://xml.zope.org/namespaces/i18n" 6 i18n:domain="" 7 > 2 8 <head> 3 9 <link Bibliomane/trunk/bibliomane/browser/expression.pt
r830 r832 1 <html> 1 <html 2 xmlns="http://www.w3.org/1999/xhtml" 3 xmlns:tal="http://xml.zope.org/namespaces/tal" 4 xmlns:metal="http://xml.zope.org/namespaces/metal" 5 xmlns:i18n="http://xml.zope.org/namespaces/i18n" 6 i18n:domain="" 7 > 2 8 <head> 3 9 <link Bibliomane/trunk/bibliomane/browser/item.pt
r830 r832 1 <html> 1 <html 2 xmlns="http://www.w3.org/1999/xhtml" 3 xmlns:tal="http://xml.zope.org/namespaces/tal" 4 xmlns:metal="http://xml.zope.org/namespaces/metal" 5 xmlns:i18n="http://xml.zope.org/namespaces/i18n" 6 i18n:domain="" 7 > 2 8 <head> 3 9 <link Bibliomane/trunk/bibliomane/browser/manifestation.pt
r830 r832 1 <html> 1 <html 2 xmlns="http://www.w3.org/1999/xhtml" 3 xmlns:tal="http://xml.zope.org/namespaces/tal" 4 xmlns:metal="http://xml.zope.org/namespaces/metal" 5 xmlns:i18n="http://xml.zope.org/namespaces/i18n" 6 i18n:domain="" 7 > 2 8 <head> 3 9 <link Bibliomane/trunk/bibliomane/browser/person.pt
r829 r832 1 <html> 1 <html 2 xmlns="http://www.w3.org/1999/xhtml" 3 xmlns:tal="http://xml.zope.org/namespaces/tal" 4 xmlns:metal="http://xml.zope.org/namespaces/metal" 5 xmlns:i18n="http://xml.zope.org/namespaces/i18n" 6 i18n:domain="" 7 > 2 8 <head> 3 9 <link … … 19 25 <!-- FRBR Attributes --> 20 26 21 <div class="widget" tal:repeat="widget view/frbr_widgets"> 27 <div class="widget" 28 tal:repeat="widget view/frbr_widgets" 29 > 22 30 <label><span tal:content="widget/label">LABEL</span>:</label> 23 31 <br/> Bibliomane/trunk/bibliomane/browser/principals.py
r829 r832 3 3 from zope.app.pagetemplate import ViewPageTemplateFile 4 4 from zope.app.form.browser import DateWidget 5 from zope.formlib.form import AddForm, DisplayForm,EditForm, Fields5 from zope.formlib.form import AddForm, EditForm, Fields 6 6 7 7 from bibliomane.interfaces import IPerson, ICorporateBody … … 9 9 from bibliomane.principals import Person, CorporateBody 10 10 from bibliomane.relationship import find_sources 11 from bibliomane.browser.form import DisplayForm 11 12 12 13 # Person Bibliomane/trunk/bibliomane/browser/work.pt
r830 r832 1 <html> 1 <html 2 xmlns="http://www.w3.org/1999/xhtml" 3 xmlns:tal="http://xml.zope.org/namespaces/tal" 4 xmlns:metal="http://xml.zope.org/namespaces/metal" 5 xmlns:i18n="http://xml.zope.org/namespaces/i18n" 6 i18n:domain="" 7 > 2 8 <head> 3 9 <link Bibliomane/trunk/bibliomane/browser/works.py
r831 r832 3 3 from zope.app.pagetemplate import ViewPageTemplateFile 4 4 from zope.app.form.browser import DateWidget 5 from zope.formlib.form import AddForm, DisplayForm,EditForm, Fields5 from zope.formlib.form import AddForm, EditForm, Fields 6 6 7 7 from bibliomane.interfaces import IWork, IExpression, IManifestation, IItem 8 8 from bibliomane.works import Work, Expression, Manifestation, Item 9 9 from bibliomane.browser.form import DisplayForm 10 10 11 11 # Work Bibliomane/trunk/bibliomane/interfaces.py
r821 r832 224 224 225 225 link = URI( 226 title=u" URI",226 title=u"Link", 227 227 description=u"A link to more authoritative information", 228 228 required=False, Bibliomane/trunk/bibliomane/principals.py
r821 r832 31 31 name = u"" 32 32 name_language = u"" 33 link = u""33 link = None 34 34 35 35 def __init__(self, name=u""): Bibliomane/trunk/bibliomane/works.py
r821 r832 40 40 title_language = u"" 41 41 form = u"" 42 date = u""42 date = "" 43 43 subject_tags = [] 44 44 responsibility_marker = ICreatedBy
