Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
runcon
Plantuml Server
Commits
48266b30
Commit
48266b30
authored
Mar 31, 2011
by
Maxime Sinclair
Browse files
Little enhancements of the look of the main page.
The build date is included in the footer.
parent
0f343490
Changes
4
Hide whitespace changes
Inline
Side-by-side
build.xml
View file @
48266b30
<project
default=
"main"
basedir=
"."
>
<target
name=
"main"
depends=
"clean,
compile,
war"
>
<target
name=
"main"
depends=
"clean,war"
>
</target>
<taskdef
name=
"junit"
...
...
@@ -41,10 +41,27 @@
<javac
srcdir=
"src"
destdir=
"content/WEB-INF/classes"
debug=
"${debug}"
classpathref=
"project-classpath"
/>
</target>
<target
name=
"war"
>
<target
name=
"prepare"
depends=
"init"
>
<!-- So that we can use the ${TSTAMP}, ${DSTAMP} -->
<tstamp
/>
<filter
token=
"timestamp"
value=
"${DSTAMP}"
/>
<copy
todir=
"${target}/root"
filtering=
"true"
>
<fileset
dir=
"content"
>
<include
name=
"*.jsp*"
/>
</fileset>
</copy>
<copy
todir=
"${target}/root"
filtering=
"false"
>
<fileset
dir=
"content"
>
<exclude
name=
"*.jsp*"
/>
<exclude
name=
"*-INF/**"
/>
</fileset>
</copy>
</target>
<target
name=
"war"
depends=
"prepare, compile"
>
<war
destfile=
"${target}/plantuml.war"
webxml=
"content/WEB-INF/web.xml"
>
<classes
dir=
"content/WEB-INF/classes"
/>
<fileset
dir=
"
content"
excludes=
"WEB-INF/**"
/>
<fileset
dir=
"
${target}/root"
/>
<lib
dir=
"content/WEB-INF/lib"
/>
</war>
</target>
...
...
content/footer.jspf
0 → 100644
View file @
48266b30
<div id="footer">
<p>PlantUML Server @timestamp@
</p>
</div>
\ No newline at end of file
content/index.jsp
View file @
48266b30
...
...
@@ -34,7 +34,7 @@ if (decodedAttribute != null) {
<body>
<div
id=
"header"
>
<%-- PAGE TITLE --%>
<h1>
PlantUMLServer
</h1>
<h1>
PlantUML
Server
</h1>
<p>
This application provides a servlet which serves images created by
<a
href=
"http://plantuml.sourceforge.net"
>
PlantUML
</a>
.
</p>
</div>
<div
id=
"content"
>
...
...
@@ -60,8 +60,9 @@ if (decodedAttribute != null) {
<p>
You can use the following URL:
<br/>
<a
href=
"
<%=
imgurl
%>
"
><code>
<
img src="
<%=
imgurl
%>
" /
>
</code></a>
<br/><br/>
<img
id=
"diagram"
src=
"
<%=
imgurl
%>
"
alt=
"PlantUML diagram"
/>
</p>
<p
id=
"diagram"
>
<img
src=
"
<%=
imgurl
%>
"
alt=
"PlantUML diagram"
/>
</p>
<%
}
//endif
%>
</div>
...
...
@@ -70,7 +71,7 @@ if (decodedAttribute != null) {
Bob -> Alice : hello
@enduml
-->
<%-- FOOTER
<%@ include file="
util/
footer.jspf" %>
--%>
<%-- FOOTER
--%>
<%@ include
file=
"footer.jspf"
%>
</body>
</html>
content/plantuml.css
View file @
48266b30
...
...
@@ -4,7 +4,7 @@
/* Font */
*
{
font-family
:
sans-serif
;
font-family
:
arial
,
helvetica
,
sans-serif
;
}
/* Header */
...
...
@@ -30,11 +30,26 @@
/* XHTML tag */
#content
code
{
font-family
:
monospace
;
font-family
:
'courier new'
,
courier
,
monospace
;
letter-spacing
:
-1pt
;
}
/* Diagram */
#content
img
#diagram
{
#content
#diagram
{
text-align
:
center
;
}
#content
#diagram
img
{
border
:
medium
solid
green
;
padding
:
10px
;
}
/* Footer */
#footer
p
{
background-color
:
#eee
;
color
:
#666
;
font-size
:
0.7em
;
padding
:
2px
;
text-align
:
center
;
width
:
100%
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment