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.73 -r1.74
--- openacs-4/packages/xowiki/tcl/includelet-procs.tcl 29 Oct 2008 14:06:16 -0000 1.73
+++ openacs-4/packages/xowiki/tcl/includelet-procs.tcl 31 Oct 2008 02:01:30 -0000 1.74
@@ -1532,7 +1532,7 @@
set users [expr {$count == 0 ? "No registered users" :
$count == 1 ? "1 registered user" :
"$count registered users"}]
- return "
$users$what$when
$output"
+ return "$users$what$when
$output"
}
}
Index: openacs-4/packages/xowiki/tcl/xowiki-callback-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-callback-procs.tcl,v
diff -u -r1.48 -r1.49
--- openacs-4/packages/xowiki/tcl/xowiki-callback-procs.tcl 31 Oct 2008 00:50:53 -0000 1.48
+++ openacs-4/packages/xowiki/tcl/xowiki-callback-procs.tcl 31 Oct 2008 02:01:30 -0000 1.49
@@ -504,7 +504,7 @@
if {$tidycmd ne ""} {
set in_file [ns_tmpnam]
::xowiki::write_file $in_file $text
- catch {exec $tidycmd -q -ashtml < $in_file 2> /dev/null} output
+ catch {exec $tidycmd -q -w 0 -ashtml < $in_file 2> /dev/null} output
file delete $in_file
#my msg o=$output
regexp \n(.*)\n $output _ output
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.305 -r1.306
--- openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 30 Oct 2008 22:54:59 -0000 1.305
+++ openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 31 Oct 2008 02:01:30 -0000 1.306
@@ -1145,7 +1145,7 @@
set l "";
foreach l0 [split [lindex $source 0] \n] {
append l [string map $markupmap(escape) $l0]
- if {[string first \{\{ $l] > -1 && [string first \}\} $l] == -1} continue
+ if {[string first \{\{ $l] > -1 && [string first \}\} $l] == -1} {append l " "; continue}
set l [my regsub_eval $RE(anchor) $l {my anchor "\1"} "1"]
set l [my regsub_eval $RE(div) $l {my div "\1"}]
set l [my regsub_eval $RE(include) $l {my include_content "\1" "\2"}]
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.34 -r1.35
--- openacs-4/packages/xowiki/www/resources/xowiki.css 24 Sep 2008 09:55:45 -0000 1.34
+++ openacs-4/packages/xowiki/www/resources/xowiki.css 31 Oct 2008 02:01:30 -0000 1.35
@@ -133,7 +133,9 @@
div.rightbox {float:right; right: 1em; clear: right; font-size: 75%; padding: 5px;
border:dotted; border-width:1px;background: #f8f8f8;
}
-div.presence h1 {font-size: 90%; margin-bottom: 0px;}
+div.presence div.title {font-size: 90%; margin-bottom: 0px;
+ border-bottom: solid silver 1px; color: #222222;
+}
div.xowiki-content pre, .code {
font-family: "Courier", monospace;