main.js revision 48ddd46e9e22ee57a7fb400c6296f977c11173b3
/**
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2011-2013 ForgeRock AS. All rights reserved.
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* http://forgerock.org/license/CDDLv1.0.html
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at http://forgerock.org/license/CDDLv1.0.html
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*/
/*global require, define*/
/**
* @author yaromin
*/
require.config({
paths: {
less: "libs/less-1.5.1-min",
i18next: "libs/i18next-1.7.3-min",
i18nGrid: "libs/i18n/grid.locale-en",
backbone: "libs/backbone-0.9.2-min",
underscore: "libs/underscore-1.4.4-min",
js2form: "libs/js2form-1.0",
form2js: "libs/form2js-1.0",
contentflow: "libs/contentflow",
spin: "libs/spin-1.2.5-min",
jqueryui: "libs/jquery-ui-1.10.4.custom-min",
jqgrid: "libs/jquery.jqGrid-4.5.4-min",
xdate: "libs/xdate-0.7-min",
doTimeout: "libs/jquery.ba-dotimeout-1.0-min",
handlebars: "libs/handlebars-1.0.rc.1",
moment: "libs/moment-1.7.2-min",
AuthnDelegate: "org/forgerock/openidm/ui/common/delegates/AuthnDelegate",
UserDelegate: "org/forgerock/openidm/ui/user/delegates/UserDelegate",
ThemeManager: "org/forgerock/openidm/ui/common/util/ThemeManager",
SiteIdentificationDelegate: "org/forgerock/openidm/ui/user/delegates/SiteIdentificationDelegate"
},
shim: {
underscore: {
exports: "_"
},
backbone: {
deps: ["underscore"],
exports: "Backbone"
},
js2form: {
exports: "js2form"
},
form2js: {
exports: "form2js"
},
contentflow: {
exports: "contentflow"
},
spin: {
exports: "spin"
},
jqueryui: {
exports: "jqueryui"
},
jqgrid: {
deps: ["jqueryui", "i18nGrid"]
},
xdate: {
exports: "xdate"
},
doTimeout: {
exports: "doTimeout"
},
handlebars: {
exports: "handlebars"
},
i18next: {
deps: ["handlebars"],
exports: "i18next"
},
moment: {
exports: "moment"
}
}
});
/**
* Loads all application on start, so each module will be available to
* required synchronously
*/
require([
"less",
"underscore",
"backbone",
"form2js",
"js2form",
"contentflow",
"spin",
"jqgrid",
"jqueryui",
"xdate",
"moment",
"doTimeout",
"handlebars",
"i18next",
"org/forgerock/commons/ui/common/main/i18nManager",
"org/forgerock/commons/ui/common/util/Constants",
"org/forgerock/commons/ui/common/main/EventManager",
"org/forgerock/openidm/ui/common/main",
"org/forgerock/openidm/ui/user/main",
"org/forgerock/openidm/ui/admin/main",
"org/forgerock/commons/ui/user/main",
"org/forgerock/commons/ui/common/main",
"config/main"
], function(a, b, c, d, e, f, g, h, i, j, k, l, m, n, i18n, constants, eventManager) {
eventManager.sendEvent(constants.EVENT_DEPENDECIES_LOADED);
});