summaryrefslogtreecommitdiffstats
path: root/js/config
diff options
context:
space:
mode:
Diffstat (limited to 'js/config')
-rw-r--r--js/config/app.js10
-rw-r--r--js/config/config.js17
-rw-r--r--js/config/karma.js75
-rw-r--r--js/config/run.js14
4 files changed, 116 insertions, 0 deletions
diff --git a/js/config/app.js b/js/config/app.js
new file mode 100644
index 000000000..58ded6d62
--- /dev/null
+++ b/js/config/app.js
@@ -0,0 +1,10 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+var app = angular.module('News', []); \ No newline at end of file
diff --git a/js/config/config.js b/js/config/config.js
new file mode 100644
index 000000000..dce40a0b4
--- /dev/null
+++ b/js/config/config.js
@@ -0,0 +1,17 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+app.config(function ($routeProvider, $provide) {
+ 'use strict';
+
+ $routeProvider.otherwise('/');
+ $provide.constant('baseUrl', OC.generateUrl(''));
+
+});
+
diff --git a/js/config/karma.js b/js/config/karma.js
new file mode 100644
index 000000000..b4c3e1071
--- /dev/null
+++ b/js/config/karma.js
@@ -0,0 +1,75 @@
+// Karma configuration
+// Generated on Thu May 15 2014 04:01:02 GMT+0200 (CEST)
+
+module.exports = function(config) {
+ config.set({
+
+ // base path that will be used to resolve all patterns (eg. files, exclude)
+ basePath: '../',
+
+
+ // frameworks to use
+ // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
+ frameworks: ['jasmine'],
+
+
+ // list of files / patterns to load in the browser
+ files: [
+ 'vendor/jquery/dist/jquery.js',
+ 'vendor/momentjs/momentjs.js',
+ 'vendor/bootstrap/tooltip.js',
+ 'vendor/angular',
+ 'vendor/angular-mocks/angular-mocks.js',
+ 'vendor/angular-route/angular-route.js',
+ 'vendor/angular/angular-sanitize/angular-sanitize.js',
+ 'build/app.js',
+ 'tests/**/*Spec.js'
+ ],
+
+
+ // list of files to exclude
+ exclude: [
+
+ ],
+
+
+ // preprocess matching files before serving them to the browser
+ // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
+ preprocessors: {
+
+ },
+
+
+ // test results reporter to use
+ // possible values: 'dots', 'progress'
+ // available reporters: https://npmjs.org/browse/keyword/karma-reporter
+ reporters: ['progress'],
+
+
+ // web server port
+ port: 9876,
+
+
+ // enable / disable colors in the output (reporters and logs)
+ colors: true,
+
+
+ // level of logging
+ // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
+ logLevel: config.LOG_INFO,
+
+
+ // enable / disable watching file and executing tests whenever any file changes
+ autoWatch: false,
+
+
+ // start these browsers
+ // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
+ browsers: ['PhantomJS'],
+
+
+ // Continuous Integration mode
+ // if true, Karma captures browsers, runs the tests and exits
+ singleRun: false
+ });
+};
diff --git a/js/config/run.js b/js/config/run.js
new file mode 100644
index 000000000..3feca64e4
--- /dev/null
+++ b/js/config/run.js
@@ -0,0 +1,14 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+app.run(function ($rootScope) {
+ 'use strict';
+
+ $rootScope.$on('$routeChangeError');
+}); \ No newline at end of file