[Zope3-checkins] SVN: Zope3/branches/3.3/ - fixed issue 633: made logo a slot in boston skin

Christian Theune cvs-admin at zope.org
Sun Jun 18 21:29:25 EDT 2006


Log message for revision 68739:
   - fixed issue 633: made logo a slot in boston skin
  

Changed:
  U   Zope3/branches/3.3/doc/CHANGES.txt
  U   Zope3/branches/3.3/src/zope/app/boston/browser/template.pt

-=-
Modified: Zope3/branches/3.3/doc/CHANGES.txt
===================================================================
--- Zope3/branches/3.3/doc/CHANGES.txt	2006-06-18 22:54:54 UTC (rev 68738)
+++ Zope3/branches/3.3/doc/CHANGES.txt	2006-06-19 01:29:21 UTC (rev 68739)
@@ -10,6 +10,8 @@
 
     Bugfixes
 
+      - Fixed issue 633: Boston skin has logo slot now
+
       - Fixed issue 575: Inconsistent raising of TraversalError
 
       - Fixed issue 592: Made handling of '(no value)' entries for selection

Modified: Zope3/branches/3.3/src/zope/app/boston/browser/template.pt
===================================================================
--- Zope3/branches/3.3/src/zope/app/boston/browser/template.pt	2006-06-18 22:54:54 UTC (rev 68738)
+++ Zope3/branches/3.3/src/zope/app/boston/browser/template.pt	2006-06-19 01:29:21 UTC (rev 68739)
@@ -50,8 +50,10 @@
     </tr>
     <tr class="head">
       <td class="logo">
-        <img width="107" height="38"
-             tal:attributes="src context/++resource++logo.gif" />
+        <metal:slot define-slot="logo">
+          <img width="107" height="38"
+            tal:attributes="src context/++resource++logo.gif" />
+        </metal:slot>
       </td>
       <td>
         <div id="breadcrumbs" metal:define-macro="breadcrumbs">



More information about the Zope3-Checkins mailing list