Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | improved appereance and clearability in system settings menu. However it ↵ | Steven | 2010-09-05 | 1 | -55/+107 | |
| | | | | | | | | does not make toast (yet). | |||||
| * | fix links in settings menu in all browsers except grome(ium) | Steven | 2010-09-04 | 1 | -1/+2 | |
| | | ||||||
* | | remember the selected tab in the settings dialog when refreshing the page or ↵ | Robin Appelman | 2010-09-04 | 2 | -3/+14 | |
|/ | | | | submiting forms | |||||
* | change the way the user is rooted in his own folder in order to make ↵ | Robin Appelman | 2010-09-02 | 2 | -63/+101 | |
| | | | | filesystem managment easier | |||||
* | new settings page that allows plugins to integrate their own settings ↵ | Robin Appelman | 2010-08-12 | 4 | -12/+64 | |
| | | | | dialogs more with the existing ones | |||||
* | remove debug messages | Robin Appelman | 2010-08-12 | 1 | -2/+0 | |
| | ||||||
* | fix problem when creating users with a non-empty userid cache | Robin Appelman | 2010-08-12 | 1 | -3/+3 | |
| | ||||||
* | provide a function to load the data from a plugin.xml file | Robin Appelman | 2010-08-05 | 3 | -22/+93 | |
| | ||||||
* | change the user backend after we load the plugins | Robin Appelman | 2010-08-03 | 1 | -0/+2 | |
| | ||||||
* | update to comply with the OCS spec (lookup by application name too) | Martin Sandsmark | 2010-08-02 | 1 | -6/+7 | |
| | ||||||
* | fix warnings given by MDB2 if opendir is restricted by the host | Robin Appelman | 2010-07-30 | 1 | -2/+2 | |
| | ||||||
* | comply with updated version of the plugin.xml syntax | Robin Appelman | 2010-07-28 | 3 | -3/+33 | |
| | ||||||
* | use new plugin system for loading plugins | Robin Appelman | 2010-07-28 | 3 | -30/+136 | |
| | ||||||
* | Merge commit 'refs/merge-requests/31' of ↵ | Robin Appelman | 2010-07-28 | 4 | -276/+676 | |
|\ | | | | | | | git://gitorious.org/owncloud/owncloud into merge | |||||
| * | Moved LDAP authentication into a plugin | Aldo "xoen" Giambelluca | 2010-07-23 | 4 | -252/+32 | |
| | | | | | | | | | | 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 documentation | Aldo "xoen" Giambelluca | 2010-07-22 | 4 | -303/+407 | |
| | | ||||||
| * | Created class `OC_USER_BACKEND` for general user managment | Aldo "xoen" Giambelluca | 2010-07-21 | 7 | -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) | |||||
| * | OC_USER now is an abstract class (OC_USER_ABSTRACT) | Aldo "xoen" Giambelluca | 2010-07-19 | 6 | -179/+154 | |
| | | | | | | | | | | | | | | | | | | | | At start the choosen user manager is created (e.g. OC_USER_DATABASE, OC_USER_LDAP) and put into the global variable `$userManager`. This is the variable to use instead of `OC_USER` class. TODO: A better name than $userManager? | |||||
| * | Reverted to self::$classType syntax and fixed the use of self in non-object | Aldo "xoen" Giambelluca | 2010-07-19 | 4 | -59/+57 | |
| | | ||||||
| * | Minor style changes | Aldo "xoen" Giambelluca | 2010-07-15 | 3 | -95/+97 | |
| | | | | | | | | | | * camelCase * spaces here and there | |||||
| * | Fixed a cache-check in `OC_USER_Database::getGroupName()` and minor style ↵ | Aldo "xoen" Giambelluca | 2010-07-15 | 1 | -164/+179 | |
| | | | | | | | | | | | | | | changes * Added spaces here and there * Using camelCase for same variable | |||||
| * | Minor style changes | Aldo "xoen" Giambelluca | 2010-07-15 | 2 | -172/+179 | |
| | | | | | | | | | | | | * Using camelCase for `$classType` property * Using `self` keyword instead of class name * Added spaces here and there | |||||
| * | Abstract lib_user | fabian | 2010-07-15 | 1 | -177/+46 | |
| | | ||||||
| * | Support for mod_auth added | fabian | 2010-07-15 | 3 | -0/+525 | |
| | | ||||||
* | | Merge branch 'master' of gitorious.org:owncloud/owncloud | Robin Appelman | 2010-07-28 | 1 | -5/+6 | |
|\| | ||||||
| * | Improved OC_CONFIG::saveConfiguration() | Aldo "xoen" Giambelluca | 2010-07-12 | 1 | -5/+6 | |
| | | | | | | | | | | * Support numeric types too * $WEBROOT variable was not necessary | |||||
* | | use = instead of LIKE when selecting private attributes | Robin Appelman | 2010-07-28 | 1 | -2/+1 | |
| | | ||||||
* | | more addslashes magic sauce | Martin T. H. Sandsmark | 2010-07-25 | 1 | -1/+1 | |
| | | ||||||
* | | remove debug output | Martin T. H. Sandsmark | 2010-07-25 | 1 | -1/+0 | |
| | | ||||||
* | | fix mdb2 usage, add optional format variable | Martin T. H. Sandsmark | 2010-07-25 | 1 | -12/+12 | |
| | | ||||||
* | | fix some, do not enjoy php | Martin T. H. Sandsmark | 2010-07-25 | 2 | -11/+18 | |
| | | ||||||
* | | some fixes | Martin T. H. Sandsmark | 2010-07-25 | 2 | -6/+8 | |
| | | ||||||
* | | fix parsing of url | Martin T. H. Sandsmark | 2010-07-25 | 1 | -6/+8 | |
| | | ||||||
* | | fix permissions, start to implement private data api | Martin T. H. Sandsmark | 2010-07-16 | 135 | -1/+62 | |
|/ | ||||||
* | Call `saveConfiguration()` using self and fixed a typo | Aldo "xoen" Giambelluca | 2010-07-12 | 1 | -2/+2 | |
| | ||||||
* | added `writeConfiguration()` method to OC_CONFIG | Aldo "xoen" Giambelluca | 2010-07-11 | 1 | -28/+51 | |
| | | | | | | This actually write all the key/value into the config.php. The code in `writeAdminLisener()` is cleaner. This is in prevision of new configuration options (e.g. plugin related) | |||||
* | Added more MIME Types in `inc/lib_filestorage.php` | Aldo "xoen" Giambelluca | 2010-07-11 | 1 | -24/+59 | |
| | | | | | | | | | | | | | | | | Here the types added: * Flac / Ogg [1] * GZip / Tar / Tar+GZip * PDF / SVG / Tiff * JavaScript Other little changes: * I changed the ordered to be alphabetical (by extension) * Using single quotes instead of double quotes for strings * Indentation [1]: http://wiki.xiph.org/MIME_Types_and_File_Extensions [2]: http://www.asciitable.it/mimetypes.asp | |||||
* | Using camelCase for function names in 'inc/lib_user.php' | Aldo "xoen" Giambelluca | 2010-07-10 | 1 | -13/+13 | |
| | | | | | PHP function names is case-insensitive so this change isn't intrusive but improve readability of the code. | |||||
* | Using camelCase for function names in 'inc/lib_ocs.php' | Aldo "xoen" Giambelluca | 2010-07-10 | 1 | -9/+9 | |
| | | | | | PHP function names is case-insensitive so this change isn't intrusive but improve readability of the code. | |||||
* | Using camelCase for function names in 'inc/lib_files.php' | Aldo "xoen" Giambelluca | 2010-07-10 | 1 | -3/+3 | |
| | | | | | PHP function names is case-insensitive so this change isn't intrusive but improve readability of the code. | |||||
* | Using camelCase for function names in 'inc/lib_base.php' | Aldo "xoen" Giambelluca | 2010-07-10 | 1 | -10/+10 | |
| | | | | | PHP function names is case-insensitive so this change isn't intrusive but improve readability of the code. | |||||
* | Using camelCase for function names in 'inc/lib_config.php' | Aldo "xoen" Giambelluca | 2010-07-10 | 1 | -8/+8 | |
| | | | | | PHP function names is case-insensitive so this change isn't intrusive but improve readability of the code. | |||||
* | Fixed validation of /settings | Aldo "xoen" Giambelluca | 2010-07-10 | 1 | -2/+2 | |
| | | | | | | In 'inc/templates/configform.php' * action attribute of form specified * put the hidden input in a div for validation | |||||
* | Merge git://gitorious.org/~icewind/owncloud/icewinds-owncloud into merge | Robin Appelman | 2010-07-09 | 41 | -262/+8438 | |
|\ | | | | | | | | | | | | | | | | | Conflicts: inc/MDB2/Driver/Function/pgsql.php inc/MDB2/Driver/Manager/mysql.php inc/MDB2/Driver/Reverse/pgsql.php inc/MDB2/Driver/mysql.php inc/lib_base.php | |||||
| * | Only connect to a remote ownCloud when we are actually using it | Robin Appelman | 2010-07-07 | 1 | -2/+32 | |
| | | ||||||
| * | Initial version of remote ownCloud access through filesystem abstraction | Robin Appelman | 2010-07-07 | 7 | -11/+458 | |
| | | ||||||
| * | Fix custom database names | Robin Appelman | 2010-07-06 | 1 | -1/+11 | |
| | | ||||||
| * | Initial work on transering files between servers | Robin Appelman | 2010-07-06 | 2 | -0/+97 | |
| | | ||||||
| * | fix table prefix not being set correctly to an empty string on first run ↵ | Robin Appelman | 2010-07-06 | 1 | -0/+1 | |
| | | | | | | | | when using sqlite | |||||
| * | Merge branch 'master' of gitorious.org:owncloud/owncloud | Robin Appelman | 2010-07-06 | 2 | -2/+9 | |
| |\ | | | | | | | | | | | | | Conflicts: inc/lib_log.php |