[LON-CAPA-cvs] cvs: loncom /homework lonhomework.pm /html/adm/help/tex Course_Setting_Parameters.tex /interface londropadd.pm

bowersj2 lon-capa-cvs@mail.lon-capa.org
Wed, 31 Jul 2002 14:56:34 -0000


bowersj2		Wed Jul 31 10:56:34 2002 EDT

  Modified files:              
    /loncom/homework	lonhomework.pm 
    /loncom/html/adm/help/tex	Course_Setting_Parameters.tex 
    /loncom/interface	londropadd.pm 
  Log:
  Added some more help, fixed some tex typos. 
  
  
  
Index: loncom/homework/lonhomework.pm
diff -u loncom/homework/lonhomework.pm:1.83 loncom/homework/lonhomework.pm:1.84
--- loncom/homework/lonhomework.pm:1.83	Mon Jul 29 16:40:34 2002
+++ loncom/homework/lonhomework.pm	Wed Jul 31 10:56:34 2002
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # The LON-CAPA Homework handler
 #
-# $Id: lonhomework.pm,v 1.83 2002/07/29 20:40:34 albertel Exp $
+# $Id: lonhomework.pm,v 1.84 2002/07/31 14:56:34 bowersj2 Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -368,7 +368,8 @@
       if ($symb eq '') {
 	if ($ENV{'request.state'} eq "construct") {
 	} else {
-	  $request->print("Browsing or <a href=\"/adm/ambiguous\">ambiguous</a> reference, submissions ignored<br />");
+          my $help = Apache::loncommon::help_open_topic("Ambiguous_Reference");
+	  $request->print("Browsing or <a href=\"/adm/ambiguous\">ambiguous</a> reference, submissions ignored $help<br />");
 	}
       }
       #if ($Apache::lonhomework::viewgrades eq 'F') {&createmenu('grade',$request); }
Index: loncom/html/adm/help/tex/Course_Setting_Parameters.tex
diff -u loncom/html/adm/help/tex/Course_Setting_Parameters.tex:1.3 loncom/html/adm/help/tex/Course_Setting_Parameters.tex:1.4
--- loncom/html/adm/help/tex/Course_Setting_Parameters.tex:1.3	Tue Jul 30 13:55:21 2002
+++ loncom/html/adm/help/tex/Course_Setting_Parameters.tex	Wed Jul 31 10:56:34 2002
@@ -16,10 +16,10 @@
 
 \begin{enumerate}
 \item Entire course - everything in the top-level sequence. Click on the
-bar "__" in any of the problems under the \textbf{general} heading.
-\item Enclosing map.  Click on the bar "__" in one of the problems in the
+bar "\_\_" in any of the problems under the \textbf{general} heading.
+\item Enclosing map.  Click on the bar "\_\_" in one of the problems in the
 enclosing map under \textbf{for Enclosing Map} heading.
-\item One particular resource. Click on the bar "__" in the particular
+\item One particular resource. Click on the bar "\_\_" in the particular
 problem you want to set parameters for under the \textbf{for Resource} heading.
 \end{enumerate}
 
Index: loncom/interface/londropadd.pm
diff -u loncom/interface/londropadd.pm:1.42 loncom/interface/londropadd.pm:1.43
--- loncom/interface/londropadd.pm:1.42	Thu May  9 11:56:02 2002
+++ loncom/interface/londropadd.pm	Wed Jul 31 10:56:34 2002
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Handler to drop and add students in courses 
 #
-# $Id: londropadd.pm,v 1.42 2002/05/09 15:56:02 matthew Exp $
+# $Id: londropadd.pm,v 1.43 2002/07/31 14:56:34 bowersj2 Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -145,12 +145,21 @@
 sub menu_phase_one {
     my $r=shift;
     my $upfile_select=&Apache::loncommon::upfile_select_html();
+    my $create_classlist_help = 
+	&Apache::loncommon::help_open_topic("Course_Create_Class_List");
+    my $create_csv_help =
+	&Apache::loncommon::help_open_topic("Course_Convert_To_CSV");
     $r->print(<<ENDUPFORM);
 <input type=hidden name=phase value=two>
 <hr>
 <h3>Upload a courselist</h3>
 $upfile_select
 <p><input type=submit name="fileupload" value="Upload Courselist">
+<br />
+How to create a class list from a spreadsheet $create_classlist_help
+<br />
+How to create a CSV file from your spreadsheet $create_csv_help
+
 <hr />
 <h3>Enroll a single student</h3>
 <p><input type=submit name="enroll" value="Enroll Student"></p>