What's new? | Help | Directory | Sign in
Google
  
  
  
    
Search
for
Updated Aug 17 (4 days ago) by James.Fuller.2007
CurrentStatus  
Describes current 'state of play' with xproc.xq

Status

17/08/2008 working off latest editor spec ... aiming for a release Sept 6th.

Changelog

Check out the Changelog included in the source code. This file is not always up to date in trunk but will reflect reality for tag releases.

TODO

The source code TODO file is the best place to find this information.

Limitations and Issues

There are so many issues to list .... so I will just highlight the major ones;

 <p:pipeline name="helloworld"
            xmlns:p="http://www.w3.org/ns/xproc">

  <p:input port="source"/>
  <p:output port="result"/>

    <p:identity name="step2">
       <p:input port="step2-input">
              <p:pipe step="step1" port="step1-output"/>
       </p:input>
       <p:output port="step2-output"/>
    </p:identity>

    <p:count name="step3">
        <p:input port="step3-input">
              <p:pipe step="step2" port="step2-output"/>
       </p:input>
    </p:count>

    <p:count name="step1">
        <p:input port="step1-input">
              <p:pipe step="helloworld" port="std-input"/>
        </p:input>
        <p:output port="step1-output"/>
    </p:count>

 </p:pipeline>

Note: Looking at the current trunk/TODO file will help you determine what I am focusing on for now.

When will you release and will xproc.xq be compliant ?

If I had a road map it would be;

I will need to get each of the above near 100% before I release.

I believe that I will partially satisfy XProc v1.0 compliance ... the choice of using XQuery restricts me somewhat in that I have to resort to extending the underlying XQUery processor. Here are the real problems;


Sign in to add a comment