Script script = parser.parse(in);
script = script.compile();
log.debug("Found: " + script);
assertTrue("Parsed a Script", script instanceof Script);
String[] args = { "one", "two", "three" };
JellyContext context = new JellyContext();
context.setVariable("args", args);
StringWriter buffer = new StringWriter();
script.run(context, XMLOutput.createXMLOutput(buffer));
String text = buffer.toString().trim();
if (log.isDebugEnabled()) {
log.debug("Evaluated script as...");