blob: 5a020807ff826203b54e7ea5dff1070f2d348545 [file] [log] [blame]
/*
* 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.
*/
/*
* set the require.js configuration for your application
*/
require.config({
/* Give 30s (default is 7s) in case it's a very poor slow network */
waitSeconds:30,
/* Libraries */
baseUrl:"assets/js",
paths:{
"jquery":"libs/jquery",
"underscore":"libs/underscore",
"backbone":"libs/backbone",
"bootstrap":"libs/bootstrap",
"jquery-form":"libs/jquery.form",
"jquery-datatables":"libs/jquery.dataTables",
"jquery-slideto":"util/jquery.slideto",
"jquery-wiggle":"libs/jquery.wiggle.min",
"jquery-ba-bbq":"libs/jquery.ba-bbq.min",
"jquery-easy-autocomplete": "libs/jquery.easy-autocomplete",
"moment":"libs/moment",
"handlebars":"libs/handlebars-1.0.rc.1",
"brooklyn":"util/brooklyn",
"brooklyn-view":"util/brooklyn-view",
"brooklyn-utils":"util/brooklyn-utils",
"datatables-extensions":"util/dataTables.extensions",
"googlemaps":"view/googlemaps",
"async":"libs/async", //not explicitly referenced, but needed for google
"text":"libs/text",
"uri":"libs/URI",
"zeroclipboard":"libs/ZeroClipboard",
"js-yaml":"libs/js-yaml",
"js-yaml-parser":"util/code-complete/js-yaml-parser",
"brooklyn-yaml-completion-proposals":"util/code-complete/brooklyn-yaml-completion-proposals",
"codemirror":"libs/codemirror",
"codemirror-mode-yaml":"libs/codemirror/mode/yaml/yaml",
"codemirror-addon-show-hint":"libs/codemirror/addon/hint/show-hint",
"codemirror-addon-anyword-hint":"libs/codemirror/addon/hint/anyword-hint",
"codemirror-addon-display-placeholder":"libs/codemirror/addon/display/placeholder",
"tpl":"../tpl"
},
shim:{
"underscore":{
exports:"_"
},
"backbone":{
deps:[ "underscore", "jquery" ],
exports:"Backbone"
},
"jquery-datatables": {
deps: [ "jquery" ]
},
"datatables-extensions":{
deps:[ "jquery", "jquery-datatables" ]
},
"jquery-form": { deps: [ "jquery" ] },
"jquery-slideto": { deps: [ "jquery" ] },
"jquery-wiggle": { deps: [ "jquery" ] },
"jquery-ba-bbq": { deps: [ "jquery" ] },
"jquery-easy-autocomplete": { deps: [ "jquery" ] },
"handlebars": { deps: [ "jquery" ] },
"codemirror":{
exports:"CodeMirror"
},
"codemirror-mode-yaml":{ deps: ["codemirror"] },
"codemirror-addon-show-hint":{ deps: ["codemirror"] },
"codemirror-addon-anyword-hint":{ deps: ["codemirror"] },
"codemirror-addon-display-placeholder":{ deps: ["codemirror"] },
"bootstrap": { deps: [ "jquery" ] /* http://stackoverflow.com/questions/9227406/bootstrap-typeerror-undefined-is-not-a-function-has-no-method-tab-when-us */ }
}
});
/*
* Main application entry point.
*/
require([
"router"
], function (Router) {
new Router().startBrooklynGui();
});