Show
Ignore:
Timestamp:
10/23/07 13:12:39 (2 years ago)
Author:
JensDiemer
Message:

-"add_css_tag" for _command, too.
-rename settings.CSS_DIV_CLASS_NAME -> settings.CSS_PLUGIN_CLASS_NAME

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/PyLucid/index.py

    r1228 r1283  
    3636from PyLucid.system.URLs import URLs 
    3737from PyLucid.system.context_processors import add_dynamic_context 
     38from PyLucid.system.context_processors import add_css_tag 
    3839 
    3940from PyLucid.tools.content_processors import apply_markup, \ 
     
    274275#    print "---" 
    275276 
     277    page_content = add_css_tag( 
     278        context, page_content, module_name, method_name 
     279    ) 
     280 
    276281    return _render_cms_page(context, page_content) 
    277282