Request karma

2001-03-17 Thread Charles Benett
Hi! Can I get karma to commit to jakarta-site2? Thanks, Charles - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: encoding problems with Jakarta-site

2001-03-17 Thread Robert Burrell Donkin
here's a fix which works for me Jon Stevens wrote: Here is the little test program: import java.io.*; import java.lang.*; import java.util.*; import org.jdom.*; import org.jdom.input.*; import org.jdom.output.*; public class Test { public static void main (String[] args) {

Re: Amendments to site

2001-03-17 Thread Jon Stevens
on 3/17/01 6:20 AM, "Charles Benett" [EMAIL PROTECTED] wrote: Is the procedure: The procedure is documented on the website: http://jakarta.apache.org/site/jakarta-site2.html " Once your changes have been checked in, you can do the following: cd /www/jakarta.apache.org cvs update index.html

Re: Request karma

2001-03-17 Thread Jon Stevens
on 3/17/01 9:07 AM, "Charles Benett" [EMAIL PROTECTED] wrote: Hi! Can I get karma to commit to jakarta-site2? Thanks, Charles done. -jon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: encoding problems with Jakarta-site

2001-03-17 Thread Jon Stevens
on 3/17/01 10:02 AM, "Robert Burrell Donkin" [EMAIL PROTECTED] wrote: FileWriter uses the system default encoding which is MacRoman (latin-1) roll your own "ISO-8859-1" FileWriter OutputStreamWriter fw=new OutputStreamWriter( new FileOutputStream("text.html"),"ISO-8859-1"); Ahh...ok...I