]> source.dussan.org Git - nextcloud-server.git/commitdiff
get rid of the oc_require and friends
authorRobin Appelman <icewind1991@gmail.com>
Sat, 16 Apr 2011 08:12:53 +0000 (10:12 +0200)
committerRobin Appelman <icewind1991@gmail.com>
Sat, 16 Apr 2011 08:12:53 +0000 (10:12 +0200)
51 files changed:
3dparty/Console/Getopt.php
3dparty/HTTP/WebDAV/Server.php
3dparty/MDB2.php
3dparty/MDB2/Driver/Datatype/Common.php
3dparty/MDB2/Driver/Datatype/mysql.php
3dparty/MDB2/Driver/Datatype/pgsql.php
3dparty/MDB2/Driver/Datatype/sqlite.php
3dparty/MDB2/Driver/Function/mysql.php
3dparty/MDB2/Driver/Function/pgsql.php
3dparty/MDB2/Driver/Function/sqlite.php
3dparty/MDB2/Driver/Manager/mysql.php
3dparty/MDB2/Driver/Manager/pgsql.php
3dparty/MDB2/Driver/Manager/sqlite.php
3dparty/MDB2/Driver/Reverse/mysql.php
3dparty/MDB2/Driver/Reverse/pgsql.php
3dparty/MDB2/Driver/Reverse/sqlite.php
3dparty/MDB2/LOB.php
3dparty/MDB2/Schema/Parser.php
3dparty/System.php
3dparty/XML/Parser.php
admin/index.php
admin/plugins.php
admin/system.php
admin/users.php
files/admin.php
files/download.php
files/index.php
files/settings.php
files/webdav.php
index.php
lib/Group/database.php
lib/HTTP/WebDAV/Server/Filesystem.php
lib/User/database.php
lib/app.php
lib/base.php
lib/files.php
lib/group.php
lib/user.php
log/index.php
plugins/ldap/lib_ldap.php
plugins/textviewer/syntaxhighlighter/compass/shThemeDefault.scss
plugins/textviewer/syntaxhighlighter/compass/shThemeDjango.scss
plugins/textviewer/syntaxhighlighter/compass/shThemeEclipse.scss
plugins/textviewer/syntaxhighlighter/compass/shThemeEmacs.scss
plugins/textviewer/syntaxhighlighter/compass/shThemeFadeToGrey.scss
plugins/textviewer/syntaxhighlighter/compass/shThemeMDUltra.scss
plugins/textviewer/syntaxhighlighter/compass/shThemeMidnight.scss
plugins/textviewer/syntaxhighlighter/compass/shThemeRDark.scss
settings/index.php
skeleton/admin.php
skeleton/index.php

index 6f2f9c730791b66c8c4174aa20b65120a2a3ad75..aec980b34d571e1ff1a28a6ce7b0aabefb42e1a1 100644 (file)
@@ -18,7 +18,7 @@
 //
 // $Id: Getopt.php,v 1.21.4.7 2003/12/05 21:57:01 andrei Exp $
 
-oc_require_once( 'PEAR.php');
+require_once( 'PEAR.php');
 
 /**
  * Command-line options parsing class.
index c407d74c89f9310c85807b78bd31d99d6877baff..ceed7214e9314300921b6cd1fd5cb30507639e25 100644 (file)
@@ -33,9 +33,9 @@
    +----------------------------------------------------------------------+
 */
 
-oc_require_once("HTTP/WebDAV/Tools/_parse_propfind.php");
-oc_require_once("HTTP/WebDAV/Tools/_parse_proppatch.php");
-oc_require_once("HTTP/WebDAV/Tools/_parse_lockinfo.php");
+require_once("HTTP/WebDAV/Tools/_parse_propfind.php");
+require_once("HTTP/WebDAV/Tools/_parse_proppatch.php");
+require_once("HTTP/WebDAV/Tools/_parse_lockinfo.php");
 
 
 /**
index faf405b4112117ba2ff97dea5eb2eb1096b473d6..c07545588dc57e75082a554850bbf3cf4b42610e 100644 (file)
@@ -52,7 +52,7 @@
  * @author      Lukas Smith <smith@pooteeweet.org>
  */
 
-oc_require_once('PEAR.php');
+require_once('PEAR.php');
 
 // {{{ Error constants
 
@@ -330,9 +330,9 @@ class MDB2
         if (!MDB2::classExists($class_name)) {
             $file_name = str_replace('_', DIRECTORY_SEPARATOR, $class_name).'.php';
             if ($debug) {
-                $include = oc_include_once($file_name);
+                $include = include_once($file_name);
             } else {
-                $include = oc_include_once($file_name);
+                $include = include_once($file_name);
             }
             if (!$include) {
                 if (!MDB2::fileExists($file_name)) {
index 750dbb2477282c333b530b53980c639e7846031f..6ef557ad3711e96ac81fc33ea3bd7d60fa5b9048 100644 (file)
@@ -44,7 +44,7 @@
 //
 // $Id: Common.php,v 1.139 2008/12/04 11:50:42 afz Exp $
 
-oc_require_once('MDB2/LOB.php');
+require_once('MDB2/LOB.php');
 
 /**
  * @package  MDB2
index 944248f57c3edd84d855da92298199b79bd7e224..490dacdcc7d20a174b87fd160ea093326fa704c7 100644 (file)
@@ -46,7 +46,7 @@
 // $Id: mysql.php,v 1.65 2008/02/22 19:23:49 quipo Exp $
 //
 
-oc_require_once('MDB2/Driver/Datatype/Common.php');
+require_once('MDB2/Driver/Datatype/Common.php');
 
 /**
  * MDB2 MySQL driver
index fe18729c84f349592fd14f86477de1de85cdaa65..e0bb31bccf1fcfe070bd7ec44feef6dd8c73d6ac 100644 (file)
@@ -44,7 +44,7 @@
 //
 // $Id: pgsql.php,v 1.93 2008/08/28 20:32:57 afz Exp $
 
-oc_require_once('MDB2/Driver/Datatype/Common.php');
+require_once('MDB2/Driver/Datatype/Common.php');
 
 /**
  * MDB2 PostGreSQL driver
index 533d0e9510b8e669fee667a7f6112ccacb897edd..572ccc38e7162a86bb62cbc4dfe02a92055fd2c0 100644 (file)
@@ -46,7 +46,7 @@
 // $Id: sqlite.php,v 1.67 2008/02/22 19:58:06 quipo Exp $
 //
 
-oc_require_once('MDB2/Driver/Datatype/Common.php');
+require_once('MDB2/Driver/Datatype/Common.php');
 
 /**
  * MDB2 SQLite driver
index aff531c9f3a35d5dc94be44cadd71fb73457e968..44183c3aa0674baf7f7b50f2f246cb571335bb3f 100644 (file)
@@ -45,7 +45,7 @@
 // $Id: mysql.php,v 1.12 2008/02/17 18:54:08 quipo Exp $
 //
 
-oc_require_once('MDB2/Driver/Function/Common.php');
+require_once('MDB2/Driver/Function/Common.php');
 
 /**
  * MDB2 MySQL driver for the function modules
index cb47ea57d9fa5ef85e9208310be7b342de316cf0..173bfc9149473d57b3641d1ea134b5bc0f4eda68 100644 (file)
@@ -44,7 +44,7 @@
 //
 // $Id: pgsql.php,v 1.11 2008/11/09 19:46:50 quipo Exp $
 
-oc_require_once('MDB2/Driver/Function/Common.php');
+require_once('MDB2/Driver/Function/Common.php');
 
 /**
  * MDB2 MySQL driver for the function modules
index f5499599dd5d552999edcd1c6d988b793b4c3044..8a5b7ec8fad628c4cfc9cdbe61e57c9dd309c871 100644 (file)
@@ -45,7 +45,7 @@
 // $Id: sqlite.php,v 1.10 2008/02/17 18:54:08 quipo Exp $
 //
 
-oc_require_once('MDB2/Driver/Function/Common.php');
+require_once('MDB2/Driver/Function/Common.php');
 
 /**
  * MDB2 SQLite driver for the function modules
index 7bd6a3623a32e2ea0d9605f0ea1ce0b1de771fe6..29d644a957ab9ff33ca0940713514290755e6dcc 100644 (file)
@@ -45,7 +45,7 @@
 // $Id: mysql.php,v 1.113 2008/11/23 20:30:29 quipo Exp $
 //
 
-oc_require_once('MDB2/Driver/Manager/Common.php');
+require_once('MDB2/Driver/Manager/Common.php');
 
 /**
  * MDB2 MySQL driver for the management modules
index 1a7e851897c0feae25eaafb5e02d995bafbbc388..490f697aa5be715a55bcecdad0f6207811f13d06 100644 (file)
@@ -44,7 +44,7 @@
 //
 // $Id: pgsql.php,v 1.87 2008/11/29 14:09:59 afz Exp $
 
-oc_require_once('MDB2/Driver/Manager/Common.php');
+require_once('MDB2/Driver/Manager/Common.php');
 
 /**
  * MDB2 MySQL driver for the management modules
index 85751d39a3ff7422467ad3c2756119df4b6363da..e985298c2c3934d47ec981872eb679a9e0c8806e 100644 (file)
@@ -46,7 +46,7 @@
 // $Id: sqlite.php,v 1.76 2008/05/31 11:48:48 quipo Exp $
 //
 
-oc_require_once('MDB2/Driver/Manager/Common.php');
+require_once('MDB2/Driver/Manager/Common.php');
 
 /**
  * MDB2 SQLite driver for the management modules
index 40c62da3baaf0361987cbe28dacb7fd3eff240a9..856d2427ab4a6676ffddb3b0c6dbdacf51246fc1 100644 (file)
@@ -45,7 +45,7 @@
 // $Id: mysql.php,v 1.80 2008/03/26 21:15:37 quipo Exp $
 //
 
-oc_require_once('MDB2/Driver/Reverse/Common.php');
+require_once('MDB2/Driver/Reverse/Common.php');
 
 /**
  * MDB2 MySQL driver for the schema reverse engineering module
index d010292cd8c48e66f3e6a55ea47acb450453d361..649c1cad9ee629655faf00667937beae6e3cc287 100644 (file)
@@ -45,7 +45,7 @@
 //
 // $Id: pgsql.php,v 1.75 2008/08/22 16:36:20 quipo Exp $
 
-oc_require_once('MDB2/Driver/Reverse/Common.php');
+require_once('MDB2/Driver/Reverse/Common.php');
 
 /**
  * MDB2 PostGreSQL driver for the schema reverse engineering module
index 1b85aa71f9af1302d05b1c3989e480d7f5996bb5..b83544835fee128c53becaa2078833339049a7a9 100644 (file)
@@ -46,7 +46,7 @@
 // $Id: sqlite.php,v 1.80 2008/05/03 10:30:14 quipo Exp $
 //
 
-oc_require_once('MDB2/Driver/Reverse/Common.php');
+require_once('MDB2/Driver/Reverse/Common.php');
 
 /**
  * MDB2 SQlite driver for the schema reverse engineering module
index 2cdf67afa923334e979ad8b1ec4391c37a387f40..ae67224020e84d944a450b5e1c6be5010d1c3893 100644 (file)
@@ -50,7 +50,7 @@
  * @author   Lukas Smith <smith@pooteeweet.org>
  */
 
-oc_require_once('MDB2.php');
+require_once('MDB2.php');
 
 /**
  * MDB2_LOB: user land stream wrapper implementation for LOB support
index ed31ba03bdfdd883ab1673f8681886740978ed5b..7c22012c416f806c3eadd0f6d0ef3148e9304647 100644 (file)
@@ -54,8 +54,8 @@
  */
 
 
-oc_require_once('XML/Parser.php');
-oc_require_once('MDB2/Schema/Validate.php');
+require_once('XML/Parser.php');
+require_once('MDB2/Schema/Validate.php');
 
 /**
  * Parses an XML schema file
index a9279ff687d84655cfb66307a13592f264da842c..97de96b14caea8c8d773ee9359fc48d4bff7be73 100644 (file)
@@ -19,8 +19,8 @@
 // $Id: System.php,v 1.36 2004/06/15 16:33:46 pajoye Exp $
 //
 
-oc_require_once( 'PEAR.php');
-oc_require_once( 'Console/Getopt.php');
+require_once( 'PEAR.php');
+require_once( 'Console/Getopt.php');
 
 $GLOBALS['_System_temp_files'] = array();
 
index 6f77b5c66da83f05e142eab15b4b6e7e5b869588..6b65066d02828cbb4475806d6f4efcbd3a482e93 100644 (file)
@@ -36,7 +36,7 @@
 /**
  * uses PEAR's error handling
  */
-oc_require_once('PEAR.php');
+require_once('PEAR.php');
 
 /**
  * resource could not be created
index 36c9229d2f5376aa50473e0d1ef214fc26778854..8abef287098ab8b962af3fc83f72ab76a7a5209a 100644 (file)
@@ -22,7 +22,7 @@
 */
 
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){
        header( "Location: ".OC_HELPER::linkTo( "index.php" ));
        exit();
index ae6d35c3227f53248ecc17ddc92b7e5636a4412e..60d23585a4feb7891ae6204ec824cbcc19b4af26 100644 (file)
@@ -22,7 +22,7 @@
 */
 
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){
        header( "Location: ".OC_HELPER::linkTo( "index.php" ));
        exit();
index 36c9229d2f5376aa50473e0d1ef214fc26778854..8abef287098ab8b962af3fc83f72ab76a7a5209a 100644 (file)
@@ -22,7 +22,7 @@
 */
 
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){
        header( "Location: ".OC_HELPER::linkTo( "index.php" ));
        exit();
index cfcb7a253fbdd9c7bf700fe9070af31a25358636..4d14c791c3cdef8aab753a63c3444f043ae1b232 100644 (file)
@@ -22,7 +22,7 @@
 */
 
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){
        header( "Location: ".OC_HELPER::linkTo( "index.php" ));
        exit();
index 9470bcf90bd2f46dd80eca49b84e077a1bdacebe..3cc8a57d4cb1ec1c3aa40eeb2b425250d0e0139a 100644 (file)
@@ -24,7 +24,7 @@
 
 // Init owncloud
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 
 // Check if we are a user
 if( !OC_USER::isLoggedIn() || !OC_GROUP::inGroup( $_SESSION['user_id'], 'admin' )){
index d6d39c82126b4b72c3de864af0fa85f8087e0f4c..f890036a32e5c58160b36faa908cf851c4da7db7 100644 (file)
@@ -23,7 +23,7 @@
 
 // Init owncloud
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 
 // Check if we are a user
 if( !OC_USER::isLoggedIn()){
index 25a9f0297dc80ffccfa0039ccd9696eb26917bd2..6d237ed615236ae56843f699f7fad2f7c42e56a2 100644 (file)
@@ -24,7 +24,7 @@
 
 // Init owncloud
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 
 // Check if we are a user
 if( !OC_USER::isLoggedIn()){
index 25a9f0297dc80ffccfa0039ccd9696eb26917bd2..6d237ed615236ae56843f699f7fad2f7c42e56a2 100644 (file)
@@ -24,7 +24,7 @@
 
 // Init owncloud
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 
 // Check if we are a user
 if( !OC_USER::isLoggedIn()){
index 7863818cc20ac8938427d92e2480a46564685608..4b1393c110b4cb8d7f4ea7a761391c7c6c16fa4b 100644 (file)
@@ -23,7 +23,7 @@
 
 
 require_once('../lib/base.php');
-oc_require_once('HTTP/WebDAV/Server/Filesystem.php');
+require_once('HTTP/WebDAV/Server/Filesystem.php');
 
 
 ini_set('default_charset', 'UTF-8');
index 23aa30dcb4e57bca7ba849bfe408e8991dda0092..62a515fa20f0b7339a86bb77e350da98ed7dc4c5 100644 (file)
--- a/index.php
+++ b/index.php
@@ -22,8 +22,8 @@
 */
 
 require_once( 'lib/base.php' );
-oc_require_once( 'appconfig.php' );
-oc_require_once( 'template.php' );
+require_once( 'appconfig.php' );
+require_once( 'template.php' );
 if( OC_USER::isLoggedIn()){
     if( $_GET["logout"] ){
         OC_USER::logout();
index c10f6db80e00987603d1189bd61734d974b6cc9f..bdf5bbc5c55e4f4de9f46b5b57794f92035395a4 100644 (file)
@@ -37,7 +37,7 @@
  *
  */
 
-oc_require_once( 'Group/backend.php' );
+require_once( 'Group/backend.php' );
 
 /**
  * Class for group management in a SQL Database (e.g. MySQL, SQLite)
@@ -75,7 +75,12 @@ class OC_GROUP_DATABASE extends OC_GROUP_BACKEND {
        public static function inGroup( $username, $groupName ){
                $query = OC_DB::prepare( "SELECT * FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` = ?" );
                $result = $query->execute( array( $groupName, $username ));
-
+               if( PEAR::isError($result)) {
+                       $entry = 'DB Error: "'.$result->getMessage().'"<br />';
+                       $entry .= 'Offending command was: '.$result->getDebugInfo().'<br />';
+                       error_log( $entry );
+                       die( $entry );
+               }
                return $result->numRows() > 0 ? true : false;
        }
 
index 0615c600e079dc9863b7a19f743704ea14ef20fc..c0be27d7c05392d80c7b7b54210709575454798d 100644 (file)
@@ -34,8 +34,8 @@
    --- modified for ownCloud ---
 */
     require_once("lib/base.php");
-    oc_require_once("HTTP/WebDAV/Server.php");
-    oc_require_once("System.php");
+    require_once("HTTP/WebDAV/Server.php");
+    require_once("System.php");
 
     /**
      * Filesystem access using WebDAV
index 45aab061e39384c5e6a9a57459a5a673eaa467cb..d521cc23c42f9a61feeda89b379940f6378d2e7b 100644 (file)
@@ -33,7 +33,7 @@
  *
  */
 
-oc_require_once('User/backend.php');
+require_once('User/backend.php');
 
 /**
  * Class for user management in a SQL Database (e.g. MySQL, SQLite)
index ecab723a6ad344a56e9f3b16fe47b63021654f43..ddbad4ee2ec2591bbb0633478dfee938b31e20fc 100644 (file)
@@ -54,7 +54,7 @@ class OC_APP{
                while( false !== ( $filename = readdir( $dir ))){
                        if( substr( $filename, 0, 1 ) != '.' ){
                                if( file_exists( "$SERVERROOT/$filename/appinfo/app.php" )){
-                                       oc_require( "$filename/appinfo/app.php" );
+                                       require( "$filename/appinfo/app.php" );
                                }
                        }
                }
index 054ba2415e038f5e1ef49acfea4a98c6da4b7f55..033052a3c3bdec32c0bce5c5c847f751dc90c367 100644 (file)
@@ -45,7 +45,7 @@ if($WEBROOT!='' and $WEBROOT[0]!=='/'){
 }
 
 // set the right include path
-// set_include_path(get_include_path().PATH_SEPARATOR.$SERVERROOT.PATH_SEPARATOR.$SERVERROOT.'/inc'.PATH_SEPARATOR.$SERVERROOT.'/config');
+set_include_path($SERVERROOT.'/lib'.PATH_SEPARATOR.$SERVERROOT.'/config'.PATH_SEPARATOR.$SERVERROOT.'/3dparty'.PATH_SEPARATOR.get_include_path().PATH_SEPARATOR.$SERVERROOT);
 
 // define runtime variables - unless this already has been done
 if( !isset( $RUNTIME_NOSETUPFS )){
@@ -66,7 +66,6 @@ $CONFIG_FILESYSTEM=array();
 // include the generated configfile
 @include_once($SERVERROOT.'/config/config.php');
 
-
 $CONFIG_DATADIRECTORY_ROOT=$CONFIG_DATADIRECTORY;// store this in a seperate variable so we can change the data directory to jail users.
 // redirect to https site if configured
 if(isset($CONFIG_HTTPFORCESSL) and $CONFIG_HTTPFORCESSL){
@@ -78,20 +77,20 @@ if(isset($CONFIG_HTTPFORCESSL) and $CONFIG_HTTPFORCESSL){
 }
 
 // load core libs
-oc_require_once('helper.php');
-oc_require_once('app.php');
-oc_require_once('files.php');
-oc_require_once('filesystem.php');
-oc_require_once('filestorage.php');
-oc_require_once('fileobserver.php');
-oc_require_once('log.php');
-oc_require_once('config.php');
-oc_require_once('user.php');
-oc_require_once('group.php');
-oc_require_once('ocs.php');
-oc_require_once('connect.php');
-oc_require_once('remotestorage.php');
-oc_require_once('plugin.php');
+require_once('helper.php');
+require_once('app.php');
+require_once('files.php');
+require_once('filesystem.php');
+require_once('filestorage.php');
+require_once('fileobserver.php');
+require_once('log.php');
+require_once('config.php');
+require_once('user.php');
+require_once('group.php');
+require_once('ocs.php');
+require_once('connect.php');
+require_once('remotestorage.php');
+require_once('plugin.php');
 
 OC_PLUGIN::loadPlugins( "" );
 
@@ -113,13 +112,11 @@ OC_UTIL::addScript( "jquery-ui-1.8.10.custom.min" );
 OC_UTIL::addScript( "js" );
 OC_UTIL::addStyle( "jquery-ui-1.8.10.custom" );
 OC_UTIL::addStyle( "styles" );
-
 // Load Apps
 OC_APP::loadApps();
 
 // check if the server is correctly configured for ownCloud
 OC_UTIL::checkserver();
-
 /**
  * Class for utility functions
  *
@@ -380,8 +377,8 @@ class OC_DB {
 
                // do nothing if the connection already has been established
                if(!self::$DBConnection){
-                       // Require MDB2.php (TODO: why here not in head of file?)
-                       @oc_require_once('MDB2.php');
+                       // Require MDB2.php (not required in the head of the file so we only load it when needed)
+                       require_once('MDB2.php');
 
                        // Prepare options array
                        $options = array(
@@ -610,7 +607,7 @@ class OC_DB {
 
                // Connect if this did not happen before
                if(!self::$schema){
-                       @oc_require_once('MDB2/Schema.php');
+                       require_once('MDB2/Schema.php');
                        self::$schema=&MDB2_Schema::factory(self::$DBConnection);
                }
 
@@ -646,120 +643,6 @@ class OC_DB {
        }
 }
 
-
-//custom require/include functions because not all hosts allow us to set the include path
-function oc_require($file){
-       global $SERVERROOT;
-       global $DOCUMENTROOT;
-       global $WEBROOT;
-       global $CONFIG_DBNAME;
-       global $CONFIG_DBHOST;
-       global $CONFIG_DBUSER;
-       global $CONFIG_DBPASSWORD;
-       global $CONFIG_DBTYPE;
-       global $CONFIG_DATADIRECTORY;
-       global $CONFIG_HTTPFORCESSL;
-       global $CONFIG_DATEFORMAT;
-       global $CONFIG_INSTALLED;
-
-       if(is_file($file)){
-               return require($file);
-       }
-       elseif(is_file($SERVERROOT.'/'.$file)){
-               return require($SERVERROOT.'/'.$file);
-       }
-       elseif(is_file($SERVERROOT.'/lib/'.$file)){
-               return require($SERVERROOT.'/lib/'.$file);
-       }
-       elseif(is_file($SERVERROOT.'/3dparty/'.$file)){
-               return require($SERVERROOT.'/3dparty/'.$file);
-       }
-}
-
-function oc_require_once($file){
-       global $SERVERROOT;
-       global $DOCUMENTROOT;
-       global $WEBROOT;
-       global $CONFIG_DBNAME;
-       global $CONFIG_DBHOST;
-       global $CONFIG_DBUSER;
-       global $CONFIG_DBPASSWORD;
-       global $CONFIG_DBTYPE;
-       global $CONFIG_DATADIRECTORY;
-       global $CONFIG_HTTPFORCESSL;
-       global $CONFIG_DATEFORMAT;
-       global $CONFIG_INSTALLED;
-
-       if(is_file($file)){
-               return require_once($file);
-       }
-       elseif(is_file($SERVERROOT.'/'.$file)){
-               return require_once($SERVERROOT.'/'.$file);
-       }
-       elseif(is_file($SERVERROOT.'/lib/'.$file)){
-               return require_once($SERVERROOT.'/lib/'.$file);
-       }
-       elseif(is_file($SERVERROOT.'/3dparty/'.$file)){
-               return require_once($SERVERROOT.'/3dparty/'.$file);
-       }
-}
-
-function oc_include($file){
-       global $SERVERROOT;
-       global $DOCUMENTROOT;
-       global $WEBROOT;
-       global $CONFIG_DBNAME;
-       global $CONFIG_DBHOST;
-       global $CONFIG_DBUSER;
-       global $CONFIG_DBPASSWORD;
-       global $CONFIG_DBTYPE;
-       global $CONFIG_DATADIRECTORY;
-       global $CONFIG_HTTPFORCESSL;
-       global $CONFIG_DATEFORMAT;
-       global $CONFIG_INSTALLED;
-
-       if(is_file($file)){
-               return include($file);
-       }
-       elseif(is_file($SERVERROOT.'/'.$file)){
-               return include($SERVERROOT.'/'.$file);
-       }
-       elseif(is_file($SERVERROOT.'/lib/'.$file)){
-               return include($SERVERROOT.'/lib/'.$file);
-       }
-       elseif(is_file($SERVERROOT.'/3dparty/'.$file)){
-               return include($SERVERROOT.'/3dparty/'.$file);
-       }
-}
-
-function oc_include_once($file){
-       global $SERVERROOT;
-       global $DOCUMENTROOT;
-       global $WEBROOT;
-       global $CONFIG_DBNAME;
-       global $CONFIG_DBHOST;
-       global $CONFIG_DBUSER;
-       global $CONFIG_DBPASSWORD;
-       global $CONFIG_DBTYPE;
-       global $CONFIG_DATADIRECTORY;
-       global $CONFIG_HTTPFORCESSL;
-       global $CONFIG_DATEFORMAT;
-       global $CONFIG_INSTALLED;
-
-       if(is_file($file)){
-               return include_once($file);
-       }
-       elseif(is_file($SERVERROOT.'/'.$file)){
-               return include_once($SERVERROOT.'/'.$file);
-       }
-       elseif(is_file($SERVERROOT.'/lib/'.$file)){
-               return include_once($SERVERROOT.'/lib/'.$file);
-       }
-       elseif(is_file($SERVERROOT.'/3dparty/'.$file)){
-               return include_once($SERVERROOT.'/3dparty/'.$file);
-       }
-}
-
 function chmodr($path, $filemode) {
 //      echo "$path<br/>";
        if (!is_dir($path))
@@ -782,5 +665,4 @@ function chmodr($path, $filemode) {
        else
                return FALSE;
 }
-
 ?>
index bf629a59d44db7024b839b08d1f18e3d771c3a60..a1f983b6b2fd5d32085fea9dce0f5d3a45cecb7a 100644 (file)
@@ -21,7 +21,7 @@
 *
 */
 
-oc_require_once("log.php");
+require_once("log.php");
 
 
 /**
index 06c91bc2436161cb3cbb070fe632ac0e119fa223..18e34c727739cd8590cc2d7283231f63875e24da 100644 (file)
@@ -68,7 +68,7 @@ class OC_GROUP {
                        case 'database':
                        case 'mysql':
                        case 'sqlite':
-                               oc_require_once('Group/database.php');
+                               require_once('Group/database.php');
                                self::$_backend = new OC_GROUP_DATABASE();
                                break;
                        default:
index 645bda4ed5d36724f1ce706776bfbdc92f9cd6cc..9841b8ef2765e4ca831d8457eb8cb431b7e61cf5 100644 (file)
@@ -74,7 +74,7 @@ class OC_USER {
                        case 'database':
                        case 'mysql':
                        case 'sqlite':
-                               oc_require_once('User/database.php');
+                               require_once('User/database.php');
                                self::$_backend = new OC_USER_DATABASE();
                                break;
                        default:
index e0f48d168cdb0ccc5f5fd28aed68a0d4d965fda7..a401a38fa1ae98f09f4fc32ed020bc0c8de26cc6 100644 (file)
@@ -24,7 +24,7 @@
 
 //require_once('../../config/config.php');
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 if( !OC_USER::isLoggedIn()){
     header( "Location: ".OC_HELPER::linkTo( "index.php" ));
     exit();
index 383e7f7ab0a70f1f70ff7ca68c57c05a1133c35b..d2095a022ff5433421d22f862243080f317fe06a 100644 (file)
@@ -21,7 +21,7 @@
 * 
 */
 
-oc_require_once('inc/User/backend.php');
+require_once('inc/User/backend.php');
 
 
 
index 1574dae8053ace55d3a4823c9971f573056353a6..6ff829ef3217d6520cec4f2d8b5105fd595588b8 100644 (file)
@@ -3,5 +3,7 @@
 @import "_theme_template.scss";
 
 .syntaxhighlighter {
-       .keyword { font-weight: bold !important; }
+.keyword { font-weight:
+        bold !important;
+    }
 }
index 8e95c567aebc1ca1fb5e5b2fc1f5824364f19f30..45e3f0917c3fc3f94e4554607918bcbd718582aa 100644 (file)
@@ -3,7 +3,8 @@
 $background:                                   #0a2b1d !default;
 
 $line_highlighted_background:  #233729 !default;
-$line_highlighted_number:              white !default;
+$line_highlighted_number:
+white !default;
 
 $gutter_text:                                  #497958 !default;
 $gutter_border_color:                  #41a83e !default;
@@ -31,6 +32,10 @@ $code_color3:                                        #edef7d !default;
 @import "_theme_template.scss";
 
 .syntaxhighlighter {
-       .comments { font-style: italic !important; }
-       .keyword { font-weight: bold !important; } 
+.comments { font-style:
+        italic !important;
+    }
+.keyword { font-weight:
+               bold !important;
+             }
 }
index 193fb1d877a6d78649773eb687497309c77f418e..33cf5a3cac1e5c77f60738f52746affb16cd1f4f 100644 (file)
@@ -15,9 +15,11 @@ $toolbar_collapsed_a_hover:          #aa7700 !default;
 $toolbar_collapsed_background: #fff !default;
 
 $toolbar_a:                                            #a0a0a0 !default;
-$toolbar_a_hover:                              red !default;
+$toolbar_a_hover:
+red !default;
 
-$code_plain:                                   black !default;
+$code_plain:
+black !default;
 $code_comments:                                        #3f5fbf !default;
 $code_string:                                  #2a00ff !default;
 $code_keyword:                                 #7f0055 !default;
@@ -26,23 +28,30 @@ $code_variable:                                     #aa7700 !default;
 $code_value:                                   #009900 !default;
 $code_functions:                               #ff1493 !default;
 $code_constants:                               #0066cc !default;
-$code_color1:                                  gray !default;
+$code_color1:
+gray !default;
 $code_color2:                                  #ff1493 !default;
-$code_color3:                                  red !default;
+$code_color3:
+red !default;
 
 @import "_theme_template.scss";
 
 .syntaxhighlighter {
-       .keyword { font-weight: bold !important; }
-       
-       .xml {
-               .keyword {
-                       color: #3f7f7f !important;
-                       font-weight: normal !important; }
-               .color1, .color1 a { color: #7f007f !important; }
-               .string {
-                       font-style: italic !important;
-                       color: #2a00ff !important; 
-               } 
-       } 
+.keyword { font-weight:
+        bold !important;
+    }
+
+    .xml {
+        .keyword {
+color: #3f7f7f !important;
+font-weight:
+            normal !important;
+        }
+.color1, .color1 a { color: #7f007f !important; }
+        .string {
+font-style:
+            italic !important;
+color: #2a00ff !important;
+        }
+    }
 }
index 11c9deb4d08130c60a655a644968fa370ccd5307..2589374f5bebd820b53ca0d737259eb1495ddb7e 100644 (file)
@@ -1,17 +1,20 @@
 // Emacs SyntaxHighlighter theme based on theme by Joshua Emmons
 // http://www.skia.net/
 
-$background:                                   black !default;
+$background:
+black !default;
 
 $line_highlighted_background:  #2A3133 !default;
-$line_highlighted_number:              white !default;
+$line_highlighted_number:
+white !default;
 
 $gutter_text:                                  #d3d3d3 !default;
 $gutter_border_color:                  #990000 !default;
 
 $toolbar_collapsed_a:                  #ebdb8d !default;
 $toolbar_collapsed_a_hover:            #ff7d27 !default;
-$toolbar_collapsed_background: black !default;
+$toolbar_collapsed_background:
+black !default;
 
 $toolbar_a:                                            #fff !default;
 $toolbar_a_hover:                              #9ccff4 !default;
@@ -19,7 +22,8 @@ $toolbar_a_hover:                             #9ccff4 !default;
 $code_plain:                                   #d3d3d3 !default;
 $code_comments:                                        #ff7d27 !default;
 $code_string:                                  #ff9e7b !default;
-$code_keyword:                                 aqua !default;
+$code_keyword:
+aqua !default;
 $code_preprocessor:                            #aec4de !default;
 $code_variable:                                        #ffaa3e !default;
 $code_value:                                   #009900 !default;
index 7963814952f64c54a90fcfc40b7bbc028fb8c51f..3ec13b18277a4cd2052955fd05a8b760321cad18 100644 (file)
@@ -4,19 +4,22 @@
 $background:                                   #121212 !default;
 
 $line_highlighted_background:  #2C2C29 !default;
-$line_highlighted_number:              white !default;
+$line_highlighted_number:
+white !default;
 
 $gutter_text:                                  #afafaf !default;
 $gutter_border_color:                  #3185b9 !default;
 
 $toolbar_collapsed_a:                  #3185b9 !default;
 $toolbar_collapsed_a_hover:            #d01d33 !default;
-$toolbar_collapsed_background: black !default;
+$toolbar_collapsed_background:
+black !default;
 
 $toolbar_a:                                            #fff !default;
 $toolbar_a_hover:                              #96daff !default;
 
-$code_plain:                                   white !default;
+$code_plain:
+white !default;
 $code_comments:                                        #696854 !default;
 $code_string:                                  #e3e658 !default;
 $code_keyword:                                 #d01d33 !default;
@@ -32,5 +35,7 @@ $code_color3:                                 #96daff !default;
 @import "_theme_template.scss";
 
 .syntaxhighlighter {
-  .functions { font-weight: bold !important; }
+.functions { font-weight:
+        bold !important;
+    }
 }
index 0356fa6c934644569cc464366ef09fcb7ea9558f..c09517bdc864ea813e76e4982724e5900a1ac89c 100644 (file)
@@ -4,29 +4,38 @@
 $background:                                   #222222 !default;
 
 $line_highlighted_background:  #253e5a !default;
-$line_highlighted_number:              white !default;
+$line_highlighted_number:
+white !default;
 
 $gutter_text:                                  #38566f !default;
 $gutter_border_color:                  #435a5f !default;
 
 $toolbar_collapsed_a:                  #428bdd !default;
-$toolbar_collapsed_a_hover:            lime !default;
-$toolbar_collapsed_background: black !default;
+$toolbar_collapsed_a_hover:
+lime !default;
+$toolbar_collapsed_background:
+black !default;
 
 $toolbar_a:                                            #aaaaff !default;
 $toolbar_a_hover:                              #9ccff4 !default;
 
-$code_plain:                                   lime !default;
+$code_plain:
+lime !default;
 $code_comments:                                        #428bdd !default;
-$code_string:                                  lime !default;
+$code_string:
+lime !default;
 $code_keyword:                                 #aaaaff !default;
 $code_preprocessor:                            #8aa6c1 !default;
-$code_variable:                                        aqua !default;
+$code_variable:
+aqua !default;
 $code_value:                                   #f7e741 !default;
 $code_functions:                               #ff8000 !default;
-$code_constants:                               yellow !default;
-$code_color1:                                  red !default;
-$code_color2:                                  yellow !default;
+$code_constants:
+yellow !default;
+$code_color1:
+red !default;
+$code_color2:
+yellow !default;
 $code_color3:                                  #ffaa3e !default;
 
 @import "_theme_template.scss";
index a4dae02305f00ebbef91279bf13420d0955f447d..55a630bb331b603a04d8271223fcd702709e8c85 100644 (file)
@@ -26,7 +26,8 @@ $code_value:                                  #f7e741 !default;
 $code_functions:                               #ffaa3e !default;
 $code_constants:                               #e0e8ff !default;
 $code_color1:                                  #f8bb00 !default;
-$code_color2:                                  white !default;
+$code_color2:
+white !default;
 $code_color3:                                  #ffaa3e !default;
 
 @import "_theme_template.scss";
index 3b67b15372159a7be62db5fb90a9b972f45c16d0..f37acb25c4240d27d10f9a40bd2816ee4862fb90 100644 (file)
@@ -26,7 +26,8 @@ $code_value:                                  #009900 !default;
 $code_functions:                               #ffaa3e !default;
 $code_constants:                               #e0e8ff !default;
 $code_color1:                                  #e0e8ff !default;
-$code_color2:                                  white !default;
+$code_color2:
+white !default;
 $code_color3:                                  #ffaa3e !default;
 
 @import "_theme_template.scss";
index 9791e287306a18a5ad2bccd142a980ac4dbb590c..85e4281c919b52b3c0be3c97270ef15e6e787941 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 if( !OC_USER::isLoggedIn()){
     header( "Location: ".OC_HELPER::linkTo( "index.php" ));
     exit();
index f237e84d85250f43e131c926d09ca062bee396a9..aaf6136692dd6d71cf48bf57f2e2b1cbf33ef08d 100644 (file)
@@ -32,7 +32,7 @@ require_once('../lib/base.php');
 OC_UTIL::setupFS();
 
 // We load OC_TEMPLATE, too. This one is not loaded by base
-oc_require( 'template.php' );
+require( 'template.php' );
 
 // The user should have admin rights. This is an admin page!
 if( !OC_USER::isLoggedIn() || !OC_USER::ingroup( $_SESSION['username'], 'admin' )){
index 25a9f0297dc80ffccfa0039ccd9696eb26917bd2..6d237ed615236ae56843f699f7fad2f7c42e56a2 100644 (file)
@@ -24,7 +24,7 @@
 
 // Init owncloud
 require_once('../lib/base.php');
-oc_require( 'template.php' );
+require( 'template.php' );
 
 // Check if we are a user
 if( !OC_USER::isLoggedIn()){