Changeset 1447
- Timestamp:
- 02/26/08 08:13:46 (2 years ago)
- Location:
- trunk/pylucid/PyLucid
- Files:
-
- 4 modified
-
index.py (modified) (1 diff)
-
plugins_internal/admin_menu/admin_menu_cfg.py (modified) (1 diff)
-
system/context_processors.py (modified) (1 diff)
-
system/plugin_manager.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/index.py
r1442 r1447 52 52 """ 53 53 if request.anonymous_view == False: 54 # TODO: remove in v0.9, see: ticket:161 54 55 # context["robots"] was set in contex_processors.static() 55 56 # Hide the response from search engines 56 57 context["robots"] = "NONE,NOARCHIVE" 58 59 context["anonymous_view"] = request.anonymous_view 57 60 58 61 current_page = context["PAGE"] -
trunk/pylucid/PyLucid/plugins_internal/admin_menu/admin_menu_cfg.py
r1236 r1447 23 23 "must_admin" : False, 24 24 "has_Tags" : True, 25 "no_rights_error" : True, # Fehlermeldung, wenn der User nicht eingeloggt ist, wird nicht angezeigt25 "no_rights_error" : True, # TODO: remove in v0.9, see: ticket:161 26 26 "internal_page_info" : { 27 27 "name" : "top_menu", -
trunk/pylucid/PyLucid/system/context_processors.py
r1440 r1447 24 24 # This value would be changed in index._render_cms_page(), if the 25 25 # plugin manager or any plugin set request.anonymous_view = False 26 "robots": "index,follow", 26 "robots": "index,follow", # TODO: remove in v0.9, see: ticket:161 27 27 } 28 28 -
trunk/pylucid/PyLucid/system/plugin_manager.py
r1440 r1447 134 134 # User is not logged in 135 135 if method_cfg.get("no_rights_error", False) == True: 136 # TODO: remove in v0.9, see: ticket:161 136 137 # No error message should be displayed for this plugin. 137 138 # e.g. admin_menu