[LON-CAPA-cvs] cvs: loncom /auth lonroles.pm /html/adm/help/tex Authoring_Intro.tex Course_Coordination_Intro.tex /interface lonhelp.pm

www lon-capa-cvs@mail.lon-capa.org
Fri, 14 Jul 2006 17:05:21 -0000


www		Fri Jul 14 13:05:21 2006 EDT

  Modified files:              
    /loncom/auth	lonroles.pm 
    /loncom/html/adm/help/tex	Authoring_Intro.tex 
                             	Course_Coordination_Intro.tex 
    /loncom/interface	lonhelp.pm 
  Log:
  People do not always see the Roles page first, and or don't expect the general
  access to the help system on that page.
  
  
Index: loncom/auth/lonroles.pm
diff -u loncom/auth/lonroles.pm:1.162 loncom/auth/lonroles.pm:1.163
--- loncom/auth/lonroles.pm:1.162	Thu Jun 29 13:10:39 2006
+++ loncom/auth/lonroles.pm	Fri Jul 14 13:05:02 2006
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # User Roles Screen
 #
-# $Id: lonroles.pm,v 1.162 2006/06/29 17:10:39 albertel Exp $
+# $Id: lonroles.pm,v 1.163 2006/07/14 17:05:02 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -364,10 +364,10 @@
     my $start_page=&Apache::loncommon::start_page('User Roles');
     my $standby=&mt('Role selected. Please stand by.');
     $standby=~s/\n/\\n/g;
-    my $helptag='<table><tr><td>'.&Apache::loncommon::help_open_menu('General Intro','General_Intro',1,undef,undef,undef,undef,&mt("Click here for help")).'</td></td></tr></table>';
+
     $r->print(<<ENDHEADER);
 $start_page
-$helptag<br />
+<br />
 <script>
 $swinfo
 window.focus();
Index: loncom/html/adm/help/tex/Authoring_Intro.tex
diff -u loncom/html/adm/help/tex/Authoring_Intro.tex:1.1 loncom/html/adm/help/tex/Authoring_Intro.tex:1.2
--- loncom/html/adm/help/tex/Authoring_Intro.tex:1.1	Fri Jul 14 12:46:32 2006
+++ loncom/html/adm/help/tex/Authoring_Intro.tex	Fri Jul 14 13:05:13 2006
@@ -3,10 +3,10 @@
 
 NOTE: 
 throughout the application, blue question marks (\ref{Contextual_Help}) are available to provide contextual help about particular components.
+Orange question marks indicate access to an additional help and assistance menu.
 
 \begin{itemize}
 \item \ref{What_Is_LON-CAPA} What is LON-CAPA?
 \item \ref{General_Intro} General Introduction
-\item \ref{Garbage} Garbage
 \item \ref{author.manual.access.hlp} Authoring Manual Online
 \end{itemize}
Index: loncom/html/adm/help/tex/Course_Coordination_Intro.tex
diff -u loncom/html/adm/help/tex/Course_Coordination_Intro.tex:1.1 loncom/html/adm/help/tex/Course_Coordination_Intro.tex:1.2
--- loncom/html/adm/help/tex/Course_Coordination_Intro.tex:1.1	Fri Jul 14 12:46:32 2006
+++ loncom/html/adm/help/tex/Course_Coordination_Intro.tex	Fri Jul 14 13:05:13 2006
@@ -2,7 +2,7 @@
 \textbf{Welcome to the LON-CAPA Help System}
 
 NOTE: 
-throughout the application, blue question marks (\ref{Contextual_Help}) are available to provide contextual help about particular components.
+throughout the application, blue question marks (\ref{Contextual_Help}) are available to provide contextual help about particular components. Orange question marks indicate access to an additional help and assistance menu.
 
 \begin{itemize}
 \item \ref{What_Is_LON-CAPA} What is LON-CAPA?
Index: loncom/interface/lonhelp.pm
diff -u loncom/interface/lonhelp.pm:1.30 loncom/interface/lonhelp.pm:1.31
--- loncom/interface/lonhelp.pm:1.30	Fri Jul 14 12:46:36 2006
+++ loncom/interface/lonhelp.pm	Fri Jul 14 13:05:21 2006
@@ -1,6 +1,6 @@
 # The LearningOnline Network with CAPA
 #
-# $Id: lonhelp.pm,v 1.30 2006/07/14 16:46:36 www Exp $
+# $Id: lonhelp.pm,v 1.31 2006/07/14 17:05:21 www Exp $
 #
 # .tex help system web server handler
 #
@@ -59,6 +59,7 @@
 sub servetext {
     my ($r,$text) = @_;
     my $bugs=&Apache::loncommon::help_open_bug('Documentation','Report a documentation bug');
+    my $morehelp=Apache::loncommon::help_open_menu(undef,undef,1,undef,undef,undef,undef,'Help and Assistance Menu');
     my $start_page=
 	&Apache::loncommon::start_page('LON-CAPA Help',undef,
 				       {'only_body' => 1,});
@@ -76,7 +77,6 @@
 
     if (&Apache::lonnavmaps::advancedUser()) {
 	my $search=&mt('Search LON-CAPA help');
-	my $about=&mt('About LON-CAPA help and More Help');
         my $query=&mt('Search');
 	my $uri = $r->uri;
 	$r->print(<<FOOTER);
@@ -84,8 +84,8 @@
 $search: <input type="text" name="searchterm" size="40" /><input type="submit" value="$query" />
 </form>
 <br />
-<a href="/adm/help/abouthelp.html">$about</a>
 $bugs
+$morehelp
 FOOTER
  
     }