You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Jo...@lotus.com on 2001/11/09 21:56:24 UTC

[ANNOUNCEMENT] Xalan-J 2.2.D12 released

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

To permit more selective downloading, executables 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:
        xalan-j_2_2_D12-bin.tar.gz
        xalan-j_2_2_D12-bin.zip

     Source:
        xalan-j_2_2_D12-src.tar.gz
        xalan-j_2_2_D12-src.zip

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

D12 is our candidate for release as the production version of Xalan-Java
2.2, currently expected around December 3rd. Please test it thoroughly, and
post any problems you discover into Bugzilla.

(Note that for 2.2 we aren't yet overly concerned with Xerces2
compatability. We're planning to nail that down after the next Xerces
release cycle and release Xalan-Java 2.3 around January 2nd.)


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);