Aethon <[EMAIL PROTECTED]> wrote on 05/06/2003 02:54:35 PM: > I believe I have found a bug. Specifically when any of > the xml files in > /xdocs have an URL that contains multiple GET > parameters, the > site:generate target fails. An example of an URL that > makes maven choke is: > > http://site/dir/blah?variable1=value1&variable2=value2 > [snip] > 3. In the /xdocs directory place the following into a > new file: > <?xml version="1.0"?> > <document> > <body> > > http://site/dir/blah?variable1=value1&variable2=value2 > </body> > </document> > (This is the attached test.xml) This is not valid xml. xdocs are xml documents, and as such must live by the rules of xml. if you want an '&' in your xml doc, you can't just put '&', you must use the entity '&'.
HTH, -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Work: http://www.multitask.com.au --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
