1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-06-07 19:00:52 +00:00

Add Alice->Bob:hello

This commit is contained in:
Arnaud Roques 2011-02-17 21:08:30 +01:00
parent 113545a865
commit d1faf73448

View File

@ -14,7 +14,10 @@ if (encodedAttribute != null) {
}
}
Object decodedAttribute = request.getAttribute("net.sourceforge.plantuml.servlet.decoded");
if (decodedAttribute != null) {
if (decodedAttribute == null) {
umltext = "Bob -> Alice : hello";
imgurl = host + contextRoot + "/img/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000";
} else {
umltext = decodedAttribute.toString();
}
%>