Changeset 1549

Show
Ignore:
Timestamp:
05/02/08 16:01:55 (7 months ago)
Author:
JensDiemer
Message:

rename "preferences" to "preference_editor"

Location:
trunk/pylucid
Files:
1 modified
1 copied
3 moved

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/media/PyLucid/internal_page/admin_menu/sub_menu.html

    r1544 r1549  
    5555    </li> 
    5656    <li> 
    57         <a href="{{ commandURLprefix }}/preferences/select/">{% trans 'Preferences editor' %}</a> 
     57        <a href="{{ commandURLprefix }}/preference_editor/select/">{% trans 'Preferences editor' %}</a> 
    5858    </li> 
    59     <!-- 
    60     <li> 
    61         <a href="{{ commandURLprefix }}/plugin_admin/plugin_setup/">{% trans 'Plugin setup' %}</a> 
    62     </li> 
    63     --> 
    6459    <li> 
    6560        <a href="{{ commandURLprefix }}/filemanager/filelist/">{% trans 'Filemanager' %}</a> 
  • trunk/pylucid/PyLucid/plugins_internal/preference_editor/preference_editor.py

    r1548 r1549  
    3131 
    3232 
    33 class preferences(PyLucidBasePlugin): 
     33class preference_editor(PyLucidBasePlugin): 
    3434 
    3535    def _vebose_plugin_name(self, pref): 
     
    4040        Display the sub menu 
    4141        """ 
    42         self.context["PAGE"].title = _("preferences editor") 
     42#        self.context["PAGE"].title = _("Preferences editor") 
    4343 
    4444        items = [] 
  • trunk/pylucid/PyLucid/plugins_internal/preference_editor/preference_editor_cfg.py

    r1544 r1549  
    77__author__      = "Jens Diemer" 
    88__url__         = "http://www.PyLucid.org" 
    9 __description__ = "low level preference editor" 
     9__description__ = "Preference editor" 
    1010__long_description__ = """ 
    11 A low level editor for the preferences. 
     11A editor for the preferences. 
    1212""" 
    1313 
     
    2525    "edit": global_rights, 
    2626} 
    27  
    28 preferences = ( 
    29     { 
    30         "name": "internal name", 
    31         "description": "The name for the internal preference section", 
    32         "value": "[system]", 
    33     }, 
    34 )