Changeset 1705 for trunk/pylucid/PyLucid/plugins_internal/blog/blog_cfg.py
- Timestamp:
- 07/23/08 12:30:40 (20 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/plugins_internal/blog/blog_cfg.py
r1701 r1705 5 5 __author__ = "Jens Diemer" 6 6 __url__ = "http://www.PyLucid.org" 7 __description__ = "A simple blog system (extermental)"7 __description__ = "A simple blog system" 8 8 __long_description__ = """ 9 More information: http://www.pylucid.org/_goto/165/blog/ 9 10 """ 10 11 … … 12 13 # preferences 13 14 14 from django.conf import settings15 15 from django import newforms as forms 16 16 from django.contrib.auth.models import User … … 35 35 'mod_keywords' and 'spam_keywords' are case-insensitive and matches on every 36 36 partial word. Be carefull with 'spam_keywords'. 37 38 More information: http://www.pylucid.org/_goto/165/blog/ 37 39 """ 38 40 blog_title = forms.CharField( … … 43 45 ) 44 46 description = forms.CharField( 45 initial = "", 47 initial = "", required=False, 46 48 help_text = _( 47 49 "The blog description (Used for RSS/Atom feeds)." … … 132 134 ) 133 135 134 # Optional, this Plugin can't have multiple preferences 136 137 # They can only exist one blog in a PyLucid instance 135 138 multiple_pref = False 136 139 … … 150 153 "add_comment": anonymous_rights, 151 154 "detail": anonymous_rights, 152 "feed": anonymous_rights, 155 156 "select_feed_format": anonymous_rights, 157 "feed": anonymous_rights, 153 158 154 159 #__________________________________________________________________________