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:04 UTC

[1/4] jena git commit: JENA-869 Disable remove button until it works again

Repository: jena
Updated Branches:
  refs/heads/master c006ffecb -> 8c874b902


JENA-869 Disable remove button until it works again


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

Branch: refs/heads/master
Commit: 9ed1e145b2d534202d94d806e3b311dbcdb1b51b
Parents: 7965591
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Wed Feb 25 16:34:27 2015 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Thu Feb 26 13:34:59 2015 +0000

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


http://git-wip-us.apache.org/repos/asf/jena/blob/9ed1e145/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..0f0df20 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
@@ -15,7 +15,9 @@
             <td><input type='checkbox' class='checkbox' checked /></td>
             <td>
               <div>
+                <!-- JENA-869 Disable download button until it works again
                 <a class="btn btn-sm action remove btn-primary" data-ds-id='<%= ds.name() %>'><i class='fa fa-times-circle'></i> remove</a>
+                -->
                 <a class="btn btn-sm action backup btn-primary" data-ds-id='<%= ds.name() %>'><i class='fa fa-download'></i> backup</a>
                 <a class="btn btn-sm action add-data btn-primary" href="dataset.html?tab=upload&ds=<%= ds.name() %>"><i class='fa fa-upload'></i> upload data</a>
               </div>


[3/4] jena git commit: This closes #33

Posted by an...@apache.org.
This closes #33


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

Branch: refs/heads/master
Commit: ecd88f75376377a2c1a8793aa04b9fabb8daa16b
Parents: 95a2cc6
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Feb 27 14:09:20 2015 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Feb 27 14:09:20 2015 +0000

----------------------------------------------------------------------

----------------------------------------------------------------------



[4/4] jena git commit: Merge commit 'refs/pull/35/head' of github.com:apache/jena

Posted by an...@apache.org.
Merge commit 'refs/pull/35/head' of github.com:apache/jena

This closes #35


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

Branch: refs/heads/master
Commit: 8c874b902fb499f83e1cee25003680ecc4cd0b5b
Parents: ecd88f7 9ed1e14
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Feb 27 14:14:37 2015 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Feb 27 14:14:37 2015 +0000

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


http://git-wip-us.apache.org/repos/asf/jena/blob/8c874b90/jena-fuseki2/jena-fuseki-core/src/main/webapp/js/app/templates/dataset-management.tpl
----------------------------------------------------------------------
diff --cc jena-fuseki2/jena-fuseki-core/src/main/webapp/js/app/templates/dataset-management.tpl
index bd1f14e,0f0df20..24d40a6
--- 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
@@@ -16,14 -12,12 +16,16 @@@
              <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>
+                 <!-- JENA-869 Disable download button until it works again
                  <a class="btn btn-sm action remove btn-primary" data-ds-id='<%= ds.name() %>'><i class='fa fa-times-circle'></i> remove</a>
+                 -->
                  <a class="btn btn-sm action backup btn-primary" data-ds-id='<%= ds.name() %>'><i class='fa fa-download'></i> backup</a>
                  <a class="btn btn-sm action add-data btn-primary" href="dataset.html?tab=upload&ds=<%= ds.name() %>"><i class='fa fa-upload'></i> upload data</a>
                </div>


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

Posted by an...@apache.org.
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>