Skip to content

Commit

Permalink
updated wfsclient
Browse files Browse the repository at this point in the history
  • Loading branch information
clausnagel committed Sep 21, 2024
1 parent a96092d commit 4d1bcff
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,11 @@ war {
into('META-INF') {
from processLicense
}
filesMatching('**/index.html') {
filter(ReplaceTokens, tokens: [
vendorName: project.vendorName,
vendorCopyright: project.vendorCopyright,
vendorWebsiteUrl: project.vendorWebsiteUrl
])
}
}
12 changes: 6 additions & 6 deletions src/main/webapp/wfsclient/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<HEAD>
<title>WFS Client</title>
<script type="text/javascript" src="lib/jquery1_9_1.js"></script>
<script type="text/javascript" src="lib/jquery-3.7.1.min.js"></script>
<link type="text/css" href="css/style.css" rel="stylesheet"/>
<link rel="icon" type="image/png" href="img/wfs_logo.png">
<!-- codeMirror library for highlighting XML code -->
Expand All @@ -19,10 +19,10 @@
<div id="container">
<div id="Header">
<div id="CompanyLogo">
<img src="img/wfs_logo.png" alt="virtualcitysystems GmbH" width="70" height="70" style="vertical-align:middle"/>
<img src="img/wfs_logo.png" alt="@vendorName@" width="70" height="70" style="vertical-align:middle"/>
<h1>VC WFS Client</h1>
<a href="https://vc.systems/" target="_blank" title="virtualcitysystems GmbH">
<img src="img/vcs_logo.png" alt="virtualcitysystems GmbH" width="200" height="48" style="vertical-align:middle; padding-top:20px; position: absolute; right: 10px"/>
<a href="@vendorWebsiteUrl@" target="_blank" title="@vendorName@">
<img src="img/vcs_logo.png" alt="@vendorName@" width="200" height="48" style="vertical-align:middle; padding-top:20px; position: absolute; right: 10px"/>
</a>
</div>
</div>
Expand All @@ -39,8 +39,8 @@ <h2>Response</h2>
<textarea id="response"></textarea>
</div>
<div id="copyright">
<a href="https://vc.systems/" target="_blank">
(C) 2015 - 2024, virtualcitysystems GmbH. All rights reserved.
<a href="@vendorWebsiteUrl@" target="_blank">
(C) @vendorCopyright@, @vendorName@. All rights reserved.
</a>
</div>
</div>
Expand Down
2 changes: 2 additions & 0 deletions src/main/webapp/wfsclient/lib/jquery-3.7.1.min.js

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions src/main/webapp/wfsclient/lib/jquery1_9_1.js

This file was deleted.

0 comments on commit 4d1bcff

Please sign in to comment.