commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/e5f7236a7e3a/ changeset: e5f7236a7e3a user: jgoecks date: 2012-02-01 22:47:32 summary: Change default sort for Pages list to update time. affected #: 1 file diff -r 315515ad52b04d15fe33476b7a33c1079712728c -r e5f7236a7e3ad4e6b6414beb875fc89206deebe7 lib/galaxy/web/controllers/page.py --- a/lib/galaxy/web/controllers/page.py +++ b/lib/galaxy/web/controllers/page.py @@ -23,7 +23,7 @@ title = "Pages" model_class = model.Page default_filter = { "published" : "All", "tags" : "All", "title" : "All", "sharing" : "All" } - default_sort_key = "-create_time" + default_sort_key = "-update_time" columns = [ grids.TextColumn( "Title", key="title", attach_popup=True, filterable="advanced" ), URLColumn( "Public URL" ), https://bitbucket.org/galaxy/galaxy-central/changeset/0f7670a67901/ changeset: 0f7670a67901 user: jgoecks date: 2012-02-01 23:34:50 summary: To be compatible with distributed object store, use create() when adding data subsets for Trackster. affected #: 1 file diff -r e5f7236a7e3ad4e6b6414beb875fc89206deebe7 -r 0f7670a67901587a939a93047b6b58bdb93f3516 lib/galaxy/web/controllers/tracks.py --- a/lib/galaxy/web/controllers/tracks.py +++ b/lib/galaxy/web/controllers/tracks.py @@ -961,6 +961,7 @@ data_provider = data_provider_class( original_dataset=input_dataset, converted_dataset=converted_dataset, dependencies=deps ) + trans.app.object_store.create( new_dataset.dataset ) data_provider.write_data_to_file( chrom, low, high, new_dataset.file_name ) # TODO: (a) size not working; (b) need to set peek. 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)
-
Bitbucket