1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/abd3907ca534/ changeset: abd3907ca534 user: natefoo date: 2011-06-17 16:19:29 summary: Fix test_metadata_editing, a ridiculous twill/mechanize/ClientForm bug that requires that <br /> tags contain the space before the / or else parsing <select>s will fail, but with a completely unrelated exception (an exception encountered when trying to raise the original exception). http://code.google.com/p/twill/issues/detail?id=51 http://lists.idyll.org/pipermail/twill/2010-January/001027.html affected #: 1 file (4 bytes) --- a/templates/dataset/security_common.mako Thu Jun 16 16:46:30 2011 -0400 +++ b/templates/dataset/security_common.mako Fri Jun 17 10:19:29 2011 -0400 @@ -16,21 +16,21 @@ </p><div style="width: 100%; white-space: nowrap;"><div style="float: left; width: 50%;"> - Roles associated:<br/> + Roles associated:<br /><select name="${action_key}_in" id="${action_key}_in_select" class="in_select" style="max-width: 98%; width: 98%; height: 150px; font-size: 100%;" multiple> %for role in in_roles: <option value="${role.id}">${role.name}</option> %endfor - </select><br/> + </select><br /><div style="width: 98%; text-align: right"><input type="submit" id="${action_key}_remove_button" class="role_remove_button" value=">>"/></div></div><div style="width: 50%;"> - Roles not associated:<br/> + Roles not associated:<br /><select name="${action_key}_out" id="${action_key}_out_select" style="max-width: 98%; width: 98%; height: 150px; font-size: 100%;" multiple> %for role in out_roles: <option value="${role.id}">${role.name}</option> %endfor - </select><br/> + </select><br /><input type="submit" id="${action_key}_add_button" class="role_add_button" value="<<"/></div></div> 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.