status wording

This commit is contained in:
Manuel Araoz 2014-01-21 15:35:05 -03:00
parent 590acff915
commit 3cdfe47d14
1 changed files with 34 additions and 34 deletions

View File

@ -1,12 +1,12 @@
<section data-ng-controller="StatusController"> <section data-ng-controller="StatusController">
<div class="page-header"> <div class="page-header">
<h1> <h1>
Status Application Status
</h1> </h1>
</div> </div>
<div class="row"> <div class="row">
<div class="col-md-8 col-md-offset-2"> <div class="col-md-8 col-md-offset-2">
<h2>getInfo()</h2> <h2>Bitcoin node information</h2>
<table class="table table-striped" data-ng-init="getStatus('Info')"> <table class="table table-striped" data-ng-init="getStatus('Info')">
<tbody> <tbody>
<tr data-ng-show="!info &amp;&amp; !infoError"> <tr data-ng-show="!info &amp;&amp; !infoError">
@ -18,55 +18,55 @@
<td>{{info.version}}</td> <td>{{info.version}}</td>
</tr> </tr>
<tr> <tr>
<td>protocolversion</td> <td>Protocol version</td>
<td>{{info.protocolversion}}</td> <td>{{info.protocolversion}}</td>
</tr> </tr>
<tr> <tr>
<td>walletversion</td> <td>Wallet version</td>
<td>{{info.walletversion}}</td> <td>{{info.walletversion}}</td>
</tr> </tr>
<tr> <tr>
<td>balance</td> <td>Balance (BTC)</td>
<td>{{info.balance}}</td> <td>{{info.balance}}</td>
</tr> </tr>
<tr> <tr>
<td>blocks</td> <td>Blocks</td>
<td><a href="/#!/block-index/{{info.blocks}}">{{info.blocks}}</a></td> <td><a href="/#!/block-index/{{info.blocks}}">{{info.blocks}}</a></td>
</tr> </tr>
<tr> <tr>
<td>timeoffset</td> <td>Time Offset</td>
<td>{{info.timeoffset}}</td> <td>{{info.timeoffset}}</td>
</tr> </tr>
<tr> <tr>
<td>connections</td> <td>Connections to other nodes</td>
<td>{{info.connections}}</td> <td>{{info.connections}}</td>
</tr> </tr>
<tr> <tr>
<td>proxy</td> <td>Proxy setting</td>
<td>{{info.proxy}}</td> <td>{{info.proxy}}</td>
</tr> </tr>
<tr> <tr>
<td>difficulty</td> <td>Mining Difficulty</td>
<td>{{info.difficulty}}</td> <td>{{info.difficulty}}</td>
</tr> </tr>
<tr> <tr>
<td>testnet</td> <td>Testnet</td>
<td>{{info.testnet}}</td> <td>{{info.testnet}}</td>
</tr> </tr>
<tr> <tr>
<td>keypoololdest</td> <td>Keypool Oldest Date</td>
<td>{{info.keypoololdest}}</td> <td>{{info.keypoololdest*1000 | date:'medium' }}</td>
</tr> </tr>
<tr> <tr>
<td>keypoolsize</td> <td>Keypool Size</td>
<td>{{info.keypoolsize}}</td> <td>{{info.keypoolsize}}</td>
</tr> </tr>
<tr> <tr>
<td>paytxfee</td> <td>Default Transaction Fee (BTC)</td>
<td>{{info.paytxfee}}</td> <td>{{info.paytxfee}}</td>
</tr> </tr>
<tr> <tr>
<td>infoErrors</td> <td>Info Errors</td>
<td>{{info.infoErrors}}</td> <td>{{info.infoErrors}}</td>
</tr> </tr>
</tbody> </tbody>
@ -85,42 +85,42 @@
<td> {{(100 * sync.syncedBlocks/sync.blocksToSync)| number:2}}% <td> {{(100 * sync.syncedBlocks/sync.blocksToSync)| number:2}}%
</tr> </tr>
<tr> <tr>
<td>blocksToSync</td> <td>Blocks to Sync</td>
<td>{{sync.blocksToSync}}</td> <td>{{sync.blocksToSync}}</td>
</tr> </tr>
<tr> <tr>
<td>syncedBlocks</td> <td>Synced Blocks</td>
<td>{{sync.syncedBlocks}}</td> <td>{{sync.syncedBlocks}}</td>
</tr> </tr>
<tr> <tr>
<td>start</td> <td>Start</td>
<td> <td>
<a href="/#!/block/{{sync.start}}">{{sync.start}}</a> <a href="/#!/block/{{sync.start}}">{{sync.start}}</a>
<span data-ng-show="sync.isStartGenesis"> (genesisBlock)</span> <span data-ng-show="sync.isStartGenesis"> (genesisBlock)</span>
</td> </td>
</tr> </tr>
<tr> <tr>
<td>end</td> <td>End</td>
<td> <td>
<a href="/#!/block/{{sync.end}}">{{sync.end}}</a> <a href="/#!/block/{{sync.end}}">{{sync.end}}</a>
<span data-ng-show="sync.isEndGenesis"> (genesisBlock)</span> <span data-ng-show="sync.isEndGenesis"> (genesisBlock)</span>
</td> </td>
</tr> </tr>
<tr> <tr>
<td>Sync Type</td> <td>Sync properties</td>
<td> <td>
<ul> <ul>
<li data-ng-show="sync.upToExisting"> <span> Stops at existing block </span> <li data-ng-show="sync.upToExisting"> <span> Stops at existing block </span>
<li> <li>
<span data-ng-show="sync.scanningBackward"> scanningBackward </span> <span data-ng-show="sync.scanningBackward"> Backward Scan</span>
<span data-ng-hide="sync.scanningBackward"> scanningForward </span> <span data-ng-hide="sync.scanningBackward"> Forward Scan</span>
</ul> </ul>
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<h2>getTxOutSetInfo()</h2> <h2>Transaction Output Set Information</h2>
<table class="table table-striped" data-ng-init="getStatus('TxOutSetInfo')"> <table class="table table-striped" data-ng-init="getStatus('TxOutSetInfo')">
<tbody> <tbody>
<tr data-ng-show="!txoutsetinfo &amp;&amp; !infoError"> <tr data-ng-show="!txoutsetinfo &amp;&amp; !infoError">
@ -134,33 +134,33 @@
<td><a href="/#!/block-index/{{txoutsetinfo.height}}">{{txoutsetinfo.height}}</a></td> <td><a href="/#!/block-index/{{txoutsetinfo.height}}">{{txoutsetinfo.height}}</a></td>
</tr> </tr>
<tr> <tr>
<td>bestblock</td> <td>Best Block</td>
<td><a href="/#!/block/{{txoutsetinfo.bestblock}}">{{txoutsetinfo.bestblock}}</a></td> <td><a href="/#!/block/{{txoutsetinfo.bestblock}}">{{txoutsetinfo.bestblock}}</a></td>
</tr> </tr>
<tr> <tr>
<td>transactions</td> <td>Transactions</td>
<td>{{txoutsetinfo.transactions}}</td> <td>{{txoutsetinfo.transactions}}</td>
</tr> </tr>
<tr> <tr>
<td>txouts</td> <td>Transaction Outputs</td>
<td>{{txoutsetinfo.txouts}}</td> <td>{{txoutsetinfo.txouts}}</td>
</tr> </tr>
<tr> <tr>
<td>bytes_serialized</td> <td>Bytes Serialized</td>
<td>{{txoutsetinfo.bytes_serialized}}</td> <td>{{txoutsetinfo.bytes_serialized}}</td>
</tr> </tr>
<tr> <tr>
<td>hash_serialized</td> <td>Hash Serialized</td>
<td>{{txoutsetinfo.hash_serialized}}</td> <td>{{txoutsetinfo.hash_serialized}}</td>
</tr> </tr>
<tr> <tr>
<td>total_amount</td> <td>Total Amount</td>
<td>{{txoutsetinfo.total_amount}}</td> <td>{{txoutsetinfo.total_amount}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<h2>getDifficulty()</h2> <h2>Difficulty</h2>
<table class="table table-striped" data-ng-init="getStatus('Difficulty')"> <table class="table table-striped" data-ng-init="getStatus('Difficulty')">
<tbody> <tbody>
<tr data-ng-show="!difficulty &amp;&amp; !infoError"> <tr data-ng-show="!difficulty &amp;&amp; !infoError">
@ -171,13 +171,13 @@
</tr> </tr>
<tr> <tr>
<td>Difficulty</td> <td>Mining Difficulty</td>
<td>{{difficulty}}</td> <td>{{difficulty}}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<h2>getLastBlockHash()</h2> <h2>Last Block</h2>
<table class="table table-striped" data-ng-init="getStatus('LastBlockHash')"> <table class="table table-striped" data-ng-init="getStatus('LastBlockHash')">
<tbody> <tbody>
<tr data-ng-show="!lastblockhash &amp;&amp; !infoError"> <tr data-ng-show="!lastblockhash &amp;&amp; !infoError">
@ -188,7 +188,7 @@
</tr> </tr>
<tr> <tr>
<td>Last block hash</td> <td>Last block hash</td>
<td>{{lastblockhash}}</td> <td><a href="/#!/block/{{lastblockhash}}">{{lastblockhash}}</a></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>