summaryrefslogtreecommitdiffstats
path: root/lib/base.php
Commit message (Collapse)AuthorAgeFilesLines
* initPaths: set include path before any owncloud function is calledherbrechtsmeier2013-02-021-6/+7
| | | | | | | | | | Ensure we can find basic owncloud classes while detecting the owncloud paths in function initPaths by add OC::$SERVERROOT . '/lib' to include path before any owncloud function is called. This fix a bug with XAMPP that cannot find the class OC_Config in function OC_Request::scriptName when called from function OC_Base::initPaths.
* Merge pull request #1384 from owncloud/upgrade_fixBart Visscher2013-02-011-70/+53
|\ | | | | Check for upgrade/maintance mode before trying to load an app
| * Still load js files in maintance modeRobin Appelman2013-01-301-2/+6
| |
| * Check for upgrade/maintance mode before trying to load an appRobin Appelman2013-01-301-70/+49
| |
* | add multiple domains reverse proxy supportStefan Herbrechtsmeier2013-01-311-3/+3
|/ | | | | | | | | | | | Add support for a reverse proxy that handles multiple domains via different web roots (http[s]://proxy.tld/domain.tld/owncloud). As the reverse proxy web root is transparent for the web server the REQUEST_URI and SCRIPT_NAME need manual adjustments. This patch replace the direct use of this _SERVER variables with function calls and extend this functions to overwrite the web root. Additionally it adds a Sabre request backend that extends the Sabre_HTTP_Request to use the same functions.
* merge master into filesystemRobin Appelman2013-01-301-1/+1
|\
| * Update lib/base.phpirgsmirx2013-01-301-1/+1
| | | | | | Correction of typo "locate" -> "locale".
* | merge master into filesystemRobin Appelman2013-01-281-2/+4
|\|
| * Merge branch 'master' into updater-CSPThomas Mueller2013-01-281-1/+8
| |\ | | | | | | | | | | | | Conflicts: core/templates/update.php
| * | Move update inline JSLukas Reschke2013-01-251-0/+1
| | |
| * | Move checkMaintenance and checkUpgradeLukas Reschke2013-01-251-2/+3
| | | | | | | | | | | | | | | This is needed to ensure that the routing and linkTo() function for CSP are available.
* | | add oc:// streamwrapper to provide access to ownCloud's virtual filesystemRobin Appelman2013-01-281-0/+1
| | |
* | | Move streamwrappers to seperate files and put them in a namespaceRobin Appelman2013-01-281-4/+3
| | |
* | | merge master into filesystemRobin Appelman2013-01-261-19/+29
|\ \ \ | | |/ | |/|
| * | lookup for OCA classes in all apps foldersThomas Mueller2013-01-261-1/+8
| |/
| * Initialize router also if ownCloud isn't installedLukas Reschke2013-01-251-16/+18
| |
| * update to jquery-ui 1.10.0Thomas Mueller2013-01-231-2/+2
| |
| * Move requesttoken to oc-requesttoken.jsLukas Reschke2013-01-211-0/+1
| |
* | merge master into filesytemRobin Appelman2013-01-201-1/+24
|\|
| * Merge pull request #1214 from Raydiation/masterBernhard Posselt2013-01-191-0/+17
| |\ | | | | | | Load Classpaths of apps before appinfo/routes.php
| | * spaces to tabsBernhard Posselt2013-01-171-12/+12
| | |
| | * load classpaths of apps before routesBernhard Posselt2013-01-171-0/+17
| | |
| * | Typo fix (comment) /lib/base.phpdavidgumberg2013-01-181-1/+1
| | |
| * | Merge pull request #1181 from owncloud/return-503-in-maintenanceThomas Müller2013-01-181-0/+6
| |\ \ | | |/ | |/| in case of maintenance the error page returns http status 503.
| | * in case of maintenance the error page returns http status 503.Thomas Mueller2013-01-141-0/+6
| | | | | | | | | | | | | | | This is necessary to enable the desktop sync client to react properly. Currently the SabreDAV plugin OC_Connector_Sabre_MaintenancePlugin is not executed because this error page is returned before the SabreDAV code is executed
* | | merge master into filesystemRobin Appelman2013-01-161-676/+676
|\| |
| * | Spaces to tabsBart Visscher2013-01-161-676/+676
| |/
* / Autoload namespaced test classesRobin Appelman2013-01-071-0/+2
|/
* Only show the version updating to instead of worrying about converting ↵Michael Gapczynski2013-01-041-2/+1
| | | | internal to a formatted version
* Add back check if installed around background jobsMichael Gapczynski2013-01-041-2/+4
|
* Basic update progress of database update onlyMichael Gapczynski2013-01-031-37/+12
|
* Rearrange code to prepare for updater feedbackMichael Gapczynski2013-01-031-37/+63
|
* Check if oc_token cookie exists before trying to use itMichael Gapczynski2013-01-021-1/+3
|
* setting the timezone is now part of the login process and true part of the core.Thomas Müller2012-12-201-697/+719
|
* add a check and a warning if setlocale is workingFrank Karlitschek2012-12-191-0/+5
|
* set the session name to the instance id - which is uniqueThomas Mueller2012-12-121-0/+3
| | | | | Conflicts: lib/base.php
* Autoload classes with 'OC' namespace prefix.Thomas Tanghus2012-12-111-0/+3
|
* Merge pull request #182 from owncloud/fix-redirectBart Visscher2012-12-071-1/+7
|\ | | | | Make the redirect_url working again
| * Remove uneeded new lineLukas Reschke2012-11-011-1/+0
| |
| * Check for redirect_url for logged in usersLukas Reschke2012-11-011-0/+7
| | | | | | | | This checks if there is a redirect_url for logged in users
| * Make the redirect_url working againLukas Reschke2012-10-311-1/+1
| | | | | | | | Fixes #160
* | Merge pull request #647 from owncloud/fix_app_settings_navigationThomas Müller2012-12-051-1/+0
|\ \ | | | | | | Move loading of all the apps to setting the active navigation entry.
| * | Move loading of all the apps to setting the active navigation entry.Bart Visscher2012-11-301-1/+0
| | | | | | | | | | | | | | | | | | We can't do the loading before matching the route, because some routes need to do the loading after matching of the route. For example the navigation detection of the app settings page.
* | | minified version no longer availableThomas Mueller2012-12-041-1/+1
|/ /
* | Merge pull request #401 from owncloud/share_hooksJörn Friedrich Dreyer2012-11-281-7/+31
|\ \ | | | | | | Create functions to install standard hooks
| * | Rename install hook functions to register hookBart Visscher2012-11-151-9/+9
| | |
| * | Create functions to install standard hooksBart Visscher2012-11-131-7/+31
| | | | | | | | | | | | | | | Also use these in tests that needs them Fix #151
* | | When using routing in apps, no apps are loaded in the left navigation tree. ↵Bernhard Posselt2012-11-151-0/+1
|/ / | | | | | | To fix this: load apps for matching a request
* | Merge pull request #157 from owncloud/setupBart Visscher2012-11-121-14/+2
|\ \ | | | | | | Make lib/setup.php usable outside of install setup
| * | DRY for creating htaccess to protect data-directoryBart Visscher2012-10-301-3/+1
| | |