Changeset 1655
- Timestamp:
- 07/03/08 17:44:40 (21 months ago)
- Location:
- trunk/pylucid/PyLucid/plugins_internal
- Files:
-
- 4 modified
-
back_links/back_links_cfg.py (modified) (2 diffs)
-
find_and_replace/find_and_replace.py (modified) (1 diff)
-
page_admin/page_admin.py (modified) (1 diff)
-
system_settings/system_settings_cfg.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/PyLucid/plugins_internal/back_links/back_links_cfg.py
r1634 r1655 18 18 class PreferencesForm(forms.Form): 19 19 print_last_page = forms.BooleanField( 20 initial = True, 20 initial = True, required=False, 21 21 help_text = _( 22 22 "If checked the actual page will be the last page in the bar." … … 25 25 ) 26 26 print_index = forms.BooleanField( 27 initial = False, 27 initial = False, required=False, 28 28 help_text = _('If checked every back link bar starts with a link to "index_url"'), 29 29 ) -
trunk/pylucid/PyLucid/plugins_internal/find_and_replace/find_and_replace.py
r1634 r1655 65 65 ) 66 66 simulate = forms.BooleanField( 67 initial = True, help_text = _("Don't replace anything.") 67 initial = True, required = False, 68 help_text = _("Don't replace anything.") 69 68 70 ) 69 71 -
trunk/pylucid/PyLucid/plugins_internal/page_admin/page_admin.py
r1651 r1655 98 98 99 99 preview_escape = forms.BooleanField( 100 required=False, 100 101 help_text=_("Escape django template tags in preview?"), 101 102 ) -
trunk/pylucid/PyLucid/plugins_internal/system_settings/system_settings_cfg.py
r1653 r1655 22 22 class PreferencesForm(forms.Form): 23 23 index_page = PageChoiceField( 24 initial=None, 24 25 widget=forms.Select(choices=get_page_choices()), 25 26 help_text=_("The page ID of the index page"), 26 initial=None27 27 ) 28 28 auto_shortcuts = forms.BooleanField( 29 initial=True, required=False, 29 30 help_text=_("Should the shortcut of a page rebuild on every edit?"), 30 initial=True31 31 ) 32 32