Improved service page design.
|
@ -34,8 +34,20 @@ import fr.devinsy.statoolinfos.properties.PathPropertyList;
|
||||||
public class Service extends PathPropertyList
|
public class Service extends PathPropertyList
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 3629841771102288863L;
|
private static final long serialVersionUID = 3629841771102288863L;
|
||||||
|
|
||||||
|
public enum Status
|
||||||
|
{
|
||||||
|
OK,
|
||||||
|
WARNING,
|
||||||
|
ALERT,
|
||||||
|
ERROR,
|
||||||
|
OVER,
|
||||||
|
UNKNOWN
|
||||||
|
}
|
||||||
|
|
||||||
private Organization organization;
|
private Organization organization;
|
||||||
private File inputFile;
|
private File inputFile;
|
||||||
|
|
||||||
private URL inputURL;
|
private URL inputURL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -152,6 +164,21 @@ public class Service extends PathPropertyList
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the license name.
|
||||||
|
*
|
||||||
|
* @return the license name
|
||||||
|
*/
|
||||||
|
public String getLicenseName()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
result = get("software.license.name");
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the logo URL.
|
* Gets the logo URL.
|
||||||
*
|
*
|
||||||
|
@ -197,6 +224,36 @@ public class Service extends PathPropertyList
|
||||||
return this.organization;
|
return this.organization;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the software license name.
|
||||||
|
*
|
||||||
|
* @return the software license name
|
||||||
|
*/
|
||||||
|
public String getSoftwareLicenseName()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
result = get("software.license.name");
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the software license webpage.
|
||||||
|
*
|
||||||
|
* @return the software license webpage
|
||||||
|
*/
|
||||||
|
public String getSoftwareLicenseWebpage()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
result = get("software.license.url");
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the software name.
|
* Gets the software name.
|
||||||
*
|
*
|
||||||
|
@ -212,6 +269,51 @@ public class Service extends PathPropertyList
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the software source website.
|
||||||
|
*
|
||||||
|
* @return the software source website
|
||||||
|
*/
|
||||||
|
public String getSoftwareSourceWebsite()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
result = get("software.source.url");
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the software version.
|
||||||
|
*
|
||||||
|
* @return the software version
|
||||||
|
*/
|
||||||
|
public String getSoftwareVersion()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
result = get("software.version");
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the software website.
|
||||||
|
*
|
||||||
|
* @return the software website
|
||||||
|
*/
|
||||||
|
public String getSoftwareWebsite()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
result = get("software.website");
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the start date.
|
* Gets the start date.
|
||||||
*
|
*
|
||||||
|
@ -227,6 +329,61 @@ public class Service extends PathPropertyList
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the status.
|
||||||
|
*
|
||||||
|
* @return the status
|
||||||
|
*/
|
||||||
|
public Status getStatus()
|
||||||
|
{
|
||||||
|
Status result;
|
||||||
|
|
||||||
|
String value = get("service.status", "service.status.level");
|
||||||
|
|
||||||
|
if ((StringUtils.isBlank(value)) || (StringUtils.equals(value, "unknonw")))
|
||||||
|
{
|
||||||
|
result = Status.UNKNOWN;
|
||||||
|
}
|
||||||
|
else if (StringUtils.equalsAnyIgnoreCase(value, "ON", "OK"))
|
||||||
|
{
|
||||||
|
result = Status.OK;
|
||||||
|
}
|
||||||
|
else if (StringUtils.equalsAnyIgnoreCase(value, "alert"))
|
||||||
|
{
|
||||||
|
result = Status.ALERT;
|
||||||
|
}
|
||||||
|
else if (StringUtils.equalsAnyIgnoreCase(value, "error", "KO", "broken"))
|
||||||
|
{
|
||||||
|
result = Status.ERROR;
|
||||||
|
}
|
||||||
|
else if (StringUtils.equalsAnyIgnoreCase(value, "over", "terminated", "closed"))
|
||||||
|
{
|
||||||
|
result = Status.OVER;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = Status.UNKNOWN;
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the status description.
|
||||||
|
*
|
||||||
|
* @return the status description
|
||||||
|
*/
|
||||||
|
public String getStatusDescription()
|
||||||
|
{
|
||||||
|
String result;
|
||||||
|
|
||||||
|
result = get("service.status.description");
|
||||||
|
|
||||||
|
//
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
public String getTechnicalDocWebsite()
|
public String getTechnicalDocWebsite()
|
||||||
{
|
{
|
||||||
String result;
|
String result;
|
||||||
|
|
|
@ -121,6 +121,14 @@ public class Htmlizer
|
||||||
StatoolInfosUtils.copyRessource(source + "statoolinfos-logo.jpg", new File(targetDirectory, "logo.jpg"));
|
StatoolInfosUtils.copyRessource(source + "statoolinfos-logo.jpg", new File(targetDirectory, "logo.jpg"));
|
||||||
StatoolInfosUtils.copyRessource(source + "statoolinfos-logo.ico", new File(targetDirectory, "favicon.ico"));
|
StatoolInfosUtils.copyRessource(source + "statoolinfos-logo.ico", new File(targetDirectory, "favicon.ico"));
|
||||||
|
|
||||||
|
//
|
||||||
|
StatoolInfosUtils.copyRessource(source + "status-ok.png", targetDirectory);
|
||||||
|
StatoolInfosUtils.copyRessource(source + "status-warning.png", targetDirectory);
|
||||||
|
StatoolInfosUtils.copyRessource(source + "status-alert.png", targetDirectory);
|
||||||
|
StatoolInfosUtils.copyRessource(source + "status-error.png", targetDirectory);
|
||||||
|
StatoolInfosUtils.copyRessource(source + "status-over.png", targetDirectory);
|
||||||
|
StatoolInfosUtils.copyRessource(source + "status-void.png", targetDirectory);
|
||||||
|
|
||||||
//
|
//
|
||||||
File color = new File(targetDirectory, "circle-icons/color");
|
File color = new File(targetDirectory, "circle-icons/color");
|
||||||
color.mkdirs();
|
color.mkdirs();
|
||||||
|
@ -136,6 +144,12 @@ public class Htmlizer
|
||||||
StatoolInfosUtils.copyRessource(source + "circle-icons/color/contacts.png", color);
|
StatoolInfosUtils.copyRessource(source + "circle-icons/color/contacts.png", color);
|
||||||
StatoolInfosUtils.copyRessource(source + "circle-icons/mono/contacts.png", mono);
|
StatoolInfosUtils.copyRessource(source + "circle-icons/mono/contacts.png", mono);
|
||||||
|
|
||||||
|
StatoolInfosUtils.copyRessource(source + "circle-icons/color/cruise.png", color);
|
||||||
|
StatoolInfosUtils.copyRessource(source + "circle-icons/mono/cruise.png", mono);
|
||||||
|
|
||||||
|
StatoolInfosUtils.copyRessource(source + "circle-icons/color/dev.png", color);
|
||||||
|
StatoolInfosUtils.copyRessource(source + "circle-icons/mono/dev.png", mono);
|
||||||
|
|
||||||
StatoolInfosUtils.copyRessource(source + "circle-icons/color/document.png", color);
|
StatoolInfosUtils.copyRessource(source + "circle-icons/color/document.png", color);
|
||||||
StatoolInfosUtils.copyRessource(source + "circle-icons/mono/document.png", mono);
|
StatoolInfosUtils.copyRessource(source + "circle-icons/mono/document.png", mono);
|
||||||
|
|
||||||
|
|
|
@ -64,9 +64,12 @@ public class ServicePage
|
||||||
data.setEscapedContent("serviceURL", service.getWebsite());
|
data.setEscapedContent("serviceURL", service.getWebsite());
|
||||||
data.setAttribute("serviceURL", "href", service.getWebsite());
|
data.setAttribute("serviceURL", "href", service.getWebsite());
|
||||||
|
|
||||||
data.setContent("serviceStartDate", service.getStartDate());
|
data.setContent("serviceDescription", StringUtils.defaultIfBlank(service.getDescription(), "n/a"));
|
||||||
data.setContent("serviceEndDate", service.getEndDate());
|
data.setContent("serviceStartDate", StringUtils.defaultIfBlank(service.getStartDate(), "n/a"));
|
||||||
data.setEscapedContent("serviceDescription", service.getDescription());
|
data.setContent("serviceEndDate", StringUtils.defaultIfBlank(service.getEndDate(), "n/a"));
|
||||||
|
|
||||||
|
data.setAttribute("serviceStatusImg", "src", "status-" + service.getStatus().toString().toLowerCase() + ".png");
|
||||||
|
data.setAttribute("serviceStatusImg", "title", StringUtils.defaultIfBlank(service.getStatusDescription(), service.getStatus().toString()));
|
||||||
|
|
||||||
data.setAttribute("rawLink", "href", organization.getTechnicalName() + "-" + service.getTechnicalName() + ".properties");
|
data.setAttribute("rawLink", "href", organization.getTechnicalName() + "-" + service.getTechnicalName() + ".properties");
|
||||||
|
|
||||||
|
@ -129,6 +132,30 @@ public class ServicePage
|
||||||
data.getIdData("registrationClientImg").getAttribute("class").setMode(DisplayMode.REPLACE);
|
data.getIdData("registrationClientImg").getAttribute("class").setMode(DisplayMode.REPLACE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
data.setContent("softwareName", StringUtils.defaultIfBlank(service.getSoftwareName(), "n/a"));
|
||||||
|
data.setContent("softwareVersion", StringUtils.defaultIfBlank(service.getSoftwareVersion(), "n/a"));
|
||||||
|
data.setContent("softwareLicenseName", StringUtils.defaultIfBlank(service.getSoftwareLicenseName(), "n/a"));
|
||||||
|
if (StringUtils.isNotBlank(service.getSoftwareWebsite()))
|
||||||
|
{
|
||||||
|
data.setAttribute("softwareWebsiteLink", "href", service.getSoftwareWebsite());
|
||||||
|
data.setAttribute("softwareWebsiteLinkImg", "class", "");
|
||||||
|
data.getIdData("softwareWebsiteLinkImg").getAttribute("class").setMode(DisplayMode.REPLACE);
|
||||||
|
}
|
||||||
|
if (StringUtils.isNotBlank(service.getSoftwareLicenseWebpage()))
|
||||||
|
{
|
||||||
|
data.setAttribute("softwareLicenseLink", "href", service.getSoftwareLicenseWebpage());
|
||||||
|
data.setAttribute("softwareLicenseLinkImg", "class", "");
|
||||||
|
data.getIdData("softwareLicenseLinkImg").getAttribute("class").setMode(DisplayMode.REPLACE);
|
||||||
|
}
|
||||||
|
if (StringUtils.isNotBlank(service.getSoftwareSourceWebsite()))
|
||||||
|
{
|
||||||
|
data.setAttribute("softwareSourceLink", "href", service.getSoftwareSourceWebsite());
|
||||||
|
data.setAttribute("softwareSourceLinkImg", "class", "");
|
||||||
|
data.getIdData("softwareSourceLinkImg").getAttribute("class").setMode(DisplayMode.REPLACE);
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
String content = PresenterUtils.dynamize("/fr/devinsy/statoolinfos/htmlize/service.xhtml", data).toString();
|
String content = PresenterUtils.dynamize("/fr/devinsy/statoolinfos/htmlize/service.xhtml", data).toString();
|
||||||
|
|
||||||
BreadcrumbTrail trail = new BreadcrumbTrail();
|
BreadcrumbTrail trail = new BreadcrumbTrail();
|
||||||
|
|
|
@ -11,33 +11,42 @@
|
||||||
<script src="Chart.bundle.min.js"></script>
|
<script src="Chart.bundle.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="center_table center" style="width: 900px;">
|
<div class="center" style="">
|
||||||
<div class="row center_table" style="border: 0px solid yellow; display: flex; justify-content: center;">
|
<div class="row center" style="border: 0px solid yellow;">
|
||||||
<div class="column" style="border: 0px solid red;">
|
<div class="column" style="border: 0px solid red;">
|
||||||
<img id="serviceLogo" src="#" style="width: 100px; heigth: 100px; vertical-align: middle;"/>
|
<img id="serviceLogo" src="#" style="width: 100px; height: 100px;"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="column" style="border: 0px solid red;">
|
<div class="column" style="border: 0px solid red; max-width: 400px;">
|
||||||
<div class="content_title"><a id="serviceName" href="#">Service name</a></div>
|
<div class="content_title"><a id="serviceName" href="#">Service name</a></div>
|
||||||
<div class="content_subtitle"><a id="serviceURL" href="#" style="text-decoration: none;">URL n/a</a></div>
|
<div class="content_subtitle"><a id="serviceURL" href="#" style="text-decoration: none;">URL n/a</a></div>
|
||||||
<p id="serviceDescription">Description absente…</p>
|
<p id="serviceDescription">Description absente…</p>
|
||||||
<div>Ouverture <span id="serviceStartDate">n/a</span></div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="border: 1px solid blue; border-radius: 8px;">
|
|
||||||
|
<div>Date ouverture : <span id="serviceStartDate">n/a</span> – Date fermeture : <span id="serviceEndDate">n/a</span> – Statut : <img id="serviceStatusImg" src="status-void.png" style="width: 25px; vertical-align: bottom;" /></div>
|
||||||
|
<div style="border: 0px solid blue; border-radius: 8px; margin: 5px;">
|
||||||
|
Inscription :
|
||||||
<img id="registrationNoneImg" src="circle-icons/mono/global.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Sans compte"/>
|
<img id="registrationNoneImg" src="circle-icons/mono/global.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Sans compte"/>
|
||||||
<img id="registrationFreeImg" src="circle-icons/mono/profile.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Compte libre"/>
|
<img id="registrationFreeImg" src="circle-icons/mono/profile.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Compte libre"/>
|
||||||
<img id="registrationMemberImg" src="circle-icons/mono/money.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Réservé aux adhérents"/>
|
<img id="registrationMemberImg" src="circle-icons/mono/money.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Réservé aux adhérents"/>
|
||||||
<img id="registrationClientImg" src="circle-icons/mono/creditcard.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Réservé aux clients"/>
|
<img id="registrationClientImg" src="circle-icons/mono/creditcard.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Réservé aux clients"/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div style="margin: 5px;">
|
||||||
|
Service :
|
||||||
<a id="legalLink" href="#"><img id="legalLinkImg" src="circle-icons/color/ribbon.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Mentions légales"/></a>
|
<a id="legalLink" href="#"><img id="legalLinkImg" src="circle-icons/color/ribbon.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Mentions légales"/></a>
|
||||||
<a id="contactLink" href="#"><img id="contactLinkImg" src="circle-icons/color/contacts.png" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Page web de contact"/></a>
|
<a id="contactLink" href="#"><img id="contactLinkImg" src="circle-icons/color/contacts.png" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Page web de contact"/></a>
|
||||||
<a id="emailLink" href="#"><img id="emailLinkImg" src="circle-icons/color/mail.png" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Courriel de contact/support"/></a>
|
<a id="emailLink" href="#"><img id="emailLinkImg" src="circle-icons/color/mail.png" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Courriel de contact/support"/></a>
|
||||||
<a id="userDocLink" href="#"><img id="userDocLinkImg" src="circle-icons/color/bookshelf.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Tutoriels"/></a>
|
<a id="userDocLink" href="#"><img id="userDocLinkImg" src="circle-icons/color/bookshelf.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Documentation"/></a>
|
||||||
<a id="technicalDocLink" href="#"><img id="technicalDocLinkImg" src="circle-icons/color/tools.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Documentation technique"/></a>
|
<a id="technicalDocLink" href="#"><img id="technicalDocLinkImg" src="circle-icons/color/tools.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Documentation technique"/></a>
|
||||||
<a id="rawLink" href="#"><img id="rawLinkImg" src="circle-icons/mono/document.png" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Fichier propriétés"/></a>
|
<a id="rawLink" href="#"><img id="rawLinkImg" src="circle-icons/mono/document.png" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Fichier propriétés"/></a>
|
||||||
</div>
|
</div>
|
||||||
|
<div style="margin: 5px;">
|
||||||
|
Logiciel :
|
||||||
|
<span id="softwareName">n/a</span>, version <span id="softwareVersion">n/a</span>, licence <span id="softwareLicenseName">n/a</span>  
|
||||||
|
<a id="softwareWebsiteLink" href="#"><img id="softwareWebsiteLinkImg" src="circle-icons/color/cruise.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Site web"/></a>
|
||||||
|
<a id="softwareLicenseLink" href="#"><img id="softwareLicenseLinkImg" src="circle-icons/color/booklet.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Licence"/></a>
|
||||||
|
<a id="softwareSourceLink" href="#"><img id="softwareSourceLinkImg" src="circle-icons/color/dev.png" class="disabled" style="width: 50px; height: 50px; padding-top:0; padding-bottom: 0; vertical-align: middle;" title="Sources"/></a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 3.5 KiB |
|
@ -136,6 +136,12 @@ h3 span
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.center_block
|
||||||
|
{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
.right
|
.right
|
||||||
{
|
{
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
@ -217,18 +223,9 @@ h3 span
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row:after
|
|
||||||
{
|
|
||||||
clear: both;
|
|
||||||
content: ".";
|
|
||||||
display: block;
|
|
||||||
height: 0;
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.column {
|
.column {
|
||||||
display: inline;
|
display: inline-block;
|
||||||
float: left;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
/***** GENERIC BUTTONS *****/
|
/***** GENERIC BUTTONS *****/
|
||||||
|
@ -731,7 +728,7 @@ table > tfoot > tr > th.danger
|
||||||
font-weight:normal;
|
font-weight:normal;
|
||||||
color:#0084FF;
|
color:#0084FF;
|
||||||
font-size:20px;
|
font-size:20px;
|
||||||
margin-top:20px;
|
padding-top:20px;
|
||||||
margin-bottom:10px;
|
margin-bottom:10px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
BIN
src/fr/devinsy/statoolinfos/htmlize/stuff/status-alert.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
src/fr/devinsy/statoolinfos/htmlize/stuff/status-error.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
src/fr/devinsy/statoolinfos/htmlize/stuff/status-ok.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
src/fr/devinsy/statoolinfos/htmlize/stuff/status-over.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
src/fr/devinsy/statoolinfos/htmlize/stuff/status-void.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
src/fr/devinsy/statoolinfos/htmlize/stuff/status-warning.png
Normal file
After Width: | Height: | Size: 11 KiB |