1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/a7ae7afffa8f/
Changeset: a7ae7afffa8f
Branch: stable
User: natefoo
Date: 2015-01-30 18:00:22+00:00
Summary: Update tag latest_2015.01.13 for changeset c5e7535b4d22
Affected #: 1 file
diff -r c5e7535b4d229dbbe52d48ea35a27ab601205b7b -r a7ae7afffa8fa7551ea760ca01e9c1808809391b .hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -22,4 +22,4 @@
2092948937ac30ef82f71463a235c66d34987088 release_2014.10.06
9bd6f8b5b8153db752f4e61ed62f2b6c01ae4a11 latest_2014.10.06
2e8dd2949dd3eee0f56f9a3a5ebf1b2baca24aee release_2015.01.13
-a481d17c04482b069e6b2ebdda4fbca01448fa9c latest_2015.01.13
+c5e7535b4d229dbbe52d48ea35a27ab601205b7b latest_2015.01.13
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.
1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/c5e7535b4d22/
Changeset: c5e7535b4d22
Branch: stable
User: davebgx
Date: 2015-01-29 16:23:35+00:00
Summary: Set time to epoch instead of throwing server error if repository_metadata.time_last_tested is unset.
Affected #: 1 file
diff -r d386cf71d4f71faeb49ec871b742e81011bee266 -r c5e7535b4d229dbbe52d48ea35a27ab601205b7b lib/galaxy/webapps/tool_shed/controllers/repository.py
--- a/lib/galaxy/webapps/tool_shed/controllers/repository.py
+++ b/lib/galaxy/webapps/tool_shed/controllers/repository.py
@@ -1690,7 +1690,10 @@
description_lines = []
# Per the RSS 2.0 specification, all dates in RSS feeds must be formatted as specified in RFC 822
# section 5.1, e.g. Sat, 07 Sep 2002 00:00:01 UT
- time_tested = repository_metadata.time_last_tested.strftime( '%a, %d %b %Y %H:%M:%S UT' )
+ if repository_metadata.time_last_tested is None:
+ time_tested = 'Thu, 01 Jan 1970 00:00:00 UT'
+ else:
+ time_tested = repository_metadata.time_last_tested.strftime( '%a, %d %b %Y %H:%M:%S UT' )
# Generate a citable URL for this repository with owner and changeset revision.
repository_citable_url = common_util.url_join( tool_shed_url,
'view',
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.
2 new commits in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/0fe529fb7881/
Changeset: 0fe529fb7881
User: dannon
Date: 2015-01-30 16:52:12+00:00
Summary: Add sentry logging to config.
Affected #: 1 file
diff -r 81c215f35665f2361ead5d60fe0a12ee24f31a0b -r 0fe529fb7881daef76b08eb113bd5a3d4480e358 lib/galaxy/webapps/tool_shed/config.py
--- a/lib/galaxy/webapps/tool_shed/config.py
+++ b/lib/galaxy/webapps/tool_shed/config.py
@@ -8,6 +8,7 @@
import logging.config
from optparse import OptionParser
import ConfigParser
+from galaxy import eggs
from galaxy.util import string_as_bool, listify
log = logging.getLogger( __name__ )
@@ -288,3 +289,11 @@
# Hook everything up
handler.setFormatter( formatter )
root.addHandler( handler )
+ # If sentry is configured, also log to it
+ if config.sentry_dsn:
+ eggs.require( "raven" )
+ from raven.handlers.logging import SentryHandler
+ sentry_handler = SentryHandler( config.sentry_dsn )
+ sentry_handler.setLevel( logging.WARN )
+ root.addHandler( sentry_handler )
+
https://bitbucket.org/galaxy/galaxy-central/commits/3618b7a91e23/
Changeset: 3618b7a91e23
User: dannon
Date: 2015-01-30 16:55:51+00:00
Summary: First of probably many changes related to elementtree replacement and futurewarnings.
Affected #: 1 file
diff -r 0fe529fb7881daef76b08eb113bd5a3d4480e358 -r 3618b7a91e23096ecf7ce5842c1e16c749251a4d lib/galaxy/datatypes/registry.py
--- a/lib/galaxy/datatypes/registry.py
+++ b/lib/galaxy/datatypes/registry.py
@@ -346,7 +346,7 @@
"""
sniffer_elem_classes = [ e.attrib[ 'type' ] for e in self.sniffer_elems ]
sniffers = root.find( 'sniffers' )
- if sniffers:
+ if sniffers is not None:
for elem in sniffers.findall( 'sniffer' ):
# Keep a status of the process steps to enable stopping the process of handling the sniffer if necessary.
ok = True
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.
1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/81c215f35665/
Changeset: 81c215f35665
User: carlfeberhard
Date: 2015-01-30 16:40:21+00:00
Summary: Core, controllers: when parsing ids, stringify to prevent all numeric (but valid) ids from being pre-processed as integers
Affected #: 1 file
diff -r 1e0f1acf3c54ac7ed12d174f40c2f2f62b01f043 -r 81c215f35665f2361ead5d60fe0a12ee24f31a0b lib/galaxy/web/base/controller.py
--- a/lib/galaxy/web/base/controller.py
+++ b/lib/galaxy/web/base/controller.py
@@ -103,9 +103,11 @@
# ---- parsing query params
def decode_id( self, id ):
try:
- return self.app.security.decode_id( id )
- except:
- msg = "Malformed History id ( %s ) specified, unable to decode" % ( str( id ) )
+ # note: use str - occasionally a fully numeric id will be placed in post body and parsed as int via JSON
+ # resulting in error for valid id
+ return self.app.security.decode_id( str( id ) )
+ except ( ValueError, TypeError ):
+ msg = "Malformed id ( %s ) specified, unable to decode" % ( str( id ) )
raise exceptions.MalformedId( msg, id=str( id ) )
def encode_all_ids( self, trans, rval, recursive=False ):
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.
1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/a917e3d871f2/
Changeset: a917e3d871f2
User: carlfeberhard
Date: 2015-01-29 22:51:57+00:00
Summary: UI, history multi-view: fix column height response in firefox
Affected #: 1 file
diff -r a0c2bd2de611ab95292f9ae5f759dae9fa4939aa -r a917e3d871f2782ae4cf1b57bb4775c0e0224efe templates/webapps/galaxy/history/view_multiple.mako
--- a/templates/webapps/galaxy/history/view_multiple.mako
+++ b/templates/webapps/galaxy/history/view_multiple.mako
@@ -33,6 +33,11 @@
display: -ms-flexbox;
display: flex;
+ /* force ff to squish beyond content:
+ https://developer.mozilla.org/en-US/Firefox/Releases/34/Site_Compatibility#… */
+ min-width: 0px;
+ min-height: 0px;
+
-webkit-align-items: stretch;
-ms-align-items: stretch;
align-items: stretch;
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.