--- loncom/publisher/lonpubdir.pm 2008/11/28 16:10:26 1.115 +++ loncom/publisher/lonpubdir.pm 2008/12/05 09:41:59 1.116 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Construction Space Directory Lister # -# $Id: lonpubdir.pm,v 1.115 2008/11/28 16:10:26 bisitz Exp $ +# $Id: lonpubdir.pm,v 1.116 2008/12/05 09:41:59 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -105,7 +105,6 @@ sub handler { my $numres = 0; # Start off the directory table. - $r->print('<h3>'.&mt('Directory Contents:').'</h3>'); $r->print(&Apache::loncommon::start_data_table() .&Apache::loncommon::start_data_table_header_row() .'<th>'.&mt('Type').'</th>' @@ -377,42 +376,46 @@ sub dircontrols { ); my $mytype = $lt{'type'}; # avoid conflict with " and ' in javascript $r->print(<<END); - <table id="LC_cstr_controls"> - <tr> - <th>$lt{'acti'}</th> - <th>$lt{'updc'}</th> - <th>$lt{'crea'}</th> - </tr> - <tr> - <td> - <form name="curractions" method="post" action=""> - <select name="dirtask" onchange="currdiract(this.form)"> +<div class="columnSection"> + <div> + <form name="curractions" method="post" action=""> + <fieldset> + <legend>$lt{'acti'}</legend> + <select name="dirtask" onchange="currdiract(this.form)"> <option>$lt{'sela'}</option> <option value="publish">$lt{'pubd'}</option> <option value="editmeta">$lt{'edit'}</option> <option value="printdir">$lt{'prnt'}</option> <option value="delete">$lt{'dedr'}</option> - </select> - <input type="hidden" name="filename" value="/~$uname$thisdisfn/" /> - </form> - <form name="publishdir" method="post" action="/adm/publish" target="_parent"> - <input type="hidden" name="pubrec" value="" /> - <input type="hidden" name="filename" value="" /> - </form> - <form name="printdir" method="post" action="/adm/printout" target="_parent"> - <input type="hidden" name="postdata" value="" /> - </form> - </td> - <td> - <form name="upublisher" enctype="multipart/form-data" method="post" action="/adm/upload" target="_parent"> - <input type="hidden" name="filename" value="/~$uname$thisdisfn/" /> - <input type="file" name="upfile" size="20" /> - <input type="button" value="$lt{'uplo'}" onclick="checkUpload(this.form)" /> - </form> - </td> - <td> - <form name="fileaction" method="post" action="/adm/cfile" target="_parent"> - <span style="white-space: nowrap"> + </select> + <input type="hidden" name="filename" value="/~$uname$thisdisfn/" /> + </fieldset> + </form> + <form name="publishdir" method="post" action="/adm/publish" target="_parent"> + <input type="hidden" name="pubrec" value="" /> + <input type="hidden" name="filename" value="" /> + </form> + <form name="printdir" method="post" action="/adm/printout" target="_parent"> + <input type="hidden" name="postdata" value="" /> + </form> + </div> + + <div> + <form name="upublisher" enctype="multipart/form-data" method="post" action="/adm/upload" target="_parent"> + <fieldset> + <legend>$lt{'updc'}</legend> + <input type="hidden" name="filename" value="/~$uname$thisdisfn/" /> + <input type="file" name="upfile" size="20" /> + <input type="button" value="$lt{'uplo'}" onclick="checkUpload(this.form)" /> + </fieldset> + </form> + </div> + + <div> + <form name="fileaction" method="post" action="/adm/cfile" target="_parent"> + <fieldset> + <legend>$lt{'crea'}</legend> + <span class="LC_nobreak"> <input type="hidden" name="filename" value="/~$uname$thisdisfn/" /> <script type="text/javascript"> function validate_go() { @@ -438,10 +441,10 @@ sub dircontrols { <option value="newdir">$lt{'nsub'}:</option> </select> <input type="text" name="newfilename" value="$lt{'type'}" onfocus="if (this.value == '$mytype') this.value=''" /> <input type="button" value="Go" onclick="validate_go();" /> </span> - </form> - </td> - </tr> - </table> + </fieldset> + </form> + </div> +</div> END }