Jon Stevens wrote:
>
> now, if i can get some help with the encoding problem,
> that would be nice...

===================================================================
RCS file: /home/cvs/jakarta-site2/xdocs/site/whoweare.xml,v
retrieving revision 1.25
diff -u -r1.25 whoweare.xml
--- whoweare.xml        2001/03/15 06:25:59     1.25
+++ whoweare.xml        2001/03/15 09:28:09
@@ -213,10 +214,7 @@
 </p>

 <p>
-<!-- temporary disabled until encoding issues can be figured out
-<b>Ceki G&#252;lc&#252;</b> (ceki at apache.org)
--->
-<b>Ceki Gulcu</b> (ceki at apache.org)
+<b><![CDATA[Ceki G&uuml;lc&uuml;]]></b> (ceki at apache.org)
 <br/>
 Ceki is the founder of the log4j project. Time permitting, he also does
 custom development for clients. See <a
===================================================================
RCS file: 
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/anakia/OutputWrapper.java,v
retrieving revision 1.2
diff -u -r1.2 OutputWrapper.java
--- OutputWrapper.java  2001/03/15 04:02:35     1.2
+++ OutputWrapper.java  2001/03/15 09:29:42
@@ -59,6 +59,7 @@

 import org.jdom.Element;
 import org.jdom.output.XMLOutputter;
+import org.jdom.CDATA;

 /**
  * This class extends XMLOutputter in order to provide
@@ -102,4 +103,14 @@
         }
         return buff.toString();
     }
+
+    /**
+     * Passthru CDATA content uninterpreted
+     */
+    protected void printCDATASection(CDATA cdata, java.io.Writer out,
+                                     int indentLevel) throws IOException
+    {
+        out.write(cdata.getText());
+    }
+
 }

- Sam Ruby


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to