[LON-CAPA-cvs] cvs: loncom /html/adm/help/tex Option_Response_Matching_Example.tex Resource_Discussion.tex /interface lonparmset.pm lonpreferences.pm
www
lon-capa-cvs@mail.lon-capa.org
Wed, 14 Jan 2004 15:51:08 -0000
www Wed Jan 14 10:51:08 2004 EDT
Modified files:
/loncom/html/adm/help/tex Option_Response_Matching_Example.tex
Resource_Discussion.tex
/loncom/interface lonparmset.pm lonpreferences.pm
Log:
Some contextual help glued in
Index: loncom/html/adm/help/tex/Option_Response_Matching_Example.tex
diff -u loncom/html/adm/help/tex/Option_Response_Matching_Example.tex:1.2 loncom/html/adm/help/tex/Option_Response_Matching_Example.tex:1.3
--- loncom/html/adm/help/tex/Option_Response_Matching_Example.tex:1.2 Thu Jul 18 11:52:27 2002
+++ loncom/html/adm/help/tex/Option_Response_Matching_Example.tex Wed Jan 14 10:51:07 2004
@@ -23,7 +23,7 @@
\item Tchaikovsky
\item Dvorak
\end{itemize}
-The same answers can be used more then once, or not at all, as you see fit.
+The same answers can be used more than once, or not at all, as you see fit.
It is conventional to place such a warning in the \textbf{Text Block} describing
the problem to the students.
Index: loncom/html/adm/help/tex/Resource_Discussion.tex
diff -u loncom/html/adm/help/tex/Resource_Discussion.tex:1.1 loncom/html/adm/help/tex/Resource_Discussion.tex:1.2
--- loncom/html/adm/help/tex/Resource_Discussion.tex:1.1 Wed Aug 20 12:17:40 2003
+++ loncom/html/adm/help/tex/Resource_Discussion.tex Wed Jan 14 10:51:07 2004
@@ -12,5 +12,5 @@
Users use the same mechanisms to post to resources and to send internal
email to resource authors or course administrators, and the user can
-do more then one of these things at the same time with a message simply
+do more than one of these things at the same time with a message simply
by clicking multiple checkboxes.
Index: loncom/interface/lonparmset.pm
diff -u loncom/interface/lonparmset.pm:1.145 loncom/interface/lonparmset.pm:1.146
--- loncom/interface/lonparmset.pm:1.145 Fri Dec 12 10:13:50 2003
+++ loncom/interface/lonparmset.pm Wed Jan 14 10:51:07 2004
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Handler to set parameters for assessments
#
-# $Id: lonparmset.pm,v 1.145 2003/12/12 15:13:50 www Exp $
+# $Id: lonparmset.pm,v 1.146 2004/01/14 15:51:07 www Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -306,6 +306,7 @@
'oi' => "or ID",
'ad' => "at Domain"
);
+ my $assessparmhelp=&Apache::loncommon::help_open_topic("Cascading_Parameters","Assessment Parameters");
$r->print(<<ENDHEAD);
<html>
<head>
@@ -362,6 +363,7 @@
<input type="submit" name="crsenv" value="$lt{'scep'}" />
</form>
<hr />
+$assessparmhelp
<form method="post" action="/adm/helper/parameter.helper" name="helpform">
<h4>$lt{'caphm'}</h4>
<input type="submit" value="$lt{'smcap'}" />
Index: loncom/interface/lonpreferences.pm
diff -u loncom/interface/lonpreferences.pm:1.33 loncom/interface/lonpreferences.pm:1.34
--- loncom/interface/lonpreferences.pm:1.33 Fri Nov 7 20:45:26 2003
+++ loncom/interface/lonpreferences.pm Wed Jan 14 10:51:07 2004
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Preferences
#
-# $Id: lonpreferences.pm,v 1.33 2003/11/08 01:45:26 www Exp $
+# $Id: lonpreferences.pm,v 1.34 2004/01/14 15:51:07 www Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -737,6 +737,11 @@
}
}
} else {
+ my %help=();
+ foreach ('Change_Colors','Change_Password',
+ 'Prefs_Screen_Name_Nickname','Prefs_Forwarding') {
+ $help{$_}=&Apache::loncommon::help_open_topic($_);
+ }
$r->print(<<ENDHEADER);
<html>
<head>
@@ -751,6 +756,7 @@
<form name="client" action="/adm/preferences" method="post">
<input type="hidden" name="action" value="changepass" />
<input type="submit" value="Change password" />
+$help{'Change_Password'}
</form>
ENDPASSWORDFORM
}
@@ -760,12 +766,14 @@
<input type="hidden" name="action" value="changescreenname" />
<input type="submit"
value="Change nickname and anonymous discussion screen name" />
+$help{'Prefs_Screen_Name_Nickname'}
</form>
ENDSCREENNAMEFORM
$r->print(<<ENDMSGFORWARDFORM);
<form name="client" action="/adm/preferences" method="post">
<input type="hidden" name="action" value="changemsgforward" />
<input type="submit" value="Change message forwarding and notification addresses" />
+$help{'Prefs_Forwarding'}
</form>
ENDMSGFORWARDFORM
# The "about me" page
@@ -781,6 +789,7 @@
<form name="client" action="/adm/preferences" method="post">
<input type="hidden" name="action" value="changecolors" />
<input type="submit" value="Change color scheme" />
+$help{'Change_Colors'}
</form>
ENDCOLORFORM