commit/galaxy-central: dan: Add missing message_box_* config elements to Reports app. Broken in cb0432cfcc8a.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/b8c951a4e56b/ Changeset: b8c951a4e56b User: dan Date: 2013-05-15 21:44:58 Summary: Add missing message_box_* config elements to Reports app. Broken in cb0432cfcc8a. Affected #: 1 file diff -r 52b6923d713b0c205cdc8c970e49f4b606710056 -r b8c951a4e56b7e0cdc8cd176dd96521c2e0eb764 lib/galaxy/webapps/reports/config.py --- a/lib/galaxy/webapps/reports/config.py +++ b/lib/galaxy/webapps/reports/config.py @@ -35,6 +35,10 @@ self.allow_user_deletion = string_as_bool( kwargs.get( "allow_user_deletion", "False" ) ) self.log_actions = string_as_bool( kwargs.get( 'log_actions', 'False' ) ) self.brand = kwargs.get( 'brand', None ) + # Configuration for the message box directly below the masthead. + self.message_box_visible = kwargs.get( 'message_box_visible', False ) + self.message_box_content = kwargs.get( 'message_box_content', None ) + self.message_box_class = kwargs.get( 'message_box_class', 'info' ) self.wiki_url = kwargs.get( 'wiki_url', 'http://wiki.g2.bx.psu.edu/FrontPage' ) self.blog_url = kwargs.get( 'blog_url', None ) self.screencasts_url = kwargs.get( 'screencasts_url', None ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org