- From: RICAUD-DUSSARGET Matthieu <matthieu.ricaud@igs-cp.fr>
- Date: Mon, 16 Dec 2013 11:50:12 +0100
- To: xproc-dev@w3.org
- Message-ID: <CADRkOwFG6MOTr0HFgcTg=ySEJpsZdJL8yf-EVHKPiVXce0LrEQ@mail.gmail.com>
Hi, I think this is a "Calabash only" question, hope this is the good list. I have download the last calabash-1.0.16-95 release and my xproc script doesn't work anymore (I was using v.1.0.3 before) ** The context ** I'd like to use Xproc as a configuration file for Epub conversion, let's call it "profile.xpl". That means profile.xpl has to be as simple as possible because non-xproc developper will have to use it as a parameter file. profile.xpl calls a library "common.xpl" which makes all complex and verbose stuff. On the other hand, profile.xpl should be able to define different subprocess which can call each other. To make this works I have defines that : - profile.xpl has to run <p:pipeline> instead of <p:declare-step> so the file keep not verbose - profile.xpl has to be a <p:library> so I can call any sub process from the command line ** the test ** This is how it looks as really simple test : * profile.xpl * <?xml version="1.0"?> <p:library xmlns:p="http://www.w3.org/ns/xproc" xmlns:igs="http://www.igs-cp.fr" version="1.0"> <p:pipeline type="igs:test"> <p:identity/> </p:pipeline> </p:library> * test.xml * <?xml version="1.0"?> <TEST> <p>THIS IS A TEST XML FILE</p> </TEST> * command line * java -Dcom.xmlcalabash.phonehome="false" -jar calabash-1.0.16-95\calabash.jar -b igs=http://www.igs-cp.fr -i source=test.xml -l test.xpl -s igs:test This command line doesn't work : I get an endless waiting. With debug option I get this : <?xml version="1.0" encoding="UTF-8"?> <declare-step xmlns="http://www.w3.org/ns/xproc" version="1.0"> <input port="source" sequence="true"/> <input port="parameters" kind="parameter"/> <output port="result"> <pipe step="cmdlineStep1" port="result"/> </output> <import href="test.xpl"/> <igs:test xmlns:igs="http://www.igs-cp.fr" name="cmdlineStep1"> <input port="source"> <document href="file:///J:/info_editoriale/XML_EDITORIAL/Recherche_et_Developpement/xproc/test.xml"/> </input> </igs:test> </declare-step> and then the pipeline never ends. When I use another version of Calabash like Calabash version 1.0.3, it works fine. Any suggestions ? is that a bug with Calabash 1.0.16-95 ? Thanks in advance, Matthieu. -- Matthieu Ricaud-Dussarget IGS-CP - Développeur XML 05 45 37 09 49
Received on Monday, 16 December 2013 10:51:13 UTC