--- loncom/publisher/lonpubdir.pm 2007/10/18 21:58:21 1.104 +++ loncom/publisher/lonpubdir.pm 2008/01/16 18:15:15 1.107 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Construction Space Directory Lister # -# $Id: lonpubdir.pm,v 1.104 2007/10/18 21:58:21 albertel Exp $ +# $Id: lonpubdir.pm,v 1.107 2008/01/16 18:15:15 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -105,7 +105,7 @@ sub handler { my $numres = 0; # Start off the directory table. - $r->print('<h3>Directory Contents:</h3>'); + $r->print('<h3>'.&mt('Directory Contents:').'</h3>'); $r->print('<table id="LC_browser"><tr>'. '<th>'.&mt('Type').'</th>'. '<th>'.&mt('Actions').'</th>'. @@ -197,7 +197,7 @@ sub startpage { my $formaction='/priv/'.$uname.$thisdisfn.'/'; $formaction=~s|/+|/|g; my $pagetitle .= &Apache::loncommon::help_open_menu('','',3,'Authoring'). - '<font face="Arial, Helvetica, sans-serif" size="+1"><b>Construction Space</b>:</font> '. + '<font face="Arial, Helvetica, sans-serif" size="+1"><b>'.&mt('Construction Space').'</b>:</font> '. '<form name="dirs" method="post" action="'.$formaction. '" target="_parent"><tt><b>'. &Apache::lonhtmlcommon::crumbs($uname.$thisdisfn.'/','_top','/priv','','+1',1)."</b></tt><br />". @@ -207,19 +207,20 @@ sub startpage { &Apache::lonhtmlcommon::store_recent('construct',$formaction,$formaction); if ($env{'environment.remote'} eq 'off') { $env{'request.noversionuri'}=$currdir.'/'; - $r->print(&Apache::loncommon::start_page('Construction Space',undef, + $r->print(&Apache::loncommon::start_page(&mt('Construction Space'),undef, {'body_title' => $pagetitle,})); } else { - $r->print(&Apache::loncommon::start_page('Construction Space',undef, + $r->print(&Apache::loncommon::start_page(&mt('Construction Space'),undef, { 'only_body' => 1,})); $r->print($pagetitle); } my $esc_thisdisfn = &Apache::loncommon::escape_single($thisdisfn); + my $doctitle=&mt('LON-CAPA Construction Space'); my $pubdirscript=(<<ENDPUBDIRSCRIPT); <script type="text/javascript"> -top.document.title = '$esc_thisdisfn/ - LON-CAPA Construction Space'; +top.document.title = '$esc_thisdisfn/ - $doctitle'; // Store directory location for menu bar to find parent.lastknownpriv='/~$uname$esc_thisdisfn/'; @@ -362,12 +363,14 @@ sub dircontrols { move => 'Move current file to', copy => 'Copy current file to', type => 'Type Name Here', - go => 'Go', + go => 'Go', prnt => 'Print contents of directory', crea => 'Create a new directory or LON-CAPA document', acti => 'Actions for current directory', - updc => 'Upload a new document' + updc => 'Upload a new document', + pick => 'Please select an action to perform using the new filename', ); + my $mytype = $lt{'type'}; # avoid conflict with " and ' in javascript $r->print(<<END); <table id="LC_cstr_controls"> <tr> @@ -406,19 +409,29 @@ sub dircontrols { <form name="fileaction" method="post" action="/adm/cfile" target="_parent"> <span style="white-space: nowrap"> <input type="hidden" name="filename" value="/~$uname$thisdisfn/" /> - <select name="action"> - <option value="Select Action">$lt{'sela'}</option> - <option value="newfile">$lt{'nfil'}:</option> - <option value="newhtmlfile">$lt{'nhtm'}:</option> - <option value="newproblemfile">$lt{'nprb'}:</option> - <option value="newpagefile">$lt{'npag'}:</option> - <option value="newsequencefile">$lt{'nseq'}:</option> - <option value="newrightsfile">$lt{'ncrf'}:</option> - <option value="newstyfile">$lt{'nsty'}:</option> - <option value="newtaskfile">$lt{'nbt'}:</option> - <option value="newlibraryfile">$lt{'nlib'}:</option> - <option value="newdir">$lt{'nsub'}:</option> - </select> <input type="text" name="newfilename" value="Type Name Here" onfocus="if (this.value == 'Type Name Here') this.value=''" /> <input type="button" value="Go" onclick="document.fileaction.submit()" /> + <script type="text/javascript"> + function validate_go() { + var selected = document.fileaction.action.selectedIndex; + if (selected == 0) { + alert('$lt{'pick'}'); + } else { + document.fileaction.submit(); + } + } + </script> + <select name="action"> + <option value="none">$lt{'sela'}</option> + <option value="newfile">$lt{'nfil'}:</option> + <option value="newhtmlfile">$lt{'nhtm'}:</option> + <option value="newproblemfile">$lt{'nprb'}:</option> + <option value="newpagefile">$lt{'npag'}:</option> + <option value="newsequencefile">$lt{'nseq'}:</option> + <option value="newrightsfile">$lt{'ncrf'}:</option> + <option value="newstyfile">$lt{'nsty'}:</option> + <option value="newtaskfile">$lt{'nbt'}:</option> + <option value="newlibraryfile">$lt{'nlib'}:</option> + <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>