Changeset 1182 in products for quintagroup.dropdownmenu/trunk


Ignore:
Timestamp:
Jul 28, 2009 2:58:16 PM (15 years ago)
Author:
piv
Message:

add registration for csshover configlet, moved here csshover.htc as browser view with content-type x-component, started with customization of global sections viewlet, move css from qPloneDropDownMenu product, added TODO.txt

Location:
quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu
Files:
9 added
2 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/browser/configure.zcml

    r1180 r1182  
    33    xmlns:browser="http://namespaces.zope.org/browser" 
    44    i18n_domain="quintagroup.dropdownmenu"> 
     5 
     6 
     7  <include package="plone.browserlayer" /> 
     8 
     9  <browser:viewlet 
     10      name="plone.global_sections" 
     11      manager="plone.app.layout.viewlets.interfaces.IPortalHeader" 
     12      class=".viewlets.GlobalSectionsViewlet" 
     13      layer="..interfaces.IDropDownMenuLayer" 
     14      permission="zope2.View" 
     15      /> 
    516 
    617  <browser:page 
     
    1122      /> 
    1223 
     24  <!-- Returns javascript which makes IE<7 understand hover for all html elements --> 
     25  <browser:view 
     26      name="csshover.htc" 
     27      for="*" 
     28      class=".css.CSSHoverView" 
     29      permission="zope2.View" 
     30      /> 
     31 
     32  <!-- Register resources --> 
     33 
     34 
    1335</configure> 
  • quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/profiles/default/controlpanel.xml

    r1181 r1182  
    11<?xml version="1.0"?> 
    2 <object 
    3     name="portal_controlpanel" 
    4     xmlns:i18n="http://xml.zope.org/namespaces/i18n" 
    5     i18n:domain="quintagroup.dropdownmenu" 
    6     purge="False"> 
     2<object name="portal_controlpanel" xmlns:i18n="http://xml.zope.org/namespaces/i18n" 
     3    i18n:domain="quintagroup.dropdownmenu" purge="False"> 
    74 
    8     <configlet 
    9         title="DropDown Menu" 
    10         action_id="dropdownmenu" 
    11         appId="quintagroup.dropdownmenu" 
    12         category="Products" 
    13         condition_expr="" 
    14         url_expr="string:${portal_url}/@@dropdownmenu-settings" 
    15         visible="True" 
    16        i18n:attributes="title"> 
    17             <permission>Manage portal</permission> 
    18     </configlet> 
     5 <configlet title="DropDown Menu" action_id="dropdownmenu" appId="quintagroup.dropdownmenu" 
     6     category="Products" condition_expr="" url_expr="string:${portal_url}/@@dropdownmenu-settings" 
     7     visible="True" i18n:attributes="title"> 
     8   <permission>Manage portal</permission> 
     9 </configlet> 
     10 
     11 <configlet title="CSS Hover" action_id="csshover" appId="quintagroup.dropdownmenu" 
     12     category="Products" condition_expr="" url_expr="string:${portal_url}/@@dropdownmenu-csshover" 
     13     visible="True" i18n:attributes="title"> 
     14   <permission>Manage portal</permission> 
     15 </configlet> 
    1916 
    2017</object> 
Note: See TracChangeset for help on using the changeset viewer.