You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2016/04/14 18:06:23 UTC

fauxton commit: updated refs/heads/master to dfbc57e

Repository: couchdb-fauxton
Updated Branches:
  refs/heads/master b19065e3d -> dfbc57e5e


remove unused template

PR: #679
PR-URL: https://github.com/apache/couchdb-fauxton/pull/679
Reviewed-By: garren smith <ga...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/dfbc57e5
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/dfbc57e5
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/dfbc57e5

Branch: refs/heads/master
Commit: dfbc57e5edb32b5b534b73f7a752cb4623038a90
Parents: b19065e
Author: Robert Kowalski <ro...@apache.org>
Authored: Tue Apr 5 16:16:24 2016 +0200
Committer: Robert Kowalski <ro...@apache.org>
Committed: Thu Apr 14 18:06:18 2016 +0200

----------------------------------------------------------------------
 .../fauxton/templates/confirmation_modal.html   | 29 --------------------
 app/addons/fauxton/templates/pagination.html    | 28 -------------------
 2 files changed, 57 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/dfbc57e5/app/addons/fauxton/templates/confirmation_modal.html
----------------------------------------------------------------------
diff --git a/app/addons/fauxton/templates/confirmation_modal.html b/app/addons/fauxton/templates/confirmation_modal.html
deleted file mode 100644
index c556165..0000000
--- a/app/addons/fauxton/templates/confirmation_modal.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<% /*
-Licensed under the Apache License, Version 2.0 (the "License"); you may not
-use this file except in compliance with the License. You may obtain a copy of
-the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-License for the specific language governing permissions and limitations under
-the License.
-*/ %>
-
-<div class="modal hide fade">
-  <div class="modal-header">
-    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
-    <h3><%- title %></h3>
-  </div>
-  <div class="modal-body">
-    <p>
-      <%- text %>
-    </p>
-  </div>
-  <div class="modal-footer">
-    <button data-dismiss="modal" class="btn"><i class="icon fonticon-cancel-circled"></i> Cancel</button>
-    <button class="btn btn-success js-btn-success"><i class="fonticon-ok-circled"></i> Okay</button>
-  </div>
-</div>

http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/dfbc57e5/app/addons/fauxton/templates/pagination.html
----------------------------------------------------------------------
diff --git a/app/addons/fauxton/templates/pagination.html b/app/addons/fauxton/templates/pagination.html
deleted file mode 100644
index 19a4eb5..0000000
--- a/app/addons/fauxton/templates/pagination.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!--
-Licensed under the Apache License, Version 2.0 (the "License"); you may not
-use this file except in compliance with the License. You may obtain a copy of
-the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-License for the specific language governing permissions and limitations under
-the License.
--->
-<% if (page > 1) { %>
-  <li> <a href="<%- urlFun(page-1) %>">&laquo;</a></li>
-<% } else { %>
-  <li class="disabled"> <a href="<%- urlFun(page) %>">&laquo;</a></li>
-<% } %>
-<% _.each(_.range(from, to), function (i) { %>
-  <li <% if (page == i) { %>class="active"<% } %>> <a href="<%- urlFun(i) %>"><%- i %></a></li>
-<% }) %>
-<% if (page < totalPages) { %>
-  <li><a href="<%- urlFun(page+1) %>">&raquo;</a></li>
-<% } else { %>
-  <li class="disabled"> <a href="<%- urlFun(page) %>">&raquo;</a></li>
-<% } %>
-
-