1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/changeset/1638bc414549/
changeset: 1638bc414549
user: dan
date: 2011-11-30 23:22:30
summary: Fix for 2ee4a6b8419b where chromInfo from custom dbkeys when no custom dbkeys have been defined would cause an error.
affected #: 1 file
diff -r c6f70cccce287702f18c518175bec4a5e8ace23c -r 1638bc41454922e24dfa5e01d840fbf5ea505782 lib/galaxy/tools/actions/__init__.py
--- a/lib/galaxy/tools/actions/__init__.py
+++ b/lib/galaxy/tools/actions/__init__.py
@@ -192,7 +192,7 @@
incoming[ "chromInfo" ] = db_dataset.file_name
else:
# For custom builds, chrom info resides in converted dataset; for built-in builds, chrom info resides in tool-data/shared.
- if trans.user and ( input_dbkey in trans.user.preferences[ 'dbkeys' ] ):
+ if trans.user and ( 'dbkeys' in trans.user.preferences ) and ( input_dbkey in trans.user.preferences[ 'dbkeys' ] ):
# Custom build.
custom_build_dict = from_json_string( trans.user.preferences[ 'dbkeys' ] )[ input_dbkey ]
build_fasta_dataset = trans.app.model.HistoryDatasetAssociation.get( custom_build_dict[ 'fasta' ] )
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/changeset/36998f5a7ddb/
changeset: 36998f5a7ddb
user: dan
date: 2011-11-30 16:20:15
summary: Fix for frames inside of frames issue introduced in 5db0da0007fc. Seen when require_login=True.
affected #: 1 file
diff -r 834de698004e1306b4424d0a8dbd3e7c1938ee9c -r 36998f5a7ddb12ee93068b8001a09b84a47944f4 lib/galaxy/web/framework/__init__.py
--- a/lib/galaxy/web/framework/__init__.py
+++ b/lib/galaxy/web/framework/__init__.py
@@ -407,6 +407,7 @@
def _ensure_logged_in_user( self, environ, session_cookie ):
# The value of session_cookie can be one of
# 'galaxysession' or 'galaxycommunitysession'
+ # Currently this method does nothing unless session_cookie is 'galaxysession'
if session_cookie == 'galaxysession':
# TODO: re-engineer to eliminate the use of allowed_paths
# as maintenance overhead is far too high.
@@ -436,8 +437,8 @@
host = None
if host in UCSC_SERVERS:
return
- if self.request.path not in allowed_paths:
- self.response.send_redirect( url_for( controller='root', action='index' ) )
+ if self.request.path not in allowed_paths:
+ self.response.send_redirect( url_for( controller='root', action='index' ) )
def __create_new_session( self, prev_galaxy_session=None, user_for_new_session=None ):
"""
Create a new GalaxySession for this request, possibly with a connection
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/changeset/de03f821784b/
changeset: de03f821784b
user: dannon
date: 2011-11-30 13:29:32
summary: Fix for browsing libraries, json2 wasn't being loaded, needed in IE for jstorage to work.
affected #: 1 file
diff -r b751663f3f64ea794951f57b2ff4686debd1b455 -r de03f821784bcbe04a7514ad3d8e43fb1b635e4b templates/library/common/browse_library.mako
--- a/templates/library/common/browse_library.mako
+++ b/templates/library/common/browse_library.mako
@@ -48,6 +48,7 @@
<%def name="javascripts()">
${parent.javascripts()}
+ ${h.js("json2")}
${h.js("jstorage")}
${common_javascripts()}
${self.grid_javascripts()}
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/changeset/b751663f3f64/
changeset: b751663f3f64
user: dan
date: 2011-11-29 23:35:14
summary: Minor fix for 04e8ed0cd930.
affected #: 1 file
diff -r 04e8ed0cd930023fea4d7d942e1a12694c4526e6 -r b751663f3f64ea794951f57b2ff4686debd1b455 tools/sr_mapping/PerM.xml
--- a/tools/sr_mapping/PerM.xml
+++ b/tools/sr_mapping/PerM.xml
@@ -13,7 +13,7 @@
#if $s.space == "color"
"${s.sourceOfRef.index.fields.path}"
#elif $s.space == "base"
- "${s.sourceOfRef.index.fields.path"
+ "${s.sourceOfRef.index.fields.path}"
#end if
#end if
#if $s.mate.singleOrPairs == "single":
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/changeset/0532712a2708/
changeset: 0532712a2708
user: dan
date: 2011-11-29 23:07:06
summary: Fix tab to 4 spaces in tool_conf.xml.sample.
affected #: 1 file
diff -r 9ee4e2e41fd60c75c2b87d55648c538438809430 -r 0532712a2708855e77d1a6a9a1099121983458a4 tool_conf.xml.sample
--- a/tool_conf.xml.sample
+++ b/tool_conf.xml.sample
@@ -469,7 +469,7 @@
<tool file="human_genome_variation/lps.xml" /><tool file="human_genome_variation/hilbertvis.xml" /><tool file="human_genome_variation/freebayes.xml" />
- <tool file="human_genome_variation/master2pg.xml" />
+ <tool file="human_genome_variation/master2pg.xml" /></section><section name="Genome Diversity" id="gd"><tool file="genome_diversity/extract_primers.xml" />
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.