Index: openacs-4/www/templates/widgets/about.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/www/templates/widgets/Attic/about.adp,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/www/templates/widgets/about.adp 1 Dec 2004 10:42:23 -0000 1.1.2.1 +++ openacs-4/www/templates/widgets/about.adp 26 Aug 2008 23:29:42 -0000 1.1.2.2 @@ -1,10 +1,9 @@ -@title@ +What is OpenACS - -

@about.title;noquote@ - - - @about.description;noquote@ - +

+ OpenACS is a toolkit for building scalable, community-oriented web applications. OpenACS is the foundation for many products and websites, including the .LRN (pronounced "dot learn") e-learning platform.

-
+

+ OpenACS is open source and is available under the GNU General Public License. +

Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/www/templates/widgets/download.adp'. Fisheye: No comparison available. Pass `N' to diff? Index: openacs-4/www/templates/widgets/header.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/www/templates/widgets/Attic/header.adp,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/www/templates/widgets/header.adp 1 Dec 2004 10:42:23 -0000 1.1.2.1 +++ openacs-4/www/templates/widgets/header.adp 26 Aug 2008 23:29:42 -0000 1.1.2.2 @@ -1,3 +1,60 @@ -
+ + +
Home
+ + + + +
+ Home + + -
\ No newline at end of file + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + +
+
+ + + +
+ Index: openacs-4/www/templates/widgets/navigation.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/www/templates/widgets/Attic/navigation.tcl,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/www/templates/widgets/navigation.tcl 25 Jan 2005 20:49:26 -0000 1.1.2.2 +++ openacs-4/www/templates/widgets/navigation.tcl 26 Aug 2008 23:29:42 -0000 1.1.2.3 @@ -9,13 +9,12 @@ # href_url, href_content and sublink_p. px_multirow_nav { - {/news/ "News" 0} - {/forums/ "Forums" 0} - {/community/ "Community" 0} - {/projects/ "Projects" 0} - {/bugtracker/openacs/ "Bugs" 0} - {/doc/ "Documentation" 0} + {/about/ "About" 0} {/projects/openacs/download/ "Download" 0} + {/doc/ "Documentation" 0} + {/contribute/ "Contribute" 0} + {/community/ "Community" 0} + {/community/companies/ "Support" 0} } Index: openacs-4/www/templates/widgets/news.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/www/templates/widgets/Attic/news.adp,v diff -u -r1.1.2.3 -r1.1.2.4 --- openacs-4/www/templates/widgets/news.adp 4 Feb 2005 20:58:16 -0000 1.1.2.3 +++ openacs-4/www/templates/widgets/news.adp 26 Aug 2008 23:29:42 -0000 1.1.2.4 @@ -1,20 +1,28 @@ - -@title@ + - - - @news_items.pretty_publish_date@
- @news_items.publish_title@ -
-
-
+

@title@

- -

There are no recent news items.

-

Read archived news items.

-
+ + +
+

+ @news_items.publish_title@ + @news_items.pretty_publish_date@ +

+
@news_items.publish_body;noquote@
+
+
+
- - more news... - -Syndication Feed Subscribe via RSS + +
+

There are no recent news items.

+

See archived news items.

+
+
+ + + + Index: openacs-4/www/templates/widgets/news.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/www/templates/widgets/Attic/news.tcl,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/www/templates/widgets/news.tcl 1 Dec 2004 10:42:23 -0000 1.1.2.1 +++ openacs-4/www/templates/widgets/news.tcl 26 Aug 2008 23:29:42 -0000 1.1.2.2 @@ -8,15 +8,17 @@ news_items:multirow } -set n_news_items 6 +set n_news_items 4 set news_limit [expr $n_news_items + 1] set max_post_age_days 60 db_multirow news_items news_items_select " select item_id, publish_title, - pretty_publish_date + pretty_publish_date, + publish_body, + html_p from news_items_approved --where package_id = 43787 --where package_id = 3147 @@ -26,8 +28,14 @@ limit $news_limit " { regsub -all {/} $publish_title { / } publish_title + + if { !$html_p } { + set publish_body [ad_convert_to_html $publish_body] + } + } + #etp::get_page_attributes #etp::get_content_items -where $where -orderby $orderby \ -limit $news_limit \ Index: openacs-4/www/templates/widgets/postings.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/www/templates/widgets/Attic/postings.adp,v diff -u -r1.1.2.1 -r1.1.2.2 --- openacs-4/www/templates/widgets/postings.adp 1 Dec 2004 10:42:23 -0000 1.1.2.1 +++ openacs-4/www/templates/widgets/postings.adp 26 Aug 2008 23:29:42 -0000 1.1.2.2 @@ -1,27 +1,26 @@ - -@title@ +

@title@

- - - + +

There are no posts.

-
- - There are no posts. - - - - more posts... - + + + Index: openacs-4/www/templates/widgets/postings.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/www/templates/widgets/Attic/postings.tcl,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/www/templates/widgets/postings.tcl 6 Dec 2004 23:57:39 -0000 1.1.2.2 +++ openacs-4/www/templates/widgets/postings.tcl 26 Aug 2008 23:29:42 -0000 1.1.2.3 @@ -11,6 +11,7 @@ set n_posts 10 set forum_limit [expr $n_posts + 1] set max_post_age_days 7 +if {![info exists boxclass]} {set boxclass box} db_multirow forum_posts messages_select " select * from ( Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/www/templates/widgets/resources.adp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `openacs-4/www/templates/widgets/sponsors.adp'. Fisheye: No comparison available. Pass `N' to diff?