~davewalker/etherpad/ubuntu-unlimited-max-users-and-revisions

« back to all changes in this revision

Viewing changes to etherpad/src/themes/micro/default/templates/pro/admin/pro-config.ejs

  • Committer: James Page
  • Date: 2011-04-13 08:00:43 UTC
  • Revision ID: james.page@canonical.com-20110413080043-eee2nq7y1v7cv2mp
* Refactoring to use native Ubuntu Java libraries. 
* debian/control:
  - use openjdk instead of sun's java
  - update maintainer
* debian/etherpad.init.orig, debian/etherpad.upstart:
  - move the init script out of the way
  - create a basic upstart script
  - note that the open office document conversion daemon was dropped
    from the upstart configuration; if this behavior is desired, please
    create a separate upstart job for it
* debian/rules:
  - just use basic dh_installinit, as it will pick up the new upstart job
* New release
* Changed maintainer to Packaging
* Fixed installation scripts
* Initial Release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<% /* Copyright 2009 Google Inc.
 
2
 
 
3
Licensed under the Apache License, Version 2.0 (the "License");
 
4
you may not use this file except in compliance with the License.
 
5
You may obtain a copy of the License at
 
6
 
 
7
     http://www.apache.org/licenses/LICENSE-2.0
 
8
 
 
9
Unless required by applicable law or agreed to in writing, software
 
10
distributed under the License is distributed on an "AS-IS" BASIS,
 
11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
12
See the License for the specific language governing permissions and
 
13
limitations under the License. */ %>
 
14
<h3 class="top">Application Configuration</h3>
 
15
 
 
16
<%= messageDiv() %>
 
17
 
 
18
<form action="<%= request.path %>" method="post">
 
19
 
 
20
<table id="t-pro-config">
 
21
  <tr>
 
22
    <th width="50%" valign="top">Site Name (appears in
 
23
    the header of all pages):</th>
 
24
    <td width="50%" valign="top">
 
25
      <input type="text" name="siteName" value="<%=
 
26
      config.siteName %>" id="siteName" />
 
27
    </td>
 
28
  </tr>
 
29
 
 
30
  <tr>
 
31
    <th valign="top">Always require all users on this domain to use secure
 
32
    (HTTPS) connections?</th>
 
33
    <td valign="top">
 
34
      <input type="checkbox" id="alwaysHttps" name="alwaysHttps"
 
35
             <%= config.alwaysHttps ? 'checked="on"' : '' %> />
 
36
    </td>
 
37
  </tr>
 
38
 
 
39
  <tr>
 
40
    <th valign="top">Default pad text:</th>
 
41
    <td valign="top">
 
42
      <textarea name="defaultPadText" id="defaultPadText"><%=
 
43
      config.defaultPadText %></textarea>
 
44
    </td>
 
45
  </tr>
 
46
 
 
47
  <tr>
 
48
    <td colspan="2" style="text-align: right;">
 
49
      <input type="submit" name="save" value="Apply" />
 
50
    </td>
 
51
  </tr>
 
52
</table>
 
53
 
 
54
</form>
 
55