Replace ownCloud with Nextcloud, update date

This commit is contained in:
Raimund Schlüßler 2017-01-15 20:59:31 +01:00
parent 6764968c22
commit 4d288ef9f3
63 changed files with 182 additions and 160 deletions

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler raimund.schluessler@googlemail.com
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler raimund.schluessler@googlemail.com
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
@ -94,7 +94,7 @@ class Application extends App {
$user = $c->query('ServerContainer')->getUserSession()->getUser(); $user = $c->query('ServerContainer')->getUserSession()->getUser();
return ($user) ? $user->getUID() : ''; return ($user) ? $user->getUID() : '';
}); });
$container->registerService('L10N', function(IAppContainer $c) { $container->registerService('L10N', function(IAppContainer $c) {
return $c->query('ServerContainer')->getL10N($c->query('AppName')); return $c->query('ServerContainer')->getL10N($c->query('AppName'));

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler raimund.schluessler@googlemail.com
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,4 +1,4 @@
<project name="owncloud-tasks" basedir="." default="test"> <project name="nextcloud-tasks" basedir="." default="test">
<property file="build.properties"/> <property file="build.properties"/>

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler raimund.schluessler@googlemail.com
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler raimund.schluessler@googlemail.com
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,4 +1,24 @@
<?php <?php
/**
* Nextcloud - Tasks
*
* @author Raimund Schlüßler
* @copyright 2017 Raimund Schlüßler raimund.schluessler@googlemail.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Tasks\Controller; namespace OCA\Tasks\Controller;
@ -25,4 +45,4 @@ trait Response {
return new JSONResponse($message); return new JSONResponse($message);
} }
} }

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler raimund.schluessler@googlemail.com
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler raimund.schluessler@googlemail.com
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
@ -19,7 +19,6 @@
* *
*/ */
module.exports = function(grunt) { module.exports = function(grunt) {
'use strict'; 'use strict';

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,11 +1,11 @@
/** /**
* ownCloud - Tasks App * Nextcloud - Tasks App
* *
* @author Raghu Nayyar * @author Raghu Nayyar
* @author Georg Ehrke * @author Georg Ehrke
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com> * @copyright 2017 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com> * @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
* @copyright 2016 John Molakvoæ <fremulon@protonmail.com> * @copyright 2017 John Molakvoæ <fremulon@protonmail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,23 +1,23 @@
/* /**
* Nextcloud - Tasks
ownCloud - Tasks *
* @author Raimund Schlüßler
@author Raimund Schlüßler * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
@copyright 2016 *
* This library is free software; you can redistribute it and/or
This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * License as published by the Free Software Foundation; either
License as published by the Free Software Foundation; either * version 3 of the License, or any later version.
version 3 of the License, or any later version. *
* This library is distributed in the hope that it will be useful,
This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
GNU AFFERO GENERAL PUBLIC LICENSE for more details. *
* You should have received a copy of the GNU Affero General Public
You should have received a copy of the GNU Affero General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>.
License along with this library. If not, see <http://www.gnu.org/licenses/>. *
*/ */
angular.module('Tasks').directive('watchTop', function() { angular.module('Tasks').directive('watchTop', function() {
'use strict'; 'use strict';

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,12 +1,12 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raghu Nayyar * @author Raghu Nayyar
* @author Georg Ehrke * @author Georg Ehrke
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com> * @copyright 2017 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com> * @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,12 +1,12 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raghu Nayyar * @author Raghu Nayyar
* @author Georg Ehrke * @author Georg Ehrke
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com> * @copyright 2017 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com> * @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,12 +1,12 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raghu Nayyar * @author Raghu Nayyar
* @author Georg Ehrke * @author Georg Ehrke
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com> * @copyright 2017 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com> * @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,12 +1,12 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raghu Nayyar * @author Raghu Nayyar
* @author Georg Ehrke * @author Georg Ehrke
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com> * @copyright 2017 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com> * @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,10 +1,12 @@
/** /**
* ownCloud - Calendar App * Nextcloud - Tasks
* *
* @author Raghu Nayyar * @author Raghu Nayyar
* @author Georg Ehrke * @author Georg Ehrke
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com> * @author Raimund Schlüßler
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com> * @copyright 2017 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
* @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,10 +1,10 @@
/** /**
* ownCloud - Calendar App * Nextcloud - Tasks
* *
* @author Raghu Nayyar * @author Raghu Nayyar
* @author Georg Ehrke * @author Georg Ehrke
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com> * @copyright 2017 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com> * @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
@ -20,6 +20,7 @@
* License along with this library. If not, see <http://www.gnu.org/licenses/>. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
* *
*/ */
angular.module('Tasks').factory('RandomStringService', function () { angular.module('Tasks').factory('RandomStringService', function () {
'use strict'; 'use strict';

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,8 +1,8 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,12 +1,12 @@
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raghu Nayyar * @author Raghu Nayyar
* @author Georg Ehrke * @author Georg Ehrke
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2016 Raghu Nayyar <beingminimal@gmail.com> * @copyright 2017 Raghu Nayyar <beingminimal@gmail.com>
* @copyright 2016 Georg Ehrke <oc.list@georgehrke.com> * @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
* @copyright 2016 Raimund Schlüßler <raimund.schluessler@googlemail.com> * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,5 +1,5 @@
{ {
"name": "ownCloud Task App", "name": "Nextcloud - Tasks",
"version": "0.9.4", "version": "0.9.4",
"dependencies": { "dependencies": {
"angular": "", "angular": "",
@ -14,7 +14,7 @@
"davclient.js": "https://github.com/evert/davclient.js.git" "davclient.js": "https://github.com/evert/davclient.js.git"
}, },
"devDependencies": {}, "devDependencies": {},
"homepage": "https://github.com/owncloud/tasks", "homepage": "https://github.com/nextcloud/tasks",
"authors": [ "authors": [
"Raimund Schlüßler <raimund.schluessler@googlemail.com>" "Raimund Schlüßler <raimund.schluessler@googlemail.com>"
], ],

View File

@ -1,6 +1,6 @@
{ {
"name": "task", "name": "tasks",
"description": "ownCloud Task App", "description": "Nextcloud - Tasks",
"version": "0.9.4", "version": "0.9.4",
"author": { "author": {
"name": "Raimund Schlüßler", "name": "Raimund Schlüßler",
@ -10,9 +10,9 @@
"homepage": "", "homepage": "",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git@github.com:owncloud/tasks.git" "url": "git@github.com:nextcloud/tasks.git"
}, },
"bugs": "https://github.com/owncloud/tasks/issues", "bugs": "https://github.com/nextcloud/tasks/issues",
"contributors": [], "contributors": [],
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {

View File

@ -1,9 +1,9 @@
(function(angular, $, oc_requesttoken, undefined){ (function(angular, $, oc_requesttoken, undefined){
/** /**
* ownCloud Task App - v0.9.4 * Nextcloud - Tasks - v0.9.4
* *
* Copyright (c) 2016 - Raimund Schlüßler <raimund.schluessler@googlemail.com> * Copyright (c) 2017 - Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This file is licensed under the Affero General Public License version 3 or later. * This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING file * See the COPYING file

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ownCloud - Tasks * Nextcloud - Tasks
* *
* @author Raimund Schlüßler * @author Raimund Schlüßler
* @copyright 2015 Raimund Schlüßler raimund.schluessler@googlemail.com * @copyright 2017 Raimund Schlüßler <raimund.schluessler@googlemail.com>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE