Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove OC_Log | Thomas Müller | 2015-07-03 | 1 | -1/+1 |
| | |||||
* | Update license headers | Jenkins for ownCloud | 2015-03-26 | 1 | -4/+23 |
| | |||||
* | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 1 | -23/+5 |
| | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
* | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 1 | -5/+23 |
| | |||||
* | use Composer autoloader not OC for non-Composer 3rdparty (#9643) | Adam Williamson | 2014-10-28 | 1 | -28/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Composer's autoloader is rather better than the OwnCloud autoloader's handling of non-OC classes. Plus we can rely on upstream Composer to maintain it and not worry about it ourselves. With this change, we drop the bits of OwnCloud's autoloader that handled non-OC classes, and register the classes that were being handled by that code with Composer's autoloader instead. As these dependencies are converted to actually being managed by Composer, the explicit registrations can be dropped as they won't be needed any more. Since OwnCloud's autoloader isn't going to handle non-OC classes any more, we no longer need to test to make sure it does it right. drop unneeded registerPrefix() and registerClass() from autoloader Now we're not handling anything but OC's own classes, these are unnecessary. error out if composer autoloader is not found (thanks bantu) We're never going to be able to work without the autoloader, if it's not there we should just throw our hands up and surrender. | ||||
* | add additional type check | Georg Ehrke | 2014-06-06 | 1 | -1/+1 |
| | |||||
* | update autoloader | Georg Ehrke | 2014-06-04 | 1 | -6/+5 |
| | |||||
* | Remove all occurences of @brief and @returns from PHPDoc | Morris Jobke | 2014-05-19 | 1 | -1/+1 |
| | | | | * test case added to avoid adding them later | ||||
* | Allow null as cache parameter (if no cache was found) and for cache removal. | Andreas Fischer | 2013-10-22 | 1 | -1/+1 |
| | |||||
* | Only write-back on cache miss. | Andreas Fischer | 2013-10-22 | 1 | -3/+3 |
| | |||||
* | Inject memoryCache into Autoloader. Remove recursion-prevention hack. | Andreas Fischer | 2013-10-22 | 1 | -27/+28 |
| | |||||
* | Merge pull request #5071 from owncloud/fix-autoloader-master | Thomas Müller | 2013-10-02 | 1 | -0/+1 |
|\ | | | | | Fix autoloader regression | ||||
| * | Fix autoloader regression | Victor Dubiniuk | 2013-10-02 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'master' into fixing-4620-master | Thomas Müller | 2013-10-01 | 1 | -3/+3 |
|\| | |||||
| * | move the private namespace OC into lib/private - OCP will stay in lib/public | Thomas Müller | 2013-09-30 | 1 | -3/+3 |
| | | | | | | | | | | Conflicts: lib/private/vcategories.php | ||||
* | | in case the cache cannot be initialized within the autoloader we just shoul ↵ | Thomas Müller | 2013-09-18 | 1 | -1/+5 |
|/ | | | | not use it | ||||
* | Class Auto Loader: Cache paths in APC | Markus Goetz | 2013-08-18 | 1 | -1/+25 |
| | | | | | | Using benchmark_single.php (from administration repo) I can measure a speed improvement of 5% to 20% loading the /index.php when logged in. (when using APC and php-fpm). | ||||
* | Let's just use '/' as we do almost everywhere - this change fixes two ↵ | Thomas Mueller | 2013-06-10 | 1 | -2/+2 |
| | | | | failing unit tests | ||||
* | Autoloader: fix loading app clases located in lib/ | Robin Appelman | 2013-05-08 | 1 | -5/+6 |
| | |||||
* | Autoloader: load the 3rdparty libraries using prefixes | Robin Appelman | 2013-05-07 | 1 | -17/+16 |
| | |||||
* | Autoloader: add support for custom namespace paths | Robin Appelman | 2013-05-07 | 1 | -1/+19 |
| | |||||
* | Autoloader: split getting the class paths and loading the class | Robin Appelman | 2013-05-07 | 1 | -7/+20 |
| | |||||
* | Allow disabling the global classpath in an autoloader | Robin Appelman | 2013-05-07 | 1 | -3/+19 |
| | |||||
* | Allow the autoloader to try mutliple possible paths for each path | Robin Appelman | 2013-05-07 | 1 | -24/+17 |
| | |||||
* | Add per-autoloader classPath | Robin Appelman | 2013-05-07 | 1 | -3/+24 |
| | |||||
* | Move autoloader to it's own class | Robin Appelman | 2013-05-07 | 1 | -0/+65 |