1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/e85b513b66be/ changeset: e85b513b66be user: kanwei date: 2011-08-24 07:11:54 summary: Simplified Custom Builds page... show less by default affected #: 1 file (261 bytes) --- a/templates/user/dbkeys.mako Wed Aug 24 00:45:31 2011 -0400 +++ b/templates/user/dbkeys.mako Wed Aug 24 01:11:54 2011 -0400 @@ -56,6 +56,10 @@ pre.toggle(); }); }); + $("#installed_builds").hide(); + $("#show_installed_builds").click(function() { + $("#installed_builds").show(); + }); }); </script> @@ -72,10 +76,8 @@ % elif lines_skipped > 0: <div class="warningmessagelarge">Skipped ${lines_skipped} lines that could not be parsed. (Line was either blank or not 2-column, with 2nd column being an integer)</div> % endif - - <h2>Custom Database/Builds</h2> - <p>Current custom builds:</p> + <h3>Current Custom Builds:</h3> % if dbkeys: <table id="custom_dbkeys" class="colored" cellspacing="0" cellpadding="0"> @@ -110,12 +112,17 @@ % else: <p>You currently have no custom builds.</p> % endif - <p>Builds with system-installed len files: <em>${installed_len_files}</em></p> - <br /> + <p> + <a id="show_installed_builds" href="javascript:void(0);">Show loaded, system-installed builds</a> + <blockquote id="installed_builds">${installed_len_files}</blockquote> + </p> + + <hr /> + <h3>Add a Custom Build</h3><form action="dbkeys" method="post" enctype="multipart/form-data"><div class="toolForm" style="float: left;"> - <div class="toolFormTitle">Add a Custom Build</div> + <div class="toolFormTitle">New Build</div><div class="toolFormBody"><div class="form-row"><label for="name">Build Name (eg: Mouse):</label> @@ -128,8 +135,8 @@ <div class="form-row"><label for="len_file">Upload .len file:</label><input type="file" id="len_file" name="len_file" /><br /> - <label for="len_text">Or paste length info below:</label> - <textarea id="len_text" name="len_text" cols="30" rows="10"></textarea> + <label for="len_text">Or enter/paste length info below:</label> + <textarea id="len_text" name="len_text" cols="30" rows="8"></textarea></div><div class="form-row"><input type="submit" name="add" value="Submit"/></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.