summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix sqlite compatibility for webdav serverRobin Appelman2010-09-281-16/+22
|
* fix viewing images that have a ' in the filenameRobin Appelman2010-09-281-0/+1
|
* mergeRobin Appelman2010-09-281-10/+117
|\
| * automatically install databased of pluginsRobin Appelman2010-09-281-10/+119
| |
* | add function to list all pluginsRobin Appelman2010-09-281-5/+23
|/
* Fix content type header in downloadsSteven2010-09-261-0/+2
|
* initial version for user managment tab in the settings pageRobin Appelman2010-09-2010-50/+251
|
* use mysql instead of mysqli when creating mysql user/databaseRobin Appelman2010-09-201-20/+35
|
* fix layout issue in the settings pageRobin Appelman2010-09-191-1/+13
|
* Merge branch 'master' of http://git.gitorious.org/owncloud/owncloudRobin Appelman2010-09-193-0/+44
|\
| * add functions to get a list of all users or groupsRobin Appelman2010-09-153-0/+44
| |
* | improved loading speed of default syle sheetRobin Appelman2010-09-191-1/+6
| |
* | fix loading of plugin defined stylesheetsRobin Appelman2010-09-191-1/+1
|/
* use caching for user-group relationsRobin Appelman2010-09-121-24/+57
|
* do not initialize mdb2_scheme if we don't use it, saves a lot of timeRobin Appelman2010-09-111-2/+8
|
* the text viewer now does syntax highlighting for codeRobin Appelman2010-09-08101-8/+17356
|
* keep indention when viewing text filesRobin Appelman2010-09-081-0/+2
|
* fix fallback for mimetype detection using the 'file' commandRobin Appelman2010-09-081-13/+3
|
* provide a basic viewer for text filesRobin Appelman2010-09-086-0/+97
|
* use json to encode the file list, should work better with filenames ↵Robin Appelman2010-09-062-13/+30
| | | | containing non-ascii characters
* fix wrong settings form being restricted to admin onlyRobin Appelman2010-09-061-2/+2
|
* provide a defealt, empty, filesystem configuration to suppress some errorsRobin Appelman2010-09-061-0/+1
|
* make the filesystem configurable (no gui yet)Robin Appelman2010-09-064-20/+74
|
* remove Admin Panel from the main menu since it's handeld by the new ↵Robin Appelman2010-09-061-3/+0
| | | | settings page now
* fixed bug in filesystem abstraction that broke file uploadingRobin Appelman2010-09-061-1/+1
|
* fix some errors when trying to save the settingsRobin Appelman2010-09-051-9/+10
|
* mergeRobin Appelman2010-09-052-57/+110
|\
| * improved tooltip text (true this time)Steven2010-09-051-4/+4
| |
| * improved appereance and clearability in system settings menu. However it ↵Steven2010-09-051-55/+107
| | | | | | | | does not make toast (yet).
| * fix links in settings menu in all browsers except grome(ium)Steven2010-09-041-1/+2
| |
* | remember the selected tab in the settings dialog when refreshing the page or ↵Robin Appelman2010-09-042-3/+14
|/ | | | submiting forms
* Merge commit 'refs/merge-requests/33' of ↵Robin Appelman2010-09-021-2/+2
|\ | | | | | | git://gitorious.org/owncloud/owncloud into merge
| * First commit, changing capitalizationAaron Reichman2010-08-221-2/+2
| |
* | change the way the user is rooted in his own folder in order to make ↵Robin Appelman2010-09-022-63/+101
|/ | | | filesystem managment easier
* new settings page that allows plugins to integrate their own settings ↵Robin Appelman2010-08-126-13/+88
| | | | dialogs more with the existing ones
* remove debug messagesRobin Appelman2010-08-121-2/+0
|
* fix error during the creation of the database table when using mysqlRobin Appelman2010-08-121-1/+2
|
* fix problem when creating users with a non-empty userid cacheRobin Appelman2010-08-121-3/+3
|
* provide a function to load the data from a plugin.xml fileRobin Appelman2010-08-055-26/+97
|
* change the user backend after we load the pluginsRobin Appelman2010-08-031-0/+2
|
* Merge branch 'master' of http://git.gitorious.org/owncloud/owncloudRobin Appelman2010-08-032-12/+24
|\
| * update to comply with the OCS spec (lookup by application name too)Martin Sandsmark2010-08-022-12/+24
| |
* | use encodeURIComponent in more placesRobin Appelman2010-08-032-2/+2
|/
* fix warnings given by MDB2 if opendir is restricted by the hostRobin Appelman2010-07-301-2/+2
|
* comply with updated version of the plugin.xml syntaxRobin Appelman2010-07-286-11/+50
|
* use new plugin system for loading pluginsRobin Appelman2010-07-287-30/+171
|
* Merge commit 'refs/merge-requests/31' of ↵Robin Appelman2010-07-285-276/+878
|\ | | | | | | git://gitorious.org/owncloud/owncloud into merge
| * Moved LDAP authentication into a pluginAldo "xoen" Giambelluca2010-07-234-51/+33
| | | | | | | | | | Used the current plugin system to define `USER_OC_LDAP` class that can be used as backend for OC_USER
| * Cleaned up and added some documentationAldo "xoen" Giambelluca2010-07-224-303/+407
| |
| * Created class `OC_USER_BACKEND` for general user managmentAldo "xoen" Giambelluca2010-07-217-465/+590
| | | | | | | | | | | | It's possible to use `OC_USER` as normal but the real stuff is done by the `OC_USER::$_backend` class, setted using `OC_USER::setBackend()` (this is done in inc/lib_user.php)