[LON-CAPA-cvs] cvs: loncom /interface loncommon.pm loncoursegroups.pm lonmsgdisplay.pm lonparmset.pm lonpopulate.pm lonremote.pm lonsupportreq.pm lonuserutils.pm
bisitz
bisitz@source.lon-capa.org
Fri, 05 Jun 2009 12:49:51 -0000
This is a MIME encoded message
--bisitz1244206191
Content-Type: text/plain
bisitz Fri Jun 5 12:49:51 2009 EDT
Modified files:
/loncom/interface loncommon.pm loncoursegroups.pm lonmsgdisplay.pm
lonparmset.pm lonpopulate.pm lonremote.pm
lonsupportreq.pm lonuserutils.pm
Log:
Replaced hardcoded styles for fieldset legends by CSS:
- legends are nearly always wanted to be in bold:
Added style and removed now unnecessary <b> tags
- Padding wanted for legend texts:
Added style and removed now unnecessary
--bisitz1244206191
Content-Type: text/plain
Content-Disposition: attachment; filename="bisitz-20090605124951.txt"
Index: loncom/interface/loncommon.pm
diff -u loncom/interface/loncommon.pm:1.837 loncom/interface/loncommon.pm:1.838
--- loncom/interface/loncommon.pm:1.837 Wed Jun 3 17:13:22 2009
+++ loncom/interface/loncommon.pm Fri Jun 5 12:49:50 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# a pile of common routines
#
-# $Id: loncommon.pm,v 1.837 2009/06/03 17:13:22 bisitz Exp $
+# $Id: loncommon.pm,v 1.838 2009/06/05 12:49:50 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -5190,7 +5190,6 @@
table#LC_helpmenu fieldset legend {
font-size: larger;
- font-weight: bold;
}
table#LC_helpmenu_links {
@@ -5855,6 +5854,11 @@
/* overflow: hidden; */
}
+fieldset > legend {
+ font-weight: bold;
+ padding: 0 5px 0 5px;
+}
+
#LC_nav_bar {
float: left;
margin: 0;
Index: loncom/interface/loncoursegroups.pm
diff -u loncom/interface/loncoursegroups.pm:1.101 loncom/interface/loncoursegroups.pm:1.102
--- loncom/interface/loncoursegroups.pm:1.101 Mon May 11 16:51:27 2009
+++ loncom/interface/loncoursegroups.pm Fri Jun 5 12:49:50 2009
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: loncoursegroups.pm,v 1.101 2009/05/11 16:51:27 bisitz Exp $
+# $Id: loncoursegroups.pm,v 1.102 2009/06/05 12:49:50 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -2066,7 +2066,7 @@
&check_uncheck_buttons($r,$formname,'member',$lt{'addm'});
if (@{$available} > 0 && $granularity eq 'Yes') {
$r->print('<td>
- <fieldset><legend><b>'.$lt{'setf'}.'</b></legend>
+ <fieldset><legend>'.$lt{'setf'}.'</legend>
<span class="LC_nobreak">
<input type="button" value="'.&mt('check all').'"
onclick="javascript:checkAllTools(document.'.$formname.')" />
@@ -2516,7 +2516,7 @@
$r->print('
<td>
<span class="LC_nobreak">
- <fieldset><legend><b>'.$lt{'curf'}.'</b></legend>
+ <fieldset><legend>'.$lt{'curf'}.'</legend>
<input type="button" value="'.&mt('check all').'"
onclick="javascript:checkAllTools(document.'.$formname.')" />
@@ -2674,7 +2674,7 @@
$r->print('
<td '.$colspan.'>
<fieldset>
- <legend><b>'.$title.'</b></legend>
+ <legend>'.$title.'</legend>
<span class="LC_nobreak">
<input type="button" value="'.&mt('check all').'"
onclick="javascript:checkAll(document.'.$formname.'.'.$field.')" />
@@ -2974,7 +2974,7 @@
$r->print('<td>');
}
$r->print(
- '<fieldset><legend><b>'.&mt($$toolprivs{$tool}{$priv}).'</b></legend>'
+ '<fieldset><legend>'.&mt($$toolprivs{$tool}{$priv}).'</legend>'
.'<span class="LC_nobreak">'
.' <input type="button" value="'.&mt('check all').'"'
.' onclick="javascript:checkAll(document.'.$formname.'.userpriv_'.$priv.')" />'
Index: loncom/interface/lonmsgdisplay.pm
diff -u loncom/interface/lonmsgdisplay.pm:1.124 loncom/interface/lonmsgdisplay.pm:1.125
--- loncom/interface/lonmsgdisplay.pm:1.124 Mon May 11 16:51:27 2009
+++ loncom/interface/lonmsgdisplay.pm Fri Jun 5 12:49:50 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Routines for messaging display
#
-# $Id: lonmsgdisplay.pm,v 1.124 2009/05/11 16:51:27 bisitz Exp $
+# $Id: lonmsgdisplay.pm,v 1.125 2009/06/05 12:49:50 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -522,7 +522,10 @@
\%defaultUsers,
1,"selectedusers",1,'email')
) {
- $result .= '<fieldset id="LC_activeusers"><legend><b>'.&mt('Bcc: course members with current access').'</b></legend><form name="activeusers">';
+ $result .= '<fieldset id="LC_activeusers"><legend>'
+ .&mt('Bcc: course members with current access')
+ .'</legend>'
+ .'<form name="activeusers">';
$result .= $tmptext.'</form></fieldset><br />';
if (ref($statushash) eq 'HASH') {
$statushash->{'active'} = 1;
@@ -534,7 +537,10 @@
\%defaultUsers,
1, "selectedusers",0,'email')
) {
- $result .= '<fieldset id="LC_previoususers"><legend><b>'.&mt('Bcc: course members with expired access').'</b></legend><form name="previoususers">';
+ $result .= '<fieldset id="LC_previoususers"><legend>'
+ .&mt('Bcc: course members with expired access')
+ .'</legend>'
+ .'<form name="previoususers">';
$result .= $tmptext.'</form></fieldset><br />';
if (ref($statushash) eq 'HASH') {
$statushash->{'previous'} = 1;
@@ -547,7 +553,10 @@
\%defaultUsers,
1, "selectedusers",0,'email')
) {
- $result .= '<fieldset id="LC_futureusers"><legend><b>'.&mt('Bcc: course members with future access').'</b></legend><form name="previoususers">';
+ $result .= '<fieldset id="LC_futureusers"><legend>'
+ .&mt('Bcc: course members with future access')
+ .'</legend>'
+ .'<form name="previoususers">';
$result .= $tmptext.'</form></fieldset>';
if (ref($statushash) eq 'HASH') {
$statushash->{'future'} = 1;
@@ -622,8 +631,9 @@
if (ref($access_status) eq 'HASH') {
$access_status->{$status} = $$numitems{$status};
}
- $r->print('<fieldset><legend><b>'.$lt{$status}.
- '</b></legend><form name="'.$formname.'">'.
+ $r->print('<fieldset>'.
+ '<legend>'.$lt{$status}.'</legend>'.
+ '<form name="'.$formname.'">'.
'<span class="LC_nobreak">'.
'<input type="button" value="'.&mt('Check All').'" '.
'onclick="javascript:toggleAll('."this.form,'check'".')" />'.
@@ -1684,7 +1694,7 @@
my $bcc = &mt('Bcc:');
my $exmpl = &mt('username:domain,username:domain,...');
my $output = <<"ENDADD";
-<tr><td colspan="3"><fieldset id="LC_additionalrecips"><legend><b>$lt->{'ad'}</b> <tt>($exmpl)</tt>:</legend><table>
+<tr><td colspan="3"><fieldset id="LC_additionalrecips"><legend>$lt->{'ad'} <tt>($exmpl)</tt></legend><table>
<tr><td> </td><td>$lt->{'to'}</td><td><input type="text" size="50" name="additionalrec_to" /></td></tr>
<tr><td> </td><td>$cc</td><td><input type="text" size="50" name="additionalrec_cc" /></td></tr>
<tr><td> </td><td>$bcc</td><td><input type="text" size="50" name="additionalrec_bcc" /></td></tr></table></fieldset></td></tr>
Index: loncom/interface/lonparmset.pm
diff -u loncom/interface/lonparmset.pm:1.454 loncom/interface/lonparmset.pm:1.455
--- loncom/interface/lonparmset.pm:1.454 Thu Jun 4 16:56:27 2009
+++ loncom/interface/lonparmset.pm Fri Jun 5 12:49:50 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Handler to set parameters for assessments
#
-# $Id: lonparmset.pm,v 1.454 2009/06/04 16:56:27 bisitz Exp $
+# $Id: lonparmset.pm,v 1.455 2009/06/05 12:49:50 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1413,7 +1413,7 @@
#part to print out the shortcuts for parmselection
$r->print('<table><tr id="LC_parm_overview_parm_menu_selectors">'
.'<td valign="top">'
- .'<fieldset><legend><b>'.&mt('Parameter Selection').'</b></legend>'
+ .'<fieldset><legend>'.&mt('Parameter Selection').'</legend>'
.'<span class="LC_nobreak">'
.'• <a href="javascript:checkall(true, \'pscat\')">'.&mt('Select All').'</a>'
.'</span>'
@@ -1428,7 +1428,7 @@
.'</fieldset>'
.'</td>'
.'<td colspan="2" valign="top">'
- .'<fieldset><legend><b>'.&mt('Add Selection for...').'</b></legend>'
+ .'<fieldset><legend>'.&mt('Add Selection for...').'</legend>'
.'<span class="LC_nobreak">'
.'• <a href="javascript:checkdates()">'.&mt('Problem Dates').'</a>'
.'</span>'
Index: loncom/interface/lonpopulate.pm
diff -u loncom/interface/lonpopulate.pm:1.62 loncom/interface/lonpopulate.pm:1.63
--- loncom/interface/lonpopulate.pm:1.62 Wed May 6 13:37:56 2009
+++ loncom/interface/lonpopulate.pm Fri Jun 5 12:49:50 2009
@@ -1,5 +1,5 @@
# automated enrollment configuration handler
-# $Id: lonpopulate.pm,v 1.62 2009/05/06 13:37:56 bisitz Exp $
+# $Id: lonpopulate.pm,v 1.63 2009/06/05 12:49:50 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1168,14 +1168,14 @@
if ($autocount > 0) {
$cellcount ++;
$r->print(<<END);
- <td><fieldset><legend> <b>Change auto</b></legend><input type="button" value="check all" onclick="javascript:checkAll(document.studentform.chgauto)" />
+ <td><fieldset><legend>Change auto</legend><input type="button" value="check all" onclick="javascript:checkAll(document.studentform.chgauto)" />
<input type="button" value="uncheck all" onclick="javascript:uncheckAll(document.studentform.chgauto)" /></fieldset></td>
END
}
if ($manualcount > 0) {
$cellcount ++;
$r->print(<<END);
- <td><fieldset><legend> <b>Change manual</b></legend><input type="button" value="check all" onclick="javascript:checkAll(document.studentform.chgmanual)" />
+ <td><fieldset><legend>Change manual</legend><input type="button" value="check all" onclick="javascript:checkAll(document.studentform.chgmanual)" />
<input type="button" value="uncheck all" onclick="javascript:uncheckAll(document.studentform.chgmanual)" /></fieldset></td>
END
}
@@ -1185,7 +1185,7 @@
}
$cellcount ++;
$r->print(<<END);
- <td><fieldset><legend> <b>Lock manual</b></legend><input type="button" value="check all" onclick="javascript:checkAll(document.studentform.lockchg)" />
+ <td><fieldset><legend>Lock manual</legend><input type="button" value="check all" onclick="javascript:checkAll(document.studentform.lockchg)" />
<input type="button" value="uncheck all" onclick="javascript:uncheckAll(document.studentform.lockchg)" /></fieldset></td>
END
}
@@ -1195,7 +1195,7 @@
}
$cellcount ++;
$r->print(<<END);
- <td><fieldset><legend> <b>Unlock manual</b></legend><input type="button" value="check all" onclick="javascript:checkAll(document.studentform.unlockchg)" />
+ <td><fieldset><legend>Unlock manual</legend><input type="button" value="check all" onclick="javascript:checkAll(document.studentform.unlockchg)" />
<input type="button" value="uncheck all" onclick="javascript:uncheckAll(document.studentform.unlockchg)" /></fieldset></td>
END
}
Index: loncom/interface/lonremote.pm
diff -u loncom/interface/lonremote.pm:1.31 loncom/interface/lonremote.pm:1.32
--- loncom/interface/lonremote.pm:1.31 Wed May 27 16:01:05 2009
+++ loncom/interface/lonremote.pm Fri Jun 5 12:49:50 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network
# User Authentication Module
#
-# $Id: lonremote.pm,v 1.31 2009/05/27 16:01:05 bisitz Exp $
+# $Id: lonremote.pm,v 1.32 2009/06/05 12:49:50 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -83,7 +83,7 @@
my $message='<div class="LC_warning"><b>'.&mt('The external menu (Remote Control) has been disabled, and you will be working with the smaller inline menu.').'</b></div>'."\n".
'<p>'.&mt('You may have either closed the Remote Control window, or it was blocked by a pop-up window filter in your browser.').'<br />'."\n".
&mt('To use the Remote Control, disable the filter for this site, and re-launch the Remote Control.').'</p>'."\n".
- '<table><tr><td><fieldset><legend><b>'.&mt('Actions').'</b></legend><table><tr>'."\n".
+ '<table><tr><td><fieldset><legend>'.&mt('Actions').'</legend><table><tr>'."\n".
'<td class="LC_menubuttons_text" align="left">'.
'<a class="LC_menubuttons_link" href="/adm/remote?action=launch"><img alt="Launch Remote Control" src="/res/adm/pages/network-wireless.png" class="LC_noBorder" />'.
&mt('Re-launch Remote Control').'</a></td><td>'.(' 'x3).'</td>'.
Index: loncom/interface/lonsupportreq.pm
diff -u loncom/interface/lonsupportreq.pm:1.52 loncom/interface/lonsupportreq.pm:1.53
--- loncom/interface/lonsupportreq.pm:1.52 Tue Jan 27 15:59:30 2009
+++ loncom/interface/lonsupportreq.pm Fri Jun 5 12:49:50 2009
@@ -1,5 +1,5 @@
#
-# $Id: lonsupportreq.pm,v 1.52 2009/01/27 15:59:30 schafran Exp $
+# $Id: lonsupportreq.pm,v 1.53 2009/06/05 12:49:50 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -801,7 +801,11 @@
$r->print(<<END);
<table width="620" border="0" cellspacing="0" cellpadding="0" height="55"> <tr height="50"> <td width='5'> </td>
<td>
- <fieldset><legend><img src="$location/lonIcons/minilogo.gif" height='20' width='29' valign='bottom' /> <b><font size="+1">LON-CAPA $lt{'headline'}</font></b></legend>
+ <fieldset>
+ <legend>
+ <img src="$location/lonIcons/minilogo.gif" height="20" width="29" valign="bottom" />
+ LON-CAPA $lt{'headline'}
+ </legend>
<table id="LC_helpmenu_links">
<tr>
<td align="center"><span class="LC_nobreak"><img src="$location/help/help.png" border="0" alt="($lt{'login'})" valign="middle" /> <b><a href="/adm/loginproblems.html">$lt{'login'}</a></b> </span></td>
Index: loncom/interface/lonuserutils.pm
diff -u loncom/interface/lonuserutils.pm:1.93 loncom/interface/lonuserutils.pm:1.94
--- loncom/interface/lonuserutils.pm:1.93 Mon May 11 13:07:24 2009
+++ loncom/interface/lonuserutils.pm Fri Jun 5 12:49:50 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Utility functions for managing LON-CAPA user accounts
#
-# $Id: lonuserutils.pm,v 1.93 2009/05/11 13:07:24 bisitz Exp $
+# $Id: lonuserutils.pm,v 1.94 2009/06/05 12:49:50 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -2153,7 +2153,7 @@
END
if ($actionselect) {
$output .= <<"END";
-<div class="LC_left_float"><fieldset><legend><b>$lt{'ac'}</b></legend>
+<div class="LC_left_float"><fieldset><legend>$lt{'ac'}</legend>
$actionselect
<br/><br /><input type="button" value="$lt{'ca'}" onclick="javascript:checkAll(document.$formname.actionlist)" />
<input type="button" value="$lt{'ua'}" onclick="javascript:uncheckAll(document.$formname.actionlist)" /><br /><input type="button" value="$lt{'pr'}" onclick="javascript:verify_action('actionlist')" /></fieldset></div>
@@ -2198,7 +2198,7 @@
}
}
}
- $output .= '<div class="LC_left_float"><fieldset><legend><b>'.$lt{'link'}.'</b></legend>'.
+ $output .= '<div class="LC_left_float"><fieldset><legend>'.$lt{'link'}.'</legend>'.
'<table><tr>';
my @linkdests = ('aboutme');
if ($permission->{'cusr'}) {
--bisitz1244206191--