summaryrefslogtreecommitdiffstats
path: root/lib/public
Commit message (Collapse)AuthorAgeFilesLines
* Add PHPDoc for `urlParams`Lukas Reschke2015-01-151-1/+1
|
* Add PHPDoc for magic property 'server'Lukas Reschke2015-01-141-1/+3
|
* Merge pull request #12988 from owncloud/logfile_downloadMorris Jobke2015-01-091-0/+42
|\ | | | | Logfile download
| * add Download logfile button to admin settingsGeorg Ehrke2015-01-071-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add logSettingsController add download logfile button move getEntries to LogSettingsController move set log level to logsettingscontroller.php add warning if logfile is bigger than 100MB add unit test for set log level fix typecasting, add new line at EoF show log and logfile download only if log_type is set to owncloud add unit test for getFilenameForDownload
* | add SIZE_ALL constJörn Friedrich Dreyer2015-01-021-3/+8
| |
* | fix visibilityJörn Friedrich Dreyer2015-01-022-8/+2
| |
* | move search results below filelist, show hint when results are off screen, ↵Jörn Friedrich Dreyer2015-01-022-6/+8
| | | | | | | | use js plugin mechanism
* | add paged providerJörn Friedrich Dreyer2015-01-022-0/+68
| |
* | Adding basement for the direct download urlThomas Müller2014-12-281-0/+10
| |
* | Intelligent containerBernhard Posselt2014-12-232-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * resolves dependencies by type hint or variable name * simpler route.php * implementation of https://github.com/owncloud/core/issues/12829 Generates and injects parameters automatically. You can now build full classes like $c->query('MyClassName') without having to register it as a service. The resolved object's instance will be saved by using registerService. If a constructor parameter is not type hinted, the parameter name will be taken. Therefore the following two implementations are identical: class Class1 { function __construct(MyClassName $class) class Class1 { function __construct($MyClassName) This makes it possible to also inject primitive values such as strings, arrays etc. In addition if the query could not be resolved, a `QueryException` is now thrown Routes can now be returned as an array from `routes.php` and an `appinfo/application.php` is optional Old commit messages: make it possible to return the routes instead of having to intialize the application try to get the controller by convention add first implementation of automatic resolve add another test just to be sure store the resolved object more tests add phpdoc to public app.php method use the same variable for the public app.php method deprecate old methods and add services for public interfaces deprecated getServer method disallow private api injection for apps other than core or settings (settings should be an app goddamnit :D) register userid because its such an often used variable fix indention and leading slash use test namespace add deprecation reasons, remove private api usage checks and remove deprecation from getServer() add additional public interfaces add public interface for rootfolder fix syntax error remove deprecation from methods where no alternative is there yet remove deprecated from method which has no alternative add timezone public service for #12881 add another deprecation hint move deprecation into separate branch remove dead comment first try to get the namespace from the info.xml, if it does not exist, just uppercase the first letter also trim the namespace name add an interface for timefactory move timefactory to public and add icontrollermethodreflector keep core interface fix copyright date in headers
* | Merge pull request #12969 from owncloud/clarify-docsMorris Jobke2014-12-221-2/+2
|\ \ | | | | | | Clarify return values
| * | Fix typoLukas Reschke2014-12-191-1/+1
| | |
| * | Clarify return valuesLukas Reschke2014-12-191-1/+1
| | | | | | | | | | | | This function returns `null` when no user is logged-in.
* | | Merge pull request #12983 from owncloud/root-ifaceMorris Jobke2014-12-221-0/+32
|\ \ \ | | | | | | | | Add an interface for the root folder so apps have an interface to deal with storage
| * | | add an interface for the root folder so apps have an interface to deal with ↵Bernhard Posselt2014-12-211-0/+32
| | |/ | |/| | | | | | | | | | | | | | | | | | | storage fix comments and newline add newline
* | | Merge pull request #12982 from owncloud/timefac-ifaceThomas Müller2014-12-211-0/+38
|\ \ \ | |/ / |/| | Add an interface for the timefactory class
| * | add an interface for the timefactory classBernhard Posselt2014-12-201-0/+38
| | | | | | | | | | | | fix indention
* | | Merge pull request #12749 from owncloud/server2server-sharing-ngBjörn Schießle2014-12-191-0/+12
|\ \ \ | | | | | | | | server to server sharing next generation
| * | | Next step in server-to-server sharing next generation, see #12285Bjoern Schiessle2014-12-191-0/+12
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Beside some small improvements and bug fixes this will probably the final state for OC8. To test this you need to set up two ownCloud instances. Let's say: URL: myPC/firstOwnCloud user: user1 URL: myPC/secondOwnCloud user: user2 Now user1 can share a file with user2 by entering the username and the URL to the second ownCloud to the share-drop-down, in this case "user2@myPC/secondOwnCloud". The next time user2 login he will get a notification that he received a server-to-server share with the option to accept/decline it. If he accept it the share will be mounted. In both cases a event will be send back to user1 and add a notification to the activity stream that the share was accepted/declined. If user1 decides to unshare the file again from user2 the share will automatically be removed from the second ownCloud server and user2 will see a notification in his activity stream that user1@myPC/firstOwnCloud has unshared the file/folder from him.
* | | Merge pull request #12101 from owncloud/ldap_split_mappingblizzz2014-12-191-0/+1
|\ \ \ | |/ / |/| | Ldap split mapping from Access superclass
| * | Split mapping from Access and Helper classes into it's own. Fully test them, ↵Arthur Schiwon2014-12-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | too. remove unused methods split mapping methods off from Access class fix DB query handling move 'clear mapping' methods from static helper to new mapping class add tests test directly with DB finishing tests and fix return value from setDNbyUUID add corresponding class for groups and make abstract test class neutral. helper tests is now obsolete as the tested functions were moved to the new mapper class. add missing info to PHPDoc add unmap method fix namespaces fix test inheritance PHPDoc and a small code restructure for scrutinizer, no effective changes PostgreSQL does not accept LIMIT in DELETE queries phpdoc fixes, no code changes
* | | Merge pull request #12956 from owncloud/jenkins-user-backend-namesThomas Müller2014-12-191-0/+27
|\ \ \ | |/ / |/| | [jenkins only] introduce names for user backends - IUserBackend
| * | introduce names for user backends - IUserBackendMorris Jobke2014-12-191-0/+27
| | | | | | | | | | | | * LDAP with multiple servers also proved backendName
* | | Merge pull request #12879 from owncloud/mountconfigMorris Jobke2014-12-182-0/+16
|\ \ \ | |/ / |/| | Add mount specific options
| * | Add getMountPoint to FileInfoRobin Appelman2014-12-171-0/+7
| | |
| * | Load mount specific options from the mount configRobin Appelman2014-12-171-0/+9
| |/
* | add isAdmin and isInGroup methods for the group managerBernhard Posselt2014-12-172-0/+16
| |
* | add a isLoggedIn method to the usersession and deprecate the isLoggedIn ↵Bernhard Posselt2014-12-172-1/+11
|/ | | | method on the api
* Merge pull request #12889 from owncloud/deprecation-timeThomas Müller2014-12-172-0/+13
|\ | | | | Deprecate old and replaced appframework apis
| * first round of deprecationBernhard Posselt2014-12-162-0/+13
| |
* | Move timezone logic out of server.phpJoas Schilling2014-12-161-0/+21
|/
* Merge pull request #12555 from owncloud/app_specific_searchJörn Friedrich Dreyer2014-12-152-4/+33
|\ | | | | introduce inApps[] filter for search via ajax query
| * introduce inApps[] filter for search via ajax query, make file results show ↵Jörn Friedrich Dreyer2014-12-102-4/+33
| | | | | | | | | | | | | | | | up in files app only use more flexible return type check array with !empty instead of count
* | Olivier Paroz \OCP\AppFramework\Utility\IControllerMethodReflectorOlivier Paroz2014-12-141-0/+63
| |
* | Merge pull request #12726 from owncloud/add-filter-for-backend-to-rest-indexMorris Jobke2014-12-131-0/+6
|\ \ | | | | | | Add filter for backend to rest index
| * | Use public interfaceLukas Reschke2014-12-111-1/+1
| | |
| * | Add filter for 'backend' to user REST routeLukas Reschke2014-12-101-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | This adds a "backend" type filter to the index REST route which is a pre-requisite for https://github.com/owncloud/core/issues/12620 For example when calling `index.php/settings/users/users?offset=0&limit=10&gid=&pattern=&backend=OC_User_Database` only users within the backend `OC_User_Database` would be shown. (requires sending a CSRF token as well) Depends upon https://github.com/owncloud/core/pull/12711
* | | Merge pull request #12778 from owncloud/searchbytags2Vincent Petry2014-12-122-3/+13
|\ \ \ | | | | | | | | Added searchByTags to view, storage and cache
| * | | Make $userId mandatory for searchByTagsVincent Petry2014-12-121-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | $userId is now a mandatory parameter for searchByTags. Also fixed some places in the code where the argument was missing (Node API and View)
| * | | Added searchByTags to view, storage and cacheVincent Petry2014-12-111-0/+8
| | | |
| * | | Add user parameter to tag managerVincent Petry2014-12-111-3/+4
| | | |
* | | | Merge pull request #12808 from owncloud/add-special-parameterlist-to-managerJoas Schilling2014-12-122-0/+20
|\ \ \ \ | | | | | | | | | | Add special parameterlist to manager
| * | | | Allow extensions to specify the list of special parametersJoas Schilling2014-12-112-0/+20
| | | | |
* | | | | Add IniGetWrapper to public interfaceLukas Reschke2014-12-111-0/+7
|/ / / /
* / / / Add type of the variables to the docsJoas Schilling2014-12-101-3/+3
|/ / /
* | | Merge pull request #12485 from owncloud/jenkins-12383Joas Schilling2014-12-103-6/+130
|\ \ \ | |/ / |/| | New DateTimeFormatter class for dates in other timezones and languages
| * | Require the interface and return a string instead of private classesJoas Schilling2014-12-101-16/+16
| | |
| * | Deprecate Util::formatDate()Joas Schilling2014-12-102-6/+9
| | | | | | | | | | | | Make DateTimeFormatter a service and adjust tests that have been inaccurate
| * | Add a DateTimeFormatter class which allows overwriting the language and timezoneJoas Schilling2014-12-091-0/+121
| | | | | | | | | | | | Fix #12227
* | | Merge pull request #12711 from owncloud/add-backend-to-rest-indexLukas Reschke2014-12-101-0/+7
|\ \ \ | | | | | | | | Expose backend type via REST API