Author: peter
Date: Thu Mar 14 13:25:17 2013
New Revision: 1456421
URL: http://svn.apache.org/r1456421
Log:
#371 - Add configuration options descriptions
Modified:
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py
Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py
URL:
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py?rev=1456421&r1=1456420&r2=1456421&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py Thu Mar 14
13:25:17 2013
@@ -138,16 +138,21 @@ class BloodhoundTheme(ThemeBase):
)
labels_application_short = Option('labels', 'application_short',
- 'Bloodhound')
+ 'Bloodhound', """A short version of application name most commonly
+ displayed in text, titles and labels""")
labels_application_full = Option('labels', 'application_full',
- 'Apache Bloodhound')
+ 'Apache Bloodhound', """This is full name with trade mark and
+ everything, it is currently used in footers and about page only""")
- labels_footer_left_prefix = Option('labels', 'footer_left_prefix', '')
+ labels_footer_left_prefix = Option('labels', 'footer_left_prefix', '',
+ """Text to display before full application name in footers""")
- labels_footer_left_postfix = Option('labels', 'footer_left_postfix', '')
+ labels_footer_left_postfix = Option('labels', 'footer_left_postfix', '',
+ """Text to display after full application name in footers""")
- labels_footer_right = Option('labels', 'footer_right', '')
+ labels_footer_right = Option('labels', 'footer_right', '',
+ """Text to use as the right aligned footer""")
is_bhsearch_default = BoolOption('bhsearch', 'is_default', False)