You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2015/02/27 15:16:05 UTC

[2/4] jena git commit: JENA-867 : Disable checkbox for 'Active'

JENA-867 : Disable checkbox for 'Active'


Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/95a2cc6d
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/95a2cc6d
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/95a2cc6d

Branch: refs/heads/master
Commit: 95a2cc6dc5a99c1efed465374037e7d67efed1d8
Parents: c006ffe
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Feb 27 14:08:45 2015 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Feb 27 14:08:45 2015 +0000

----------------------------------------------------------------------
 .../main/webapp/js/app/templates/dataset-management.tpl | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/95a2cc6d/jena-fuseki2/jena-fuseki-core/src/main/webapp/js/app/templates/dataset-management.tpl
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/js/app/templates/dataset-management.tpl b/jena-fuseki2/jena-fuseki-core/src/main/webapp/js/app/templates/dataset-management.tpl
index 5a2181a..bd1f14e 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/js/app/templates/dataset-management.tpl
+++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/js/app/templates/dataset-management.tpl
@@ -6,13 +6,21 @@
   <div class="row">
     <div class="col-md-12">
       <table class='table'>
-        <tr class="headings"><th>Name</th><th>Active?</th><th></th></tr>
+        <tr class="headings">
+          <th>Name</th>
+          <!-- JENA-867 <th>Active?</th> -->
+          <th></th>
+        </tr>
         <% _.each( datasets, function( ds ) { %>
           <tr>
             <td>
               <%= ds.name() %>
             </td>
-            <td><input type='checkbox' class='checkbox' checked /></td>
+            <!-- JENA-867 temporarily disable non-functional checkbox
+            <td>
+              <input type='checkbox' class='checkbox' checked />
+            </td>
+            -->
             <td>
               <div>
                 <a class="btn btn-sm action remove btn-primary" data-ds-id='<%= ds.name() %>'><i class='fa fa-times-circle'></i> remove</a>