Index: openacs-4/packages/dotlrndoc/www/admin.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/admin.adp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrndoc/www/admin.adp 13 Aug 2002 18:12:03 -0000 1.1 @@ -0,0 +1,19 @@ + + +Admin + +

Static Portlets

+ + +

Other

+ \ No newline at end of file Index: openacs-4/packages/dotlrndoc/www/admin.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/admin.tcl,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrndoc/www/admin.tcl 13 Aug 2002 18:12:03 -0000 1.1 @@ -0,0 +1,11 @@ + +set package_id [ad_conn package_id] + +db_multirow content_portals select_content_portals { + select content_id, pretty_name + from static_portal_content + where package_id= :package_id +} + +set portal_id [dotlrndoc::get_portal_id] +ad_return_template Index: openacs-4/packages/dotlrndoc/www/index.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/index.adp,v diff -u -r1.1 -r1.2 --- openacs-4/packages/dotlrndoc/www/index.adp 14 Oct 2001 21:42:58 -0000 1.1 +++ openacs-4/packages/dotlrndoc/www/index.adp 13 Aug 2002 18:12:03 -0000 1.2 @@ -1,10 +1,4 @@ -<%= [dotlrn_header "dotLRN"] %> + +dotLRN Documentation -

dotLRN

-

- -

- -<%= [dotlrn_footer] %> +@portal_content@ \ No newline at end of file Index: openacs-4/packages/dotlrndoc/www/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/index.tcl,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrndoc/www/index.tcl 13 Aug 2002 18:12:03 -0000 1.1 @@ -0,0 +1,4 @@ + +set portal_content [portal::render [dotlrndoc::get_portal_id]] + +ad_return_template \ No newline at end of file Index: openacs-4/packages/dotlrndoc/www/master.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/master.adp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrndoc/www/master.adp 13 Aug 2002 18:12:03 -0000 1.1 @@ -0,0 +1,2 @@ + + \ No newline at end of file Index: openacs-4/packages/dotlrndoc/www/setup-portal.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/setup-portal.tcl,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrndoc/www/setup-portal.tcl 13 Aug 2002 18:12:03 -0000 1.1 @@ -0,0 +1,19 @@ + +# Create the portal +set portal_package_id [apm_package_id_from_key new-portal] +set news_package_id [apm_package_id_from_key news] +set faq_package_id [apm_package_id_from_key faq] + +db_transaction { + set portal_id [portal::create -name "dotLRN Doc" -context_id $portal_package_id [ad_conn user_id]] + + news_portlet::add_self_to_page -portal_id $portal_id -package_id $news_package_id -param_action overwrite + + faq_portlet::add_self_to_page -portal_id $portal_id -package_id $faq_package_id -param_action overwrite + + set content_id [static_portal_content::new -package_id [ad_conn package_id] -content "foo" -pretty_name "dotLRN Documentation"] + + static_portal_content::add_to_portal -portal_id $portal_id -package_id [ad_conn package_id] -content_id $content_id +} + +doc_body_append "done!" Index: openacs-4/packages/dotlrndoc/www/style.css =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/style.css,v diff -u -r1.1 -r1.2 --- openacs-4/packages/dotlrndoc/www/style.css 14 Oct 2001 21:42:58 -0000 1.1 +++ openacs-4/packages/dotlrndoc/www/style.css 13 Aug 2002 18:12:03 -0000 1.2 @@ -1,26 +1,13 @@ p { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; } - body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; } - h1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 20pt; } - h2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 18pt; } - h3 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14pt; } - h4 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12pt; } - a { color: #CC6600; text-decoration: none; } - a:visited { color: #CC6600; } - a:active { color: #CC6600; } - a:hover { color: #CC6600; text-decoration: underline; } - a.link { color: #CC6600; } - - a.navigation { color: #000000; text-decoration: none; font-weight: bold; } - a:hover.navigation { color: #000000; text-decoration: none; font-weight: bold; background: #CC6600; } - a:visited.navigation { color: #000000; text-decoration: none; font-weight: bold; } - a:active.navigation { color: #000000; text-decoration: none; font-weight: bold; } - - a.navigationnow { color: #FFFFFF; text-decoration: none; font-weight: bold; background: #CC6600; } - a:visited.navigationnow { color: #FFFFFF; text-decoration: none; font-weight: bold; background: #CC6600; } - a:active.navigationnow { color: #FFFFFF; text-decoration: none; font-weight: bold; background: #CC6600; } - a.readmore { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; } - + body { font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 10pt; + color: black; + background-color: white;} + h1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 20pt; } + h2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 18pt; } + h3 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14pt; } + h4 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12pt; } select { width: 100pt; background-color: #EFEFEF; border-style: 1px; font-size: 8pt; } option { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; } .search { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; color: #CC6600; background-color: #EFEFEF;} @@ -36,7 +23,20 @@ div.news { font-style: normal; font-size: 8pt; margin-left: 1em; } div.highlight { font-size: 8pt; font-weight: bold; color: #FFFFFF; } div.footer { font-size: 10pt; } - li { list-style-image: url(/images/bullet.gif); } - li.menu { list-style-image: url(/images/bullet.gif); } ul.menu { margin-left: 1em; } +.note { + font-family: Verdana, Arial, Helvetica, sans-serif; + color: black; + background-color: #eeeeee; + font-size: 9pt; + margin-left: 2em; + margin-right: 2em; +} +.heading { + font-weight: bold; + font-size: 12pt; + margin-top: 2em; +} + + Index: openacs-4/packages/dotlrndoc/www/doc/dotlrn-install.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/doc/dotlrn-install.adp,v diff -u -r1.23 -r1.24 --- openacs-4/packages/dotlrndoc/www/doc/dotlrn-install.adp 29 Jul 2002 18:30:07 -0000 1.23 +++ openacs-4/packages/dotlrndoc/www/doc/dotlrn-install.adp 13 Aug 2002 18:12:03 -0000 1.24 @@ -1,4 +1,5 @@ -<%= [dotlrn_header "Installing dotLRN - OpenForce"] %> + +Installing dotLRN - OpenForce
@@ -20,14 +21,8 @@ -

Read the dotLRN FAQ

+

Read the dotLRN FAQs

-

- Especially important is the State of dotLRN - Development section. -

-

Get and Install OpenACS from development CVS

@@ -40,7 +35,7 @@ If you are installing OpenACS, follow the extensive installation documenation. + href="http://openacs.org/doc/openacs-4">documentation. Stop at the point where the OpenACS installation instructions tell you to @@ -303,8 +298,7 @@ Something went wrong. Did you restart your server? Restart again while doing a tail -f of the error log with debug turned on in your AOLServer configuration. Please report all errors you - encounter to dotlrn@openforce.net + encounter to the Bug Tracker.

@@ -376,5 +370,3 @@ section of this document and continue from there.
- -<%= [dotlrn_footer] %> Index: openacs-4/packages/dotlrndoc/www/doc/index.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/doc/index.adp,v diff -u -r1.9 -r1.10 --- openacs-4/packages/dotlrndoc/www/doc/index.adp 12 Apr 2002 18:01:31 -0000 1.9 +++ openacs-4/packages/dotlrndoc/www/doc/index.adp 13 Aug 2002 18:12:03 -0000 1.10 @@ -1,17 +1,9 @@ -<%= [dotlrn_header "dotLRN Documentation"] %> + +dotLRN Documentation

dotLRN Documentation

part of dotLRN

- - -<%= [dotlrn_footer] %> Fisheye: Tag 1.5 refers to a dead (removed) revision in file `openacs-4/packages/dotlrndoc/www/doc/left-to-finish-core.adp'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/packages/dotlrndoc/www/doc/nomenclature.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/doc/nomenclature.adp,v diff -u -r1.2 -r1.3 --- openacs-4/packages/dotlrndoc/www/doc/nomenclature.adp 29 Mar 2002 17:21:56 -0000 1.2 +++ openacs-4/packages/dotlrndoc/www/doc/nomenclature.adp 13 Aug 2002 18:12:03 -0000 1.3 @@ -1,4 +1,6 @@ -<%= [dotlrn_header "dotLRN Nomenclature"] %> + +dotLRN Nomenclature +

dotLRN Nomenclature: a dotLRN Primer

by Ben Adida, part of dotLRN Documentation. (last updated: 28 February 2002) @@ -282,6 +284,3 @@ A portal template is much like any other portal, except that it is used as a template for creating other portals. -<%= [dotlrn_footer] %> - - Index: openacs-4/packages/dotlrndoc/www/doc/permission-api.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/doc/permission-api.adp,v diff -u -r1.2 -r1.3 --- openacs-4/packages/dotlrndoc/www/doc/permission-api.adp 29 Nov 2001 02:17:34 -0000 1.2 +++ openacs-4/packages/dotlrndoc/www/doc/permission-api.adp 13 Aug 2002 18:12:03 -0000 1.3 @@ -1,4 +1,6 @@ -<%= [dotlrn_header "dotLRN Roles, Sections, and Permissions"] %> + +dotLRN Roles, Sections, and Permissions +

dotLRN Permission API

by Ben Adida.

@@ -85,5 +87,3 @@

  • dotlrn::require_user_admin_community community_id ?user_id? - -<%= [dotlrn_footer] %> Index: openacs-4/packages/dotlrndoc/www/doc/permission-overview.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/doc/permission-overview.adp,v diff -u -r1.2 -r1.3 --- openacs-4/packages/dotlrndoc/www/doc/permission-overview.adp 24 Oct 2001 23:27:22 -0000 1.2 +++ openacs-4/packages/dotlrndoc/www/doc/permission-overview.adp 13 Aug 2002 18:12:03 -0000 1.3 @@ -1,4 +1,6 @@ -<%= [dotlrn_header "dotLRN Roles, Sections, and Permissions"] %> + +dotLRN Roles, Sections, and Permissions +

    dotLRN Roles, Sections, and Permissions

    by Ben Adida, part of dotLRN Documentation.

    @@ -244,5 +246,3 @@

    • Only the user in question can access her main page.
    - -<%= [dotlrn_footer] %> Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/packages/dotlrndoc/www/doc/permission-overview.txt'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/packages/dotlrndoc/www/doc/sloan-bboard.adp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/packages/dotlrndoc/www/doc/sloanspace.adp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `openacs-4/packages/dotlrndoc/www/doc/subsite-use.txt'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/packages/dotlrndoc/www/doc/writing-a-dotlrn-package.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrndoc/www/doc/writing-a-dotlrn-package.adp,v diff -u -r1.1 -r1.2 --- openacs-4/packages/dotlrndoc/www/doc/writing-a-dotlrn-package.adp 24 Oct 2001 23:27:22 -0000 1.1 +++ openacs-4/packages/dotlrndoc/www/doc/writing-a-dotlrn-package.adp 13 Aug 2002 18:12:03 -0000 1.2 @@ -1,4 +1,6 @@ -<%= [dotlrn_header "Writing a dotLRN Package"] %> + +Writing a dotLRN Package +

    Writing a dotLRN Package

    by Ben Adida.

    @@ -105,5 +107,3 @@ # Instantiate bboard and mount it } - -<%= [dotlrn_footer] %>