|
View:
New views
7 Messages
—
Rating Filter:
Alert me
|
|
|
ROME OPML source code and licence?http://wiki.java.net/bin/view/Javawsxml/OPML
Sorry, if I've missed something obvious, but I can't seem to find either the source code or the licence of this submodule. Any clues? -- Ole Jørgen Brønner --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: ROME OPML source code and licence?It is ASL like the rest of ROME. I guess I never put a src jar up. The src is available anoncvs
cvs -d :pserver:guest@...:/cvs/subprojects/opml checkout opml
2009/3/25 Ole Jørgen Brønner <olejorgenb@...> http://wiki.java.net/bin/view/Javawsxml/OPML -- :Robert "kebernet" Cooper ::kebernet@... Alice's cleartext Charlie is the attacker Bob signs and encrypts http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x9E8759F8 |
|
|
Re: ROME OPML source code and licence?Thanks, I should probably have figured that out myself :)
On Wed, 25 Mar 2009 19:16:31 +0100, Robert "kebernet" Cooper <kebernet@...> wrote: > It is ASL like the rest of ROME. I guess I never put a src jar up. The > src > is available anoncvs > cvs -d :pserver:guest@...:/cvs/subprojects/opml checkout > opml > > 2009/3/25 Ole Jørgen Brønner <olejorgenb@...> > >> http://wiki.java.net/bin/view/Javawsxml/OPML >> >> Sorry, if I've missed something obvious, but I can't seem to find either >> the source code or the licence of this submodule. Any clues? >> >> -- >> Ole Jørgen Brønner --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
Re: ROME OPML source code and licence?
Somehow, I has missed the presence of the opml subproject. I
downloaded it to test it and had to do the following to get it to work.
1. I had to recompile the opml src against rome 1.0 because the existing opml jar failed with rome 1.0 (it worked with rome 0.9). 2. I also did a minor fix to the opml 1.0 parser to accept version 1.1 files because according to http://www.opml.org/stories/storyReader$11 " ... Now after all that, if you're wondering what to do -- if you see an OPML 1.1 file, you should treat it like an OPML 1.0 file. That's it. Enjoy! ... " Accordingly, I added || e.getAttributeValue("version").equals("1.1") to line 67 of src/java/com/sun/syndication/io/impl/OPML10Parser.java I don't use maven, and to build this, I quickly hacked up an ant build file based on the fetcher subproject. Attaching the build.xml and the jar file for what it is worth. I haven't run unit tests against this new jar. Subbu. Thanks, I should probably have figured that out myself :) <?xml version="1.0" encoding="UTF-8"?> <project default="jar" name="opml" basedir="."> <import file="../../build.xml"/> <property name="classdir" location="target/classes" /> <property name="srcdir" location="src" /> <target name="jar" description="Create the jar" depends="get-deps,compile,prepare"> <jar jarfile="opml-0.1.jar" excludes="**/package.html" basedir="${classdir}" /> </target> <target name="compile" description="Compile all sources."> <mkdir dir="${classdir}" /> <javac srcdir="${srcdir}" destdir="${classdir}" excludes="**/test/**" /> </target> <target name="prepare" description="Copy rome properties"> <copy file="${srcdir}/conf/rome.properties" todir="${classdir}" /> </target> <target name="get-deps" depends="rome.get-deps"> <get dest="${libdir}/rome-1.0.jar" usetimestamp="true" ignoreerrors="true" src="https://rome.dev.java.net/dist/rome-1.0.jar" /> <get dest="${libdir}/servletapi-2.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/servletapi/jars/servletapi-2.3.jar" /> <get dest="${libdir}/jetty-4.2.12.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/jetty/jars/jetty-4.2.12.jar" /> <get dest="${libdir}/commons-httpclient-3.0.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-httpclient/jars/commons-httpclient-3.0.1.jar" /> <get dest="${libdir}/commons-logging-1.0.4.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.4.jar" /> </target> <target name="clean"> <delete dir="${classdir}" /> </target> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
ROME Behind Proxy?Hi,
I am using rome-1.0.jar behind a http proxy, and running into problems. I have tried to export the http_proxy environmental variable, or use System.setProperty() to set the proxy host and port in Java, or supply them through -Dhttp.proxyHost and -Dhttp.proxyPort to java, and none of them worked. I read some people had similar experience in the past, and wonder if there is a known solution to this problem. Thanks for any advice and help! Jeff --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
RE: ROME Behind Proxy?System.setProperty() should work fine.
Can you post your code? > -----Original Message----- > From: Jiahui Wang [mailto:jwangh@...] > Sent: Friday, 3 April 2009 10:26 AM > To: users@...; users@... > Subject: ROME Behind Proxy? > > Hi, > > I am using rome-1.0.jar behind a http proxy, and running into problems. > I have tried to export the http_proxy environmental variable, or use > System.setProperty() to set the proxy host and port in Java, or supply > them through -Dhttp.proxyHost and -Dhttp.proxyPort to java, and none of > them worked. I read some people had similar experience in the past, and > wonder if there is a known solution to this problem. > > Thanks for any advice and help! > > Jeff > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@... > For additional commands, e-mail: users-help@... IMPORTANT: This e-mail, including any attachments, may contain private or confidential information. If you think you may not be the intended recipient, or if you have received this e-mail in error, please contact the sender immediately and delete all copies of this e-mail. If you are not the intended recipient, you must not reproduce any part of this e-mail or disclose its contents to any other party. This email represents the views of the individual sender, which do not necessarily reflect those of Education.au except where the sender expressly states otherwise. It is your responsibility to scan this email and any files transmitted with it for viruses or any other defects. education.au limited will not be liable for any loss, damage or consequence caused directly or indirectly by this email. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
|
|
RE: ROME Behind Proxy?Nick,
Thanks very much for the comment. It does work properly, I didn't use the right syntax when setting properties. Jeff > -----Original Message----- > From: nlothian@... > Sent: Fri, 3 Apr 2009 10:59:56 +1030 > To: users@... > Subject: RE: ROME Behind Proxy? > > System.setProperty() should work fine. > > Can you post your code? > >> -----Original Message----- >> From: Jiahui Wang [mailto:jwangh@...] >> Sent: Friday, 3 April 2009 10:26 AM >> To: users@...; users@... >> Subject: ROME Behind Proxy? >> >> Hi, >> >> I am using rome-1.0.jar behind a http proxy, and running into problems. >> I have tried to export the http_proxy environmental variable, or use >> System.setProperty() to set the proxy host and port in Java, or supply >> them through -Dhttp.proxyHost and -Dhttp.proxyPort to java, and none of >> them worked. I read some people had similar experience in the past, and >> wonder if there is a known solution to this problem. >> >> Thanks for any advice and help! >> >> Jeff >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: users-unsubscribe@... >> For additional commands, e-mail: users-help@... > > > IMPORTANT: This e-mail, including any attachments, may contain private or > confidential information. If you think you may not be the intended > recipient, or if you have received this e-mail in error, please contact > the sender immediately and delete all copies of this e-mail. If you are > not the intended recipient, you must not reproduce any part of this > e-mail or disclose its contents to any other party. This email represents > the views of the individual sender, which do not necessarily reflect > those of Education.au except where the sender expressly states otherwise. > It is your responsibility to scan this email and any files transmitted > with it for viruses or any other defects. education.au limited will not > be liable for any loss, damage or consequence caused directly or > indirectly by this email. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@... > For additional commands, e-mail: users-help@... ____________________________________________________________ GET FREE 5GB EMAIL - Check out spam free email with many cool features! Visit http://www.inbox.com/email to find out more! --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@... For additional commands, e-mail: users-help@... |
| Free embeddable forum powered by Nabble | Forum Help |