~ubuntu-branches/ubuntu/trusty/couchdb/trusty

« back to all changes in this revision

Viewing changes to src/fauxton/app/addons/config/templates/dashboard.html

  • Committer: Package Import Robot
  • Author(s): Jason Gerard DeRose
  • Date: 2013-12-01 16:55:05 UTC
  • mfrom: (1.3.5)
  • Revision ID: package-import@ubuntu.com-20131201165505-for2toyl58mhzwj2
Tags: 1.5.0-0ubuntu1
* New upstream release (LP: #1254371)
* Don't include `couchdb` info page in `couchdb-bin` binary package as it
  provides no meaningful benefit over the `couchdb` man page (note this change
  means we don't need to add a Build-Depends on `install-info` for Trusty)
* Remove Build-Depends: texlive-latex-base, texlive-latex-recommended,
  texlive-latex-extra, texlive-fonts-recommended, texinfo (as documentation
  thus produced doesn't get included in the binary packages anyway)
* debian/rules: don't call ./configure with --enable-strictness as we dropped
  Build-Depends on `texlive-*`, `texinfo`, plus didn't add `install-info` 
* Add Build-Depends: lsb-release (used for [vendor] info in default.ini)
* debian/rules: insert proper [vendor] info in default.ini (note this should
  be improved once there is a better mechanism upstream)
* debian/couchdb.upstart: start on filesystem and static-network-up,
  stop on deconfiguring-networking, plus add "author" line

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
Licensed under the Apache License, Version 2.0 (the "License"); you may not
 
3
use this file except in compliance with the License. You may obtain a copy of
 
4
the License at
 
5
 
 
6
  http://www.apache.org/licenses/LICENSE-2.0
 
7
 
 
8
Unless required by applicable law or agreed to in writing, software
 
9
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
10
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
11
License for the specific language governing permissions and limitations under
 
12
the License.
 
13
-->
 
14
 
 
15
<div class="row">
 
16
  <div class="span2 offset10">
 
17
    <button id="add-section" href="#" class="button button-margin">
 
18
      <i class="icon-plus icon-white"> </i>
 
19
      Add Section
 
20
    </button>
 
21
  </div>
 
22
</div>
 
23
<table class="config table table-striped table-bordered">
 
24
  <thead>
 
25
    <th> Section </th>
 
26
    <th> Option </th>
 
27
    <th> Value </th>
 
28
    <th></th>
 
29
  </thead>
 
30
  <tbody>
 
31
  </tbody>
 
32
</table>
 
33
<div id="add-section-modal" class="modal hide fade">
 
34
  <div class="modal-header">
 
35
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
 
36
    <h3>Create Config Option</h3>
 
37
  </div>
 
38
  <div class="modal-body">
 
39
    <form id="add-section-form" class="form well">
 
40
      <label>Section</label>
 
41
      <input type="text" name="section" placeholder="Section">
 
42
      <span class="help-block">Enter an existing section name to add to it.</span>
 
43
      <input type="text" name="name" placeholder="Name">
 
44
      <br/>
 
45
      <input type="text" name="value" placeholder="Value">
 
46
      <div class="modal-footer">
 
47
        <button type="button" class="btn" data-dismiss="modal">Cancel</button>
 
48
        <button type="submit" class="btn btn-primary"> Save </button>
 
49
      </div>
 
50
    </form>
 
51
  </div>
 
52
</div>