Show
Ignore:
Timestamp:
02/27/08 16:21:32 (2 years ago)
Author:
JensDiemer
Message:

NEW internal page handling:
-internal pages doesn't store in the database.
-additional CSS/JS files linked as normal static files.
-new path constants in the settings.py
See also:  http://pylucid.org/phpBB2/viewtopic.php?t=198
TODO: refactory the insall section and the plugin manager for this. Remove the unused InternalPage? model.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/PyLucid/plugins_internal/main_menu/main_menu.py

    r1371 r1449  
    8585 
    8686            # Render one menu entry 
    87             html = self._get_rendered_template("main menu li", entry) 
     87            html = self._get_rendered_template("main_menu_li", entry) 
    8888            result.append(html) 
    8989 
     
    9393 
    9494        # render all menu entries into a <ul> tag 
    95         menu_html = self._get_rendered_template("main menu ul", context) 
     95        menu_html = self._get_rendered_template("main_menu_ul", context) 
    9696 
    9797        return mark_safe(menu_html)