Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge master into navigation | Jan-Christoph Borchardt | 2013-01-15 | 847 | -18820/+28224 |
|\ | |||||
| * | Merge pull request #1087 from owncloud/ldap_multiple_dns | blizzz | 2013-01-15 | 4 | -45/+105 |
| |\ | | | | | | | LDAP: ability to configure more than one base DN | ||||
| | * | dechex not necessary, do not waste time with it | Arthur Schiwon | 2013-01-08 | 1 | -1/+1 |
| | | | |||||
| | * | Code style | Arthur Schiwon | 2013-01-08 | 1 | -6/+10 |
| | | | |||||
| | * | support LDAP search using multiple base DNs also with paged results, ↵ | Arthur Schiwon | 2013-01-04 | 1 | -33/+50 |
| | | | | | | | | | | | | implements #395 | ||||
| | * | support multiple base DNs | Arthur Schiwon | 2013-01-03 | 1 | -5/+42 |
| | | | |||||
| | * | Base DNs will be used as array, now, to support usage of multiple DNs | Arthur Schiwon | 2013-01-03 | 1 | -3/+3 |
| | | | |||||
| | * | Switch to textarea to enable configuration of multiple DNs | Arthur Schiwon | 2013-01-03 | 2 | -4/+6 |
| | | | |||||
| | * | LDAP: fix spelling | Arthur Schiwon | 2013-01-03 | 1 | -1/+1 |
| | | | |||||
| * | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2013-01-15 | 328 | -2930/+1168 |
| | | | |||||
| * | | Merge pull request #1182 from owncloud/sanitizeHTML-Clean | Lukas Reschke | 2013-01-14 | 1 | -2/+5 |
| |\ \ | | | | | | | | | Expanded one line if statement - Trivial | ||||
| | * | | Move { to same line | Lukas Reschke | 2013-01-14 | 1 | -2/+1 |
| | | | | |||||
| | * | | Expand if to multiple lines | Lukas Reschke | 2013-01-14 | 1 | -2/+6 |
| |/ / | | | | | | | Oneliners are ugly. | ||||
| * | | Merge pull request #1177 from owncloud/OC_User--isAdminUser() | Bart Visscher | 2013-01-14 | 19 | -113/+38 |
| |\ \ | | | | | | | | | Check if user is admin - bool | ||||
| | * | | Enhanced auth is totally unmaintained and broken | Lukas Reschke | 2013-01-14 | 6 | -76/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | Let's remove it, it's also not secure anymore with the introduction of our API etc... (And doesn't work with ldap etc…) | ||||
| | * | | Add a closing ) | Lukas Reschke | 2013-01-14 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Thanks Jenkins! | ||||
| | * | | CP fail | Lukas Reschke | 2013-01-14 | 1 | -1/+1 |
| | | | | |||||
| | * | | Check if user is admin - bool | Lukas Reschke | 2013-01-14 | 16 | -37/+38 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There was no "isAdminUser()" function which returned bool. This is irritiating as there were a loooooooot of places in the code which checked this itself with `OC_Group::inGroup($uid, 'admin)` - why not use a function for this? (Especially if you consider that we might change the group name in the future, which would lead to problems then) Additionally, @Raydiation needed such a method for his AppFramework :) | ||||
| * | | | Merge pull request #1172 from owncloud/isSubDirectory | Bart Visscher | 2013-01-14 | 1 | -24/+4 |
| |\ \ \ | | | | | | | | | | | Simplify the isSubDirectory() function | ||||
| | * | | | Check for string position instead of string existence | Lukas Reschke | 2013-01-14 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | otherwise /foo/bar would be detected as a subfolder of /bar THX @icewind1991 | ||||
| | * | | | Commentblocks should begin with two * | Lukas Reschke | 2013-01-13 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | Add @brief to description | Lukas Reschke | 2013-01-13 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | Simplify the isSubDirectory() function | Lukas Reschke | 2013-01-13 | 1 | -22/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | isSubDirectory() checks if a specified $sub is a subdirectory of the $parent, this is needed to prevent file inclusions. Actually, the current code is more kind of a "hack" which I always struggle over if browsing through source. So this should be a much better implementation. The implementation is really straightforward: - [realpath()](http://php.net/manual/function.realpath.php) expands all symbolic links and resolves references to '/./', '/../' and extra '/' characters in the input path and return the canonicalized absolute pathname. - [strpos()](php.net/manual/function.strpos.php) returns FALSE if the substring wasn't found. Since this is an absolutely critical piece of code, I'd like to ensure that this is absolutely safe! | ||||
| * | | | | Merge pull request #1169 from owncloud/webdav_L10n | Bart Visscher | 2013-01-14 | 1 | -2/+2 |
| |\ \ \ \ | | | | | | | | | | | | | user_webdavauth - l10n - Trivial | ||||
| | * | | | | The => This | Lukas Reschke | 2013-01-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | Sounds better for me. | ||||
| | * | | | | Improved the help text | Lukas Reschke | 2013-01-13 | 1 | -1/+1 |
| | | | | | | |||||
| | * | | | | legend - l10n | Lukas Reschke | 2013-01-13 | 1 | -1/+1 |
| | |/ / / | |||||
| * | | | | Merge pull request #1135 from owncloud/allow_default_click_behaviour | Lukas Reschke | 2013-01-14 | 1 | -1/+2 |
| |\ \ \ \ | | |_|/ / | |/| | | | allow default click behaviour | ||||
| | * | | | allow default click behaviour | Jörn Friedrich Dreyer | 2013-01-09 | 1 | -1/+2 |
| | | | | | |||||
| * | | | | Merge pull request #1112 from Raydiation/master | Bart Visscher | 2013-01-14 | 1 | -17/+5 |
| |\ \ \ \ | | | | | | | | | | | | | This fixes a problem that prevented app routes from being loaded after ocs_api merge | ||||
| | * | | | | added cleanup recommendations by including ocs in the cachedKey method and ↵ | Bernhard Posselt | 2013-01-07 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | moving the ocs routes stuff at the end of the loadRoutes method | ||||
| | * | | | | readded ocs routes | Bernhard Posselt | 2013-01-07 | 1 | -0/+5 |
| | | | | | | |||||
| | * | | | | fixed error that displayed a white page and a warning that routes could not ↵ | Bernhard Posselt | 2013-01-07 | 1 | -17/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | be loaded from apps that was caused by the ocs_api merge | ||||
| * | | | | | Revert "fix c&p error" | Daniel Molkentin | 2013-01-14 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 9d41322cf0943e3960a4a7dc5878c713b8fedbca. | ||||
| * | | | | | fix c&p error | Daniel Molkentin | 2013-01-14 | 1 | -3/+3 |
| | | | | | | |||||
| * | | | | | Merge pull request #1170 from owncloud/correctIndention | Thomas Müller | 2013-01-14 | 2 | -78/+78 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Remove ugly indentation - Trivial | ||||
| | * | | | | | Remove ugly indentation | Lukas Reschke | 2013-01-13 | 2 | -78/+78 |
| | | | | | | | |||||
| * | | | | | | Merge branch 'master' of github.com:owncloud/core | Björn Schießle | 2013-01-14 | 429 | -5960/+7494 |
| |\ \ \ \ \ \ | |||||
| | * | | | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2013-01-14 | 16 | -45/+59 |
| | | |_|_|/ / | | |/| | | | | |||||
| | * | | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2013-01-13 | 20 | -53/+81 |
| | | | | | | | |||||
| | * | | | | | Correct the link | Lukas Reschke | 2013-01-12 | 1 | -1/+1 |
| | | | | | | | |||||
| | * | | | | | Merge pull request #1160 from owncloud/updateContrib | Lukas Reschke | 2013-01-12 | 2 | -4/+55 |
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | Update CONTRIBUTING.md | ||||
| | | * | | | | | Updated browser log | Lukas Reschke | 2013-01-12 | 1 | -4/+5 |
| | | | | | | | | |||||
| | | * | | | | | Adding database to server config | Thomas Müller | 2013-01-12 | 1 | -1/+5 |
| | | | | | | | | |||||
| | | * | | | | | Typos | Lukas Reschke | 2013-01-11 | 1 | -2/+2 |
| | | | | | | | | |||||
| | | * | | | | | Add server operating system to template | Lukas Reschke | 2013-01-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | Thanks @eMerzh, could be especially needed as there are some platform specific issues like filename encoding under MS Windows | ||||
| | | * | | | | | Add the correct link to the apps repository | Lukas Reschke | 2013-01-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | :oops: | ||||
| | | * | | | | | Add a space behind the #### | Lukas Reschke | 2013-01-11 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | Makes it at least better readable for me. | ||||
| | | * | | | | | Uneeded newline | Lukas Reschke | 2013-01-11 | 1 | -2/+0 |
| | | | | | | | | |||||
| | | * | | | | | Remove : | Lukas Reschke | 2013-01-11 | 1 | -4/+4 |
| | | | | | | | |