aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
Commit message (Collapse)AuthorAgeFilesLines
* PHPDoc fixes as suggested by @MorrisJobke.Bernhard Reiter2014-10-141-2/+2
|
* Add getTag() function for accessing of a single tag.Bernhard Reiter2014-10-141-0/+9
|
* Add option to include tags for shared items.Bernhard Reiter2014-10-142-2/+13
|
* Fix a comment.Bernhard Reiter2014-10-141-2/+2
|
* Expose getAppKeys trough \OCP\IConfigRobin Appelman2014-10-081-0/+7
|
* Merge pull request #10107 from owncloud/sharing_group_sharesLukas Reschke2014-09-291-2/+2
|\ | | | | [sharing] group shares
| * some small fixesBjoern Schiessle2014-09-251-1/+1
| |
| * mark exclude list as deprecated. It neither used by the files app nor by theBjoern Schiessle2014-09-241-1/+1
| | | | | | | | | | calendar or contacts app. It doesn't make sense to build a exclude list by the share API, the apps knows best which are valid targets.
* | Merge pull request #11285 from owncloud/dav-permissions-createThomas Müller2014-09-261-0/+7
|\ \ | | | | | | Fix dav permissions for folders
| * | Expose creatable permissions trough fileinfoRobin Appelman2014-09-251-0/+7
| | |
* | | Merge pull request #10934 from owncloud/datadir-write-setupVincent Petry2014-09-251-1/+1
|\ \ \ | |/ / |/| | Don't complain about non-writable datadirs before we're installed
| * | Inject config into checkserver and cleanup testsRobin Appelman2014-09-181-1/+1
| | |
* | | Merge pull request #11019 from owncloud/do-not-show-exception-to-enduserLukas Reschke2014-09-231-28/+10
|\ \ \ | | | | | | | | Do not show exception to the end-user - use a proper error page instead
| * | | Do not show exception to the end-userLukas Reschke2014-09-171-28/+10
| | |/ | |/| | | | | | | Log the error instead of potentially leaking sensitive information
* | | Merge pull request #11222 from owncloud/store-users-timezone-masterThomas Müller2014-09-231-2/+4
|\ \ \ | | | | | | | | send browsers timezone back tp the server on login
| * | | enhance formatDate function to accept an optional argument containing the ↵Thomas Müller2014-09-221-2/+4
| | | | | | | | | | | | | | | | time zone
* | | | Do only follow HTTP and HTTPS redirectsLukas Reschke2014-09-221-0/+6
|/ / / | | | | | | | | | | | | | | | | | | | | | We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server) Get final redirect manually using get_headers() Migrate to HTTPHelper class and add unit tests
* | / Remove unused and overflowing functionLukas Reschke2014-09-181-5/+0
| |/ |/| | | | | Resolves https://github.com/owncloud/core/issues/10991 failure 4
* | Merge pull request #10932 from owncloud/issue/10926Morris Jobke2014-09-171-0/+8
|\ \ | |/ |/| Add a method to get the absolute url for a route
| * Add a method to get the absolute url for a routeJoas Schilling2014-09-081-0/+8
| | | | | | | | Fix #10926
* | Merge pull request #7254 from owncloud/core-sortalgoLukas Reschke2014-09-161-0/+11
|\ \ | | | | | | Fixed JS sort comparator to be consistent between JS and PHP
| * | Fixed file list sortingVincent Petry2014-08-111-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now using a natural sort algorithm that is more consistent between JS and PHP (although not perfect in some corner cases) - added OC.Util.naturalSortComparator that uses the same algo that was used for the user list - changed user list and files list to use OC.Util.naturalSortComparator - removed toLowerCase() and changed the comparator to use String.localeCompare() - added unit tests - added OC_NaturalSort that is used by OCP\Util::naturalSortCompare()
* | | Merge pull request #10739 from owncloud/eventsource-publicLukas Reschke2014-09-082-0/+41
|\ \ \ | |_|/ |/| | Add EventSource to the public API
| * | Better phpdoc and method namingRobin Appelman2014-09-042-2/+4
| | |
| * | Add event source to the public apiRobin Appelman2014-09-032-0/+39
| | |
* | | Merge pull request #10642 from owncloud/securityutilsLukas Reschke2014-09-034-0/+133
|\ \ \ | |/ / |/| | Add some security utilities
| * | Fix quotingLukas Reschke2014-09-031-1/+1
| | |
| * | Add test for the second argumentLukas Reschke2014-09-031-1/+1
| | |
| * | Fix CHAR_SYMBOLSLukas Reschke2014-09-031-1/+1
| | |
| * | Merge branch 'securityutils' of https://github.com/owncloud/core into ↵Lukas Reschke2014-09-036-9/+11
| |\ \ | | | | | | | | | | | | securityutils
| | * \ Merge branch 'master' into securityutilsLukas Reschke2014-08-316-9/+11
| | |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: lib/private/util.php
| * | | | Add char consts, hash the specified password for the HMACLukas Reschke2014-09-031-0/+8
| |/ / /
| * | | Add some security utilitiesLukas Reschke2014-08-274-0/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds some security utilities to core including: - A library for basic crypto operations (e.g. to encrypt passwords) - A better library for cryptographic actions which allows you to specify the charset - A library for secure string comparisions Remove .htaccess Remove .htaccess Fix typo Add public API Use timing constant comparision Remove CBC constant Adjust code Remove confusing $this
* | | | Merge pull request #10780 from owncloud/config-publicMorris Jobke2014-08-311-0/+33
|\ \ \ \ | | | | | | | | | | Extend public config interface
| * | | | Extend public config interfaceRobin Appelman2014-08-311-0/+33
| | |/ / | |/| |
* | | | Merge pull request #10420 from owncloud/external-share-self-signedLukas Reschke2014-08-313-0/+103
|\ \ \ \ | |/ / / |/| | | Make external shares work with imported self signed certificates
| * | | Add certificate classRobin Appelman2014-08-311-0/+56
| | | |
| * | | Move certificate management interface from files_external to coreRobin Appelman2014-08-311-2/+2
| | | |
| * | | Move certificate management code to coreRobin Appelman2014-08-312-0/+47
| | | |
* | | | Merge pull request #10770 from owncloud/getUserFolderMorris Jobke2014-08-311-1/+2
|\ \ \ \ | | | | | | | | | | update public interface for getUserFolder
| * | | | update public interface for getUserFolderMorris Jobke2014-08-311-1/+2
| |/ / /
* | | | Also extend public server interfaceRobin Appelman2014-08-311-1/+2
| | | |
* | | | Use public api for getting l10nRobin Appelman2014-08-312-3/+3
|/ / /
* | | Merge pull request #10653 from owncloud/x-forwarded-forClark Tomlinson2014-08-272-2/+2
|\ \ \ | | | | | | | | Add support for getting the real client IP behind proxies
| * | | Add support for getting the real client IP behind proxiesLukas Reschke2014-08-272-2/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes https://github.com/owncloud/core/issues/10624 Fix copy paste fail Add unittest for comma separated headers Revert 3rdparty
* | | Merge pull request #9915 from suraia/unsharefromself-sourceBjörn Schießle2014-08-271-2/+2
|\ \ \ | |/ / |/| | Allow specifying the item source in unshareFromSelf().
| * | Allow specifying the item source in unshareFromSelf().Michael Kuhn2014-07-261-2/+2
| | |
* | | Expose setSystemValueLukas Reschke2014-08-221-2/+1
| | |
* | | Add doc for \OCP\Files\FileInfo space constantsMorris Jobke2014-08-191-0/+9
| | |
* | | move to public namespaceMorris Jobke2014-08-191-0/+4
| | |