136 lines
5.1 KiB
HTML
136 lines
5.1 KiB
HTML
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>CouchDB Data Explorer</title>
|
||
<link rel="stylesheet" href="style/reset.css" media="screen">
|
||
<link rel="stylesheet" href="style/css3buttons.css" media="screen">
|
||
<link rel="stylesheet" href="style/data-table.css" media="screen">
|
||
<link rel="stylesheet" href="style/demo.css" media="screen">
|
||
<script type="text/javascript" src="script/jquery-1.6.1.min.js"></script>
|
||
<script type="text/javascript" src="script/jquery.mustache.js"></script>
|
||
<script type="text/javascript" src="script/jquery.couch2.js"></script>
|
||
<script type="text/javascript" src="script/sammy-0.6.3.min.js"></script>
|
||
<script type="text/javascript" src="script/util.js"></script>
|
||
<script type="text/javascript" src="script/removalist.js"></script>
|
||
<script type="text/javascript" src="script/site.js"></script>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<div id="header">
|
||
<div id="project-title" style="display: block; "></div>
|
||
<div id="project-controls" style="display: block; "></div>
|
||
</div>
|
||
<div id="main_content"></div>
|
||
<footer>
|
||
<a href='https://github.com/maxogden/removalist'>Fork this project on Github</a>. The <a href="http://github.com/michenriksen/css3buttons">pretty CSS3 Buttons</a> were created by <a href="http://michaelhenriksen.dk" title="Website of Michael Henriksen">Michael Henriksen</a>
|
||
</footer>
|
||
</div>
|
||
|
||
<script type='text/mustache' id="dbTemplate">
|
||
<div id="database" class="single_database">
|
||
<div class="group" id="current-head-database">
|
||
<table width="100%" cellspacing="0" cellpadding="0">
|
||
<tbody>
|
||
<tr class="database_oneline action">
|
||
<td class="date">
|
||
<nobr>db</nobr>
|
||
</td>
|
||
<td class="message">
|
||
<code><a href="http://{{host}}/{{db_name}}">http://{{host}}/<strong>{{db_name}}</strong></a> </code>
|
||
</td>
|
||
<td class="database">
|
||
size {{disk_size}}
|
||
</td>
|
||
<td class="tree">
|
||
docs <a href="http://{{host}}/{{db_name}}/_all_docs?include_docs=true" hotkey="t">{{doc_count}}</a>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</script>
|
||
|
||
<script type='text/mustache' id="actionsTemplate">
|
||
<a href="javascript:void(false)" class="button csv"><span class="downarrow icon"></span>Download CSV</a>
|
||
</script>
|
||
|
||
<script type='text/mustache' id="titleTemplate"><span id="project-name-button" class="app-path-section">{{db_name}}</span></script>
|
||
<script type='text/mustache' id="bulkTemplate">http://{{host}}/{{db_name}}/_bulk_docs</script>
|
||
<script type='text/mustache' id="generatingTemplate"><div class="loading">Precomputing CSV...</div></script>
|
||
|
||
<script type='text/mustache' id="tableContainerTemplate">
|
||
<div bind="rightPanelDiv" id="right-panel">
|
||
<div bind="toolPanelDiv" id="tool-panel">
|
||
<div bind="summaryBarDiv" id="summary-bar">
|
||
<span>
|
||
{{doc_count}} rows
|
||
</span>
|
||
</div>
|
||
<div id="download">
|
||
</div>
|
||
</div>
|
||
<div bind="viewPanelDiv" id="view-panel">
|
||
<div class="viewpanel-header">
|
||
<div class="viewpanel-pagesize" bind="pageSizeControls">
|
||
<span>
|
||
Show:
|
||
</span>
|
||
<a href="javascript:{}" class="viewPanel-pagingControls-page action">5</a>
|
||
<a href="javascript:{}" class="viewPanel-pagingControls-page selected">10</a>
|
||
<a href="javascript:{}" class="viewPanel-pagingControls-page action">25</a>
|
||
<a href="javascript:{}" class="viewPanel-pagingControls-page action">50</a>
|
||
<span>
|
||
rows
|
||
</span>
|
||
</div>
|
||
<div class="viewpanel-sorting">
|
||
</div>
|
||
<div class="viewpanel-paging">
|
||
<a id="paging-first" href="javascript:{}" class="inaction">« first</a>
|
||
<a id="paging-previous" href="javascript:{}" class="inaction">‹ previous</a>
|
||
<span class="viewpanel-pagingcount">
|
||
1 - 10
|
||
</span>
|
||
<a id="paging-next" href="javascript:{}" class="action">next ›</a>
|
||
<a id="paging-last" href="javascript:{}" class="action">last »</a>
|
||
</div>
|
||
</div>
|
||
<div id="dataTableContainer" class="data-table-container">
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</script>
|
||
|
||
<script type='text/mustache' id="dataTableTemplate">
|
||
<table bind="table" class="data-table" cellspacing="0">
|
||
<tbody>
|
||
<tr>
|
||
{{#headers}}
|
||
<td class="column-header">
|
||
<div class="column-header-title">
|
||
<a class="column-header-menu" bind="dropdownMenu"></a>
|
||
<span class="column-header-name" bind="nameContainer">{{.}}</span>
|
||
</div>
|
||
</div>
|
||
</td>
|
||
{{/headers}}
|
||
</tr>
|
||
{{#rows}}
|
||
<tr>
|
||
{{#cells}}
|
||
<td>
|
||
<div class="data-table-cell-content">
|
||
<span>{{.}}</span>
|
||
</div>
|
||
</td>
|
||
{{/cells}}
|
||
</tr>
|
||
{{/rows}}
|
||
</tbody>
|
||
</table>
|
||
</script>
|
||
</body>
|
||
</html> |