[hg] galaxy 3374: Add the library description to the browse libr...
details: http://www.bx.psu.edu/hg/galaxy/rev/81d84a03f2ec changeset: 3374:81d84a03f2ec user: Greg Von Kuster <greg@bx.psu.edu> date: Thu Feb 11 16:18:45 2010 -0500 description: Add the library description to the browse library page, and update the tool config for main. diffstat: templates/library/browse_libraries.mako | 2 +- templates/library/common/browse_library.mako | 5 +++++ tool_conf.xml.main | 1 + 3 files changed, 7 insertions(+), 1 deletions(-) diffs (38 lines): diff -r a3e6350ffc57 -r 81d84a03f2ec templates/library/browse_libraries.mako --- a/templates/library/browse_libraries.mako Thu Feb 11 14:26:25 2010 -0500 +++ b/templates/library/browse_libraries.mako Thu Feb 11 16:18:45 2010 -0500 @@ -23,7 +23,7 @@ %for library in libraries: <tr class="libraryRow libraryOrFolderRow" id="libraryRow"> <td><a href="${h.url_for( controller='library_common', action='browse_library', cntrller='library', id=trans.security.encode_id( library.id ), hidden_folder_ids='' )}">${library.name}</a></td> - <td><i>${library.description}</i></td> + <td>${library.description}</td> </tr> %endfor </tbody> diff -r a3e6350ffc57 -r 81d84a03f2ec templates/library/common/browse_library.mako --- a/templates/library/common/browse_library.mako Thu Feb 11 14:26:25 2010 -0500 +++ b/templates/library/common/browse_library.mako Thu Feb 11 16:18:45 2010 -0500 @@ -366,6 +366,11 @@ ${render_msg( msg, messagetype )} %endif +%if library.description: + <div class="libraryItemBody">${library.description}</div> + <br/> +%endif + <form name="act_on_multiple_datasets" action="${h.url_for( controller='library_common', action='act_on_multiple_datasets', cntrller=cntrller, library_id=trans.security.encode_id( library.id ) )}" onSubmit="javascript:return checkForm();" method="post"> <table cellspacing="0" cellpadding="0" border="0" width="100%" class="grid" id="library-grid"> <thead> diff -r a3e6350ffc57 -r 81d84a03f2ec tool_conf.xml.main --- a/tool_conf.xml.main Thu Feb 11 14:26:25 2010 -0500 +++ b/tool_conf.xml.main Thu Feb 11 16:18:45 2010 -0500 @@ -37,6 +37,7 @@ <tool file="filters/headWrapper.xml" /> <tool file="filters/tailWrapper.xml" /> <tool file="filters/trimmer.xml" /> + <tool file="stats/dna_filtering.xml" /> </section> <section name="Convert Formats" id="convert"> <tool file="filters/bed2gff.xml" />
participants (1)
-
Greg Von Kuster