http://atutor.ca/atutor/mantis/view.php?id=3088
authorjoel kronenberg <joel.kronenberg@utoronto.ca>
Wed, 18 Jul 2007 14:43:40 +0000 (14:43 -0000)
committerjoel kronenberg <joel.kronenberg@utoronto.ca>
Wed, 18 Jul 2007 14:43:40 +0000 (14:43 -0000)
docs/documentation/general/browse_courses.php
docs/documentation/general/password_reminder.php
docs/documentation/general/register.php
docs/documentation/instructor/creating_courses.php
docs/include/lib/menu_pages.php
docs/mods/_core/courses/module.php

index 569df39..7b8c7a4 100644 (file)
@@ -2,8 +2,8 @@
 \r
 <h2>Browse Courses</h2>\r
 \r
-<p>The Browse Courses page lists all  courses presently available on the ATutor system. The first column of the Browse Courses screen provides a list of course categories, the second displays a list of courses within a selected category, and the third column shows details about the selected course (or 'All' courses), with a link to enter into the course.</p>  \r
+<p>The Browse Courses page lists all  courses presently available on the ATutor system.</p>  \r
 \r
 <p>If a course is Public, it may be accessed without logging in first. Protected and Private courses require that you be logged in. Private courses are available only to those who have been approved and enrolled in the course.</p>\r
 \r
-<?php require('../common/body_footer.inc.php'); ?>\r
+<?php require('../common/body_footer.inc.php'); ?>
\ No newline at end of file
index c44aaea..97ac220 100644 (file)
@@ -2,6 +2,6 @@
 \r
 <h2>Forgot Your Password</h2>\r
 \r
-<p>If you have forgotten your password, select the 'Forgot your password?' link on the Login screen. Enter the email address associated with your account and use the <code>Submit</code> button.  The login name will be mailed to you, along with a link you must follow to change your password.</p>\r
+<p>If you have forgotten your password, use the <em>Forgot your password?</em> link on the Login screen. The form will email the login name to you, along with a link you must follow to change your password.</p>\r
 \r
-<?php require('../common/body_footer.inc.php'); ?>\r
+<?php require('../common/body_footer.inc.php'); ?>
\ No newline at end of file
index a22e276..60ca2e3 100644 (file)
@@ -2,7 +2,7 @@
 \r
 <h2>Register</h2>\r
 \r
-<p>In order for a user to login to the ATutor system, a unique system account needs to be created.  Use the <em>Register</em> link in the main navigation to access the registration form. Enter all the required fields, and optional data if desired (including the option to keep your email private or not), then use the <code>Submit</code> button. If email-confirmation has been enabled by the system administrator, a message will be sent to the email address registered, containing a link that must be followed to confirm the new account. Once this has been done, the login name or email address, and the password entered during registration can now be used on the <a href="login.php">Login</a> screen.</p>\r
+<p>In order for a user to login to the ATutor system, a unique system account needs to be created.  Use the <em>Register</em> link in the main navigation to access the registration form. If email-confirmation has been enabled by the system administrator, a message will be sent to the email address entered, containing a link that must be followed to confirm the new account. Once this has been done, the login name or email address, and the password entered during registration can now be used on the <a href="login.php">Login</a> screen.</p>\r
 \r
 <p>Note that if a system administrator has specified users to be checked against a Master List of allowed Student IDs and PINs (for example), this information must also be entered during registration.</p>\r
 \r
index 84a4df3..7c50814 100644 (file)
                <dd>Determines who can have access to the course content - any user, only logged in users, or logged in and enrolled users.</dd>\r
 \r
                <dt>Release Date</dt>\r
-               <dd>The date when the course can be accessed by students. Or, available immediately.</dd>\r
+               <dd>An optional date from when the course can be accessed by non-privileged students.</dd>\r
+\r
+               <dt>End Date</dt>\r
+               <dd>An optional date from when the course can no longer be accessed by non-privileged students.</dd>\r
 \r
                <dt>Banner</dt>\r
                <dd>HTML that forms a custom banner or splash screen for the course home page. Appears above the course announcements, if there are any.</dd>\r
 \r
                <dt>Initial Content</dt>\r
-               <dd>Initialise the course content to be either empty, basic place-holder content, or a restored backup from other courses you teach.</dd>\r
+               <dd>Initialise the course content to be either empty, basic place-holder content, or a restored backup from other courses you own.</dd>\r
        </dl>\r
 \r
 <p>Enter the necessary information and use the <code>Save</code> button to proceed into the newly created course. </p>\r
index 7c8e67f..456f7b0 100644 (file)
@@ -2,7 +2,7 @@
 /************************************************************************/
 /* ATutor                                                                                                                              */
 /************************************************************************/
-/* Copyright (c) 2002-2006 by Greg Gay, Joel Kronenberg & Heidi Hazelton*/
+/* Copyright (c) 2002-2007 by Greg Gay, Joel Kronenberg & Heidi Hazelton*/
 /* Adaptive Technology Resource Centre / University of Toronto                 */
 /* http://atutor.ca                                                                                                            */
 /*                                                                                                                                             */
@@ -11,7 +11,6 @@
 /* as published by the Free Software Foundation.                                               */
 /************************************************************************/
 // $Id$
-
 if (!defined('AT_INCLUDE_PATH')) { exit; }
 
 /*
@@ -144,14 +143,17 @@ if (isset($_SESSION['course_id']) && $_SESSION['course_id'] > 0) {
 $_pages['registration.php']['title_var'] = 'register';
 $_pages['registration.php']['parent']    = AT_NAV_PUBLIC;
 $_pages['registration.php']['children']  = isset($_pages['browse.php']['children']) ? $_pages['browse.php']['children'] : array();
+$_pages['registration.php']['guide']     = 'general/?p=register.php';
 
 $_pages['browse.php']['title_var'] = 'browse_courses';
 $_pages['browse.php']['parent']    = AT_NAV_PUBLIC;
 $_pages['browse.php']['children']  = isset($_pages['browse.php']['children']) ? $_pages['browse.php']['children'] : array();
+$_pages['browse.php']['guide']     = 'general/?p=browse_courses.php';
 
 $_pages['login.php']['title_var'] = 'login';
 $_pages['login.php']['parent']    = AT_NAV_PUBLIC;
 $_pages['login.php']['children']  = array_merge(array('password_reminder.php'), isset($_pages['login.php']['children']) ? $_pages['login.php']['children'] : array());
+$_pages['login.php']['guide']     = 'general/?p=login.php';
 
 $_pages['confirm.php']['title_var'] = 'confirm';
 $_pages['confirm.php']['parent']    = AT_NAV_PUBLIC;
index 2ea110f..8863f5c 100644 (file)
@@ -25,6 +25,7 @@ if (admin_authenticate(AT_ADMIN_PRIV_COURSES, TRUE) || admin_authenticate(AT_ADM
 \r
                $this->_pages['admin/create_course.php']['title_var'] = 'create_course';\r
                $this->_pages['admin/create_course.php']['parent']    = 'admin/courses.php';\r
+               $this->_pages['admin/create_course.php']['guide']     = 'admin/?p=creating_courses.php';\r
 \r
                $_pages['admin/modules/default_mods.php']['title_var'] = 'default_modules';\r
                $_pages['admin/modules/default_mods.php']['parent']    = 'admin/courses.php';\r