[LON-CAPA-cvs] cvs: loncom /interface lontemplate.pm
harmsja
harmsja@source.lon-capa.org
Wed, 17 Dec 2008 14:56:51 -0000
harmsja Wed Dec 17 14:56:51 2008 EDT
Modified files:
/loncom/interface lontemplate.pm
Log:
renamed new styles to LC_**
Index: loncom/interface/lontemplate.pm
diff -u loncom/interface/lontemplate.pm:1.12 loncom/interface/lontemplate.pm:1.13
--- loncom/interface/lontemplate.pm:1.12 Wed Dec 17 13:00:36 2008
+++ loncom/interface/lontemplate.pm Wed Dec 17 14:56:51 2008
@@ -1,7 +1,7 @@
# The LearningOnline Network
# "Template" Functions to generate html output
#
-# $Id: lontemplate.pm,v 1.12 2008/12/17 13:00:36 ehlerst Exp $
+# $Id: lontemplate.pm,v 1.13 2008/12/17 14:56:51 harmsja Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -46,7 +46,7 @@
sub start_columnSection{
my ($r) = @_;
- $r->print('<div class="columnSection">');
+ $r->print('<div class="LC_columnSection">');
}
sub end_columnSection{
@@ -94,7 +94,7 @@
if($allowed){
$r->print('<div class="ContentBoxTemplate">');
}else{
- $r->print('<div class="ContentBox">');
+ $r->print('<div class="LC_ContentBox">');
}
}
@@ -117,9 +117,9 @@
if($allowed){
$r->print('<div class="ContentBoxSpecialTemplate">');
}else{
- $r->print('<div class="ContentBoxSpecial">');
+ $r->print('<div class="LC_ContentBoxSpecial">');
}
- $r->print('<h4 class="hcell">'.$topic.'</h4>');
+ $r->print('<h4 class="LC_hcell">'.$topic.'</h4>');
$r->print('<blockquote>'.$content.'</blockquote>');
$r->print('</div>');
}