~etherpad/etherpad/ubuntu-lucid-backport

« back to all changes in this revision

Viewing changes to etherpad/src/themes/nano/default/templates/pro/padlist/pro-padlist.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. */ %><% helpers.includeCss("lib/jquery.contextmenu.css") %>
 
14
<% helpers.includeCss("pro/padlist.css") %>
 
15
 
 
16
<% helpers.includeJQuery() %>
 
17
<% helpers.includeJs("lib/jquery.contextmenu.js") %>
 
18
<% helpers.includeJs("pro/pro-padlist-client.js") %>
 
19
 
 
20
<% helpers.setHtmlTitle("Pad List - " + orgName + " - " + appjet.config.customBrandingName) %>
 
21
 
 
22
<div class="fpcontent">
 
23
 
 
24
  <%= renderPadNav() %>
 
25
  <%= renderNotice() %>
 
26
  <%= renderShowingDesc(padList.length) %>
 
27
 
 
28
  <% if (padList.length > 0) { %>
 
29
    <%= renderPadList() %>
 
30
    <p style="font-size: .8em;"><i><%= padList.length %> pad<% if (padList.length > 1) { %>s<% } %></i> <% if (isAdmin) { %>(<a href="/ep/padlist/all-pads.zip">Download all pads as a ZIP archive</a>.) <% } %>
 
31
</p>
 
32
 
 
33
  <% } else { %>
 
34
     <p>No pads in this list.</p>
 
35
  <% } %>
 
36
 
 
37
</div>
 
38
 
 
39
<form action="/ep/padlist/delete" method="post" id="delete-pad" style="display: none;">
 
40
  <input type="hidden" name="returnPath" value="<%= request.url %>" />
 
41
  <input id="padIdToDelete" name="padIdToDelete" type="hidden" value="-" />
 
42
</form>
 
43
 
 
44
<form action="/ep/padlist/toggle-archive" method="post" id="toggle-archive-pad" style="display: none;">
 
45
  <input type="hidden" name="returnPath" value="<%= request.url %>" />
 
46
  <input id="padIdToToggleArchive" name="padIdToToggleArchive" type="hidden" value="-" />
 
47
</form>
 
48
 
 
49