mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-29 19:31:48 -05:00
Update dependencies, template file, and docs
* Use git+https prefix in git-based npm dependencies * Use ejs template for index to fix extraneous slash in path * Remove outdated documentation * Remove unused service * Regenerate shrinkwrap
This commit is contained in:
@@ -23,7 +23,7 @@ const STATIC_PATH = path.join(UI_PATH, 'static');
|
||||
|
||||
const APP_ENTRY = path.join(SOURCE_PATH, 'app.js');
|
||||
const VENDOR_ENTRY = path.join(SOURCE_PATH, 'vendor.js');
|
||||
const INDEX_ENTRY = path.join(CLIENT_PATH, 'index.template.html');
|
||||
const INDEX_ENTRY = path.join(CLIENT_PATH, 'index.template.ejs');
|
||||
const INDEX_OUTPUT = path.join(UI_PATH, 'templates/ui/index.html');
|
||||
const THEME_ENTRY = path.join(LIB_PATH, 'theme', 'index.less');
|
||||
const OUTPUT = 'js/[name].[hash].js';
|
||||
@@ -39,7 +39,7 @@ let base = {
|
||||
},
|
||||
output: {
|
||||
path: STATIC_PATH,
|
||||
publicPath: '{{ STATIC_URL }}',
|
||||
publicPath: '',
|
||||
filename: OUTPUT
|
||||
},
|
||||
module: {
|
||||
@@ -162,7 +162,7 @@ let base = {
|
||||
alwaysWriteToDisk: true,
|
||||
template: INDEX_ENTRY,
|
||||
filename: INDEX_OUTPUT,
|
||||
inject: 'head',
|
||||
inject: false,
|
||||
chunks: CHUNKS,
|
||||
chunksSortMode: (moduleA, moduleB) => {
|
||||
moduleA.files.sort((fileA, fileB) => fileA.includes('js') ? -1 : 1)
|
||||
|
||||
@@ -7,7 +7,6 @@ const HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin');
|
||||
const TARGET_PORT = _.get(process.env, 'npm_package_config_django_port', 8043);
|
||||
const TARGET_HOST = _.get(process.env, 'npm_package_config_django_host', 'https://localhost');
|
||||
const TARGET = `https://${TARGET_HOST}:${TARGET_PORT}`;
|
||||
const STATIC_URL = '/static/';
|
||||
|
||||
let development = require('./webpack.development');
|
||||
|
||||
@@ -18,8 +17,8 @@ let watch = {
|
||||
],
|
||||
devServer: {
|
||||
contentBase: path.resolve(__dirname, '..', 'static'),
|
||||
publicPath: STATIC_URL,
|
||||
clientLogLevel: 'info',
|
||||
publicPath: '/static/',
|
||||
host: '127.0.0.1',
|
||||
port: 3000,
|
||||
proxy: {
|
||||
|
||||
@@ -53,8 +53,7 @@ CredentialsResolve.$inject = [
|
||||
'OrganizationModel'
|
||||
];
|
||||
|
||||
function CredentialsConfig ($stateExtenderProvider, legacyProvider, pathProvider, stringProvider) {
|
||||
let path = pathProvider.$get();
|
||||
function CredentialsConfig ($stateExtenderProvider, legacyProvider, stringProvider) {
|
||||
let stateExtender = $stateExtenderProvider.$get();
|
||||
let legacy = legacyProvider.$get();
|
||||
let strings = stringProvider.$get();
|
||||
@@ -116,7 +115,6 @@ function CredentialsConfig ($stateExtenderProvider, legacyProvider, pathProvider
|
||||
CredentialsConfig.$inject = [
|
||||
'$stateExtenderProvider',
|
||||
'LegacyCredentialsServiceProvider',
|
||||
'PathServiceProvider',
|
||||
'CredentialsStringsProvider'
|
||||
];
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import { N_ } from '../../src/i18n';
|
||||
|
||||
const indexTemplate = require('@features/credentials/index.view.html');
|
||||
|
||||
function LegacyCredentialsService (pathService) {
|
||||
function LegacyCredentialsService () {
|
||||
this.list = {
|
||||
name: 'credentials',
|
||||
route: '/credentials',
|
||||
@@ -363,8 +363,4 @@ function LegacyCredentialsService (pathService) {
|
||||
};
|
||||
}
|
||||
|
||||
LegacyCredentialsService.$inject = [
|
||||
'PathService'
|
||||
];
|
||||
|
||||
export default LegacyCredentialsService;
|
||||
|
||||
@@ -8,6 +8,12 @@
|
||||
<link rel="shortcut icon" href="{{ STATIC_URL }}assets/favicon.ico?v={{version}}" />
|
||||
<title ng-bind="tabTitle"></title>
|
||||
<script>var $basePath = '{{ STATIC_URL }}'</script>
|
||||
<% htmlWebpackPlugin.files.css.forEach(file => {%>
|
||||
<link href="{{ STATIC_URL }}<%= file %>" rel="stylesheet" />
|
||||
<% }) %>
|
||||
<% htmlWebpackPlugin.files.js.forEach(file => {%>
|
||||
<script src="{{ STATIC_URL }}<%= file %>"></script>
|
||||
<% }) %>
|
||||
</head>
|
||||
|
||||
<body data-user-agent="{{userAgent}}">
|
||||
@@ -1,4 +1,4 @@
|
||||
import defaults from '../../assets/default.strings.json';
|
||||
import defaults from '@assets/default.strings.json';
|
||||
|
||||
let i18n;
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import CacheService from '@services/cache.service';
|
||||
import EventService from '@services/event.service';
|
||||
import PathService from '@services/path.service';
|
||||
import BaseStringService from '@services/base-string.service';
|
||||
import AppStrings from '@services/app.strings';
|
||||
|
||||
@@ -9,5 +8,4 @@ angular
|
||||
.service('AppStrings', AppStrings)
|
||||
.service('BaseStringService', BaseStringService)
|
||||
.service('CacheService', CacheService)
|
||||
.service('EventService', EventService)
|
||||
.service('PathService', PathService);
|
||||
.service('EventService', EventService);
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
function PathService () {
|
||||
this.getPartialPath = path => {
|
||||
return `/static/partials/${path}.partial.html`;
|
||||
};
|
||||
|
||||
this.getViewPath = path => {
|
||||
return `/static/views/${path}.view.html`;
|
||||
}
|
||||
}
|
||||
|
||||
export default PathService;
|
||||
622
awx/ui/npm-shrinkwrap.json
generated
622
awx/ui/npm-shrinkwrap.json
generated
@@ -1,622 +0,0 @@
|
||||
{
|
||||
"name": "awx",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"ajv": {
|
||||
"version": "4.11.8",
|
||||
"from": "ajv@>=4.9.1 <5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"
|
||||
},
|
||||
"almond": {
|
||||
"version": "0.3.3",
|
||||
"from": "almond@>=0.3.1 <0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/almond/-/almond-0.3.3.tgz"
|
||||
},
|
||||
"amdefine": {
|
||||
"version": "1.0.1",
|
||||
"from": "amdefine@>=0.0.4",
|
||||
"resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"
|
||||
},
|
||||
"angular": {
|
||||
"version": "1.4.14",
|
||||
"from": "angular@>=1.4.14 <1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/angular/-/angular-1.4.14.tgz"
|
||||
},
|
||||
"angular-breadcrumb": {
|
||||
"version": "0.4.1",
|
||||
"from": "ansible/angular-breadcrumb#0.4.1",
|
||||
"resolved": "git://github.com/ansible/angular-breadcrumb.git#6c2b1ad45ad5fbe7adf39af1ef3b294ca8e207a9"
|
||||
},
|
||||
"angular-codemirror": {
|
||||
"version": "1.0.4",
|
||||
"from": "ansible/angular-codemirror#1.0.4",
|
||||
"resolved": "git://github.com/ansible/angular-codemirror.git#75c3a2d0ccdf2e4c836fab7d7617d5db6c585c1b",
|
||||
"dependencies": {
|
||||
"angular": {
|
||||
"version": "1.4.7",
|
||||
"from": "angular@1.4.7",
|
||||
"resolved": "https://registry.npmjs.org/angular/-/angular-1.4.7.tgz"
|
||||
}
|
||||
}
|
||||
},
|
||||
"angular-cookies": {
|
||||
"version": "1.4.14",
|
||||
"from": "angular-cookies@>=1.4.14 <1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/angular-cookies/-/angular-cookies-1.4.14.tgz"
|
||||
},
|
||||
"angular-drag-and-drop-lists": {
|
||||
"version": "1.4.0",
|
||||
"from": "ansible/angular-drag-and-drop-lists#1.4.0",
|
||||
"resolved": "git://github.com/ansible/angular-drag-and-drop-lists.git#4d32654ab7159689a7767b9be8fc85f9812ca5a8"
|
||||
},
|
||||
"angular-duration-format": {
|
||||
"version": "1.0.1",
|
||||
"from": "angular-duration-format@>=1.0.1 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/angular-duration-format/-/angular-duration-format-1.0.1.tgz"
|
||||
},
|
||||
"angular-filters": {
|
||||
"version": "1.1.2",
|
||||
"from": "angular-filters@>=1.1.2 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/angular-filters/-/angular-filters-1.1.2.tgz"
|
||||
},
|
||||
"angular-gettext": {
|
||||
"version": "2.3.10",
|
||||
"from": "angular-gettext@>=2.3.5 <3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/angular-gettext/-/angular-gettext-2.3.10.tgz"
|
||||
},
|
||||
"angular-md5": {
|
||||
"version": "0.1.10",
|
||||
"from": "angular-md5@>=0.1.8 <0.2.0",
|
||||
"resolved": "https://registry.npmjs.org/angular-md5/-/angular-md5-0.1.10.tgz"
|
||||
},
|
||||
"angular-moment": {
|
||||
"version": "0.10.3",
|
||||
"from": "angular-moment@>=0.10.1 <0.11.0",
|
||||
"resolved": "https://registry.npmjs.org/angular-moment/-/angular-moment-0.10.3.tgz"
|
||||
},
|
||||
"angular-resource": {
|
||||
"version": "1.4.14",
|
||||
"from": "angular-resource@>=1.4.14 <1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/angular-resource/-/angular-resource-1.4.14.tgz"
|
||||
},
|
||||
"angular-sanitize": {
|
||||
"version": "1.4.14",
|
||||
"from": "angular-sanitize@>=1.4.14 <1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/angular-sanitize/-/angular-sanitize-1.4.14.tgz"
|
||||
},
|
||||
"angular-scheduler": {
|
||||
"version": "0.1.0",
|
||||
"from": "ansible/angular-scheduler#0.1.1",
|
||||
"resolved": "git://github.com/ansible/angular-scheduler.git#9f2893a54c758b05bd6afce897488c01a6e8959d",
|
||||
"dependencies": {
|
||||
"angular-tz-extensions": {
|
||||
"version": "0.3.11",
|
||||
"from": "ansible/angular-tz-extensions",
|
||||
"resolved": "git://github.com/ansible/angular-tz-extensions.git#33caaa9ccf5dfe29a95962c17c3c9e6b9775be35",
|
||||
"dependencies": {
|
||||
"angular": {
|
||||
"version": "1.4.7",
|
||||
"from": "angular@1.4.7",
|
||||
"resolved": "https://registry.npmjs.org/angular/-/angular-1.4.7.tgz"
|
||||
},
|
||||
"jquery": {
|
||||
"version": "3.2.1",
|
||||
"from": "jquery@>=3.1.0 <4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"angular-tz-extensions": {
|
||||
"version": "0.3.11",
|
||||
"from": "ansible/angular-tz-extensions#0.3.13",
|
||||
"resolved": "git://github.com/ansible/angular-tz-extensions.git#33caaa9ccf5dfe29a95962c17c3c9e6b9775be35",
|
||||
"dependencies": {
|
||||
"angular": {
|
||||
"version": "1.4.7",
|
||||
"from": "angular@1.4.7",
|
||||
"resolved": "https://registry.npmjs.org/angular/-/angular-1.4.7.tgz"
|
||||
},
|
||||
"jquery": {
|
||||
"version": "3.2.1",
|
||||
"from": "jquery@>=3.1.0 <4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz"
|
||||
}
|
||||
}
|
||||
},
|
||||
"angular-ui-router": {
|
||||
"version": "1.0.0-beta.3",
|
||||
"from": "angular-ui-router@1.0.0-beta.3",
|
||||
"resolved": "https://registry.npmjs.org/angular-ui-router/-/angular-ui-router-1.0.0-beta.3.tgz"
|
||||
},
|
||||
"argparse": {
|
||||
"version": "1.0.9",
|
||||
"from": "argparse@>=1.0.7 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
|
||||
"dependencies": {
|
||||
"sprintf-js": {
|
||||
"version": "1.0.3",
|
||||
"from": "sprintf-js@>=1.0.2 <1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
|
||||
}
|
||||
}
|
||||
},
|
||||
"asn1": {
|
||||
"version": "0.2.3",
|
||||
"from": "asn1@>=0.2.3 <0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"
|
||||
},
|
||||
"assert-plus": {
|
||||
"version": "0.2.0",
|
||||
"from": "assert-plus@>=0.2.0 <0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"
|
||||
},
|
||||
"asynckit": {
|
||||
"version": "0.4.0",
|
||||
"from": "asynckit@>=0.4.0 <0.5.0",
|
||||
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
|
||||
},
|
||||
"aws-sign2": {
|
||||
"version": "0.6.0",
|
||||
"from": "aws-sign2@>=0.6.0 <0.7.0",
|
||||
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"
|
||||
},
|
||||
"aws4": {
|
||||
"version": "1.6.0",
|
||||
"from": "aws4@>=1.2.1 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz"
|
||||
},
|
||||
"bcrypt-pbkdf": {
|
||||
"version": "1.0.1",
|
||||
"from": "bcrypt-pbkdf@>=1.0.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
|
||||
"optional": true
|
||||
},
|
||||
"big.js": {
|
||||
"version": "3.1.3",
|
||||
"from": "big.js@>=3.1.3 <4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz"
|
||||
},
|
||||
"bindings": {
|
||||
"version": "1.3.0",
|
||||
"from": "bindings@>=1.2.1 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz"
|
||||
},
|
||||
"boom": {
|
||||
"version": "2.10.1",
|
||||
"from": "boom@>=2.0.0 <3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"
|
||||
},
|
||||
"bootstrap": {
|
||||
"version": "3.3.7",
|
||||
"from": "bootstrap@>=3.3.7 <4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz"
|
||||
},
|
||||
"bootstrap-datepicker": {
|
||||
"version": "1.7.1",
|
||||
"from": "bootstrap-datepicker@>=1.7.1 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.7.1.tgz"
|
||||
},
|
||||
"caseless": {
|
||||
"version": "0.12.0",
|
||||
"from": "caseless@>=0.12.0 <0.13.0",
|
||||
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"
|
||||
},
|
||||
"co": {
|
||||
"version": "4.6.0",
|
||||
"from": "co@>=4.6.0 <5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz"
|
||||
},
|
||||
"codemirror": {
|
||||
"version": "5.29.0",
|
||||
"from": "codemirror@>=5.17.0 <6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.29.0.tgz"
|
||||
},
|
||||
"combined-stream": {
|
||||
"version": "1.0.5",
|
||||
"from": "combined-stream@>=1.0.5 <1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz"
|
||||
},
|
||||
"components-font-awesome": {
|
||||
"version": "4.6.3",
|
||||
"from": "components-font-awesome@>=4.6.1 <5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/components-font-awesome/-/components-font-awesome-4.6.3.tgz"
|
||||
},
|
||||
"contextify": {
|
||||
"version": "0.1.15",
|
||||
"from": "contextify@>=0.1.5 <0.2.0",
|
||||
"resolved": "https://registry.npmjs.org/contextify/-/contextify-0.1.15.tgz"
|
||||
},
|
||||
"core-util-is": {
|
||||
"version": "1.0.2",
|
||||
"from": "core-util-is@1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
|
||||
},
|
||||
"cryptiles": {
|
||||
"version": "2.0.5",
|
||||
"from": "cryptiles@>=2.0.0 <3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"
|
||||
},
|
||||
"cssom": {
|
||||
"version": "0.2.5",
|
||||
"from": "cssom@>=0.2.5 <0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.2.5.tgz"
|
||||
},
|
||||
"cssstyle": {
|
||||
"version": "0.2.37",
|
||||
"from": "cssstyle@>=0.2.3 <0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz",
|
||||
"dependencies": {
|
||||
"cssom": {
|
||||
"version": "0.3.2",
|
||||
"from": "cssom@>=0.3.0 <0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz"
|
||||
}
|
||||
}
|
||||
},
|
||||
"d3": {
|
||||
"version": "3.3.13",
|
||||
"from": "d3@>=3.3.13 <3.4.0",
|
||||
"resolved": "https://registry.npmjs.org/d3/-/d3-3.3.13.tgz"
|
||||
},
|
||||
"dashdash": {
|
||||
"version": "1.14.1",
|
||||
"from": "dashdash@>=1.12.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
|
||||
"dependencies": {
|
||||
"assert-plus": {
|
||||
"version": "1.0.0",
|
||||
"from": "assert-plus@>=1.0.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
|
||||
}
|
||||
}
|
||||
},
|
||||
"delayed-stream": {
|
||||
"version": "1.0.0",
|
||||
"from": "delayed-stream@>=1.0.0 <1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
|
||||
},
|
||||
"ecc-jsbn": {
|
||||
"version": "0.1.1",
|
||||
"from": "ecc-jsbn@>=0.1.1 <0.2.0",
|
||||
"resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
|
||||
"optional": true
|
||||
},
|
||||
"emojis-list": {
|
||||
"version": "2.1.0",
|
||||
"from": "emojis-list@>=2.0.0 <3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz"
|
||||
},
|
||||
"esprima": {
|
||||
"version": "4.0.0",
|
||||
"from": "esprima@>=4.0.0 <5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz"
|
||||
},
|
||||
"extend": {
|
||||
"version": "3.0.1",
|
||||
"from": "extend@>=3.0.0 <3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz"
|
||||
},
|
||||
"extsprintf": {
|
||||
"version": "1.3.0",
|
||||
"from": "extsprintf@1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
|
||||
},
|
||||
"forever-agent": {
|
||||
"version": "0.6.1",
|
||||
"from": "forever-agent@>=0.6.1 <0.7.0",
|
||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"
|
||||
},
|
||||
"form-data": {
|
||||
"version": "2.1.4",
|
||||
"from": "form-data@>=2.1.1 <2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"
|
||||
},
|
||||
"getpass": {
|
||||
"version": "0.1.7",
|
||||
"from": "getpass@>=0.1.1 <0.2.0",
|
||||
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
|
||||
"dependencies": {
|
||||
"assert-plus": {
|
||||
"version": "1.0.0",
|
||||
"from": "assert-plus@>=1.0.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
|
||||
}
|
||||
}
|
||||
},
|
||||
"har-schema": {
|
||||
"version": "1.0.5",
|
||||
"from": "har-schema@>=1.0.5 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"
|
||||
},
|
||||
"har-validator": {
|
||||
"version": "4.2.1",
|
||||
"from": "har-validator@>=4.2.1 <4.3.0",
|
||||
"resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"
|
||||
},
|
||||
"hawk": {
|
||||
"version": "3.1.3",
|
||||
"from": "hawk@>=3.1.3 <3.2.0",
|
||||
"resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"
|
||||
},
|
||||
"hoek": {
|
||||
"version": "2.16.3",
|
||||
"from": "hoek@>=2.0.0 <3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"
|
||||
},
|
||||
"htmlparser": {
|
||||
"version": "1.7.7",
|
||||
"from": "htmlparser@>=1.0.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/htmlparser/-/htmlparser-1.7.7.tgz"
|
||||
},
|
||||
"http-signature": {
|
||||
"version": "1.1.1",
|
||||
"from": "http-signature@>=1.1.0 <1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"
|
||||
},
|
||||
"is-typedarray": {
|
||||
"version": "1.0.0",
|
||||
"from": "is-typedarray@>=1.0.0 <1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
|
||||
},
|
||||
"isstream": {
|
||||
"version": "0.1.2",
|
||||
"from": "isstream@>=0.1.2 <0.2.0",
|
||||
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"
|
||||
},
|
||||
"javascript-detect-element-resize": {
|
||||
"version": "0.5.3",
|
||||
"from": "javascript-detect-element-resize@>=0.5.3 <0.6.0",
|
||||
"resolved": "https://registry.npmjs.org/javascript-detect-element-resize/-/javascript-detect-element-resize-0.5.3.tgz"
|
||||
},
|
||||
"jquery": {
|
||||
"version": "2.2.4",
|
||||
"from": "jquery@>=2.2.4 <2.3.0",
|
||||
"resolved": "https://registry.npmjs.org/jquery/-/jquery-2.2.4.tgz"
|
||||
},
|
||||
"jquery-mousewheel": {
|
||||
"version": "3.1.13",
|
||||
"from": "jquery-mousewheel@>=3.1.13 <3.2.0",
|
||||
"resolved": "https://registry.npmjs.org/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz"
|
||||
},
|
||||
"jquery-ui": {
|
||||
"version": "1.10.5",
|
||||
"from": "jquery-ui@>=1.10.5 <1.11.0",
|
||||
"resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.10.5.tgz"
|
||||
},
|
||||
"js-yaml": {
|
||||
"version": "3.9.1",
|
||||
"from": "js-yaml@>=3.2.7 <4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz"
|
||||
},
|
||||
"jsbn": {
|
||||
"version": "0.1.1",
|
||||
"from": "jsbn@>=0.1.0 <0.2.0",
|
||||
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
|
||||
"optional": true
|
||||
},
|
||||
"jsdom": {
|
||||
"version": "0.5.7",
|
||||
"from": "jsdom@0.5.7",
|
||||
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-0.5.7.tgz"
|
||||
},
|
||||
"json-schema": {
|
||||
"version": "0.2.3",
|
||||
"from": "json-schema@0.2.3",
|
||||
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"
|
||||
},
|
||||
"json-stable-stringify": {
|
||||
"version": "1.0.1",
|
||||
"from": "json-stable-stringify@>=1.0.1 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"
|
||||
},
|
||||
"json-stringify-safe": {
|
||||
"version": "5.0.1",
|
||||
"from": "json-stringify-safe@>=5.0.1 <5.1.0",
|
||||
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
|
||||
},
|
||||
"json5": {
|
||||
"version": "0.5.1",
|
||||
"from": "json5@>=0.5.0 <0.6.0",
|
||||
"resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"
|
||||
},
|
||||
"jsonify": {
|
||||
"version": "0.0.0",
|
||||
"from": "jsonify@>=0.0.0 <0.1.0",
|
||||
"resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"
|
||||
},
|
||||
"jsprim": {
|
||||
"version": "1.4.1",
|
||||
"from": "jsprim@>=1.2.2 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
|
||||
"dependencies": {
|
||||
"assert-plus": {
|
||||
"version": "1.0.0",
|
||||
"from": "assert-plus@1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
|
||||
}
|
||||
}
|
||||
},
|
||||
"jstimezonedetect": {
|
||||
"version": "1.0.5",
|
||||
"from": "jstimezonedetect@1.0.5",
|
||||
"resolved": "https://registry.npmjs.org/jstimezonedetect/-/jstimezonedetect-1.0.5.tgz"
|
||||
},
|
||||
"legacy-loader": {
|
||||
"version": "0.0.2",
|
||||
"from": "legacy-loader@0.0.2",
|
||||
"resolved": "https://registry.npmjs.org/legacy-loader/-/legacy-loader-0.0.2.tgz"
|
||||
},
|
||||
"loader-utils": {
|
||||
"version": "0.2.17",
|
||||
"from": "loader-utils@>=0.2.6 <0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz"
|
||||
},
|
||||
"lodash": {
|
||||
"version": "3.8.0",
|
||||
"from": "lodash@>=3.8.0 <3.9.0",
|
||||
"resolved": "https://registry.npmjs.org/lodash/-/lodash-3.8.0.tgz"
|
||||
},
|
||||
"lr-infinite-scroll": {
|
||||
"version": "1.0.0",
|
||||
"from": "lorenzofox3/lrInfiniteScroll",
|
||||
"resolved": "git://github.com/lorenzofox3/lrInfiniteScroll.git#59d348bc5c18f164438d2a30f1fd79b333c3b649"
|
||||
},
|
||||
"mime-db": {
|
||||
"version": "1.30.0",
|
||||
"from": "mime-db@>=1.30.0 <1.31.0",
|
||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz"
|
||||
},
|
||||
"mime-types": {
|
||||
"version": "2.1.17",
|
||||
"from": "mime-types@>=2.1.7 <2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz"
|
||||
},
|
||||
"moment": {
|
||||
"version": "2.10.6",
|
||||
"from": "moment@>=2.10.0 <2.11.0",
|
||||
"resolved": "https://registry.npmjs.org/moment/-/moment-2.10.6.tgz"
|
||||
},
|
||||
"nan": {
|
||||
"version": "2.7.0",
|
||||
"from": "nan@>=2.1.0 <3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/nan/-/nan-2.7.0.tgz"
|
||||
},
|
||||
"ng-toast": {
|
||||
"version": "2.0.0",
|
||||
"from": "ansible/ngToast#2.0.1",
|
||||
"resolved": "git://github.com/ansible/ngToast.git#fea95bb34d27687e414619b4f72c11735d909f93"
|
||||
},
|
||||
"nvd3": {
|
||||
"version": "1.7.1",
|
||||
"from": "ansible/nvd3#1.7.1",
|
||||
"resolved": "git://github.com/ansible/nvd3.git#a28bcd494a1df0677be7cf2ebc0578f44eb21102"
|
||||
},
|
||||
"nwmatcher": {
|
||||
"version": "1.3.9",
|
||||
"from": "nwmatcher@>=1.3.1 <1.4.0",
|
||||
"resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.3.9.tgz"
|
||||
},
|
||||
"oauth-sign": {
|
||||
"version": "0.8.2",
|
||||
"from": "oauth-sign@>=0.8.1 <0.9.0",
|
||||
"resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz"
|
||||
},
|
||||
"object-assign": {
|
||||
"version": "4.1.1",
|
||||
"from": "object-assign@>=4.0.1 <5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
|
||||
},
|
||||
"performance-now": {
|
||||
"version": "0.2.0",
|
||||
"from": "performance-now@>=0.2.0 <0.3.0",
|
||||
"resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"
|
||||
},
|
||||
"punycode": {
|
||||
"version": "1.4.1",
|
||||
"from": "punycode@>=1.4.1 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"
|
||||
},
|
||||
"qs": {
|
||||
"version": "6.4.0",
|
||||
"from": "qs@>=6.4.0 <6.5.0",
|
||||
"resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"
|
||||
},
|
||||
"reconnectingwebsocket": {
|
||||
"version": "1.0.0",
|
||||
"from": "reconnectingwebsocket@>=1.0.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/reconnectingwebsocket/-/reconnectingwebsocket-1.0.0.tgz"
|
||||
},
|
||||
"request": {
|
||||
"version": "2.81.0",
|
||||
"from": "request@>=2.0.0 <3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz"
|
||||
},
|
||||
"rrule": {
|
||||
"version": "2.2.0-dev",
|
||||
"from": "jkbrzt/rrule#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c",
|
||||
"resolved": "git://github.com/jkbrzt/rrule.git#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c"
|
||||
},
|
||||
"safe-buffer": {
|
||||
"version": "5.1.1",
|
||||
"from": "safe-buffer@>=5.0.1 <6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz"
|
||||
},
|
||||
"select2": {
|
||||
"version": "4.0.3",
|
||||
"from": "select2@>=4.0.2 <5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/select2/-/select2-4.0.3.tgz"
|
||||
},
|
||||
"sntp": {
|
||||
"version": "1.0.9",
|
||||
"from": "sntp@>=1.0.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"
|
||||
},
|
||||
"source-map": {
|
||||
"version": "0.3.0",
|
||||
"from": "source-map@>=0.3.0 <0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz"
|
||||
},
|
||||
"sprintf-js": {
|
||||
"version": "1.1.1",
|
||||
"from": "sprintf-js@>=1.0.3 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz"
|
||||
},
|
||||
"sshpk": {
|
||||
"version": "1.13.1",
|
||||
"from": "sshpk@>=1.7.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz",
|
||||
"dependencies": {
|
||||
"assert-plus": {
|
||||
"version": "1.0.0",
|
||||
"from": "assert-plus@>=1.0.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
|
||||
}
|
||||
}
|
||||
},
|
||||
"stringstream": {
|
||||
"version": "0.0.5",
|
||||
"from": "stringstream@>=0.0.4 <0.1.0",
|
||||
"resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz"
|
||||
},
|
||||
"timezone-js": {
|
||||
"version": "0.4.14",
|
||||
"from": "ansible/timezone-js#0.4.14",
|
||||
"resolved": "git://github.com/ansible/timezone-js.git#6937de14ce0c193961538bb5b3b12b7ef62a358f"
|
||||
},
|
||||
"tough-cookie": {
|
||||
"version": "2.3.2",
|
||||
"from": "tough-cookie@>=2.3.0 <2.4.0",
|
||||
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz"
|
||||
},
|
||||
"tunnel-agent": {
|
||||
"version": "0.6.0",
|
||||
"from": "tunnel-agent@>=0.6.0 <0.7.0",
|
||||
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"
|
||||
},
|
||||
"tweetnacl": {
|
||||
"version": "0.14.5",
|
||||
"from": "tweetnacl@>=0.14.0 <0.15.0",
|
||||
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
|
||||
"optional": true
|
||||
},
|
||||
"uuid": {
|
||||
"version": "3.1.0",
|
||||
"from": "uuid@>=3.0.0 <4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz"
|
||||
},
|
||||
"verror": {
|
||||
"version": "1.10.0",
|
||||
"from": "verror@1.10.0",
|
||||
"resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
|
||||
"dependencies": {
|
||||
"assert-plus": {
|
||||
"version": "1.0.0",
|
||||
"from": "assert-plus@>=1.0.0 <2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@
|
||||
},
|
||||
"engines": {
|
||||
"node": "^6.11.3",
|
||||
"npm": "^3.10.3"
|
||||
"npm": "^3.10.10"
|
||||
},
|
||||
"scripts": {
|
||||
"ui-docker-machine": "ip=$(docker-machine ip $DOCKER_MACHINE_NAME); npm set ansible-tower:django_host ${ip}; grunt dev;",
|
||||
@@ -90,18 +90,18 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"angular": "~1.4.14",
|
||||
"angular-breadcrumb": "github:ansible/angular-breadcrumb#0.4.1",
|
||||
"angular-codemirror": "github:ansible/angular-codemirror#1.0.4",
|
||||
"angular-breadcrumb": "git+https://git@github.com/ansible/angular-breadcrumb#0.4.1",
|
||||
"angular-codemirror": "git+https://git@github.com/ansible/angular-codemirror#1.0.4",
|
||||
"angular-cookies": "~1.4.14",
|
||||
"angular-drag-and-drop-lists": "github:ansible/angular-drag-and-drop-lists#1.4.0",
|
||||
"angular-drag-and-drop-lists": "git+https://git@github.com/ansible/angular-drag-and-drop-lists#1.4.0",
|
||||
"angular-duration-format": "^1.0.1",
|
||||
"angular-gettext": "^2.3.5",
|
||||
"angular-md5": "^0.1.8",
|
||||
"angular-moment": "^0.10.1",
|
||||
"angular-resource": "~1.4.14",
|
||||
"angular-sanitize": "~1.4.14",
|
||||
"angular-scheduler": "github:ansible/angular-scheduler#0.1.1",
|
||||
"angular-tz-extensions": "github:ansible/angular-tz-extensions#0.3.13",
|
||||
"angular-scheduler": "git+https://git@github.com/ansible/angular-scheduler#0.1.1",
|
||||
"angular-tz-extensions": "git+https://git@github.com/ansible/angular-tz-extensions#0.3.13",
|
||||
"angular-ui-router": "1.0.0-beta.3",
|
||||
"bootstrap": "^3.3.7",
|
||||
"bootstrap-datepicker": "^1.7.1",
|
||||
@@ -114,12 +114,12 @@
|
||||
"js-yaml": "^3.2.7",
|
||||
"legacy-loader": "0.0.2",
|
||||
"lodash": "~3.8.0",
|
||||
"lr-infinite-scroll": "github:lorenzofox3/lrInfiniteScroll",
|
||||
"lr-infinite-scroll": "git+https://git@github.com/lorenzofox3/lrInfiniteScroll",
|
||||
"moment": "~2.10.0",
|
||||
"ng-toast": "github:ansible/ngToast#2.0.1",
|
||||
"nvd3": "github:ansible/nvd3#1.7.1",
|
||||
"ng-toast": "git+https://git@github.com/ansible/ngToast#2.0.1",
|
||||
"nvd3": "git+https://git@github.com/ansible/nvd3#1.7.1",
|
||||
"reconnectingwebsocket": "^1.0.0",
|
||||
"rrule": "github:jkbrzt/rrule#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c",
|
||||
"rrule": "git+https://git@github.com/jkbrzt/rrule#4ff63b2f8524fd6d5ba6e80db770953b5cd08a0c",
|
||||
"select2": "^4.0.2",
|
||||
"sprintf-js": "^1.0.3"
|
||||
}
|
||||
|
||||
@@ -8,7 +8,17 @@
|
||||
<link rel="shortcut icon" href="{{ STATIC_URL }}assets/favicon.ico?v={{version}}" />
|
||||
<title ng-bind="tabTitle"></title>
|
||||
<script>var $basePath = '{{ STATIC_URL }}'</script>
|
||||
<link href="css/vendor.ef74d311a51ca363f1e2.css" rel="stylesheet"><link href="css/app.ef74d311a51ca363f1e2.css" rel="stylesheet"><script type="text/javascript" src="js/vendor.ef74d311a51ca363f1e2.js"></script><script type="text/javascript" src="js/app.ef74d311a51ca363f1e2.js"></script></head>
|
||||
|
||||
<link href="{{ STATIC_URL }}css/vendor.f283b4795bc6921b48e5.css" rel="stylesheet" />
|
||||
|
||||
<link href="{{ STATIC_URL }}css/app.f283b4795bc6921b48e5.css" rel="stylesheet" />
|
||||
|
||||
|
||||
<script src="{{ STATIC_URL }}js/vendor.f283b4795bc6921b48e5.js"></script>
|
||||
|
||||
<script src="{{ STATIC_URL }}js/app.f283b4795bc6921b48e5.js"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body data-user-agent="{{userAgent}}">
|
||||
<at-layout>
|
||||
|
||||
Reference in New Issue
Block a user