Show
Ignore:
Timestamp:
07/23/08 12:30:40 (20 months ago)
Author:
JensDiemer
Message:

blog plugin: Change the RSS/Atom feed stuff

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pylucid/PyLucid/plugins_internal/blog/blog_cfg.py

    r1701 r1705  
    55__author__              = "Jens Diemer" 
    66__url__                 = "http://www.PyLucid.org" 
    7 __description__         = "A simple blog system (extermental)" 
     7__description__         = "A simple blog system" 
    88__long_description__ = """ 
     9More information: http://www.pylucid.org/_goto/165/blog/ 
    910""" 
    1011 
     
    1213# preferences 
    1314 
    14 from django.conf import settings 
    1515from django import newforms as forms 
    1616from django.contrib.auth.models import User 
     
    3535    'mod_keywords' and 'spam_keywords' are case-insensitive and matches on every 
    3636    partial word. Be carefull with 'spam_keywords'. 
     37 
     38    More information: http://www.pylucid.org/_goto/165/blog/ 
    3739    """ 
    3840    blog_title = forms.CharField( 
     
    4345    ) 
    4446    description = forms.CharField( 
    45         initial = "", 
     47        initial = "", required=False, 
    4648        help_text = _( 
    4749            "The blog description (Used for RSS/Atom feeds)." 
     
    132134    ) 
    133135 
    134 # Optional, this Plugin can't have multiple preferences 
     136 
     137# They can only exist one blog in a PyLucid instance 
    135138multiple_pref = False 
    136139 
     
    150153    "add_comment":  anonymous_rights, 
    151154    "detail":       anonymous_rights, 
    152     "feed":         anonymous_rights, 
     155 
     156    "select_feed_format":   anonymous_rights, 
     157    "feed":                 anonymous_rights, 
    153158 
    154159    #__________________________________________________________________________