commit/galaxy-central: greg: Brad Chapman's patch for fixing an issue where the current user roles were not passed to a template.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/5297d8f24693/ changeset: r4970:5297d8f24693 user: greg date: 2011-02-01 19:11:24 summary: Brad Chapman's patch for fixing an issue where the current user roles were not passed to a template. affected #: 2 files (114 bytes) --- a/lib/galaxy/web/controllers/library.py Tue Feb 01 11:21:41 2011 -0500 +++ b/lib/galaxy/web/controllers/library.py Tue Feb 01 13:11:24 2011 -0500 @@ -110,6 +110,7 @@ search_term=search_term, comptypes=comptypes, lddas=lddas, + current_user_roles=trans.get_current_user_roles(), show_deleted=show_deleted, use_panels=use_panels, message=message, --- a/scripts/data_libraries/build_lucene_index.py Tue Feb 01 11:21:41 2011 -0500 +++ b/scripts/data_libraries/build_lucene_index.py Tue Feb 01 13:11:24 2011 -0500 @@ -61,7 +61,7 @@ fname = "" else: fname = ldda.dataset.get_file_name() - yield ldda.id, fname, _get_dataset_metadata(ldda) + yield ldda.id, fname, _get_dataset_metadata(ldda).replace("\n", " ") def _get_dataset_metadata(ldda): """Retrieve descriptions and information associated with a dataset. 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