Changeset 822
- Timestamp:
- 06/08/07 14:03:32 (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/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/work.pt (modified) (1 diff)
- Bibliomane/trunk/bibliomane/relationship.py (modified) (1 diff)
- Bibliomane/trunk/bibliomane/skin/configure.zcml (modified) (2 diffs)
- Bibliomane/trunk/bibliomane/skin/interfaces.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Bibliomane/trunk/bibliomane/browser/corp.pt
r821 r822 1 1 <html> 2 2 <head> 3 < !--link3 <link 4 4 rel="stylesheet" 5 5 type="text/css" 6 6 tal:attributes="href context/++resource++bz/style.css" 7 / -->7 /> 8 8 </head> 9 9 Bibliomane/trunk/bibliomane/browser/expression.pt
r821 r822 1 1 <html> 2 2 <head> 3 < !--link3 <link 4 4 rel="stylesheet" 5 5 type="text/css" 6 6 tal:attributes="href context/++resource++bz/style.css" 7 / -->7 /> 8 8 </head> 9 9 Bibliomane/trunk/bibliomane/browser/item.pt
r821 r822 1 1 <html> 2 2 <head> 3 < !--link3 <link 4 4 rel="stylesheet" 5 5 type="text/css" 6 6 tal:attributes="href context/++resource++bz/style.css" 7 / -->7 /> 8 8 </head> 9 9 Bibliomane/trunk/bibliomane/browser/manifestation.pt
r821 r822 1 1 <html> 2 2 <head> 3 < !--link3 <link 4 4 rel="stylesheet" 5 5 type="text/css" 6 6 tal:attributes="href context/++resource++bz/style.css" 7 / -->7 /> 8 8 </head> 9 9 Bibliomane/trunk/bibliomane/browser/person.pt
r821 r822 1 1 <html> 2 2 <head> 3 < !--link3 <link 4 4 rel="stylesheet" 5 5 type="text/css" 6 6 tal:attributes="href context/++resource++bz/style.css" 7 / -->7 /> 8 8 </head> 9 9 … … 25 25 </div> 26 26 27 <!-- Relationships >27 <!-- Relationships --> 28 28 29 29 <h2>Relationships</h2> 30 30 31 <h3> Is a Realization of</h3>31 <h3>Creations</h3> 32 32 33 <div class="widget"> 34 <a href=".." 35 tal:content="context/__parent__/title"> 36 ITEM 33 <div class="widget" tal:repeat="work context/creations"> 34 <a 35 tal:attributes="href work/@@absolute_url" 36 tal:content="work/title"> 37 WORK 37 38 </a> 38 39 </div> 39 40 40 <h3>Is Embodied in</h3>41 42 <div class="widget" tal:repeat="item context/values">43 <a44 tal:attributes="href item/@@absolute_url"45 tal:content="item/title|string:Untitled">46 ITEM47 </a>48 </div>49 50 -->51 52 41 </body> 53 42 Bibliomane/trunk/bibliomane/browser/work.pt
r821 r822 1 1 <html> 2 2 <head> 3 < !--link3 <link 4 4 rel="stylesheet" 5 5 type="text/css" 6 6 tal:attributes="href context/++resource++bz/style.css" 7 / -->7 /> 8 8 </head> 9 9 Bibliomane/trunk/bibliomane/relationship.py
r821 r822 11 11 return getUtility( 12 12 IFrbrRelationshipContainer, 13 context=context,13 #context=context, 14 14 ) 15 15 Bibliomane/trunk/bibliomane/skin/configure.zcml
r820 r822 5 5 6 6 <interface 7 interface=".interfaces. IBibliomaneSkin"7 interface=".interfaces.BibliomaneSkin" 8 8 type="zope.publisher.interfaces.browser.IBrowserSkinType" 9 9 name="Bibliomane" … … 13 13 name="bz" 14 14 directory="bz" 15 layer=".interfaces. IBibliomaneSkin"15 layer=".interfaces.BibliomaneSkin" 16 16 /> 17 17 Bibliomane/trunk/bibliomane/skin/interfaces.py
r820 r822 1 from zope. publisher.interfaces.browser import IDefaultBrowserLayer1 from zope.app.rotterdam import Rotterdam 2 2 3 class IBibliomaneSkin(IDefaultBrowserLayer):3 class BibliomaneSkin(Rotterdam): 4 4 """Bibliomane skin. 5 5 """
