Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/survey_server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--api/externalapi.php4
-rw-r--r--appinfo/app.php4
-rw-r--r--appinfo/application.php4
-rw-r--r--appinfo/install.php4
-rw-r--r--appinfo/routes.php4
-rw-r--r--appinfo/update.php4
-rw-r--r--backgroundjobs/computestatistics.php4
-rw-r--r--controller/apicontroller.php4
-rw-r--r--controller/pagecontroller.php4
-rw-r--r--lib/evaluatestatistics.php4
-rw-r--r--service/statisticservice.php5
-rw-r--r--templates/main.php19
-rw-r--r--templates/part.content.php20
-rw-r--r--templates/part.navigation.php20
-rw-r--r--templates/part.settings.php20
-rw-r--r--tests/integration/AppTest.php20
-rw-r--r--tests/unit/controller/PageControllerTest.php20
17 files changed, 132 insertions, 32 deletions
diff --git a/api/externalapi.php b/api/externalapi.php
index ce7d6a4..1bdc39a 100644
--- a/api/externalapi.php
+++ b/api/externalapi.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/appinfo/app.php b/appinfo/app.php
index 7ef23c2..53057dd 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/appinfo/application.php b/appinfo/application.php
index 83857c2..9efad0e 100644
--- a/appinfo/application.php
+++ b/appinfo/application.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/appinfo/install.php b/appinfo/install.php
index 1449c74..806fd0d 100644
--- a/appinfo/install.php
+++ b/appinfo/install.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 1899482..1a0bc12 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/appinfo/update.php b/appinfo/update.php
index 1449c74..806fd0d 100644
--- a/appinfo/update.php
+++ b/appinfo/update.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/backgroundjobs/computestatistics.php b/backgroundjobs/computestatistics.php
index d84eeb9..abf5097 100644
--- a/backgroundjobs/computestatistics.php
+++ b/backgroundjobs/computestatistics.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/controller/apicontroller.php b/controller/apicontroller.php
index 6041e5a..5153807 100644
--- a/controller/apicontroller.php
+++ b/controller/apicontroller.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/controller/pagecontroller.php b/controller/pagecontroller.php
index abd4ef5..7605e2e 100644
--- a/controller/pagecontroller.php
+++ b/controller/pagecontroller.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/lib/evaluatestatistics.php b/lib/evaluatestatistics.php
index eab079f..1e482ca 100644
--- a/lib/evaluatestatistics.php
+++ b/lib/evaluatestatistics.php
@@ -1,8 +1,8 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/service/statisticservice.php b/service/statisticservice.php
index 35d4ff1..36abc73 100644
--- a/service/statisticservice.php
+++ b/service/statisticservice.php
@@ -1,8 +1,9 @@
<?php
/**
- * @author Björn Schießle <schiessle@owncloud.com>
+ * @author Björn Schießle <bjoern@schiessle.org>
+ * @author Joas Schilling <coding@schilljs.com>
*
- * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
diff --git a/templates/main.php b/templates/main.php
index 9ad3b68..0862666 100644
--- a/templates/main.php
+++ b/templates/main.php
@@ -1,4 +1,23 @@
<?php
+/**
+ * @copyright Copyright (c) 2016, Björn Schießle <bjoern@schiessle.org>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
script('popularitycontestserver', 'script');
vendor_script('popularitycontestserver', 'Chart');
style('popularitycontestserver', 'style');
diff --git a/templates/part.content.php b/templates/part.content.php
index dbaa156..4184d16 100644
--- a/templates/part.content.php
+++ b/templates/part.content.php
@@ -1,3 +1,23 @@
+<?php
+/**
+ * @copyright Copyright (c) 2016, Björn Schießle <bjoern@schiessle.org>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
<div id="surveyResults">
<div class="section" id="generalStatistics">
diff --git a/templates/part.navigation.php b/templates/part.navigation.php
index 80ddec3..94f07d6 100644
--- a/templates/part.navigation.php
+++ b/templates/part.navigation.php
@@ -1,3 +1,23 @@
+<?php
+/**
+ * @copyright Copyright (c) 2016, Björn Schießle <bjoern@schiessle.org>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
<ul>
<li><a href="#generalStatistics">General Statistics</a></li>
<li><a href="#enabledApps">Enabled Apps</a></li>
diff --git a/templates/part.settings.php b/templates/part.settings.php
index ac7c671..81d235c 100644
--- a/templates/part.settings.php
+++ b/templates/part.settings.php
@@ -1,3 +1,23 @@
+<?php
+/**
+ * @copyright Copyright (c) 2016, Björn Schießle <bjoern@schiessle.org>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
<div id="app-settings">
<div id="app-settings-header">
<button class="settings-button"
diff --git a/tests/integration/AppTest.php b/tests/integration/AppTest.php
index 8ec2881..678fce6 100644
--- a/tests/integration/AppTest.php
+++ b/tests/integration/AppTest.php
@@ -1,12 +1,22 @@
<?php
/**
- * ownCloud - popularitycontestserver
+ * @copyright Copyright (c) 2016, Björn Schießle <bjoern@schiessle.org>
*
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
- * @author Bjoern Schiessle <schiessle@owncloud.com>
- * @copyright Bjoern Schiessle 2015
*/
use OCP\AppFramework\App;
diff --git a/tests/unit/controller/PageControllerTest.php b/tests/unit/controller/PageControllerTest.php
index 7aceb98..666c5c5 100644
--- a/tests/unit/controller/PageControllerTest.php
+++ b/tests/unit/controller/PageControllerTest.php
@@ -1,12 +1,22 @@
<?php
/**
- * ownCloud - popularitycontestserver
+ * @copyright Copyright (c) 2016, Björn Schießle <bjoern@schiessle.org>
*
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
- * @author Bjoern Schiessle <schiessle@owncloud.com>
- * @copyright Bjoern Schiessle 2015
*/
namespace OCA\PopularityContestServer\Controller;