diff --git a/src/main/java/net/sourceforge/plantuml/servlet/utility/Configuration.java b/src/main/java/net/sourceforge/plantuml/servlet/utility/Configuration.java index 7a021c6..ed37ad7 100644 --- a/src/main/java/net/sourceforge/plantuml/servlet/utility/Configuration.java +++ b/src/main/java/net/sourceforge/plantuml/servlet/utility/Configuration.java @@ -41,7 +41,7 @@ public final class Configuration { // Default values config.setProperty("SHOW_SOCIAL_BUTTONS", "off"); - config.setProperty("USE_GOOGLE_TRACKER", "off"); + config.setProperty("SHOW_GITHUB_RIBBON", "off"); // End of default values try { diff --git a/src/main/resources/config.properties b/src/main/resources/config.properties index 5b1521f..cd468dd 100644 --- a/src/main/resources/config.properties +++ b/src/main/resources/config.properties @@ -1,3 +1,3 @@ #PlantUML configuration file # -#USE_GOOGLE_TRACKER=on \ No newline at end of file +SHOW_GITHUB_RIBBON=on \ No newline at end of file diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp index 8f59c05..f633033 100644 --- a/src/main/webapp/index.jsp +++ b/src/main/webapp/index.jsp @@ -46,6 +46,9 @@ <%@ include file="resource/socialbuttons1.html" %> + + <%@ include file="resource/githubribbon.html" %> +

Create your PlantUML diagrams directly in your browser !

diff --git a/src/main/webapp/resource/githubribbon.html b/src/main/webapp/resource/githubribbon.html new file mode 100644 index 0000000..c70e6ba --- /dev/null +++ b/src/main/webapp/resource/githubribbon.html @@ -0,0 +1 @@ +Fork me on GitHub \ No newline at end of file