aboutsummaryrefslogtreecommitdiffstats
path: root/inc/lib_base.php
Commit message (Collapse)AuthorAgeFilesLines
* remove for now. main repository is at projects.kde.org/owncloudFrank Karlitschek2011-08-131-728/+0
|
* remove debug statementRobin Appelman2011-01-201-1/+0
|
* don't try to use *nix file premissions on windows hostsRobin Appelman2011-01-181-34/+38
|
* Fixed typo (Lisener → Listener)Elias Probst2011-01-011-2/+2
|
* set version number to 1.1v1.1Robin Appelman2010-10-311-1/+1
|
* Fixed small bug, added global $SERVERROOT to OC_UTILKees Huiberts2010-10-211-1/+1
|
* do not initialize mdb2_scheme if we don't use it, saves a lot of timeRobin Appelman2010-09-111-2/+8
|
* provide a basic viewer for text filesRobin Appelman2010-09-081-0/+9
|
* 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-061-3/+24
|
* remove Admin Panel from the main menu since it's handeld by the new ↵Robin Appelman2010-09-061-3/+0
| | | | settings page now
* change the way the user is rooted in his own folder in order to make ↵Robin Appelman2010-09-021-29/+39
| | | | filesystem managment easier
* remove debug messagesRobin Appelman2010-08-121-2/+0
|
* provide a function to load the data from a plugin.xml fileRobin Appelman2010-08-051-0/+3
|
* change the user backend after we load the pluginsRobin Appelman2010-08-031-0/+2
|
* comply with updated version of the plugin.xml syntaxRobin Appelman2010-07-281-0/+9
|
* use new plugin system for loading pluginsRobin Appelman2010-07-281-28/+2
|
* Merge commit 'refs/merge-requests/31' of ↵Robin Appelman2010-07-281-15/+27
|\ | | | | | | git://gitorious.org/owncloud/owncloud into merge
| * Moved LDAP authentication into a pluginAldo "xoen" Giambelluca2010-07-231-15/+27
| | | | | | | | | | Used the current plugin system to define `USER_OC_LDAP` class that can be used as backend for OC_USER
| * Created class `OC_USER_BACKEND` for general user managmentAldo "xoen" Giambelluca2010-07-211-56/+31
| | | | | | | | | | | | 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" Giambelluca2010-07-191-31/+56
| | | | | | | | | | | | | | | | | | | | 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?
* | remove debug outputMartin T. H. Sandsmark2010-07-251-1/+0
| |
* | fix some, do not enjoy phpMartin T. H. Sandsmark2010-07-251-0/+1
| |
* | some fixesMartin T. H. Sandsmark2010-07-251-0/+1
| |
* | fix permissions, start to implement private data apiMartin T. H. Sandsmark2010-07-161-0/+0
|/
* Using camelCase for function names in 'inc/lib_base.php'Aldo "xoen" Giambelluca2010-07-101-10/+10
| | | | | PHP function names is case-insensitive so this change isn't intrusive but improve readability of the code.
* Merge git://gitorious.org/~icewind/owncloud/icewinds-owncloud into mergeRobin Appelman2010-07-091-15/+73
|\ | | | | | | | | | | | | | | | | 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
| * Initial version of remote ownCloud access through filesystem abstractionRobin Appelman2010-07-071-0/+1
| |
| * Fix custom database namesRobin Appelman2010-07-061-1/+11
| |
| * mergeRobin Appelman2010-07-051-4/+12
| |\
| * \ Merge branch 'master' of gitorious.org:owncloud/owncloudRobin Appelman2010-07-051-25/+7
| |\ \
| * | | Fix some database problems, do not use the cache when creating usersRobin Appelman2010-07-051-6/+6
| | | |
| * | | Initial PostgreSQL supportRobin Appelman2010-06-201-1/+23
| | | |
| * | | use MDB2_Schema for the creation of the initial databaseRobin Appelman2010-06-181-5/+35
| | | |
| * | | fix insertid in OC_DBRobin Appelman2010-06-111-6/+1
| | | |
| * | | fix loading of pluginsRobin Appelman2010-06-111-1/+1
| | | |
* | | | Merge branch 'merge'Robin Appelman2010-07-081-3/+15
|\ \ \ \ | |_|_|/ |/| | |
| * | | load all pluginsSandro2010-06-291-3/+15
| | | |
| * | | load pluginsSandro2010-06-281-1/+1
| | |/ | |/|
* / | fix affected frows and free_result in OC_DBRobin Appelman2010-07-051-4/+12
|/ /
* | fix webroot when using symlinksRobin Appelman2010-06-271-2/+3
| |
* | right WEBROOTSandro2010-06-271-24/+5
|/
* improved detection of WEBROOTRobin Appelman2010-06-071-2/+21
|
* better error messages if there are premission problemsRobin Appelman2010-06-011-6/+8
|
* only check for a writeable config.php when attempting to change the configRobin2010-05-231-3/+1
|
* do not give the 'can't write config file' error when the config file doesn't ↵Robin2010-05-221-1/+1
| | | | exsist
* use MDB2's escape instead of mysql_escapeRobin2010-05-221-8/+9
|
* fix when owncloud is installed in the root of a serverRobin2010-05-211-1/+2
|
* fixes in log and ocsRobin2010-05-151-1/+24
|
* small fixesRobin2010-05-151-2/+2
|