Changeset 822

Show
Ignore:
Timestamp:
06/08/07 14:03:32 (2 years ago)
Author:
sgillies
Message:

Extend the Rotterdam skin

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Bibliomane/trunk/bibliomane/browser/corp.pt

    r821 r822  
    11<html> 
    22  <head> 
    3     <!--link  
     3    <link  
    44      rel="stylesheet" 
    55      type="text/css"  
    66      tal:attributes="href context/++resource++bz/style.css" 
    7       /--
     7      /
    88  </head> 
    99 
  • Bibliomane/trunk/bibliomane/browser/expression.pt

    r821 r822  
    11<html> 
    22  <head> 
    3     <!--link  
     3    <link  
    44      rel="stylesheet" 
    55      type="text/css"  
    66      tal:attributes="href context/++resource++bz/style.css" 
    7       /--
     7      /
    88  </head> 
    99 
  • Bibliomane/trunk/bibliomane/browser/item.pt

    r821 r822  
    11<html> 
    22  <head> 
    3     <!--link  
     3    <link  
    44      rel="stylesheet" 
    55      type="text/css"  
    66      tal:attributes="href context/++resource++bz/style.css" 
    7       /--
     7      /
    88  </head> 
    99 
  • Bibliomane/trunk/bibliomane/browser/manifestation.pt

    r821 r822  
    11<html> 
    22  <head> 
    3     <!--link  
     3    <link  
    44      rel="stylesheet" 
    55      type="text/css"  
    66      tal:attributes="href context/++resource++bz/style.css" 
    7       /--
     7      /
    88  </head> 
    99 
  • Bibliomane/trunk/bibliomane/browser/person.pt

    r821 r822  
    11<html> 
    22  <head> 
    3     <!--link  
     3    <link  
    44      rel="stylesheet" 
    55      type="text/css"  
    66      tal:attributes="href context/++resource++bz/style.css" 
    7       /--
     7      /
    88  </head> 
    99 
     
    2525    </div> 
    2626   
    27     <!-- Relationships
     27    <!-- Relationships --
    2828  
    2929    <h2>Relationships</h2> 
    3030 
    31     <h3>Is a Realization of</h3> 
     31    <h3>Creations</h3> 
    3232   
    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 
    3738      </a> 
    3839    </div> 
    3940   
    40     <h3>Is Embodied in</h3> 
    41    
    42     <div class="widget" tal:repeat="item context/values"> 
    43       <a  
    44         tal:attributes="href item/@@absolute_url" 
    45         tal:content="item/title|string:Untitled"> 
    46         ITEM 
    47       </a> 
    48     </div> 
    49      
    50     --> 
    51  
    5241  </body> 
    5342 
  • Bibliomane/trunk/bibliomane/browser/work.pt

    r821 r822  
    11<html> 
    22  <head> 
    3     <!--link  
     3    <link  
    44      rel="stylesheet" 
    55      type="text/css"  
    66      tal:attributes="href context/++resource++bz/style.css" 
    7       /--
     7      /
    88  </head> 
    99 
  • Bibliomane/trunk/bibliomane/relationship.py

    r821 r822  
    1111    return getUtility( 
    1212        IFrbrRelationshipContainer, 
    13         context=context, 
     13        #context=context, 
    1414        ) 
    1515 
  • Bibliomane/trunk/bibliomane/skin/configure.zcml

    r820 r822  
    55 
    66  <interface 
    7     interface=".interfaces.IBibliomaneSkin" 
     7    interface=".interfaces.BibliomaneSkin" 
    88    type="zope.publisher.interfaces.browser.IBrowserSkinType" 
    99    name="Bibliomane" 
     
    1313    name="bz" 
    1414    directory="bz" 
    15     layer=".interfaces.IBibliomaneSkin" 
     15    layer=".interfaces.BibliomaneSkin" 
    1616    /> 
    1717 
  • Bibliomane/trunk/bibliomane/skin/interfaces.py

    r820 r822  
    1 from zope.publisher.interfaces.browser import IDefaultBrowserLayer 
     1from zope.app.rotterdam import Rotterdam 
    22 
    3 class IBibliomaneSkin(IDefaultBrowserLayer): 
     3class BibliomaneSkin(Rotterdam): 
    44    """Bibliomane skin. 
    55    """