]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/basic.py
Migrate to Django 1.6
[osqa.git] / forum / settings / basic.py
1 import os.path
2
3 from base import Setting, SettingSet
4 from forms import ImageFormWidget
5
6 from django.utils.translation import ugettext_lazy as _
7 from django.forms.widgets import Textarea
8
9 BASIC_SET = SettingSet('basic', _('Basic settings'), _("The basic settings for your application"), 1)
10
11 APP_LOGO = Setting('APP_LOGO', '/upfiles/logo.png', BASIC_SET, dict(
12 label = _("Application logo"),
13 help_text = _("Your site main logo."),
14 widget=ImageFormWidget))
15
16 APP_FAVICON = Setting('APP_FAVICON', '/m/default/media/images/favicon.ico', BASIC_SET, dict(
17 label = _("Favicon"),
18 help_text = _("Your site favicon."),
19 widget=ImageFormWidget))
20
21 APP_TITLE = Setting('APP_TITLE', u'OSQA: Open Source Q&A Forum', BASIC_SET, dict(
22 label = _("Application title"),
23 help_text = _("The title of your application that will show in the browsers title bar")))
24
25 APP_SHORT_NAME = Setting(u'APP_SHORT_NAME', 'OSQA', BASIC_SET, dict(
26 label = _("Application short name"),
27 help_text = "The short name for your application that will show up in many places."))
28
29 APP_KEYWORDS = Setting('APP_KEYWORDS', u'OSQA,CNPROG,forum,community', BASIC_SET, dict(
30 label = _("Application keywords"),
31 help_text = _("The meta keywords that will be available through the HTML meta tags.")))
32
33 APP_DESCRIPTION = Setting('APP_DESCRIPTION', u'Ask and answer questions.', BASIC_SET, dict(
34 label = _("Application description"),
35 help_text = _("The description of your application"),
36 widget=Textarea))
37
38 APP_COPYRIGHT = Setting('APP_COPYRIGHT', u'Copyright OSQA, 2010. Some rights reserved under creative commons license.', BASIC_SET, dict(
39 label = _("Copyright notice"),
40 help_text = _("The copyright notice visible at the footer of your page.")))
41
42 SUPPORT_URL = Setting('SUPPORT_URL', '', BASIC_SET, dict(
43 label = _("Support URL"),
44 help_text = _("The URL provided for users to get support. It can be http: or mailto: or whatever your preferred support scheme is."),
45 required=False))
46
47 CONTACT_URL = Setting('CONTACT_URL', '', BASIC_SET, dict(
48 label = _("Contact URL"),
49 help_text = _("The URL provided for users to contact you. It can be http: or mailto: or whatever your preferred contact scheme is."),
50 required=False))
51
52