|
From: bruce <br...@mc...> - 2003-03-31 16:49:18
|
Erik,
Here is the command string that works for me:
/usr/bin/cvs -z3
-d:pserver:ano...@cv...:/cvsroot/babeldoc co
babeldoc_v1
(all on one line)
You need to login first...
cvs -d:pserver:ano...@cv...:/cvsroot/babeldoc login
regards,
Bruce.
On Monday 31 March 2003 11:44 am, ek...@ba... wrote:
> Thanks so much!! I am attempting to connect to our CVS ... this is the
> connect string I am trying to use
>
> :pserver:ano...@cv...:cvsroot/babeldoc
>
> Not working. Should I be using "ek...@ba..." rather than
> "anonymous"? Is there a port number I should specify? Should I be
> using SSH?
>
> Erik
>
>
>
>
>
> bruce <br...@mc...>@lists.sourceforge.net on 03/31/2003
> 11:24:35 AM
>
> Sent by: bab...@li...
>
>
> To: "Babeldoc Developers List" <bab...@li...>
> cc:
> Subject: [Babeldoc-devel] Re: JDK 1.3.x Compatibility
>
>
> All done - the only thing is that JavaXmlDecoder. Just delete that
> class -
> there is no way to make that work under 1.3 since it explicitly needs
> 1.4
> support.
>
> regards,
> Bruce.
>
> On Monday 31 March 2003 11:01 am, ek...@ba... wrote:
> > ---------------------- Forwarded by Erik Klein/NY/DOMESTIC/BNY on
> > 03/31/2003 11:01 AM ---------------------------
> >
> >
> > Erik Klein
> > 03/31/2003 10:42 AM
> >
> > To: "Babeldoc Developers List"
>
> <bab...@li...>
>
> > cc:
> > Subject: JDK 1.3.x Compatibility (Document link: Erik Klein)
> >
> >
> > Bruce,
> >
> > I have downloaded the three programs you have modified since I have
> > shown interest in Babeldoc (LogService.java, ConfigService.java, and
> > XslTransformPipelineStage.java). This morning I attempted to do an
>
> ant
>
> > build using my JDK 1.3.1 compiler (and the programs listed above) and
> > received the following compiler errors:
> >
> >
> > D:\Program Files\babeldoc\src>build
> > Buildfile: build.xml
> >
> > declare:
> >
> > depends:
> > [echo] Build order: core babelfish conversion crypto sql scanner
> > gui web soap
> >
> > build:
> > [echo] Building Babeldoc in: D:\Program Files\babeldoc\src
> >
> > build:
> > [echo] Building core
> > [javac] Compiling 144 source files to D:\Program
> > Files\babeldoc\src\modules\core\build
> > [javac] D:\Program
>
> Files\babeldoc\src\modules\core\src\com\babeldoc\core\LogService.java:28:
> > cannot resolve symbol
> > [javac] symbol : class StackTraceElement
> > [javac] location: package lang
> > [javac] import java.lang.StackTraceElement;
> > [javac] ^
> >
> >
> > This is simple ... we just need to comment out the "import" statement
>
> in
>
> > LogService.java
> >
> >
> > [javac] D:\Program
>
> Files\babeldoc\src\modules\core\src\com\babeldoc\core\pipeline\stage\JavaXm
>
> >lDecoderPipelineStage.java:28:
> >
> > cannot resolve symbol
> > [javac] symbol : class XMLDecoder
> > [javac] location: package beans
> > [javac] import java.beans.XMLDecoder;
> > [javac] ^
> >
> >
> > I'm not sure how to handle this ... this class does not exist in the
> > java.beans package in JDK 1.3.1. Do you know if this came from a
> > "previously optional" Jar, such as JAXP that I could put in the
> > classpath? I looked through the JAXP and JAXB Jars (the best I could
> > find) and did not see this class in either one. Any ideas?
> >
> >
> > [javac] D:\Program
> > Files\babeldoc\src\modules\core\src\com\babeldoc\core\I18n.java:133:
> > MessageFormat(java.lang.String,java.util.Locale) has private acces
> > s in java.text.MessageFormat
> > [javac] format = new MessageFormat(escape(formatString),
> > locale);
> > [javac] ^
> >
> >
> > This constructor does not exist in the JDK 1.3.1. Rather, I believe
> > this can be implemented as:
> > format = new MessageFormat(escape(formatString));
> > format.setLocale(locale);
> >
> > Any objection?
> >
> >
> > [javac] D:\Program
>
> Files\babeldoc\src\modules\core\src\com\babeldoc\core\pipeline\PipelineDocu
>
> >ment.java:296:
> >
> > cannot resolve symbol
> > [javac] symbol : method toString (boolean)
> > [javac] location: class java.lang.Boolean
> > [javac] String bool = Boolean.toString(binary);
> > [javac] ^
> >
> >
> > This static method does not exist in JDK 1.3.1. My workaround for it
> > is:
> > (Boolean.valueOf(binary)).toString();
> >
> > Any objection?
> >
> >
> > [javac] D:\Program
>
> Files\babeldoc\src\modules\core\src\com\babeldoc\core\pipeline\command\Pipe
>
> >lineCommand.java:126:
> >
> > cannot resolve symbol
> > [javac] symbol : method toString (boolean)
> > [javac] location: class java.lang.Boolean
> > [javac] System.out.print(I18n.get("008004",
> > Boolean.toString(tracked)));
> > [javac] ^
> >
> >
> > See above
> >
> >
> > [javac] D:\Program
>
> Files\babeldoc\src\modules\core\src\com\babeldoc\core\pipeline\stage\JavaXm
>
> >lDecoderPipelineStage.java:74:
> >
> > cannot resolve symbol
> > [javac] symbol : class XMLDecoder
> > [javac] location: class
> > com.babeldoc.core.pipeline.stage.JavaXmlDecoderPipelineStage
> > [javac] XMLDecoder d = new XMLDecoder(doc.getInputStream());
> > [javac] ^
> >
> >
> > See above
> >
> >
> > [javac] D:\Program
>
> Files\babeldoc\src\modules\core\src\com\babeldoc\core\pipeline\stage\JavaXm
>
> >lDecoderPipelineStage.java:74:
> >
> > cannot resolve symbol
> > [javac] symbol : class XMLDecoder
> > [javac] location: class
> > com.babeldoc.core.pipeline.stage.JavaXmlDecoderPipelineStage
> > [javac] XMLDecoder d = new XMLDecoder(doc.getInputStream());
> > [javac] ^
> >
> >
> > See above
> >
> >
> > [javac] 7 errors
> >
> > BUILD FAILED
> > file:D:/Program Files/babeldoc/src/./modules/core/build.xml:23:
>
> Compile
>
> > failed; see the compiler error output for details.
> >
> > Total time: 14 seconds
> >
> >
> > The information in this e-mail, and any attachment therein, is
> > confidential and for use by the addressee only. If you are not the
> > intended recipient, please return the e-mail to the sender and delete
>
> it
>
> > from your computer. Although The Bank of New York attempts to sweep
> > e-mail and attachments for viruses, it does not guarantee that either
> > are virus-free and accepts no liability for any damage sustained as a
> > result of viruses.
>
> -------------------------------------------------------
> This SF.net email is sponsored by: ValueWeb:
> Dedicated Hosting for just $79/mo with 500 GB of bandwidth!
> No other company gives more support or power for your dedicated server
> http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/
> _______________________________________________
> Babeldoc-devel mailing list
> Bab...@li...
> https://lists.sourceforge.net/lists/listinfo/babeldoc-devel
|