Show
Ignore:
Timestamp:
05/02/08 16:47:16 (23 months ago)
Author:
JensDiemer
Message:

update preferences:

  • move the preferences form from the plugin module into the plugin config modul
  • a plugin must not use try...except to get the preferences
  • update all modules around the plugin install/deinstall etc.
  • detect_page used the system_settings "index_page" value (setup a other default index page works!)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/media/PyLucid/internal_page/plugin_admin/administation_menu.html

    r1532 r1551  
    5050                <a class="author" href="{{ plugin.url }}" title="{{ plugin.author }}"></a> 
    5151            </td> 
    52             <td class="version">{{ plugin.version }}</td> 
     52            <td class="version">{{ plugin.get_version_string }}</td> 
    5353            <td> 
    5454                {% if plugin.builtin %} 
     
    9191                <a class="author" href="{{ plugin.url }}" title="{{ plugin.author }}">{{ plugin.author }}</a> 
    9292            </td> 
    93             <td class="version">{{ plugin.version }}</td> 
     93            <td class="version">{{ plugin.get_version_string }}</td> 
    9494            <td> 
    9595                {% if not plugin.can_deinstall %} 
     
    116116<h4>Info:</h4> 
    117117<ul> 
    118   <li><strong>install</strong> - register a plugin/Plugin in the Database</li> 
    119   <li><strong>deinstall</strong> - All tables, stylesheets and internal pages where delete in the DB.</li> 
    120   <li><strong>activate</strong> - enable the plugin/Plugin for the CMS</li> 
    121   <li><strong>deactivate</strong> - disable the plugin/Plugin</li> 
     118  <li><strong>install</strong> - register a plugin/Plugin in the database</li> 
     119  <li><strong>deinstall</strong> - Complete remove the plugin from the database (incl. preferences)</li> 
     120  <li><strong>activate</strong> - enable the plugin (set active flag)</li> 
     121  <li><strong>deactivate</strong> - disable the plugin</li> 
    122122</ul>