http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/95bb00d5/modules/webconfig/nodejs/.gitignore
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/.gitignore 
b/modules/webconfig/nodejs/.gitignore
new file mode 100644
index 0000000..b512c09
--- /dev/null
+++ b/modules/webconfig/nodejs/.gitignore
@@ -0,0 +1 @@
+node_modules
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/95bb00d5/modules/webconfig/nodejs/node_modules/.bin/jade
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/node_modules/.bin/jade 
b/modules/webconfig/nodejs/node_modules/.bin/jade
deleted file mode 120000
index 65a3bac..0000000
--- a/modules/webconfig/nodejs/node_modules/.bin/jade
+++ /dev/null
@@ -1 +0,0 @@
-../jade/bin/jade.js
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/95bb00d5/modules/webconfig/nodejs/node_modules/admin-lte/.npmignore
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/node_modules/admin-lte/.npmignore 
b/modules/webconfig/nodejs/node_modules/admin-lte/.npmignore
deleted file mode 100644
index c96a4cd..0000000
--- a/modules/webconfig/nodejs/node_modules/admin-lte/.npmignore
+++ /dev/null
@@ -1,9 +0,0 @@
-*.DS_Store
-.idea
-/nbproject/private/
-/nbproject/
-/node_modules/
-TODO
-*.zip
-test.html
-*.log
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/95bb00d5/modules/webconfig/nodejs/node_modules/admin-lte/Gruntfile.js
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/node_modules/admin-lte/Gruntfile.js 
b/modules/webconfig/nodejs/node_modules/admin-lte/Gruntfile.js
deleted file mode 100644
index 2ffe236..0000000
--- a/modules/webconfig/nodejs/node_modules/admin-lte/Gruntfile.js
+++ /dev/null
@@ -1,116 +0,0 @@
-'use strict';
-module.exports = function (grunt) {
-
-  grunt.initConfig({
-    watch: {
-      // If any .less file changes in directory "build/less/" run the 
"less"-task.
-      files: ["build/less/*.less", "build/less/skins/*.less", 
"dist/js/app.js"],
-      tasks: ["less", "uglify"]
-    },
-    // "less"-task configuration
-    // This task will compile all less files upon saving to create both 
AdminLTE.css and AdminLTE.min.css
-    less: {
-      // Development not compressed
-      development: {
-        options: {
-          // Whether to compress or not
-          compress: false
-        },
-        files: {
-          // compilation.css  :  source.less          
-          "dist/css/AdminLTE.css": "build/less/AdminLTE.less",
-          //Non minified skin files
-          "dist/css/skins/skin-blue.css": "build/less/skins/skin-blue.less",
-          "dist/css/skins/skin-black.css": "build/less/skins/skin-black.less",
-          "dist/css/skins/skin-yellow.css": 
"build/less/skins/skin-yellow.less",
-          "dist/css/skins/skin-green.css": "build/less/skins/skin-green.less",
-          "dist/css/skins/skin-red.css": "build/less/skins/skin-red.less",
-          "dist/css/skins/skin-purple.css": 
"build/less/skins/skin-purple.less",
-          "dist/css/skins/skin-blue-light.css": 
"build/less/skins/skin-blue-light.less",
-          "dist/css/skins/skin-black-light.css": 
"build/less/skins/skin-black-light.less",
-          "dist/css/skins/skin-yellow-light.css": 
"build/less/skins/skin-yellow-light.less",
-          "dist/css/skins/skin-green-light.css": 
"build/less/skins/skin-green-light.less",
-          "dist/css/skins/skin-red-light.css": 
"build/less/skins/skin-red-light.less",
-          "dist/css/skins/skin-purple-light.css": 
"build/less/skins/skin-purple-light.less",
-          "dist/css/skins/_all-skins.css": "build/less/skins/_all-skins.less"
-        }
-      },
-      // Production compresses version
-      production: {
-        options: {
-          // Whether to compress or not          
-          compress: true
-        },
-        files: {
-          // compilation.css  :  source.less
-          "dist/css/AdminLTE.min.css": "build/less/AdminLTE.less",
-          // Skins minified
-          "dist/css/skins/skin-blue.min.css": 
"build/less/skins/skin-blue.less",
-          "dist/css/skins/skin-black.min.css": 
"build/less/skins/skin-black.less",
-          "dist/css/skins/skin-yellow.min.css": 
"build/less/skins/skin-yellow.less",
-          "dist/css/skins/skin-green.min.css": 
"build/less/skins/skin-green.less",
-          "dist/css/skins/skin-red.min.css": "build/less/skins/skin-red.less",
-          "dist/css/skins/skin-purple.min.css": 
"build/less/skins/skin-purple.less",
-          "dist/css/skins/skin-blue-light.min.css": 
"build/less/skins/skin-blue-light.less",
-          "dist/css/skins/skin-black-light.min.css": 
"build/less/skins/skin-black-light.less",
-          "dist/css/skins/skin-yellow-light.min.css": 
"build/less/skins/skin-yellow-light.less",
-          "dist/css/skins/skin-green-light.min.css": 
"build/less/skins/skin-green-light.less",
-          "dist/css/skins/skin-red-light.min.css": 
"build/less/skins/skin-red-light.less",
-          "dist/css/skins/skin-purple-light.min.css": 
"build/less/skins/skin-purple-light.less",
-          "dist/css/skins/_all-skins.min.css": 
"build/less/skins/_all-skins.less"
-        }
-      }
-    },
-    // Uglify task info. Compress the js files.
-    uglify: {
-      options: {
-        mangle: true,
-        preserveComments: 'some'
-      },
-      my_target: {
-        files: {
-          'dist/js/app.min.js': ['dist/js/app.js']
-        }
-      }
-    },
-    // Build the documentation files
-    includes: {
-      build: {
-        src: ['*.html'], // Source files 
-        dest: 'documentation/', // Destination directory 
-        flatten: true,
-        cwd: 'documentation/build',
-        options: {
-          silent: true,
-          includePath: 'documentation/build/include'
-        }
-      }
-    },
-    cssjanus: {
-      build: {
-        files: {
-          'dist/css/AdminLTE-rtl.css': 'dist/css/AdminLTE.css',
-          'dist/css/AdminLTE-rtl.min.css': 'dist/css/AdminLTE.min.css',
-          'bootstrap/css/bootstrap-rtl.css': 'bootstrap/css/bootstrap.css',
-          'bootstrap/css/bootstrap-rtl.min.css': 
'bootstrap/css/bootstrap.min.css'
-        }
-      }
-    }
-  });
-
-  // Load all grunt tasks
-
-  // LESS Compiler
-  grunt.loadNpmTasks('grunt-contrib-less');
-  // Watch File Changes
-  grunt.loadNpmTasks('grunt-contrib-watch');
-  // Compress JS Files
-  grunt.loadNpmTasks('grunt-contrib-uglify');
-  // Include Files Within HTML
-  grunt.loadNpmTasks('grunt-includes');
-  // Convert CSS to RTL
-  grunt.loadNpmTasks('grunt-cssjanus');
-
-  // The default task (running "grunt" in console) is "watch"
-  grunt.registerTask('default', ['watch']);
-};
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/95bb00d5/modules/webconfig/nodejs/node_modules/admin-lte/LICENSE
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/node_modules/admin-lte/LICENSE 
b/modules/webconfig/nodejs/node_modules/admin-lte/LICENSE
deleted file mode 100644
index e1854e8..0000000
--- a/modules/webconfig/nodejs/node_modules/admin-lte/LICENSE
+++ /dev/null
@@ -1,20 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2014-2015 almasaeed2010
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/95bb00d5/modules/webconfig/nodejs/node_modules/admin-lte/README.md
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/node_modules/admin-lte/README.md 
b/modules/webconfig/nodejs/node_modules/admin-lte/README.md
deleted file mode 100644
index 614972d..0000000
--- a/modules/webconfig/nodejs/node_modules/admin-lte/README.md
+++ /dev/null
@@ -1,178 +0,0 @@
-Introduction
-============
-
-**AdminLTE** -- is a fully responsive admin template. Based on **Bootstrap 3** 
framework. Highly customizable and easy to use. Fits many screen resolutions 
from small mobile devices to large desktops. Check out the live preview now and 
see for yourself. 
-
-**Download & Preview on [Almsaeed Studio](https://almsaeedstudio.com)**
-
-Looking for Premium Templates?
-------------------------------
-**Almsaeed studio just opened a new premium templates page. Hand picked to 
insure the best quality and the most affordable prices. Visit 
https://almsaeedstudio.com/premium for more information.**
-
-
-!["AdminLTE Presentation"] (https://almsaeedstudio.com/AdminLTE2.png "AdminLTE 
Presentation")
-
-**AdminLTE** has been carefully coded with clear comments in all of its JS, 
LESS and HTML files. LESS has been used to increase code customizability.
-
-Installation
-------------
-There are multiple ways to install AdminLTE.
-
-####Download:
-
-Download from Github or [visit Almsaeed Studio](https://almsaeedstudio.com) 
and download the lateset release.
-
-####Using The Command Line:
-
-**Github**
-
-- Fork the repository ([here is the 
guide](https://help.github.com/articles/fork-a-repo/)).
-- Clone to your machine 
-```
-git clone https://github.com/YOUR_USERNAME/AdminLTE.git
-```
-
-**Bower**
-
-```
-bower install admin-lte
-```
-
-**Composer**
-
-```
-composer require "almasaeed2010/adminlte=~2.0"
-```
-
-Documentation
--------------
-Visit the [online 
documentation](https://almsaeedstudio.com/themes/AdminLTE/documentation/index.html)
 for the most
-updated guide. Information will be added on a weekly basis.
-
-Browser Support
----------------
-- IE 9+
-- Firefox (latest)
-- Chrome (latest)
-- Safari (latest)
-- Opera (latest)
-
-Contribution
-------------
-Contribution are always **welcome and recommended**! Here is how:
-
-- Fork the repository ([here is the 
guide](https://help.github.com/articles/fork-a-repo/)).
-- Clone to your machine ```git clone 
https://github.com/YOUR_USERNAME/AdminLTE.git```
-- Make your changes
-- Create a pull request
-
-#### Contribution Requirements:
-
-- When you contribute, you agree to give a non-exclusive license to Almsaeed 
Studio to use that contribution in any context as we (Almsaeed Studio) see 
appropriate.
-- If you use content provided by another party, it must be appropriately 
licensed using an [open source](http://opensource.org/licenses) license.
-- Contributions are only accepted through Github pull requests.
-- Finally, contributed code must work in all supported browsers (see above for 
browser support).
-
-License
--------
-AdminLTE is an open source project by [Almsaeed 
Studio](https://almsaeedstudio.com) that is licensed under 
[MIT](http://opensource.org/licenses/MIT). Almsaeed Studio
-reserves the right to change the license of future releases.
-
-Todo List
----------
-- ~~Light sidebar colors~~ (Done v2.1.0)
-- ~~Right sidebar~~ (Done v2.1.0)
-- ~~Minified main-sidebar~~ (Done v2.1.0)
-- Right to left support
-- Custom pace style
-
-Legacy Realeases
-----------------
-AdminLTE 1.x can be easily upgraded to 2.x using [this 
guide](https://almsaeedstudio.com/themes/AdminLTE/documentation/index.html#browsers),
 but if you intend to keep using AdminLTE 1.x, you can download the latest 
release from the [releases](https://github.com/almasaeed2010/AdminLTE/releases) 
section above.
-
-Change log
-----------
-**v2.0.5:**
-- Fixed issue #288
-
-**v2.0.4:**
-- Fixed bower.json to pick up newest release.
-
-**v2.0.3**
-- Bug fixes
-- Fixed extra page when printing issue #264
-- Updated documentation and fixed links scrolling issue
-- Created print.less file (this makes it easier if you want to create a 
seperate CSS file for printing)
-- Fixed sidebar stretching issue #275
-- Fixed checkbox out of bounds issue in WYSIHTML5 editor.
-
-**v2.0.2:**
-- Solved issue with hidden arrow in select inputs.
-
-**v2.0.1:**
-- Updated README.md
-- Fixed versioning issue in CSS, LESS, and JS
-- Updated box-shadow for boxes
-- Updated docs
-
-**v2.0.0:**
-
-- Major layout bug fixes
-- Change in layout mark up
-- Added transitions to the sidebar
-- New skins and modified previous skins
-- Change in color scheme to a more complementing scheme 
-- Added footer support
-- Removed pace.js from the main app.js
-- Added support for collapsed sidebar as an initial state (add 
.sidebar-collapse to the body tag)
-- Added boxed layout (.layout-boxed)
-- Enhanced consistency in padding and margining
-- Updated Bootstrap to 3.3.2 
-- Fixed navbar dropdown menu on small screens positioning issues.
-- Updated Ion Icons to 2.0.0
-- Updated FontAwesome to 4.3.0
-- Added ChartJS 1.0.1
-- Removed iCheck dependency
-- Created Dashboard 2.0
-- Created new Chat widget (DirectChat)
-- Added transitions to DirectChat
-- Added contacts pane to DirectChat
-- Changed .right-side to .content-wrapper
-- Changed .navbar-right to .navbar-custom-menu
-- Removed unused files
-- Updated lockscreen style (HTML markup changed!)
-- Updated Login & Registration pages (HTML markup changed!)
-- Updated buttons style.
-- Enhanced border-radius consistency
-- Added mailbox: inbox, read, and compose pages
-- Bootstrap & jQuery are now hosted locally
-- Created documentation.
-
-**ver 1.2.0:**
-
-- Fixed the sidebar scroll issue when using the fixed layout.
-- Added [Bootstrap Social Buttons](http://lipis.github.io/bootstrap-social/ 
"Bootstrap Social") plugin.
-- Fixed RequireJS bug. Thanks to 
[StaticSphere](https://github.com/StaticSphere "github user"). 
-
-**ver 1.1.0:**
-
-- Added new skin. class: .skin-black
-- Added [pace](http://github.hubspot.com/pace/docs/welcome/ "pace") plugin.
-
-Image Credits
--------------
-[Pixeden](http://www.pixeden.com/psd-web-elements/flat-responsive-showcase-psd)
-
-[Graphicsfuel](http://www.graphicsfuel.com/2013/02/13-high-resolution-blur-backgrounds/)
-
-[Pickaface](http://pickaface.net/)
-
-[Unsplash](https://unsplash.com/)
-
-[Uifaces](http://uifaces.com/)
-
-Donations
----------
-Donations are **greatly appreciated!**
-
-[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif 
"AdminLTE 
Presentation")](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=629XCUSXBHCBC
 "Donate")

Reply via email to