You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by rj...@apache.org on 2013/02/21 07:21:53 UTC

svn commit: r1448519 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py

Author: rjollos
Date: Thu Feb 21 06:21:52 2013
New Revision: 1448519

URL: http://svn.apache.org/r1448519
Log:
Refs #409: `application_version` will now have the `tag_build` string and SVN revision appended.

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=1448519&r1=1448518&r2=1448519&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/theme.py Thu Feb 21 06:21:52 2013
@@ -149,7 +149,7 @@ class BloodhoundTheme(ThemeBase):
             footer_left_prefix = self.labels_footer_left_prefix,
             footer_left_postfix = self.labels_footer_left_postfix,
             footer_right = self.labels_footer_right,
-            application_version = ".".join(map(str, application_version)))
+            application_version = application_version)
 
     # ITemplateStreamFilter methods
 
@@ -441,5 +441,4 @@ class QuickCreateTicketDialog(Component)
                                    "of ticket #%s: %s" % (t.id, e))
         return t.id
 
-application_version = tuple(int(i) for i in get_distribution('BloodhoundTheme')
-    .parsed_version if i.startswith('0'))
+application_version = get_distribution('BloodhoundTheme').version