improve detail view
@@ -25,12 +25,25 @@
|
||||
|
||||
<h2>Plugin Versions</h2>
|
||||
|
||||
<ul>
|
||||
<#list versions as version>
|
||||
<li>${version.version}</li>
|
||||
</#list>
|
||||
</ul>
|
||||
<div id="accordion">
|
||||
<#list versions as version>
|
||||
<h5><a href="#">${version.version}</a></h5>
|
||||
<div>
|
||||
<p>${version.description}</p>
|
||||
</div>
|
||||
</#list>
|
||||
</div>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<a href="${contextPath}/page/index.html">Overview</a>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(document).ready(function(){
|
||||
$( "#accordion" ).accordion({
|
||||
active: false
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<#include "template/footer.html">
|
||||
BIN
scm-plugin-backend/src/main/webapp/template/css/images/2cl.png
Normal file
|
After Width: | Height: | Size: 226 B |
BIN
scm-plugin-backend/src/main/webapp/template/css/images/2cr.png
Normal file
|
After Width: | Height: | Size: 221 B |
|
After Width: | Height: | Size: 138 B |
|
After Width: | Height: | Size: 157 B |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 184 B |
|
After Width: | Height: | Size: 906 B |
|
After Width: | Height: | Size: 873 B |
|
After Width: | Height: | Size: 585 B |
@@ -38,8 +38,11 @@
|
||||
|
||||
<title>SCM-Manager Plugin-Backend</title>
|
||||
<link rel="stylesheet" type="text/css" media="all" href="${contextPath}/template/css/style.css" />
|
||||
<link rel="stylesheet" type="text/css" media="all" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/ui-lightness/jquery-ui.css" />
|
||||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
|
||||
<!--[if lt IE 9]>
|
||||
<script src="/html5.js"></script>
|
||||
<script src="${contextPath}template/js/html5.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<base href="${contextPath}" />
|
||||
|
||||
5
scm-plugin-backend/src/main/webapp/template/js/html5.js
Normal file
@@ -0,0 +1,5 @@
|
||||
// html5shiv MIT @rem remysharp.com/html5-enabling-script
|
||||
// iepp v1.5.1 MIT @jon_neal iecss.com/print-protector
|
||||
/*@cc_on(function(p,e){var q=e.createElement("div");q.innerHTML="<z>i</z>";q.childNodes.length!==1&&function(){function r(a,b){if(g[a])g[a].styleSheet.cssText+=b;else{var c=s[l],d=e[j]("style");d.media=a;c.insertBefore(d,c[l]);g[a]=d;r(a,b)}}function t(a,b){for(var c=new RegExp("\\b("+m+")\\b(?!.*[;}])","gi"),d=function(k){return".iepp_"+k},h=-1;++h<a.length;){b=a[h].media||b;t(a[h].imports,b);r(b,a[h].cssText.replace(c,d))}}for(var s=e.documentElement,i=e.createDocumentFragment(),g={},m="abbr article aside audio canvas details figcaption figure footer header hgroup mark meter nav output progress section summary time video".replace(/ /g, '|'),
|
||||
n=m.split("|"),f=[],o=-1,l="firstChild",j="createElement";++o<n.length;){e[j](n[o]);i[j](n[o])}i=i.appendChild(e[j]("div"));p.attachEvent("onbeforeprint",function(){for(var a,b=e.getElementsByTagName("*"),c,d,h=new RegExp("^"+m+"$","i"),k=-1;++k<b.length;)if((a=b[k])&&(d=a.nodeName.match(h))){c=new RegExp("^\\s*<"+d+"(.*)\\/"+d+">\\s*$","i");i.innerHTML=a.outerHTML.replace(/\r|\n/g," ").replace(c,a.currentStyle.display=="block"?"<div$1/div>":"<span$1/span>");c=i.childNodes[0];c.className+=" iepp_"+
|
||||
d;c=f[f.length]=[a,c];a.parentNode.replaceChild(c[1],c[0])}t(e.styleSheets,"all")});p.attachEvent("onafterprint",function(){for(var a=-1,b;++a<f.length;)f[a][1].parentNode.replaceChild(f[a][0],f[a][1]);for(b in g)s[l].removeChild(g[b]);g={};f=[]})}()})(this,document);
|
||||