parent
5dcd9e20d0
commit
5d8d7ef2a1
@ -0,0 +1,41 @@ |
||||
<?php |
||||
|
||||
/** |
||||
* ownCloud |
||||
* |
||||
* Original: |
||||
* @author Frank Karlitschek |
||||
* @copyright 2010 Frank Karlitschek karlitschek@kde.org |
||||
* |
||||
* Adapted: |
||||
* @author Michiel de Jong, 2012 |
||||
* |
||||
* 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/>. |
||||
* |
||||
*/ |
||||
|
||||
|
||||
// Do not load FS ... |
||||
$RUNTIME_NOSETUPFS = true; |
||||
|
||||
require_once('../../../lib/base.php'); |
||||
OC_Util::checkAppEnabled('remoteStorage'); |
||||
require_once('Sabre/autoload.php'); |
||||
require_once('../lib_remoteStorage.php'); |
||||
|
||||
ini_set('default_charset', 'UTF-8'); |
||||
#ini_set('error_reporting', ''); |
||||
@ob_clean(); |
||||
|
||||
echo OC_remoteStorage::deleteToken(file_get_contents("php://input")); |
@ -0,0 +1,8 @@ |
||||
h2 { font-size:2em; font-weight:bold; margin-bottom:1em; white-space:nowrap; } |
||||
ul.scopes { list-style:disc; } |
||||
ul.scopes li { white-space:nowrap; } |
||||
h2 img { width: 50% } |
||||
#oauth { margin:4em auto 2em; width:20em; } |
||||
#allow-auth { background-color:#5c3; text-shadow:#5e3 0 1px 0; color:#fff; |
||||
-webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset; box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset; } |
||||
#deny-auth { padding:0; margin:.7em; border:0; background:none; font-size:1.2em; -moz-box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; -webkit-box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; box-shadow: 0 0 0 #fff, 0 0 0 #fff inset; } |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 1.2 KiB |
@ -0,0 +1,7 @@ |
||||
<?php |
||||
|
||||
require_once('lib_remoteStorage.php'); |
||||
$tmpl = new OC_Template( 'remoteStorage', 'settings'); |
||||
|
||||
return $tmpl->fetchPage(); |
||||
?> |
Loading…
Reference in new issue