SettingsΒΆ

Default settings for FeinCMS

All of these can be overridden by specifying them in the standard settings.py file.

feincms.default_settings.FEINCMS_ALLOW_EXTRA_PATH

Allow random gunk after a valid page?

feincms.default_settings.FEINCMS_CMS_404_PAGE

Makes the page handling mechanism try to find a cms page with that path if it encounters a page not found situation. This allows for nice customised cms-styled error pages. Do not go overboard, this should be as simple and as error resistant as possible, so refrain from deeply nested error pages or advanced content types.

feincms.default_settings.FEINCMS_FRONTEND_EDITING

Show frontend-editing button?

feincms.default_settings.FEINCMS_JQUERY_NO_CONFLICT

avoid jQuery conflicts – scripts should use feincms.jQuery instead of $

feincms.default_settings.FEINCMS_MEDIAFILE_OVERWRITE

When uploading files to the media library, replacing an existing entry, try to save the new file under the old file name in order to keep the media file path (and thus the media url) constant. Experimental, this might not work with all storage backends.

feincms.default_settings.FEINCMS_MEDIALIBRARY_UPLOAD_TO

Local path to newly uploaded media files

feincms.default_settings.FEINCMS_REVERSE_MONKEY_PATCH

Monkey-patch django.core.urlresvolers.reverse to be application-content aware? (The monkey patch is deprecated and should not be used anymore. Use the app_reverse function and the {% app_reverse %} template tag instead.) The value of this setting will be changed to False in FeinCMS 1.6.

feincms.default_settings.FEINCMS_TIDY_ALLOW_WARNINGS_OVERRIDE

If True, users will be allowed to ignore HTML warnings (errors are always blocked):

feincms.default_settings.FEINCMS_TIDY_FUNCTION

Name of the tidy function - anything which takes (html) and returns (html, errors, warnings) can be used:

feincms.default_settings.FEINCMS_TIDY_HTML

If True, HTML will be run through a tidy function before saving:

feincms.default_settings.FEINCMS_TIDY_SHOW_WARNINGS

If True, displays form validation errors so the user can see how their HTML has been changed:

feincms.default_settings.FEINCMS_TRANSLATION_POLICY
How to switch languages.
STANDARD = the page a user navigates to sets the site’s language and overwrites
whatever was set before
EXPLICIT = the language set has priority, may only be overridden by explicitely
setting a language with ?set_language=xx
feincms.default_settings.FEINCMS_TREE_EDITOR_INCLUDE_ANCESTORS

Include ancestors in filtered tree editor lists

feincms.default_settings.FEINCMS_TREE_EDITOR_OBJECT_PERMISSIONS

Enable checking of object level permissions. Note that if this option is enabled, you must plug in an authentication backend that actually does implement object level permissions or no page will be editable.

Previous topic

Contrib

Next topic

Shortcuts

This Page