Changeset 1181 in products for quintagroup.dropdownmenu/trunk


Ignore:
Timestamp:
Jul 28, 2009 1:29:02 PM (15 years ago)
Author:
piv
Message:

make configlet work, add tests for controlpanel, some minor fixes to interfaces and dependencies

Location:
quintagroup.dropdownmenu/trunk
Files:
5 added
1 deleted
4 edited

Legend:

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

    r1180 r1181  
    11<configure 
    22    xmlns="http://namespaces.zope.org/zope" 
    3     xmlns:five="http://namespaces.zope.org/five" 
     3    xmlns:genericsetup="http://namespaces.zope.org/genericsetup" 
    44    i18n_domain="quintagroup.dropdownmenu"> 
    55 
     
    88 
    99  <!-- Include internal packages --> 
    10   <include package="browser" /> 
     10  <include package=".browser" /> 
    1111 
    1212  <!-- Register the installation GenericSetup extension profile --> 
  • quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/interfaces.py

    r1180 r1181  
     1# -*- coding: utf-8 -*- 
    12from zope import schema 
    23from zope.interface import Interface 
     
    3637                      u"those autogenerated from content structure. Check this " 
    3738                      u"option to revert the behaviour."), 
    38         default=True) 
     39        default=False) 
    3940 
    4041    content_tabs_level = schema.Int( 
     
    6263        description=_(u"Root portal actions tool's category name to extract " 
    6364                      u"tabs from."), 
    64         default=u"portal_tab") 
     65        default=u"portal_tabs") 
    6566 
    6667    nested_category_prefix = schema.TextLine( 
  • quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/menu.txt

    r1180 r1181  
    55structure. 
    66 
    7 Settings 
    8 -------- 
    97 
    10 This package allows you to adjust a lot of different menu related things via 
    11 /@@dropdownmenu-settings control panel. More on this in 
    12 `controlpanel.txt` doc test. 
     8Portal Actions tabs 
     9=================== 
    1310 
    1411 
    15 Portal Actions 
    16 ============== 
     12--- 
    1713 
    1814 
    1915 
    20  
    21 Content Structure 
    22 ================= 
     16Content Structure tabs 
     17====================== 
    2318 
    2419 
    2520 
     21Mixed tabs 
     22========== 
  • quintagroup.dropdownmenu/trunk/setup.py

    r1179 r1181  
    3030          'Plone', 
    3131          'plone.app.registry', 
     32          'plone.app.z3cform==0.4.6', 
     33          'plone.z3cform==0.5.5', 
     34          'z3c.form==1.9.0', 
     35          'collective.testcaselayer', 
    3236      ], 
    3337      entry_points=""" 
Note: See TracChangeset for help on using the changeset viewer.