Index: openacs-4/packages/xowiki/tcl/includelet-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/includelet-procs.tcl,v diff -u -r1.2 -r1.3 --- openacs-4/packages/xowiki/tcl/includelet-procs.tcl 19 Nov 2007 12:35:10 -0000 1.2 +++ openacs-4/packages/xowiki/tcl/includelet-procs.tcl 20 Nov 2007 11:00:04 -0000 1.3 @@ -1157,7 +1157,7 @@ if {$gc_comments ne ""} { return "

#general-comments.Comments#

$gc_link

" } else { - return "

#general-comments.lt_No_comments_available#

$gc_link

" + return "

$gc_link

" } } Index: openacs-4/packages/xowiki/tcl/xowiki-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-procs.tcl,v diff -u -r1.186 -r1.187 --- openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 19 Nov 2007 12:40:16 -0000 1.186 +++ openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 20 Nov 2007 11:00:04 -0000 1.187 @@ -923,7 +923,11 @@ my update_references $item_id [lsort -unique $references] } set html [expr {$render_adp ? [my adp_subst $content] : $content}] - if {![my exists __no_footer]} {append html [my footer]} + append html "\n" return $html } Index: openacs-4/packages/xowiki/tcl/xowiki-www-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-www-procs.tcl,v diff -u -r1.109 -r1.110 --- openacs-4/packages/xowiki/tcl/xowiki-www-procs.tcl 19 Nov 2007 12:44:00 -0000 1.109 +++ openacs-4/packages/xowiki/tcl/xowiki-www-procs.tcl 20 Nov 2007 11:00:04 -0000 1.110 @@ -14,7 +14,8 @@ my instvar package_id description if {[my exists __no_footer]} {return ""} - set footer "
" + #set footer "
" + set footer "" if {$description eq ""} { set description [my get_description $content] @@ -31,7 +32,7 @@ ![my exists_query_parameter no_tags] && [::xo::cc user_id] != 0 } { - set tag_content "[my include my-tags]
" + set tag_content [my include my-tags] set tag_includelet [my set __last_includelet] set tags [$tag_includelet set tags] } else { @@ -72,7 +73,7 @@ append footer [my include my-general-comments] } - return "\n" + return "\n" } } Index: openacs-4/packages/xowiki/www/resources/xowiki.css =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/www/resources/xowiki.css,v diff -u -r1.24 -r1.25 --- openacs-4/packages/xowiki/www/resources/xowiki.css 19 Nov 2007 12:44:00 -0000 1.24 +++ openacs-4/packages/xowiki/www/resources/xowiki.css 20 Nov 2007 11:00:04 -0000 1.25 @@ -160,6 +160,14 @@ div.news-item {clear: both; border: 1px solid #a9a9a9; padding: 15px 15px; margin: 10px 10px; background: #f8f8f8;} div.news-item h2 {display: inline; font-weight: bolder;} -div.news-item .footer {margin-left: 20px; margin-right: 20px;} +/*div.xowiki-content div.news-item .item-footer {margin-left: 20px; margin-right: 20px;}*/ -div.xowiki-content .footer {clear: both; text-align: left; font-size: 85%;} \ No newline at end of file +div.xowiki-content .item-footer { + clear: both; + text-align: left; font-size: 85%; + margin-left: 10px; margin-right: 10px; margin-top: 5px; + padding-top: 5px; + border-top: 1px solid; border-color: #c8c8c8; + color: #555555; +} +div.xowiki-content .content-chunk-footer {clear: both;} \ No newline at end of file