[xsl] [XSLT 1.0] Replace namespace prefixes?

Subject: [xsl] [XSLT 1.0] Replace namespace prefixes?
From: "Costello, Roger L." <costello@xxxxxxxxx>
Date: Thu, 24 Dec 2009 11:39:06 -0500
Hi Folks,

I would like an identify transform that replaces namespace prefixes with my
own names.

For example, I would like to transform this:

    <attackNOW:book xmlns:attackNOW="http://www.book.org";>
        <attackNOW:title>The Origin of Wealth</attackNOW:title>
        <attackNOW:author>Eric D. Beinhocker</attackNOW:author>
        <attackNOW:date>2006</attackNOW:date>
        <attackNOW:ISBN>1-57851-777-X</attackNOW:ISBN>
        <attackNOW:publisher>Harvard Business School
Press</attackNOW:publisher>
        <attackNOW:cost currency="USD">29.95</attackNOW:cost>
    </attackNOW:book>

Into this:

    <bk:book xmlns:bk="http://www.book.org";>
        <bk:title>The Origin of Wealth</bk:title>
        <bk:author>Eric D. Beinhocker</bk:author>
        <bk:date>2006</bk:date>
        <bk:ISBN>1-57851-777-X</bk:ISBN>
        <bk:publisher>Harvard Business School Press</bk:publisher>
        <bk:cost currency="USD">29.95</bk:cost>
    </bk:book>

Or this:

    <book xmlns="http://www.book.org";>
        <title>The Origin of Wealth</title>
        <author>Eric D. Beinhocker</author>
        <date>2006</date>
        <ISBN>1-57851-777-X</ISBN>
        <publisher>Harvard Business School Press</publisher>
        <cost currency="USD">29.95</cost>
    </book>

Is there a way to replace namespace prefixes, using XSLT 1.0?

/Roger

Current Thread