Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename vauth to Auth | Paul Arthur | 2013-01-28 | 1 | -330/+0 |
| | |||||
* | Move sessiony things from vauth into Session | Paul Arthur | 2013-01-28 | 1 | -392/+1 |
| | |||||
* | Cosmetics: death to tabs | Paul Arthur | 2013-01-26 | 1 | -651/+651 |
| | | | | | The refactoring I've been doing has reminded me of my strong preference for spaces, and I feel inclined to impose my will on the tree. | ||||
* | Query::clean() -> Query::gc() | Paul Arthur | 2013-01-26 | 1 | -1/+1 |
| | |||||
* | Rename tmpPlaylist to Tmp_Playlist | Paul Arthur | 2013-01-25 | 1 | -1/+1 |
| | |||||
* | Move clean functions into their respective classes | Paul Arthur | 2013-01-25 | 1 | -1/+1 |
| | | | | Uniformly name them gc() | ||||
* | Cosmetics: clean up heads in lib/ | Paul Arthur | 2013-01-25 | 1 | -11/+1 |
| | |||||
* | Drop support for old passwords | Paul Arthur | 2012-09-21 | 1 | -55/+2 |
| | |||||
* | Make a debug message less alarming | Paul Arthur | 2012-07-24 | 1 | -1/+1 |
| | | | | | | It's expected that reading from sessions will fail after expiry or before login. Remove the word 'error' from the logged message and bump it down a few levels. | ||||
* | Clean up uses of Config::set and Config::set_by_array | Paul Arthur | 2012-03-06 | 1 | -1/+1 |
| | | | | | Consistently pass in a boolean instead of a string or an int for the clobber flag. | ||||
* | Minor clean up of vauth::session_extend | Paul Arthur | 2012-03-02 | 1 | -6/+4 |
| | |||||
* | Fix custom session handle to comply with PHP spec | Paul Arthur | 2011-10-14 | 1 | -1/+1 |
| | | | | read must always return a string. | ||||
* | Null is an acceptable session auth type if use_auth=false. FS#182. | Paul Arthur | 2011-09-12 | 1 | -2/+5 |
| | |||||
* | On login, set password to the correct value if we have a mangled one stored | Paul Arthur | 2011-04-26 | 1 | -0/+9 |
| | |||||
* | Clean up some PHPDoc crap | Paul Arthur | 2011-04-04 | 1 | -9/+0 |
| | | | | | | Remove misleading, unvetted, or in some cases just plain wrong data. Packages and categories weren't being used correctly. They still aren't. | ||||
* | header comment modified for phpdoc | momo-i | 2011-02-03 | 1 | -1/+1 |
| | |||||
* | header comment for phpdoc | momo-i | 2011-02-03 | 1 | -1/+1 |
| | |||||
* | test header for phpdoc. now using only classes and libraries. | momo-i | 2011-02-02 | 1 | -19/+41 |
| | |||||
* | Check the correct variable for LDAP. | Paul Arthur | 2010-12-08 | 1 | -1/+1 |
| | |||||
* | Clean up LDAP auth and associated config | Paul Arthur | 2010-12-08 | 1 | -21/+18 |
| | | | | | | Log a more useful error if a config entry is missing but LDAP auth is enabled. Mark required ldap config values clearly and clean up descriptions. | ||||
* | Implement ldap_require_group | Elias Probst | 2010-12-07 | 1 | -0/+37 |
| | | | | | | | | | | | | | | | | Squashed commit of the following: commit 4cba31ed7a607cf955b39131ca598d4f8b7553b6 Author: Elias Probst <mail@eliasprobst.eu> Date: Tue Dec 7 23:08:47 2010 +0100 Improved LDAP group matching regex to make sure, the whole string is matched. commit 1a056e6fdac3c3c3f141283dad25a407a4c897a1 Author: Elias Probst <mail@eliasprobst.eu> Date: Tue Dec 7 23:08:02 2010 +0100 Implementation for the still missing 'ldap_require_group' feature. Including changes suggested in http://ampache.org/bugs/task/150#comment103 | ||||
* | JavaScript cleanup. Consistently use camelCase for naming JS functions. Use | Paul 'flowerysong' Arthur | 2010-06-24 | 1 | -1/+1 |
| | | | | | | | Prototype functionality where possible (particularly for Ajax). Move our JS into lib/javascript (I dropped kajax as an external module since the new ajax.js is completely different apart from function headers.) Remove unused JS functions from base.js. | ||||
* | Browsing by tag is broken. This doesn't fix it. | Paul 'flowerysong' Arthur | 2010-06-15 | 1 | -3/+3 |
| | |||||
* | Miscellaneous cleanup. | Paul 'flowerysong' Arthur | 2010-06-13 | 1 | -3/+5 |
| | |||||
* | Cleanup and rationalisation of authentication related code. Among other things, | Paul 'flowerysong' Arthur | 2010-05-29 | 1 | -156/+181 |
| | | | | fixes FS#99. | ||||
* | Cosmetics: remove trailing whitespace | Paul 'flowerysong' Arthur | 2010-03-14 | 1 | -7/+7 |
| | |||||
* | Cosmetics: use tabs for indentation, tweak some indentation/coding style. | Paul 'flowerysong' Arthur | 2010-03-14 | 1 | -8/+8 |
| | |||||
* | Remove null auth method. | Paul 'flowerysong' Arthur | 2010-03-14 | 1 | -16/+0 |
| | |||||
* | Unbreak http auth, make it more sane. Old broken method renamed to null, in | Paul 'flowerysong' Arthur | 2010-03-14 | 1 | -8/+32 |
| | | | | | case crazy people still want it. Add support for redirecting to a SSO provider after logout. | ||||
* | Cosmetics: add vim modeline, consistently use tabs for indentation, typos, wrap | Paul 'flowerysong' Arthur | 2010-03-13 | 1 | -129/+130 |
| | | | | comment blocks at 80 columns. | ||||
* | Improve debugging a bit to prove a point | Karl 'vollmerk' Vollmer | 2010-03-09 | 1 | -2/+3 |
| | |||||
* | Added local auth method which allows use of pam_auth PHP module (Thx Vlet) | Karl 'vollmerk' Vollmer | 2009-12-15 | 1 | -0/+24 |
| | |||||
* | Replaced almost every dba::query to dba::read or dba::write. | dipsol | 2009-12-14 | 1 | -201/+201 |
| | |||||
* | Remove auth_http-specific autocreation of nonexistent users now that this is ↵ | Paul 'flowerysong' Arthur | 2009-10-08 | 1 | -21/+4 |
| | | | | | | handled generically by login.php | ||||
* | fix typo causing height to not display on art retrival, update to db ↵ | Karl 'vollmerk' Vollmer | 2009-03-15 | 1 | -0/+4 |
| | | | | allowing gc of tmp_browse, add extension to api album art image urls | ||||
* | Add ability to have anonymouse access of a defined level with manual login ↵ | Karl 'vollmerk' Vollmer | 2009-03-08 | 1 | -2/+2 |
| | | | | of users | ||||
* | Resolve #401 new database update, reset album thumbs and use resized art... | Karl 'vollmerk' Vollmer | 2009-03-01 | 1 | -1/+3 |
| | |||||
* | sync from branches/3.4 | Karl 'vollmerk' Vollmer | 2009-02-22 | 1 | -1/+1 |
| | |||||
* | Finish IPv6 support | Karl 'vollmerk' Vollmer | 2009-02-01 | 1 | -3/+3 |
| | |||||
* | move to sha256 for passwords API and Interface | Karl 'vollmerk' Vollmer | 2008-10-30 | 1 | -2/+2 |
| | |||||
* | fix http auth issues, fix missing line sfrom dipsols patch, few other minor ↵ | Karl 'vollmerk' Vollmer | 2008-10-29 | 1 | -4/+6 |
| | | | | things | ||||
* | fix the prevent_multiple_logins (Thx hugh) | Karl 'vollmerk' Vollmer | 2008-08-24 | 1 | -1/+2 |
| | |||||
* | switched to sha() password encryption not using sha2 because of limitations ↵ | Karl 'vollmerk' Vollmer | 2008-07-26 | 1 | -12/+51 |
| | | | | of amarok, also added some caching and fixed some misc bugs | ||||
* | more improvements to the caching system, removed ugly hack from last night ↵ | Karl 'vollmerk' Vollmer | 2008-05-26 | 1 | -0/+2 |
| | | | | on util | ||||
* | fixed rating caching | Karl 'vollmerk' Vollmer | 2008-05-26 | 1 | -3/+0 |
| | |||||
* | added direct links back in, added batch download to single artist view, ↵ | Karl 'vollmerk' Vollmer | 2008-05-26 | 1 | -0/+2 |
| | | | | removed useless cruft | ||||
* | show the top 2 tags on songs, sync fixes from /branches/3.4 improved caching ↵ | Karl 'vollmerk' Vollmer | 2008-05-26 | 1 | -1/+1 |
| | | | | on song object | ||||
* | first steps of a fix for the xml-rpc streaming and cataloging | Karl 'vollmerk' Vollmer | 2008-04-15 | 1 | -1/+1 |
| | |||||
* | fixed the acl issue... sigh | Karl 'vollmerk' Vollmer | 2008-03-07 | 1 | -3/+3 |
| | |||||
* | major corrections to reading of preferences and a few misc fixes which I ↵ | Karl 'vollmerk' Vollmer | 2008-02-29 | 1 | -8/+1 |
| | | | | have now forgotten |