+Welcome to Portals
+
+
+
+Portals in the system:
+
+
+
+
+ You have not configured any portals.
+
+
+
+
Index: openacs-4/contrib/packages/portal/www/admin/index.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/admin/index.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/admin/index.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,36 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+ad_page_contract {
+ Page that displays a system-wide list of portals and gives
+ the option to view or edit them
+
+ @author Arjun Sanyal (arjun@openforce.net)
+ @creation-date
+ @cvs-id $Id: index.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} { }
+
+
+permission::require -object_id [ad_conn package_id] -privilege admin
+
+set query "select
+ portal_id, name, template_id
+ from portals"
+
+template::query get_portals portals multirow $query
+
+ad_return_template
+
Index: openacs-4/contrib/packages/portal/www/admin/portal-admin-master.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/admin/portal-admin-master.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/admin/portal-admin-master.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,27 @@
+<%
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+%>
+
+
+
+
+Portal: @name@
+
+Go back
+
+
+
Index: openacs-4/contrib/packages/portal/www/admin/portal-config-2.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/admin/Attic/portal-config-2.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/admin/portal-config-2.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,34 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/element-layout-2.tcl
+ad_page_contract {
+ Do the actual moving/removing of the elements, or redirect to add.
+
+ @author Arjun Sanyal
+ @creation-date 9/28/2001
+ @cvs_id $Id: portal-config-2.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} { }
+
+set form [ns_getform]
+set portal_id [ns_set get $form portal_id]
+set return_url [ns_set get $form return_url]
+set anchor [ns_set get $form anchor]
+
+portal::configure_dispatch -portal_id $portal_id -form $form
+
+ns_returnredirect "portal-config?portal_id=$portal_id&referer=$return_url#$anchor"
+
Index: openacs-4/contrib/packages/portal/www/admin/portal-config.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/admin/Attic/portal-config.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/admin/portal-config.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,34 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+@referer@
+@name@
+
+Manage Custom Portlets
+
+@rendered_page@
+
+
+Custom Portlets - Note custom portlets for portal templates are very fragile right now. Only use this during system set up before any portlets have been created with this template. Better solution coming soon.
+
+
+
Index: openacs-4/contrib/packages/portal/www/admin/portal-config.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/admin/Attic/portal-config.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/admin/portal-config.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,38 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/portal-config.tcl
+
+ad_page_contract {
+ Main configuration page for a portal
+
+ @author Arjun Sanyal (arjun@openforce.net)
+ @creation-date 10/20/2001
+ @cvs-id $Id: portal-config.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} {
+ {referer:optional ""}
+ portal_id:naturalnum,notnull
+}
+
+set page_url [ad_conn url]
+set name ""
+set rendered_page [portal::configure \
+ -referer $referer \
+ -template_p f \
+ $portal_id ""
+]
+set name [portal::get_name -portal_id $portal_id]
+set return_url "$page_url?portal_id=$portal_id"
Index: openacs-4/contrib/packages/portal/www/admin/portal-show.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/admin/portal-show.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/admin/portal-show.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,22 @@
+<%
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+%>
+
+
+@referer@
+@name@
+@html@
Index: openacs-4/contrib/packages/portal/www/admin/portal-show.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/admin/portal-show.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/admin/portal-show.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,32 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/show-portal.tcl
+
+ad_page_contract {
+ Just a test script to display the portal.
+
+ @author AKS
+ @creation-date
+ @cvs-id $Id: portal-show.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} {
+ {referer:notnull}
+ {portal_id:naturalnum,notnull}
+ {page_num 0}
+}
+
+set name [portal::get_name -portal_id $portal_id]
+set html "[portal::navbar -portal_id $portal_id] [portal::render -portal_id $portal_id -page_num $page_num]"
Index: openacs-4/contrib/packages/portal/www/graphics/arrow-down.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/graphics/Attic/arrow-down.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/graphics/arrow-left.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/graphics/Attic/arrow-left.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/graphics/arrow-right.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/graphics/Attic/arrow-right.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/graphics/arrow-up.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/graphics/Attic/arrow-up.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/graphics/delete.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/graphics/Attic/delete.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/graphics/goback.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/graphics/Attic/goback.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/layouts/header3.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/header3.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/header3.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,47 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+
+ |
+
+
+
+
+ |
+
+
+
+
+ |
+
+
Index: openacs-4/contrib/packages/portal/www/layouts/header3.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/header3.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/header3.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,25 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/templates/header3.tcl
+ad_page_contract {
+ @cvs_id $Id: header3.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} -properties {
+ element_list:onevalue
+ element_src:onevalue
+}
+
+portal_layout_elements $element_list
Index: openacs-4/contrib/packages/portal/www/layouts/simple-element.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/simple-element.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/simple-element.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,46 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+ |
+
+
+
Index: openacs-4/contrib/packages/portal/www/layouts/simple1.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/simple1.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/simple1.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,40 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
Index: openacs-4/contrib/packages/portal/www/layouts/simple1.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/simple1.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/simple1.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,42 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/templates/simple2.tcl
+ad_page_contract {
+ @cvs_id $Id: simple1.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} -properties {
+ element_list:onevalue
+ element_src:onevalue
+ action_string:onevalue
+ theme_id:onevalue
+ return_url:onevalue
+}
+
+if { ![info exists action_string]} {
+ set action_string ""
+}
+
+if { ![info exists theme_id]} {
+ set theme_id ""
+}
+
+if { ![info exists return_url]} {
+ set return_url ""
+}
+
+portal::layout_elements $element_list
+
+ad_return_template
Index: openacs-4/contrib/packages/portal/www/layouts/simple2.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/simple2.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/simple2.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,56 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+ |
+
+
Index: openacs-4/contrib/packages/portal/www/layouts/simple2.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/simple2.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/simple2.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,45 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+ad_page_contract {
+ This is a simple 2 column layout called from portal::render and the like.
+ It laysout the elements with portal::layout_elements and hands off rendering
+ of the individual portlets to the template in the "element_src" var
+
+ @version $Id: simple2.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} -properties {
+ element_list:onevalue
+ element_src:onevalue
+ action_string:onevalue
+ theme_id:onevalue
+ return_url:onevalue
+}
+
+if {![exists_and_not_null action_string]} {
+ set action_string ""
+}
+
+if {![exists_and_not_null theme_id]} {
+ set theme_id ""
+}
+
+if {![exists_and_not_null return_url]} {
+ set return_url ""
+}
+
+portal::layout_elements $element_list
+
+ad_return_template
Index: openacs-4/contrib/packages/portal/www/layouts/simple3.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/simple3.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/simple3.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,71 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+ |
+
+
+
+
+
+ |
+
+
Index: openacs-4/contrib/packages/portal/www/layouts/simple3.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/simple3.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/simple3.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,48 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+ad_page_contract {
+ This is a simple 3 column layout called from portal::render and the like.
+ It lays out the elements with portal::layout_elements and hands off
+ rendering of the individual portlets to the template in the
+ "element_src" var
+
+ @author arjun@openforce.net
+ @author yon@openforce.net
+ @version $Id: simple3.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} -properties {
+ element_list:onevalue
+ element_src:onevalue
+ action_string:onevalue
+ theme_id:onevalue
+ return_url:onevalue
+}
+
+if {![exists_and_not_null action_string]} {
+ set action_string ""
+}
+
+if {![exists_and_not_null theme_id]} {
+ set theme_id ""
+}
+
+if {![exists_and_not_null return_url]} {
+ set return_url ""
+}
+
+portal::layout_elements $element_list
+
+ad_return_template
Index: openacs-4/contrib/packages/portal/www/layouts/title-buttons.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/title-buttons.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/title-buttons.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,47 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+
+
+
+
+
+
Index: openacs-4/contrib/packages/portal/www/layouts/title-buttons.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/Attic/title-buttons.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/title-buttons.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,31 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/templates/title-buttons.tcl
+
+ad_page_contract {
+ Display the appropriate buttons in a portal's titlebar-like area.
+
+ @author Ian Baker (ibaker@arsdigita.com)
+ @creation-date 2/14/2001
+ @cvs_id $Id: title-buttons.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+}
+
+# should this come from the template or something? how does it work?
+set title(resource_dir) "/packages/portal/www/templates/components/simple-element"
+
+set title_noshade_p [ad_parameter title_noshade_p]
+set title_nomove_p [ad_parameter title_nomove_p]
Index: openacs-4/contrib/packages/portal/www/layouts/components/header3/example.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/components/header3/Attic/example.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/components/header3/example.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,38 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+ |
+
+
+
+
+ |
+
+
+ |
+
+
+ |
+
+
Index: openacs-4/contrib/packages/portal/www/layouts/components/simple-element/close.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/components/simple-element/Attic/close.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/layouts/components/simple-element/down.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/components/simple-element/Attic/down.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/layouts/components/simple-element/example.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/components/simple-element/Attic/example.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/components/simple-element/example.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,21 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+This is the example.
Index: openacs-4/contrib/packages/portal/www/layouts/components/simple-element/minimize.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/components/simple-element/Attic/minimize.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/layouts/components/simple-element/up.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/components/simple-element/Attic/up.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/layouts/components/simple2/example.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/components/simple2/Attic/example.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/components/simple2/example.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,30 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
Index: openacs-4/contrib/packages/portal/www/layouts/components/simple3/example.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/layouts/components/simple3/Attic/example.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/layouts/components/simple3/example.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,33 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
Index: openacs-4/contrib/packages/portal/www/place-element-components/arrow-down.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/place-element-components/Attic/arrow-down.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/place-element-components/arrow-left.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/place-element-components/Attic/arrow-left.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/place-element-components/arrow-right.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/place-element-components/Attic/arrow-right.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/place-element-components/arrow-up.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/place-element-components/Attic/arrow-up.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/place-element-components/delete.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/place-element-components/Attic/delete.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/place-element-components/goback.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/place-element-components/Attic/goback.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/render-styles/all-in-one/render-element.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/render-styles/all-in-one/Attic/render-element.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/render-styles/all-in-one/render-element.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,31 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+@element.name@
+@element.element_id@
+@element.shadeable_p@
+@element.shaded_p@
+@element.hideable_p@
+
+
+- @element.name@
+@element.content@
+
Index: openacs-4/contrib/packages/portal/www/render-styles/all-in-one/render-element.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/render-styles/all-in-one/Attic/render-element.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/render-styles/all-in-one/render-element.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,39 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/render-element.tcl
+ad_page_contract {
+ Render an element.
+
+ @author Ben Adida
+ @creation-date
+ @cvs_id $Id: render-element.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} -properties {
+ element_id:onevalue
+ region:onevalue
+}
+
+if {[catch {set element_data [portal::element::render_raw -element_id $element_id]} errmsg]} {
+ # An uncaught error happened when trying to evaluate the element.
+ # If the error is in the element's "show" proc, the error will
+ # be shown in the content of the portlet. This is for errors other
+ # than with the "show" proc.
+ ns_log error "\n\n *** Error in portal/www/render-styles/all-in-one/render-element.tcl \n Uncaught exception when calling portal::element::render \n with element_id $element_id\n\n"
+ ad_return -code error
+} else {
+ # all is ok
+ array set element $element_data
+}
Index: openacs-4/contrib/packages/portal/www/render-styles/individual/render-element.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/render-styles/individual/Attic/render-element.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/render-styles/individual/render-element.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,31 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+@element.name@
+@element.resource_dir@
+@element.element_id@
+@element.shadeable_p@
+@element.shaded_p@
+@element.hideable_p@
+
+@element.content@
+
Index: openacs-4/contrib/packages/portal/www/render-styles/individual/render-element.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/render-styles/individual/Attic/render-element.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/render-styles/individual/render-element.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,52 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/render-element.tcl
+ad_page_contract {
+ Render an element.
+
+ @author
+ @creation-date
+ @cvs_id $Id: render-element.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} -properties {
+ element_id:onevalue
+ region:onevalue
+}
+
+# we get element_id, action_string, theme_id, region, portal_id,
+# edit_p, return_url, page_id, and layout_id from the layout_template
+
+if {[catch {set element_data [portal::element::render -element_id $element_id -edit_p $edit_p]} errmsg]} {
+ # An uncaught error happened when trying to evaluate the element.
+ # If the error is in the element's "show" proc, the error will
+ # be shown in the content of the portlet. This is for errors other
+ # than with the "show" proc. It hides the entire PE
+ ns_log error "\n\n *** Error in portal/www/render_sytles_/indiviudal/render-element.tcl \n Uncaught exception when calling portal::element::render \n with element_id $element_id\n\n"
+ array set element {content {}}
+
+} else {
+ # all is ok
+ array set element $element_data
+}
+
+# Added by Ben to bypass rendering if there's nada"
+if {[empty_string_p $element(content)]} {
+ ns_log Notice "BMA-debug: empty!"
+ set empty_p 1
+} else {
+ set empty_p 0
+}
+
Index: openacs-4/contrib/packages/portal/www/render_styles/all_in_one/render-element.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/render_styles/all_in_one/Attic/render-element.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/render_styles/all_in_one/render-element.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,35 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+@element.name@
+@element.element_id@
+@element.link@
+@element.shadeable_p@
+@element.shaded_p@
+@element.hideable_p@
+@element.user_editable_p@
+@element.link_hideable_p@
+@hide_links_p@
+
+
+- @element.name@
+@element.content@
+
Index: openacs-4/contrib/packages/portal/www/render_styles/all_in_one/render-element.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/render_styles/all_in_one/Attic/render-element.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/render_styles/all_in_one/render-element.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,39 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/render-element.tcl
+ad_page_contract {
+ Render an element.
+
+ @author Ben Adida
+ @creation-date
+ @cvs_id $Id: render-element.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} -properties {
+ element_id:onevalue
+ region:onevalue
+}
+
+if { [catch {set element_data [portal::evaluate_element_raw $element_id] } errmsg ] } {
+ # An uncaught error happened when trying to evaluate the element.
+ # If the error is in the element's "show" proc, the error will
+ # be shown in the content of the portlet. This is for errors other
+ # than with the "show" proc.
+ ns_log error "\n\n *** Error in portal/www/render_sytles/all_in_one/render-element.tcl \n Uncaught exception when calling portal::evaluate_element \n with element_id $element_id\n\n"
+ ad_return -code error
+} else {
+ # all is ok
+ array set element $element_data
+}
Index: openacs-4/contrib/packages/portal/www/render_styles/individual/render-element.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/render_styles/individual/Attic/render-element.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/render_styles/individual/render-element.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,35 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+@element.name@
+@element.resource_dir@
+@element.element_id@
+@element.link@
+@element.shadeable_p@
+@element.shaded_p@
+@element.hideable_p@
+@element.user_editable_p@
+@element.link_hideable_p@
+@hide_links_p@
+
+@element.content@
+
Index: openacs-4/contrib/packages/portal/www/render_styles/individual/render-element.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/render_styles/individual/Attic/render-element.tcl,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/render_styles/individual/render-element.tcl 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,52 @@
+#
+# Copyright (C) 2001, 2002 MIT
+#
+# This file is part of dotLRN.
+#
+# dotLRN is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+# details.
+#
+
+# www/render-element.tcl
+ad_page_contract {
+ Render an element.
+
+ @author
+ @creation-date
+ @cvs_id $Id: render-element.tcl,v 1.1 2002/10/25 21:29:17 yon Exp $
+} -properties {
+ element_id:onevalue
+ region:onevalue
+}
+
+# we get element_id, action_string, theme_id, region, portal_id,
+# edit_p, return_url, hide_links_p, page_id, and layout_id from the layout_template
+
+if { [catch {set element_data [portal::evaluate_element -portal_id $portal_id -edit_p $edit_p $element_id $theme_id] } errmsg ] } {
+ # An uncaught error happened when trying to evaluate the element.
+ # If the error is in the element's "show" proc, the error will
+ # be shown in the content of the portlet. This is for errors other
+ # than with the "show" proc. It hides the entire PE
+ ns_log error "\n\n *** Error in portal/www/render_sytles_/indiviudal/render-element.tcl \n Uncaught exception when calling portal::evaluate_element \n with element_id $element_id\n\n"
+ array set element {content {}}
+
+} else {
+ # all is ok
+ array set element $element_data
+}
+
+# Added by Ben to bypass rendering if there's nada"
+if {[empty_string_p $element(content)]} {
+ ns_log Notice "BMA-debug: empty!"
+ set empty_p 1
+} else {
+ set empty_p 0
+}
+
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/Attic/deco-theme.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/themes/deco-theme.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,83 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+  |
+ |
+ |
+
+
+
+
+ |
+
+
+
+
+
+ @name@
+ |
+
+
+
+
+  |
+
+
+
+
+
+
+
+  |
+
+
+
+
+
+
+ |
+
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+ |
+
+
+ |
+ |
+ |
+
+
+
+
Index: openacs-4/contrib/packages/portal/www/themes/nada-theme.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/Attic/nada-theme.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/themes/nada-theme.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,74 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+ |
+
+
+
+
Index: openacs-4/contrib/packages/portal/www/themes/raw-theme.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/Attic/raw-theme.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/themes/raw-theme.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,21 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
Index: openacs-4/contrib/packages/portal/www/themes/simple-theme.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/Attic/simple-theme.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/themes/simple-theme.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,72 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 MIT
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
Index: openacs-4/contrib/packages/portal/www/themes/sloan-theme.adp
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/Attic/sloan-theme.adp,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ openacs-4/contrib/packages/portal/www/themes/sloan-theme.adp 25 Oct 2002 21:29:17 -0000 1.1
@@ -0,0 +1,59 @@
+<%
+
+ #
+ # Copyright (C) 2001, 2002 OpenForce, Inc.
+ #
+ # This file is part of dotLRN.
+ #
+ # dotLRN is free software; you can redistribute it and/or modify it under the
+ # terms of the GNU General Public License as published by the Free Software
+ # Foundation; either version 2 of the License, or (at your option) any later
+ # version.
+ #
+ # dotLRN is distributed in the hope that it will be useful, but WITHOUT ANY
+ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ # details.
+ #
+
+%>
+
+
+
+
+
+
+ |
+
+  |
+
+
+ |
+  |
+
+
+ |
+
+
+
+
+
+
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/shade.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/shade.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/tbl-bleft.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/tbl-bleft.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/tbl-bottom.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/tbl-bottom.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/tbl-bright.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/tbl-bright.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/tbl-left.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/tbl-left.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/tbl-right.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/tbl-right.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/tbl-tleft.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/tbl-tleft.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/tbl-top.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/tbl-top.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/tbl-tright.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/tbl-tright.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/unshade.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/unshade.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/deco-theme/x.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/deco-theme/Attic/x.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/simple-theme/shade.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/simple-theme/Attic/shade.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/simple-theme/unshade.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/simple-theme/Attic/unshade.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/simple-theme/x.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/simple-theme/Attic/x.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/sloan-theme/e.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/sloan-theme/Attic/e.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/sloan-theme/edit.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/sloan-theme/Attic/edit.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/sloan-theme/shade.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/sloan-theme/Attic/shade.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/sloan-theme/unshade.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/sloan-theme/Attic/unshade.gif,v
diff -u
Binary files differ
Index: openacs-4/contrib/packages/portal/www/themes/sloan-theme/x.gif
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/portal/www/themes/sloan-theme/Attic/x.gif,v
diff -u
Binary files differ