1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/changeset/eb4206636dd9/
changeset: eb4206636dd9
user: dannon
date: 2012-07-30 21:54:34
summary: Fix tabular display to serve raw when preview == False, which should resolve
external display issues.
affected #: 1 file
diff -r cdf84aee000b28bd73bbae56b31480e9ce5a6a86 -r
eb4206636dd9b385cc84f20b81d61f9ea11727c5 lib/galaxy/datatypes/tabular.py
--- a/lib/galaxy/datatypes/tabular.py
+++ b/lib/galaxy/datatypes/tabular.py
@@ -264,7 +264,7 @@
def display_data(self, trans, dataset, preview=False, filename=None, to_ext=None,
chunk=None):
#TODO Prevent failure when displaying extremely long > 50kb lines.
- if to_ext:
+ if to_ext or not preview:
return self._serve_raw(trans, dataset, to_ext)
if chunk:
return self.get_chunk(trans, dataset, chunk)
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.