1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- """
- Default settings for the ``mezzanine.blog`` app. Each of these can be
- overridden in your project's settings module, just like regular
- Django settings. The ``editable`` argument for each controls whether
- the setting is editable via Django's admin.
- Thought should be given to how a setting is actually used before
- making it editable, as it may be inappropriate - for example settings
- that are only read during startup shouldn't be editable, since changing
- them would require an application reload.
- """
- from __future__ import unicode_literals
- from django.conf import settings
- from django.utils.translation import ugettext_lazy as _
- from mezzanine.conf import register_setting
- register_setting(
- name="BLOG_USE_FEATURED_IMAGE",
- description=_("Enable featured images in blog posts"),
- editable=False,
- default=False,
- )
- _BLOG_URLS_DATE_FORMAT = ""
- if getattr(settings, "BLOG_URLS_USE_DATE", False):
- _BLOG_URLS_DATE_FORMAT = "day"
- from warnings import warn
- warn("BLOG_URLS_USE_DATE setting is deprecated, please use the "
- "BLOG_URLS_DATE_FORMAT setting with a value of 'year', 'month', "
- "or 'day'.")
- register_setting(
- name="BLOG_URLS_DATE_FORMAT",
- label=_("Blog post URL date format"),
- description=_("A string containing the value ``year``, ``month``, or "
- "``day``, which controls the granularity of the date portion in the "
- "URL for each blog post. Eg: ``year`` will define URLs in the format "
- "/blog/yyyy/slug/, while ``day`` will define URLs with the format "
- "/blog/yyyy/mm/dd/slug/. An empty string means the URLs will only "
- "use the slug, and not contain any portion of the date at all."),
- editable=False,
- default=_BLOG_URLS_DATE_FORMAT,
- )
- register_setting(
- name="BLOG_POST_PER_PAGE",
- label=_("Blog posts per page"),
- description=_("Number of blog posts shown on a blog listing page."),
- editable=True,
- default=5,
- )
- register_setting(
- name="BLOG_RSS_LIMIT",
- label=_("Blog posts RSS limit"),
- description=_("Number of most recent blog posts shown in the RSS feed. "
- "Set to ``None`` to display all blog posts in the RSS feed."),
- editable=False,
- default=20,
- )
- register_setting(
- name="BLOG_SLUG",
- description=_("Slug of the page object for the blog."),
- editable=False,
- default="blog",
- )
|