You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/07/22 16:51:39 UTC

[1/2] incubator-ignite git commit: IGNITE-843 Updated DEVNOTES.txt

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-843 8a3357242 -> 766a6c2f4


IGNITE-843 Updated DEVNOTES.txt


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/58e0c64c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/58e0c64c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/58e0c64c

Branch: refs/heads/ignite-843
Commit: 58e0c64cff5fa2f0e4dd3f8725f5788c42d35eb5
Parents: 8a33572
Author: AKuznetsov <ak...@gridgain.com>
Authored: Wed Jul 22 21:50:44 2015 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Wed Jul 22 21:50:44 2015 +0700

----------------------------------------------------------------------
 modules/web-control-center/src/main/js/DEVNOTES.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/58e0c64c/modules/web-control-center/src/main/js/DEVNOTES.txt
----------------------------------------------------------------------
diff --git a/modules/web-control-center/src/main/js/DEVNOTES.txt b/modules/web-control-center/src/main/js/DEVNOTES.txt
index aa56011..e8c558c 100644
--- a/modules/web-control-center/src/main/js/DEVNOTES.txt
+++ b/modules/web-control-center/src/main/js/DEVNOTES.txt
@@ -6,7 +6,7 @@ How to deploy:
 1. Install locally NodeJS using installer from site https://nodejs.org for your OS.
 2. Install locally MongoDB folow instructions from site http://docs.mongodb.org/manual/installation
 3. Checkout ignite-843 branch.
-4. Change directory '$IGNITE_HOME/modules/web-control-center/nodejs'.
+4. Change directory '$IGNITE_HOME/modules/web-control-center/src/main/js'.
 5. Run "npm install" in terminal for download all dependencies.
 
 Steps 1 - 5 should be executed once.
@@ -16,6 +16,6 @@ How to run:
 1. Run MongoDB.
  1.1 In terminal change dir to $MONGO_ISNTALL_DIR/server/3.0/bin.
  1.2 Run "mongod".
-2. In new terminal change directory '$IGNITE_HOME/modules/web-control-center/nodejs'.
+2. In new terminal change directory '$IGNITE_HOME/modules/web-control-center/src/main/js'.
 3. Start application by executing "npm start".
 4. In browser open: http://localhost:3000
\ No newline at end of file


[2/2] incubator-ignite git commit: IGNITE-843 Cleanup after project structure changed.

Posted by ak...@apache.org.
IGNITE-843 Cleanup after project structure changed.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/766a6c2f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/766a6c2f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/766a6c2f

Branch: refs/heads/ignite-843
Commit: 766a6c2f49c76008562e1292cc6216492cd38894
Parents: 58e0c64
Author: AKuznetsov <ak...@gridgain.com>
Authored: Wed Jul 22 21:51:34 2015 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Wed Jul 22 21:51:34 2015 +0700

----------------------------------------------------------------------
 .../nodejs/views/sql/sql.jade                   | 57 --------------------
 1 file changed, 57 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/766a6c2f/modules/web-control-center/nodejs/views/sql/sql.jade
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/views/sql/sql.jade b/modules/web-control-center/nodejs/views/sql/sql.jade
deleted file mode 100644
index 7c4ddaf..0000000
--- a/modules/web-control-center/nodejs/views/sql/sql.jade
+++ /dev/null
@@ -1,57 +0,0 @@
-
-//-
-    Licensed to the Apache Software Foundation (ASF) under one or more
-    contributor license agreements.  See the NOTICE file distributed with
-    this work for additional information regarding copyright ownership.
-    The ASF licenses this file to You 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.
-extends ../templates/layout
-
-append scripts
-    script(src='/cache-viewer-controller.js')
-    script(src='//cdnjs.cloudflare.com/ajax/libs/ace/1.1.9/ace.js')
-
-append css
-    link(rel='stylesheet', href='/stylesheets/sql-console.css')
-
-block container
-    .docs-header
-        h1 Connect to Ignite and execute SQL queries
-        hr
-    div(ng-controller='cacheViewerController')
-        h4 Sql console
-
-        table#queryTable(cellpadding=0, cellspacing=0, ng-init='queryType = "sql"')
-            tr
-                td
-                    label(for='queryTypeSelect') Query&nbsp;type:
-                    select#queryTypeSelect(ng-model='queryType')
-                        option(value='sql') Sql query
-                        option(value='id') Get by ID
-                        option(value='scane') Scan cache
-
-                td.queryTd
-                    div(ng-show='queryType == "sql"')
-                        #querySql
-
-                td
-                    | Default&nbsp;cache:
-                    div#defCacheSelect
-                        div(ng-repeat='c in caches', ng-class='{def: defCache == c}', ng-click='defCache = c') {{c}}
-
-        #resultPanel
-            strong Results
-
-            #queryResult
-                div(ng-repeat='r in results')
-                    .resultRow
-                        | {{r.id}} -> {{r.s}}
-                        span.props  {{r.fields}}
-