core: move more servies to Text (receiver and args only)
[nit.git] / share / nitweb / javascripts / nitweb.js
1 /*
2 * Copyright 2016 Alexandre Terrasa <alexandre@moz-code.org>.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 (function() {
18 angular.module('nitweb', ['ngRoute', 'ngSanitize', 'angular-loading-bar', 'entities', 'docdown', 'index', 'metrics', 'users', 'grades'])
19 .config(['cfpLoadingBarProvider', function(cfpLoadingBarProvider) {
20 cfpLoadingBarProvider.includeSpinner = false;
21 }])
22 .config(function($routeProvider, $locationProvider) {
23 $routeProvider
24 .when('/', {
25 templateUrl: 'views/index.html',
26 controller: 'IndexCtrl',
27 controllerAs: 'indexCtrl'
28 })
29 .when('/user', {
30 templateUrl: 'views/user.html',
31 controller: 'UserCtrl',
32 controllerAs: 'userCtrl'
33 })
34 .when('/docdown', {
35 templateUrl: 'views/docdown.html',
36 controller: 'DocdownCtrl',
37 controllerAs: 'docdownCtrl'
38 })
39 .when('/grades', {
40 templateUrl: 'views/grades.html',
41 controller: 'GradesCtrl',
42 controllerAs: 'gradesCtrl'
43 })
44 .when('/login', {
45 controller : function(){
46 window.location.replace('/login');
47 },
48 template : "<div></div>"
49 })
50 .when('/logout', {
51 controller : function(){
52 window.location.replace('/logout');
53 },
54 template : "<div></div>"
55 })
56 .when('/doc/:id', {
57 templateUrl: 'views/doc.html',
58 controller: 'EntityCtrl',
59 controllerAs: 'entityCtrl',
60 reloadOnSearch: false
61 })
62 .otherwise({
63 templateUrl: 'views/error.html'
64 });
65 $locationProvider.html5Mode(true);
66 })
67
68 .filter('encodeURI', function() {
69 return encodeURIComponent;
70 });
71 })();