[LON-CAPA-cvs] cvs: loncom /interface loncreateuser.pm lonsearchcat.pm lonwhatsnew.pm
bisitz
bisitz@source.lon-capa.org
Tue, 30 Jun 2009 14:02:34 -0000
bisitz Tue Jun 30 14:02:34 2009 EDT
Modified files:
/loncom/interface loncreateuser.pm lonsearchcat.pm lonwhatsnew.pm
Log:
Removed deprecated attributes from <hr> (noshade, width, align)
and XHTML conform tag closure
Index: loncom/interface/loncreateuser.pm
diff -u loncom/interface/loncreateuser.pm:1.295 loncom/interface/loncreateuser.pm:1.296
--- loncom/interface/loncreateuser.pm:1.295 Mon May 18 16:08:07 2009
+++ loncom/interface/loncreateuser.pm Tue Jun 30 14:02:33 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Create a user
#
-# $Id: loncreateuser.pm,v 1.295 2009/05/18 16:08:07 raeburn Exp $
+# $Id: loncreateuser.pm,v 1.296 2009/06/30 14:02:33 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -4965,7 +4965,7 @@
&mt('[_1]Note:[_2] Only changes made from servers running LON-CAPA 2.6.99.0 or later are displayed.');
if ($version) {
$output .= ' '.&mt('This server is version [_3].','<b>','</b>',$version); }
- $output .= '</span><hr noshade><br />';
+ $output .= '</span><hr /><br />';
return $output;
}
Index: loncom/interface/lonsearchcat.pm
diff -u loncom/interface/lonsearchcat.pm:1.307 loncom/interface/lonsearchcat.pm:1.308
--- loncom/interface/lonsearchcat.pm:1.307 Fri May 15 14:48:42 2009
+++ loncom/interface/lonsearchcat.pm Tue Jun 30 14:02:33 2009
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Search Catalog
#
-# $Id: lonsearchcat.pm,v 1.307 2009/05/15 14:48:42 bisitz Exp $
+# $Id: lonsearchcat.pm,v 1.308 2009/06/30 14:02:33 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -3474,7 +3474,7 @@
if (exists($values{'shortabstract'}) && $values{'shortabstract'} ne '') {
$result .= '<p>'.$values{'shortabstract'}.'</p>';
}
- $result .= '<hr align="left" width="200" noshade />'."\n";
+ $result .= '<hr />'."\n";
return $result;
}
@@ -3526,7 +3526,7 @@
$values{'copyrighttag'}<br />
$values{'extrashow'}
</p>
-<hr align='left' width='200' noshade />
+<hr />
END
return $result;
}
@@ -3636,7 +3636,7 @@
}
$result .= "</dl>\n";
$result .= $values{'extrashow'};
- $result .= '<hr align="left" width="200" noshade />'."\n";
+ $result .= '<hr />'."\n";
return $result;
}
@@ -3710,7 +3710,7 @@
$xml
</pre>
$values{'extrashow'}
-<hr align='left' width='200' noshade />
+<hr />
END
return $result;
}
Index: loncom/interface/lonwhatsnew.pm
diff -u loncom/interface/lonwhatsnew.pm:1.93 loncom/interface/lonwhatsnew.pm:1.94
--- loncom/interface/lonwhatsnew.pm:1.93 Wed May 6 19:25:56 2009
+++ loncom/interface/lonwhatsnew.pm Tue Jun 30 14:02:33 2009
@@ -1,5 +1,5 @@
#
-# $Id: lonwhatsnew.pm,v 1.93 2009/05/06 19:25:56 droeschl Exp $
+# $Id: lonwhatsnew.pm,v 1.94 2009/06/30 14:02:33 bisitz Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -383,7 +383,7 @@
}
if ($result) {
- $r->print($result.'<hr width="100%" />');
+ $r->print($result.'<hr />');
}
$r->rflush();