While building ran into https://issues.apache.org/jira/browse/WW-3681

Fixed it quickly with a toUri(), but then I hit a bigger issue:

The assertion was failing, and here are the 2 documents

bufferResult[1,784]=digraph mygraph {
    fontsize=10;
    fontname=helvetica;
    node [fontsize=10, fontname=helvetica, style=filled, shape=rectangle]
    edge [fontsize=10, fontname=helvetica]
    subgraph cluster_tutorial {
        color=grey;
        fontcolor=grey;
        label="tutorial";
        subgraph cluster_tutorial_sitegraph {
            color=grey;
            fontcolor=grey;
            label="sitegraph";
            tutorial_sitegraph_guess [label="guess",color="coral1"];
            tutorial_sitegraph_guess_success_jsp
[label="guess-success.jsp",color="darkseagreen2"];
            tutorial_sitegraph_guess_input_ftl
[label="guess-input.ftl",color="darkseagreen2"];
            tutorial_sitegraph_guess_error_ftl
[label="guess-error.ftl",color="darkseagreen2"];
        }
        tutorial_test [label="test",color="coral1"];
        tutorial_guess_input_ftl
[label="guess-input.ftl",color="darkseagreen2"];
    }
    hello [label="hello",color="coral1"];
    hello_jsp [label="hello.jsp",color="darkseagreen2"];
    tutorial_sitegraph_guess -> tutorial_sitegraph_guess_error_ftl
[label="error",color="darkseagreen2"];
    tutorial_sitegraph_guess -> tutorial_sitegraph_guess_input_ftl
[label="input",color="darkseagreen2"];
    tutorial_sitegraph_guess -> tutorial_sitegraph_guess_success_jsp
[label="redirect: success"];

************

    tutorial_sitegraph_guess_input_ftl -> tutorial_sitegraph_guess
[label="form"];
    tutorial_sitegraph_guess_success_jsp -> tutorial_sitegraph_guess
[label="href\n(!default)"];

************

    hello -> hello_jsp [label="success",color="darkseagreen2"];
    hello -> tutorial_test [label="redirect: tutorial"];
    hello -> tutorial_test [label="redirect: tutorial2"];
    tutorial_test -> tutorial_sitegraph_guess_input_ftl
[label="input",color="darkseagreen2"];
}

writerResult[1,604]=digraph mygraph {
    fontsize=10;
    fontname=helvetica;
    node [fontsize=10, fontname=helvetica, style=filled, shape=rectangle]
    edge [fontsize=10, fontname=helvetica]
    subgraph cluster_tutorial {
        color=grey;
        fontcolor=grey;
        label="tutorial";
        subgraph cluster_tutorial_sitegraph {
            color=grey;
            fontcolor=grey;
            label="sitegraph";
            tutorial_sitegraph_guess [label="guess",color="coral1"];
            tutorial_sitegraph_guess_success_jsp
[label="guess-success.jsp",color="darkseagreen2"];
            tutorial_sitegraph_guess_input_ftl
[label="guess-input.ftl",color="darkseagreen2"];
            tutorial_sitegraph_guess_error_ftl
[label="guess-error.ftl",color="darkseagreen2"];
        }
        tutorial_test [label="test",color="coral1"];
        tutorial_guess_input_ftl
[label="guess-input.ftl",color="darkseagreen2"];
    }
    hello [label="hello",color="coral1"];
    hello_jsp [label="hello.jsp",color="darkseagreen2"];
    tutorial_sitegraph_guess -> tutorial_sitegraph_guess_error_ftl
[label="error",color="darkseagreen2"];
    tutorial_sitegraph_guess -> tutorial_sitegraph_guess_input_ftl
[label="input",color="darkseagreen2"];
    tutorial_sitegraph_guess -> tutorial_sitegraph_guess_success_jsp
[label="redirect: success"];
    hello -> hello_jsp [label="success",color="darkseagreen2"];
    hello -> tutorial_test [label="redirect: tutorial"];
    hello -> tutorial_test [label="redirect: tutorial2"];
    tutorial_test -> tutorial_sitegraph_guess_input_ftl
[label="input",color="darkseagreen2"];
}


The contents on the buffer
(trunk/plugins/sitegraph/src/test/resources/org/apache/struts2/sitegraph/out.txt
) has 2 extra lines in it that are not in the writer. Now I know nothing about
the sitegraph plugin, can someone throw me a bone?

-Jason

--
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-                                                               -
- Jason Pyeron                      PD Inc. http://www.pdinc.us -
- Principal Consultant              10 West 24th Street #100    -
- +1 (443) 269-1555 x333            Baltimore, Maryland 21218   -
-                                                               -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
This message is copyright PD Inc, subject to license 20080407P00.



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
For additional commands, e-mail: dev-h...@struts.apache.org

Reply via email to