Hello!

there's a small bug in SimpleTransform.java:


...
    public static String transform( String url,
                                    String stylesheet_url,
                                    Dictionary params ) throws SAXException
{

...

        return transform( new XSLTInputSource( url ),
                          new XSLTInputSource( stylesheet_url ),
                          null);

    }
...


the "params"  should be passed:

...
        return transform( new XSLTInputSource( url ),
                          new XSLTInputSource( stylesheet_url ),
                          params);
...

thanks!
ttfn
--ron.  ;-)


___________________________________________________________________________
Make it your ambition to lead a quiet life, to mind your own business, and
to work with your
hands, just as we told you, so that your daily life may win the respect of
outsiders and so
that you will not be dependent on anybody.
1 Thessalonians 4:11-12



--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/[email protected]/>
List Help?:          [EMAIL PROTECTED]

Reply via email to