Forgive me if I've missed it, but I've been looking for an ANT task to
execute an XPL pipeline. Does such a neat thing exist? Being able to fire up a pipeline from ant would bring orbeon into the eclipse-build universe. Bill. -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws |
Hi Bill,
I shouldn't think it'd be much trouble to write a generic ANT task to do this - there have been a number of discussions on this list regarding the pipeline API and its usage. Regards, Jonathan >>> Bill Winspur <[hidden email]> 5/02/2007 3:24 a.m. >>> Forgive me if I've missed it, but I've been looking for an ANT task to execute an XPL pipeline. Does such a neat thing exist? Being able to fire up a pipeline from ant would bring orbeon into the eclipse-build universe. Bill. -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws |
Johnathan,
Yup. Probably easy. But I'm still surprised I cannot find it. I last used Orbeon almost 3 years ago, on the server side to ease use of SVGL. Surely somebody has needed complex xml transforms in build scripts since then!? If I do write the XPL task, I'll post a link to it here. Bill. Jonathan J Wright wrote: >Hi Bill, > >I shouldn't think it'd be much trouble to write a generic ANT task to do this - there have been a number of discussions on this list regarding the pipeline API and its usage. > >Regards, > >Jonathan > > > >>>>Bill Winspur <[hidden email]> 5/02/2007 3:24 a.m. >>> >>>> >>>> >Forgive me if I've missed it, but I've been looking for an ANT task to >execute >an XPL pipeline. Does such a neat thing exist? Being able to fire up a >pipeline from ant would bring orbeon into the eclipse-build universe. > >Bill. > > > > > -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws |
Administrator
|
Hi Bill,
I am not aware of anyone having built an Ant task to run XPL, but it is fairly easy to use the Java task for that purpose. For instance, in the build.xml we use to build Orbeon Forms, this is tasks we use to generate the static HTML documentation: <java classname="org.orbeon.oxf.main.OPS" fork="true" failonerror="true"> <classpath> <path refid="class.path"/> <pathelement location="${resources-private.jar.file}"/> </classpath> <arg value="-r"/> <arg value="${resources.dir}"/> <arg value="oxf:/apps/doc/generate-static-html.xpl"/> </java> Alex On 2/4/07, Bill Winspur <[hidden email]> wrote: > Johnathan, > > Yup. Probably easy. But I'm still surprised I cannot find it. I last > used Orbeon almost 3 years ago, on the server side to ease use of SVGL. > Surely somebody has needed complex xml transforms in build scripts since > then!? > > If I do write the XPL task, I'll post a link to it here. > > Bill. > > Jonathan J Wright wrote: > > >Hi Bill, > > > >I shouldn't think it'd be much trouble to write a generic ANT task to do this - there have been a number of discussions on this list regarding the pipeline API and its usage. > > > >Regards, > > > >Jonathan > > > > > > > >>>>Bill Winspur <[hidden email]> 5/02/2007 3:24 a.m. >>> > >>>> > >>>> > >Forgive me if I've missed it, but I've been looking for an ANT task to > >execute > >an XPL pipeline. Does such a neat thing exist? Being able to fire up a > >pipeline from ant would bring orbeon into the eclipse-build universe. > > > >Bill. > > > > > > > > > > > > > > -- > You receive this message as a subscriber of the [hidden email] mailing list. > To unsubscribe: mailto:[hidden email] > For general help: mailto:[hidden email]?subject=help > ObjectWeb mailing lists service home page: http://www.objectweb.org/wws > > -- Orbeon Forms - Web Forms for the Enterprise, Done the Right Way http://www.orbeon.com/ -- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: mailto:[hidden email] For general help: mailto:[hidden email]?subject=help ObjectWeb mailing lists service home page: http://www.objectweb.org/wws |
Free forum by Nabble | Edit this page |