mirror of https://github.com/apache/archiva.git
fix href which was changing hash whereas it was not needed
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1425076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
29e8169325
commit
cfeda8df92
|
@ -354,7 +354,7 @@
|
||||||
<img src="images/small-spinner.gif"/>
|
<img src="images/small-spinner.gif"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h3>${$.i18n.prop('system-status.header.main')} <a href="#" onclick="refreshSystemStatus()"><img src="images/view-refresh-22-22.png"/></a></h3>
|
<h3>${$.i18n.prop('system-status.header.main')} <a class="cursor-hand" onclick="refreshSystemStatus()"><img src="images/view-refresh-22-22.png"/></a></h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h4>${$.i18n.prop('system-status.header.queues')}</h4>
|
<h4>${$.i18n.prop('system-status.header.queues')}</h4>
|
||||||
|
@ -364,21 +364,21 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h4>${$.i18n.prop('system-status.header.scanning')} <a href="#" onclick="displayScanningStats()"><img src="images/view-refresh.png"/></a></h4>
|
<h4>${$.i18n.prop('system-status.header.scanning')} <a class="cursor-hand" onclick="displayScanningStats()"><img src="images/view-refresh.png"/></a></h4>
|
||||||
</div>
|
</div>
|
||||||
<div id="status_scanning">
|
<div id="status_scanning">
|
||||||
<img src="images/small-spinner.gif"/>
|
<img src="images/small-spinner.gif"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h4>${$.i18n.prop('system-status.header.caches')} <a href="#" onclick="displayCacheEntries()"><img src="images/view-refresh.png"/></a></h4>
|
<h4>${$.i18n.prop('system-status.header.caches')} <a class="cursor-hand" onclick="displayCacheEntries()"><img src="images/view-refresh.png"/></a></h4>
|
||||||
</div>
|
</div>
|
||||||
<div id="status_caches">
|
<div id="status_caches">
|
||||||
<img src="images/small-spinner.gif"/>
|
<img src="images/small-spinner.gif"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h4>${$.i18n.prop('system-status.header.memory')} <a href="#" onclick="displayMemoryUsage()"><img src="images/view-refresh.png"/></a></h4>
|
<h4>${$.i18n.prop('system-status.header.memory')} <a class="cursor-hand" onclick="displayMemoryUsage()"><img src="images/view-refresh.png"/></a></h4>
|
||||||
</div>
|
</div>
|
||||||
<div id="status_memory_info">
|
<div id="status_memory_info">
|
||||||
<img src="images/small-spinner.gif"/>
|
<img src="images/small-spinner.gif"/>
|
||||||
|
@ -394,7 +394,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script id="status_caches_tmpl" type="text/html">
|
<script id="status_caches_tmpl" type="text/html">
|
||||||
<a href="#" class="btn btn-warning" onclick="flushAllCaches()">
|
<a class="btn btn-warning" onclick="flushAllCaches()">
|
||||||
${$.i18n.prop('system-status.caches.flushAll')}
|
${$.i18n.prop('system-status.caches.flushAll')}
|
||||||
</a>
|
</a>
|
||||||
<table class="table table-condensed">
|
<table class="table table-condensed">
|
||||||
|
@ -405,7 +405,7 @@
|
||||||
<th>${$.i18n.prop('system-status.caches.grid.header.cacheHits')}</th>
|
<th>${$.i18n.prop('system-status.caches.grid.header.cacheHits')}</th>
|
||||||
<th>${$.i18n.prop('system-status.caches.grid.header.cacheMiss')}</th>
|
<th>${$.i18n.prop('system-status.caches.grid.header.cacheMiss')}</th>
|
||||||
<th>${$.i18n.prop('system-status.caches.grid.header.cacheHitRate')}</th>
|
<th>${$.i18n.prop('system-status.caches.grid.header.cacheHitRate')}</th>
|
||||||
<th>${$.i18n.prop('system-status.caches.grid.header.inMemorySize')}</th>
|
<th>${$.i18n.prop('system-status.caches.grid.header.inMemorySize')}</th>
|
||||||
<th>${$.i18n.prop('system-status.caches.grid.header.flush')}</th>
|
<th>${$.i18n.prop('system-status.caches.grid.header.flush')}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -419,7 +419,7 @@
|
||||||
<td>${cacheEntry.cacheHitRate}</td>
|
<td>${cacheEntry.cacheHitRate}</td>
|
||||||
<td>${cacheEntry.inMemorySize}</td>
|
<td>${cacheEntry.inMemorySize}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="#" onclick="flushCache('${cacheEntry.key}')">
|
<a onclick="flushCache('${cacheEntry.key}')">
|
||||||
{{if cacheEntry.size > 0 }}
|
{{if cacheEntry.size > 0 }}
|
||||||
<img src="images/user-trash-full.png"/>
|
<img src="images/user-trash-full.png"/>
|
||||||
{{else}}
|
{{else}}
|
||||||
|
|
Loading…
Reference in New Issue