You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@xml.apache.org by Jo...@lotus.com on 2001/11/30 18:31:20 UTC

[ANNOUNCEMENT] Xalan-J 2.2.D14 released

We have just posted Xalan-Java version 2.2.D14 (a Developer's release) to
xml.apache.org.

This includes a significant improvement to the DTM system which should
remove our past limitations on number of documents and/or document size, by
allowing a DTM to "overflow" from one DTMID to another. It also includes a
few critical bugfixes in other areas.

Executables, documentation, and samples are now packaged separately from
the source files and testcases. Download and unpack whichever you need from
http://xml.apache.org/dist/xalan-j/.

     Binaries (user's package):
        xalan-j_2_2_D13-bin.tar.gz
        xalan-j_2_2_D13-bin.zip

     Source (developer's package):
        xalan-j_2_2_D13-src.tar.gz
        xalan-j_2_2_D13-src.zip

The sources are tagged in cvs as 'xalan-j_2_2_D14'.

D14 is our candidate for release as the production version of Xalan-Java
2.2, currently expected around December 17th. Please test it thoroughly,
and post any problems you discover into Bugzilla. Many thanks to everyone
who has been helping us with pre-production-release testing!


(Note that for 2.2 we aren't yet overly concerned with Xerces2
compatability, though that ought to work. We're planning to officially nail
that down shortly after the next Xerces release cycle and release
Xalan-Java 2.3 around January 14th.)


---------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          general-unsubscribe@xml.apache.org
For additional commands, e-mail: general-help@xml.apache.org


Re: [ANNOUNCEMENT] Xalan-J 2.2.D11 released

Posted by Edwin Goei <ed...@sun.com>.
Joseph_Kesselman@lotus.com wrote:
> 
> We have just posted Xalan-Java version 2.2.D11 (a Developer's release) to
> xml.apache.org. To get a complete build with samples, sources, and
> documentation, download and unzip either of the following from
> http://xml.apache.org/dist/xalan-j/.
> 
>      xalan-j_2_2_D11.zip
>      xalan-j_2_2_D11.tar.gz
> 
> The sources are tagged in cvs as 'xalan-j_2_2_D11'.

Hmmm, I don't see this tag in CVS, nor any tag containing "D11".

-Edwin

---------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          general-unsubscribe@xml.apache.org
For additional commands, e-mail: general-help@xml.apache.org


xmlns:xml attribute

Posted by "Victor M. Moreno" <vm...@germinus.com>.
Hello,
I have developed a xsl extension that returns a NodeSet.
This NodeSet is: <img src="whatever" />
I am building this NodeSet with the following source code.

The problem is that I am getting the following:
<img xmlns:xml="http://www.w3.org/XML/1998/namespace"
src="http://appserver3:8004/Empresa01/20000007"/>

I do not know with the attribute  "xmlns:xml"  appears;
I have tried with: elemento.removeAttribute("xmlns:xml") without success.

Anyone know how I can get rid of this attribute?


Thanks

Victor




    NodeSet inter= new NodeSet();
    Node res = null;
    Element elemento;

    DocumentBuilderFactory docBF = DocumentBuilderFactory.newInstance();
    DocumentBuilder docB = docBF.newDocumentBuilder();
    Document document = docB.newDocument();

    elemento = document.createElement("img");

    elemento.setAttribute("src",enlace);
    //elemento.removeAttribute("xmlns");

    res = elemento;
    inter.addNode(res);