Index: openacs-4/packages/dotlrn-catalog/www/doc/ch01.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch01.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch01.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>Chapter 1. DESIGN</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="index.html" title="dotlrn-Catalog Documentation"><link rel="prev" href="index.html" title="dotlrn-Catalog Documentation"><link rel="next" href="ch01s01.html" title="1. Data Model:"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. DESIGN</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="ch01s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e4"></a>Chapter 1. DESIGN</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch01s01.html">1. Data Model:</a></span></dt><dt><span class="section"><a href="ch01s02.html">2. Content Folder</a></span></dt><dt><span class="section"><a href="ch01s03.html">3. Roles</a></span></dt><dt><span class="section"><a href="ch01s04.html">4. Relations</a></span></dt><dt><span class="section"><a href="ch01s05.html">5. Privileges</a></span></dt><dt><span class="section"><a href="ch01s06.html">6. Category Tree</a></span></dt></dl></div><p>The dotLRN-Catalog package make use of various packages like acs-content-repository, categories, assessment dotLRN. It makes use of acs-content-repositoy API to create the data-table and store the data in the database. It is designed to provide proffesors a way to create courses that can have different versions (revisions) and than can be associated to dotLRN classes and communities, categorized in different categories, and also associate one assessment that will provide a way to the users to register to the system, enroll to different dotlrn classes, make member of communities, etc.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="ch01s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">dotlrn-Catalog Documentation </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 1. Data Model:</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch01s01.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch01s01.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch01s01.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>1. Data Model:</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch01.html" title="Chapter 1. DESIGN"><link rel="prev" href="ch01.html" title="Chapter 1. DESIGN"><link rel="next" href="ch01s02.html" title="2. Content Folder"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1. Data Model:</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01.html">Prev</a> </td><th width="60%" align="center">Chapter 1. DESIGN</th><td width="20%" align="right"> <a accesskey="n" href="ch01s02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e9"></a>1. Data Model:</h2></div></div></div><p>The basic table that has all the information about dotlrn-catalog courses is:</p><div class="screenshot"><div class="mediaobject"><img src="resources/dcat_table.JPG"></div></div><p>I</p><p>Indexes: "dotlrn_catalog_pkey" primary key, btree (course_id) Foreign-key constraints: "$1" FOREIGN KEY (course_id) REFERENCES cr_revisions(revision_id)</p><p>The new content_type and attribute table are created with the after-install apm-callback-proc as follows:</p><p></p><p>content::type::new -content_type "dotlrn_catalog" \ -pretty_name "DotLRN Catalog" \ -pretty_plural "DotLRN Catalog" \ -table_name "dotlrn_catalog" \ -id_column "course_id"</p><p># now set up the attributes that by default we need for the course content::type::attribute::new \ -content_type "dotlrn_catalog" \ -attribute_name "course_key" \ -datatype "string" \ -pretty_name "Course Key" \ -pretty_plural "Course Key" \ -sort_order 1 \ -column_spec "varchar(50)"</p><p>content::type::attribute::new \ -content_type "dotlrn_catalog" \ -attribute_name "course_name" \ -datatype "string" \ -pretty_name "Course Name" \ -sort_order 2 \ -column_spec "varchar(200)"</p><p>content::type::attribute::new \ -content_type "dotlrn_catalog" \ -attribute_name "course_info" \ -datatype "text" \ -pretty_name "Course Information" \ -sort_order 3 \ -column_spec "text"</p><p>content::type::attribute::new \ -content_type "dotlrn_catalog" \ -attribute_name "assessment_id" \ -datatype "integer" \ -pretty_name "Assessment ID" \ -sort_order 4 \ -column_spec "integer"</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 1. DESIGN </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 2. Content Folder</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch01s02.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch01s02.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch01s02.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>2. Content Folder</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch01.html" title="Chapter 1. DESIGN"><link rel="prev" href="ch01s01.html" title="1. Data Model:"><link rel="next" href="ch01s03.html" title="3. Roles"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2. Content Folder</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s01.html">Prev</a> </td><th width="60%" align="center">Chapter 1. DESIGN</th><td width="20%" align="right"> <a accesskey="n" href="ch01s03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e36"></a>2. Content Folder</h2></div></div></div><p>To store the the courses in the Conten Repository, a content-folder with name and label "DotLRN Catalog" was created. Also the previously created content_type is registered to the folder, by calling to the same after-install apm-callback-proc as follows:</p><p>set folder_id [content::folder::new -name "DotLRN Catalog" -label "DotLRN Catalog"] content::folder::register_content_type -folder_id $folder_id -content_type "dotlrn_catalog"</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s01.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1. Data Model: </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3. Roles</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch01s03.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch01s03.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch01s03.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>3. Roles</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch01.html" title="Chapter 1. DESIGN"><link rel="prev" href="ch01s02.html" title="2. Content Folder"><link rel="next" href="ch01s04.html" title="4. Relations"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3. Roles</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s02.html">Prev</a> </td><th width="60%" align="center">Chapter 1. DESIGN</th><td width="20%" align="right"> <a accesskey="n" href="ch01s04.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e43"></a>3. Roles</h2></div></div></div><p>Three new roles were created to use them when createing the relations. The first one is for the dotlrn-catalog course and it's called d_catalog_role, the second one is for the dotlrn class and it's called dotlrn-class_role and the last one is for the dotlrn communities and it's called dotlrn_com_role. This roles are the first thing that the package create on installation and their creation code is:</p><div class="itemizedlist"><ul type="disc"><li><p>Oracle:</p><p>begin acs_rel_type.create_role('d_catalog_role', 'DotLRN Course Catalog Role', 'DotLRN Course Catalog Role'); acs_rel_type.create_role('dotlrn_class_role', 'dotLRN Class Role', 'dotLRN Class Role'); acs_rel_type.create_role('dotlrn_com_role', 'dotLRN Community Role', 'dotLRN Community Role'); commit; end; / show errors</p></li><li><p>Postgres:</p><p>create function inline_0 ( ) returns integer as ' begin PERFORM acs_rel_type__create_role(''d_catalog_role'', ''DotLRN Catalog Role'', ''DotLRN Catalog Role''); PERFORM acs_rel_type__create_role(''dotlrn_class_role'', ''dotLRN Class Role'', ''dotLRN Class Role''); PERFORM acs_rel_type__create_role(''dotlrn_com_role'', ''dotLRN Community Role'', ''dotLRN Community Role''); return 0; end;' language 'plpgsql'; select inline_0 ( ); drop function inline_0 ( );</p></li></ul></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s02.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2. Content Folder </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Relations</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch01s04.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch01s04.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch01s04.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>4. Relations</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch01.html" title="Chapter 1. DESIGN"><link rel="prev" href="ch01s03.html" title="3. Roles"><link rel="next" href="ch01s05.html" title="5. Privileges"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4. Relations</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s03.html">Prev</a> </td><th width="60%" align="center">Chapter 1. DESIGN</th><td width="20%" align="right"> <a accesskey="n" href="ch01s05.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e59"></a>4. Relations</h2></div></div></div><p>Two new relations were created to associate dotlrn classes and communities to dotlrn-catalog courses. On associates the dotlrn_catalog type with dotlrn_class_instance type for dotlrn classes, and the other one associates the dotlrn_catalog type with dotlrn_club for the communities. Here is were the previous created roles take place:</p><p># To associate one course to dotlrn class rel_types::new -role_one d_catalog_role -role_two dotlrn_class_role dotlrn_catalog_class_rel \ "DotLRN Catalog Class" "DotLRN Catalog Class" dotlrn_catalog 0 1 dotlrn_class_instance 0 1</p><p># To associate one course to dotrln community rel_types::new -role_one d_catalog_role -role_two dotlrn_com_role dotlrn_catalog_dotcom_rel \ "DotLRN Catalog Community" "DotLRN Catalog Community" dotlrn_catalog 0 1 dotlrn_club 0 1</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s03.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s05.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">3. Roles </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 5. Privileges</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch01s05.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch01s05.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch01s05.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>5. Privileges</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch01.html" title="Chapter 1. DESIGN"><link rel="prev" href="ch01s04.html" title="4. Relations"><link rel="next" href="ch01s06.html" title="6. Category Tree"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">5. Privileges</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s04.html">Prev</a> </td><th width="60%" align="center">Chapter 1. DESIGN</th><td width="20%" align="right"> <a accesskey="n" href="ch01s06.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e68"></a>5. Privileges</h2></div></div></div><p>Two privileges are managed in this package at differents levels, one is the privilige that a user has over dotlr-catalog package (admin, create, none), and the other one the privilege that the user has over one dotlrn-catalog course (admin,none). Depending of what privilege the users has, acces to some pages and the display of information will be different. For example if you you have admin or create privilege over dotlrn-catalog package then you can acces to every page under the "dotlrn-catalog/dt-catalog/" url, if you are admin all courses will be shown there but if you only have create privilege the only your courses will be show. When you create one course then the admin privilege will be granted to you over that course (item_id). There are two ways to grant permission to other users at the same two levels described before. The admin of dotlrn-catalog package can grant/revoke other users the create privilege over the package, and, any user can grant admin privilege over one of his courses to any other user in the system.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s04.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch01s06.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4. Relations </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 6. Category Tree</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch01s06.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch01s06.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch01s06.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>6. Category Tree</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch01.html" title="Chapter 1. DESIGN"><link rel="prev" href="ch01s05.html" title="5. Privileges"><link rel="next" href="ch02.html" title="Chapter 2. USERS MANUAL"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">6. Category Tree</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s05.html">Prev</a> </td><th width="60%" align="center">Chapter 1. DESIGN</th><td width="20%" align="right"> <a accesskey="n" href="ch02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e73"></a>6. Category Tree</h2></div></div></div><p>The package installation also mounts an instance of itself under the dotlrn-catalog url, here another amp-callback-proc is called (after-mount) to create the category tree that will allow to categorize each course in different ways. The category tree is created as follows:</p><p># To categorize courses set tree_id [category_tree::add -name "dotlrn-course-catalog"] category_tree::map -tree_id $tree_id -object_id $package_id -assign_single_p "t"</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s05.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch01.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">5. Privileges </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 2. USERS MANUAL</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>Chapter 2. USERS MANUAL</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="index.html" title="dotlrn-Catalog Documentation"><link rel="prev" href="ch01s06.html" title="6. Category Tree"><link rel="next" href="ch02s01.html" title="1. Manage Category Tree"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 2. USERS MANUAL</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch01s06.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="ch02s01.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e80"></a>Chapter 2. USERS MANUAL</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch02s01.html">1. Manage Category Tree</a></span></dt><dt><span class="section"><a href="ch02s02.html">2. Create New Course or New Course Version</a></span></dt><dt><span class="section"><a href="ch02s03.html">3. Associate to dotLRN class or community</a></span></dt><dt><span class="section"><a href="ch02s04.html">4. Delete one course</a></span></dt><dt><span class="section"><a href="ch02s05.html">5. Changing between Course Versions</a></span></dt><dt><span class="section"><a href="ch02s06.html">6. Grant/Revoke Permissions</a></span></dt><dt><span class="section"><a href="ch02s07.html">7. Watch Course Details (Information)</a></span></dt><dt><span class="section"><a href="ch02s08.html">8. Simple Users</a></span></dt></dl></div><p>Here are some simple statments to interact with the dotlrn-catalog package. For sections 2.1 to 2.6 the user requires to have create or admin privileges under the dotlrn-catalog, package. If you can see the Admin link in the top right corner of the page then you have privileges on the dotlrn-package. If you can't see it then you may be interested in Simple Users Section</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch01s06.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="ch02s01.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">6. Category Tree </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 1. Manage Category Tree</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02s01.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02s01.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02s01.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>1. Manage Category Tree</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="prev" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="next" href="ch02s02.html" title="2. Create New Course or New Course Version"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">1. Manage Category Tree</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02.html">Prev</a> </td><th width="60%" align="center">Chapter 2. USERS MANUAL</th><td width="20%" align="right"> <a accesskey="n" href="ch02s02.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e85"></a>1. Manage Category Tree</h2></div></div></div><p>Once you click to admin link then you will be redirected to your course list page, where if you are dotlrn-catalog admin or site-wide-admin then the link Manage Category Tree will appear:</p><div class="screenshot"><div class="mediaobject"><img src="resources/cat1.JPG"></div></div><p>Once you click un the link you will redirect to a page were you can add/remove categories and subcategories to the already created tree (dotlrn_catalog_tree).</p><div class="screenshot"><div class="mediaobject"><img src="resources/cat2.JPG"></div></div><div class="screenshot"><div class="mediaobject"><img src="resources/cat3.JPG"></div></div><div class="screenshot"><div class="mediaobject"><img src="resources/cat4.JPG"></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 2. USERS MANUAL </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 2. Create New Course or New Course Version</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02s02.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02s02.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02s02.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>2. Create New Course or New Course Version</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="prev" href="ch02s01.html" title="1. Manage Category Tree"><link rel="next" href="ch02s03.html" title="3. Associate to dotLRN class or community"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">2. Create New Course or New Course Version</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s01.html">Prev</a> </td><th width="60%" align="center">Chapter 2. USERS MANUAL</th><td width="20%" align="right"> <a accesskey="n" href="ch02s03.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e109"></a>2. Create New Course or New Course Version</h2></div></div></div><p>To create a new course click on the New Course link and you will be redirect to a page were a form to create a new course is presented:</p><p></p><div class="itemizedlist"><ul type="disc"><li><p>The Course Key field is a unique identifier that will identify the course. When creating a new course revision then this validation will not be checked.</p></li><li><p>The Course Name is the name of the course.</p></li><li><p>The Course Information is for describe the course, html is fine here.</p></li><li><p>The Assessment ID select box is to associate the assessment that the users will have to answer (Enroll button) to perform an specific action. Here only the assessment that the user has created or has received permissions on will be shown. If no assesment is associated then no user can enroll to one course.</p></li><li><p>The Categories select box is to select to wich category the course will be shown in the index page. To create a new course version click on the icon on the left of Course Key information and change the fields you want.</p></li></ul></div><div class="screenshot"><div class="mediaobject"><img src="resources/new1.JPG"></div></div><p> To create a new course version click on the icon on the left of Course Key information and change the fields you want.</p><div class="screenshot"><div class="mediaobject"><img src="resources/new2.JPG"></div></div><p>When creating a new course version the new information will be shown in all the site, you can change between all version.</p><div class="screenshot"><div class="mediaobject"><img src="resources/new3.JPG"></div></div><p>Also you can categorize your course latter if you didn't categorize it in the first place by making click in the course name ( redierects you to Course description) and then by making click on the Categorize button.</p><div class="screenshot"><div class="mediaobject"><img src="resources/buttons.JPG"></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s01.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s03.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">1. Manage Category Tree </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 3. Associate to dotLRN class or community</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02s03.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02s03.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02s03.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>3. Associate to dotLRN class or community</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="prev" href="ch02s02.html" title="2. Create New Course or New Course Version"><link rel="next" href="ch02s04.html" title="4. Delete one course"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">3. Associate to dotLRN class or community</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s02.html">Prev</a> </td><th width="60%" align="center">Chapter 2. USERS MANUAL</th><td width="20%" align="right"> <a accesskey="n" href="ch02s04.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e154"></a>3. Associate to dotLRN class or community</h2></div></div></div><p>Each course can be associted to one or various dotlrn classes or communities. These associations will be displayed in the course description page to give the information to the user about the classess or communities that he/she will become a member of. You can associte one course by making click in the associte link in Your Course List or in the course description page.</p><div class="screenshot"><div class="mediaobject"><img src="resources/assoc1.JPG"></div></div><div class="screenshot"><div class="mediaobject"><img src="resources/assoc2.JPG"></div></div><p>To associate classes or communities to the course select check boxes to associate one or various at the same time. Associate classes and communities individually.</p><div class="screenshot"><div class="mediaobject"><img src="resources/assoc3.JPG"></div></div><p>If you already have associations to dotLRN then a watch link will appear.</p><div class="screenshot"><div class="mediaobject"><img src="resources/assoc4.JPG"></div></div><div class="screenshot"><div class="mediaobject"><img src="resources/assoc5.JPG"></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s02.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s04.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">2. Create New Course or New Course Version </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 4. Delete one course</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02s04.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02s04.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02s04.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>4. Delete one course</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="prev" href="ch02s03.html" title="3. Associate to dotLRN class or community"><link rel="next" href="ch02s05.html" title="5. Changing between Course Versions"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4. Delete one course</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s03.html">Prev</a> </td><th width="60%" align="center">Chapter 2. USERS MANUAL</th><td width="20%" align="right"> <a accesskey="n" href="ch02s05.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e184"></a>4. Delete one course</h2></div></div></div><p>To delete one course you can click in trash icon on the right if you are in your course list or the delete button if you are in the Course Description page:</p><div class="screenshot"><div class="mediaobject"><img src="resources/assoc4.JPG"></div></div><p>You will be redirected to a Delete Confirmation page were some information of the course (number of versions and associations) will be displayed and two buttons (OK, Cancel). If you OK then the course will be deleted including all associations and versions.</p><div class="screenshot"><div class="mediaobject"><img src="resources/del1.JPG"></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s03.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s05.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">3. Associate to dotLRN class or community </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 5. Changing between Course Versions</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02s05.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02s05.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02s05.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>5. Changing between Course Versions</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="prev" href="ch02s04.html" title="4. Delete one course"><link rel="next" href="ch02s06.html" title="6. Grant/Revoke Permissions"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">5. Changing between Course Versions</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s04.html">Prev</a> </td><th width="60%" align="center">Chapter 2. USERS MANUAL</th><td width="20%" align="right"> <a accesskey="n" href="ch02s06.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e200"></a>5. Changing between Course Versions</h2></div></div></div><p>To change between course versions you can click on the Course Key link on each course. You will be redirected to a page were all the versions of one course are listed with some information. The "Live" image indicates that this is the version that is shown in all the pages of dotlrn-catalog. The "Go live" button makes another revision of the list "live".</p><div class="screenshot"><div class="mediaobject"><img src="resources/rev1.JPG"></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s04.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s06.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">4. Delete one course </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 6. Grant/Revoke Permissions</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02s06.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02s06.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02s06.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>6. Grant/Revoke Permissions</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="prev" href="ch02s05.html" title="5. Changing between Course Versions"><link rel="next" href="ch02s07.html" title="7. Watch Course Details (Information)"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">6. Grant/Revoke Permissions</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s05.html">Prev</a> </td><th width="60%" align="center">Chapter 2. USERS MANUAL</th><td width="20%" align="right"> <a accesskey="n" href="ch02s07.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e209"></a>6. Grant/Revoke Permissions</h2></div></div></div><p>One user can have two privileges on dotlrn-catalog package one at package level (Admin, Create, None) and the other one at course level (Admin, None). The users that holds the "Create" privilege on dotlrn-catalog package can create courses, revisions, delete, associate on his own courses or the courses that he has recieved "admin" privilege. The user that creates once course has admin privilege on that course and can grant the same privilege over that course to other users. The users that does not hold any privilege at all, then can only see what courses are available and can try to enroll to them.</p><div class="orderedlist"><ol type="1"><li><p>Grant/Revoke Permissions over dotlrn-catalog package</p><p>Only the users that have admin privilege on dotlrn-catalog package can will see the "Grant Permission link" and can grant Create privilege to other users on the system. Giving Create privilege to other users allows him to create, edit, delete courses in dotlrn-catalog package. You will be redirected to a page were all the users that have create privile over dotrln-catalo package will appear. And a search form to search for users to grant/revoke privileges.</p><div class="screenshot"><div class="mediaobject"><img src="resources/grant1.JPG"></div></div><div class="screenshot"><div class="mediaobject"><img src="resources/grant2.JPG"></div></div></li><li><p>Grant/Revoke Permissions over one course</p><p>You can grant your admin privilege on one course by making click on the Manage permission link on the permission column on your course list or by making click on the Manage Permission button on one course details page. Giving the admin privilege to a users allows he/she make all the things you can do with your course, you can also revoke his/her permission in the same way.</p><div class="screenshot"><div class="mediaobject"><img src="resources/assoc4.JPG"></div></div><div class="screenshot"><div class="mediaobject"><img src="resources/grant3.JPG"></div></div></li></ol></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s05.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s07.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">5. Changing between Course Versions </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 7. Watch Course Details (Information)</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02s07.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02s07.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02s07.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>7. Watch Course Details (Information)</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="prev" href="ch02s06.html" title="6. Grant/Revoke Permissions"><link rel="next" href="ch02s08.html" title="8. Simple Users"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">7. Watch Course Details (Information)</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a> </td><th width="60%" align="center">Chapter 2. USERS MANUAL</th><td width="20%" align="right"> <a accesskey="n" href="ch02s08.html">Next</a></td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e241"></a>7. Watch Course Details (Information)</h2></div></div></div><p>You can watch all the course information at the Course Description page by making click on the course name:</p><div class="screenshot"><div class="mediaobject"><img src="resources/assoc4.JPG"></div></div><div class="screenshot"><div class="mediaobject"><img src="resources/user1.JPG"></div></div><p>The buttons bar will only appear if you are inside dt-admin, if you come form index page then the enroll button will appear if one assessment is associated to the course:</p><div class="screenshot"><div class="mediaobject"><img src="resources/user3.JPG"></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s06.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch02s08.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">6. Grant/Revoke Permissions </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 8. Simple Users</td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/ch02s08.html =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/ch02s08.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/ch02s08.html 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,3 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> + <title>8. Simple Users</title><link rel="stylesheet" href="html.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.67.0"><link rel="start" href="index.html" title="dotlrn-Catalog Documentation"><link rel="up" href="ch02.html" title="Chapter 2. USERS MANUAL"><link rel="prev" href="ch02s07.html" title="7. Watch Course Details (Information)"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">8. Simple Users</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a> </td><th width="60%" align="center">Chapter 2. USERS MANUAL</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e262"></a>8. Simple Users</h2></div></div></div><p>Will only see the available courses and can watch information about each course by making click on the course name at index page. If one assessment is associated to the course then they will be able to answer it and be part of one of the courses and communities also related to dotlrn-catalog Course:</p><div class="screenshot"><div class="mediaobject"><img src="resources/user.JPG"></div></div><div class="screenshot"><div class="mediaobject"><img src="resources/user3.JPG"></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch02s07.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">7. Watch Course Details (Information) </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html> \ No newline at end of file Index: openacs-4/packages/dotlrn-catalog/www/doc/html.css =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/html.css,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn-catalog/www/doc/html.css 5 Mar 2005 23:02:43 -0000 1.1 @@ -0,0 +1,27 @@ +body { + background: #FFFFFF; +} + +h1, h2, h3, h4, h5 { + color: #800000; + font-family: sans-serif; +} + +span.term { + font-weight: bold; +} + +div.sidebar { + background: #F0F0F0; + border: 1px solid gray; + padding: 5px; + margin: 20px; +} + +pre.programlisting { + background: #F0F0F0; + border: 1px solid gray; + padding: 2px; + font-size: 10pt; + white-space: pre; +} Index: openacs-4/packages/dotlrn-catalog/www/doc/images/draft.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/draft.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/1.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/1.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/10.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/10.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/11.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/11.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/12.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/12.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/13.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/13.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/14.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/14.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/15.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/15.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/2.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/2.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/3.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/3.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/4.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/4.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/5.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/5.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/6.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/6.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/7.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/7.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/8.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/8.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/9.png =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/images/callouts/9.png,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc1.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc1.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc2.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc2.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc3.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc3.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc4.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc4.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc5.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/assoc5.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/buttons.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/buttons.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/cat1.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/cat1.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/cat2.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/cat2.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/cat3.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/cat3.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/cat4.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/cat4.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/dcat_table.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/dcat_table.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/del1.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/del1.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/grant1.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/grant1.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/grant2.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/grant2.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/grant3.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/grant3.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/new1.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/new1.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/new2.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/new2.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/new3.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/new3.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/rev1.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/rev1.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/user.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/user.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/user1.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/user1.JPG,v diff -u Binary files differ Index: openacs-4/packages/dotlrn-catalog/www/doc/resources/user3.JPG =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-catalog/www/doc/resources/user3.JPG,v diff -u Binary files differ