]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/settings/basic.py
OSQA-565, fixing small typo in the administration: theyr -> their, recompiling the...
[osqa.git] / forum / settings / basic.py
index 0148452abf215155b47ec70897a4893d481bb7cd..a4efd6f105eb78af4e459e0b1f11f75c760f8784 100644 (file)
@@ -6,62 +6,47 @@ from forms import ImageFormWidget
 from django.utils.translation import ugettext_lazy as _\r
 from django.forms.widgets import Textarea\r
 \r
-BASIC_SET = SettingSet('basic', _('Basic Settings'), _("The basic settings for your application"), 1)\r
+BASIC_SET = SettingSet('basic', _('Basic settings'), _("The basic settings for your application"), 1)\r
 \r
-APP_LOGO = Setting('APP_LOGO', '/m/default/media/images/logo.png', BASIC_SET, dict(\r
+APP_LOGO = Setting('APP_LOGO', '/upfiles/logo.png', BASIC_SET, dict(\r
 label = _("Application logo"),\r
-help_text = _("""\r
-Your site main logo.\r
-"""),\r
+help_text = _("Your site main logo."),\r
 widget=ImageFormWidget))\r
 \r
 APP_FAVICON = Setting('APP_FAVICON', '/m/default/media/images/favicon.ico', BASIC_SET, dict(\r
 label = _("Favicon"),\r
-help_text = _("""\r
-Your site favicon.\r
-"""),\r
+help_text = _("Your site favicon."),\r
 widget=ImageFormWidget))\r
 \r
-APP_TITLE = Setting('APP_TITLE', 'OSQA: Open Source Q&A Forum', BASIC_SET, dict(\r
+APP_TITLE = Setting('APP_TITLE', u'OSQA: Open Source Q&A Forum', BASIC_SET, dict(\r
 label = _("Application title"),\r
-help_text = _("""\r
-The title of your application that will show in the browsers title bar\r
-""")))\r
+help_text = _("The title of your application that will show in the browsers title bar")))\r
 \r
-APP_SHORT_NAME = Setting('APP_SHORT_NAME', 'OSQA', BASIC_SET, dict(\r
+APP_SHORT_NAME = Setting(u'APP_SHORT_NAME', 'OSQA', BASIC_SET, dict(\r
 label = _("Application short name"),\r
-help_text = """\r
-The short name for your application that will show up in many places.\r
-"""))\r
+help_text = "The short name for your application that will show up in many places."))\r
 \r
-APP_KEYWORDS = Setting('APP_KEYWORDS', 'OSQA,CNPROG,forum,community', BASIC_SET, dict(\r
+APP_KEYWORDS = Setting('APP_KEYWORDS', u'OSQA,CNPROG,forum,community', BASIC_SET, dict(\r
 label = _("Application keywords"),\r
-help_text = _("""\r
-The meta keywords that will be available through the HTML meta tags.\r
-""")))\r
+help_text = _("The meta keywords that will be available through the HTML meta tags.")))\r
 \r
-APP_DESCRIPTION = Setting('APP_DESCRIPTION', 'Ask and answer questions.', BASIC_SET, dict(\r
+APP_DESCRIPTION = Setting('APP_DESCRIPTION', u'Ask and answer questions.', BASIC_SET, dict(\r
 label = _("Application description"),\r
-help_text = _("""\r
-The description of your application\r
-"""),\r
+help_text = _("The description of your application"),\r
 widget=Textarea))\r
 \r
-APP_INTRO = Setting('APP_INTRO', '<p>Ask and answer questions, make the world better!</p>', BASIC_SET, dict(\r
-label = _("Application intro"),\r
-help_text = _("""\r
-The introductory page that is visible in the sidebar for anonymous users.\r
-"""),\r
-widget=Textarea))\r
-\r
-APP_COPYRIGHT = Setting('APP_COPYRIGHT', 'Copyright OSQA, 2010. Some rights reserved under creative commons license.', BASIC_SET, dict(\r
+APP_COPYRIGHT = Setting('APP_COPYRIGHT', u'Copyright OSQA, 2010. Some rights reserved under creative commons license.', BASIC_SET, dict(\r
 label = _("Copyright notice"),\r
-help_text = _("""\r
-The copyright notice visible at the footer of your page.\r
-""")))\r
+help_text = _("The copyright notice visible at the footer of your page.")))\r
+\r
+SUPPORT_URL = Setting('SUPPORT_URL', '', BASIC_SET, dict(\r
+label = _("Support URL"),\r
+help_text = _("The URL provided for users to get support. It can be http: or mailto: or whatever your preferred support scheme is."),\r
+required=False))\r
+\r
+CONTACT_URL = Setting('CONTACT_URL', '', BASIC_SET, dict(\r
+label = _("Contact URL"),\r
+help_text = _("The URL provided for users to contact you. It can be http: or mailto: or whatever your preferred contact scheme is."),\r
+required=False))\r
+\r
 \r
-COMMENT_MAX_LENGTH = Setting('COMMENT_MAX_LENGTH', 600, BASIC_SET, dict(\r
-label = _("Maximum length of comment"),\r
-help_text = _("""\r
-The maximum length a user can enter for a comment.\r
-""")))
\ No newline at end of file