Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ticket/12716] Add the missing parameters in the call of clearToken | Tristan Darricau | 2014-06-15 | 1 | -1/+1 |
| | | | | PHPBB3-12716 | ||||
* | [ticket/12575] Use strict comparison | Tristan Darricau | 2014-06-14 | 1 | -2/+2 |
| | | | | PHPBB3-12575 | ||||
* | [ticket/12575] Add missing property | Tristan Darricau | 2014-06-14 | 1 | -1/+6 |
| | | | | PHPBB3-12575 | ||||
* | [ticket/12575] Usethe new header | Tristan Darricau | 2014-06-14 | 1 | -5/+10 |
| | | | | PHPBB3-12575 | ||||
* | [ticket/12575] Fix 2 typos in comments | Tristan Darricau | 2014-06-14 | 2 | -2/+2 |
| | | | | PHPBB3-12575 | ||||
* | [ticket/12575] Fix typos in comments | Tristan Darricau | 2014-06-14 | 2 | -4/+4 |
| | | | | PHPBB3-12575 | ||||
* | [ticket/12575] Skip sniffer issue triggered by the solution of a php bug | Tristan Darricau | 2014-06-14 | 2 | -0/+14 |
| | | | | | | | https://bugs.php.net/bug.php?id=66834 https://bugs.php.net/bug.php?id=67067 PHPBB3-12575 | ||||
* | [ticket/12575] Remove inline assignments | Tristan Darricau | 2014-06-14 | 2 | -3/+6 |
| | | | | PHPBB3-12575 | ||||
* | [ticket/12575] Fix the tests | Tristan Darricau | 2014-06-14 | 2 | -0/+16 |
| | | | | PHPBB3-12575 | ||||
* | [ticket/12575] Move service_collection_iterator to its own file | Tristan Darricau | 2014-06-14 | 2 | -55/+65 |
| | | | | PHPBB3-12575 | ||||
* | [ticket/12575] Speed up load_class() | Tristan Darricau | 2014-06-14 | 1 | -2/+77 |
| | | | | | | | Load the services referenced in a service_collection only when they are used to avoid to load some unsuded services. PHPBB3-12575 | ||||
* | Merge pull request #2527 from dhruvgoel92/ticket/11445 | Andreas Fischer | 2014-06-14 | 1 | -16/+36 |
|\ | | | | | | | | | | | | | | | | | | | [ticket/11445] optimize no of queries in get_global_subscriptions( ) * dhruvgoel92/ticket/11445: [ticket/11445] Move get user's notification code into its own method [ticket/11445] Remove unused foreach key $group_name [ticket/11445] Improve unit tests for get_global_subscriptions [ticket/11445] Optimize no of queries in get_global_subscriptions | ||||
| * | [ticket/11445] Move get user's notification code into its own method | Dhruv | 2014-06-07 | 1 | -14/+29 |
| | | | | | | | | PHPBB3-11445 | ||||
| * | [ticket/11445] Remove unused foreach key $group_name | Dhruv | 2014-06-07 | 1 | -1/+1 |
| | | | | | | | | PHPBB3-11445 | ||||
| * | [ticket/11445] Optimize no of queries in get_global_subscriptions | Dhruv | 2014-06-01 | 1 | -13/+18 |
| | | | | | | | | PHPBB3-11445 | ||||
* | | Merge remote-tracking branch 'github-marc1706/ticket/12352' into ↵ | Nils Adermann | 2014-06-11 | 20 | -84/+867 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-marc1706/ticket/12352: (33 commits) [ticket/12352] Do not check hashes that don't have the necessary length [ticket/12352] Update file headers to fit new format [ticket/12352] Use custom provider collection for auth providers [ticket/12352] Add checks for existing user_pass_convert to migrations [ticket/12352] Remove usages of user_pass_convert column [ticket/12352] Update schema json file [ticket/12352] Remove user_pass_convert column from database [ticket/12352] Check each newly added passwords driver in manager_test [ticket/12352] Add get_settings_only method to passwords driver base [ticket/12352] Add passwords driver for xenforo 1.0, 1.1 passwords [ticket/12352] Add tests for wcf1 and wcf2 drivers [ticket/12352] Add driver for woltlab community framework 1 passwords [ticket/12352] Add driver for woltlab community framework 2 passwords [ticket/12352] Add missing $ to md5_mybb and md5_vb driver [ticket/12352] Fix spacing in passwords tests [ticket/12352] Add passwords driver for vB passwords [ticket/12352] Use correct hashing method in md5_mybb driver [ticket/12352] Add driver for myBB md5 passwords [ticket/12352] Rename phpbb2_md5 driver to fit filenames of other drivers [ticket/12352] Add passwords driver for sha1 password hashes ... | ||||
| * | | [ticket/12352] Do not check hashes that don't have the necessary length | Marc Alexander | 2014-06-02 | 7 | -7/+7 |
| | | | | | | | | | | | | | | | | | | | | | This should significantly reduce the time spent on checking hashes of passwords that should be converted. PHPBB3-12352 | ||||
| * | | [ticket/12352] Update file headers to fit new format | Marc Alexander | 2014-06-01 | 12 | -65/+84 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Use custom provider collection for auth providers | Marc Alexander | 2014-06-01 | 2 | -21/+67 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using this custom provider collection, we can properly check whether the configured auth provider does exist. The method get_provider() has been added for returning the default auth provider or the standard db auth provider if the specified one does not exist. Additionally, the method get_provider() will throw an RuntimeException if none of the above exist. PHPBB3-12352 | ||||
| * | | [ticket/12352] Add checks for existing user_pass_convert to migrations | Marc Alexander | 2014-06-01 | 2 | -0/+11 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Remove usages of user_pass_convert column | Marc Alexander | 2014-06-01 | 2 | -4/+3 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Remove user_pass_convert column from database | Marc Alexander | 2014-06-01 | 1 | -0/+40 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add get_settings_only method to passwords driver base | Marc Alexander | 2014-06-01 | 10 | -72/+8 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add passwords driver for xenforo 1.0, 1.1 passwords | Marc Alexander | 2014-06-01 | 1 | -0/+75 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add driver for woltlab community framework 1 passwords | Marc Alexander | 2014-06-01 | 1 | -0/+67 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add driver for woltlab community framework 2 passwords | Marc Alexander | 2014-06-01 | 1 | -0/+91 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add missing $ to md5_mybb and md5_vb driver | Marc Alexander | 2014-06-01 | 2 | -2/+2 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add passwords driver for vB passwords | Marc Alexander | 2014-06-01 | 1 | -0/+67 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Use correct hashing method in md5_mybb driver | Marc Alexander | 2014-06-01 | 1 | -1/+9 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add driver for myBB md5 passwords | Marc Alexander | 2014-06-01 | 1 | -0/+59 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Rename phpbb2_md5 driver to fit filenames of other drivers | Marc Alexander | 2014-06-01 | 1 | -2/+2 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add passwords driver for sha1 password hashes | Marc Alexander | 2014-06-01 | 1 | -0/+59 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Check phpBB2 passwords that have been encrypted with phpass | Marc Alexander | 2014-06-01 | 1 | -6/+13 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add driver for phpBB2 hashes with md5 length of 32 | Marc Alexander | 2014-06-01 | 1 | -0/+118 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Remove code for converting passwords in db auth provider | Marc Alexander | 2014-06-01 | 2 | -68/+3 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add $CP$ prefix to passwords that need to be converted | Marc Alexander | 2014-06-01 | 1 | -0/+75 |
| | | | | | | | | | | | | | | | | | | Also set user_pass_convert to 0 in the process of doing so. PHPBB3-12352 | ||||
| * | | [ticket/12352] Use $CP$ prefix for converting passwords in manager | Marc Alexander | 2014-06-01 | 1 | -12/+18 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Add passwords driver for passwords that should be converted | Marc Alexander | 2014-06-01 | 1 | -0/+50 |
| | | | | | | | | | | | | | | | | | | | | | This driver will only be used for getting the new $CP$ prefix that will signal that the hash is a legacy hash that needs to be converted. PHPBB3-12352 | ||||
| * | | [ticket/12352] Revert to db auth provider if default does not exist | Marc Alexander | 2014-06-01 | 2 | -3/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | This will make sure that we will not encounter a non-existing auth provider. We will revert to the default db auth provider if the one set in the config does not exist in our auth provider collection. PHPBB3-12352 | ||||
| * | | [ticket/12352] Mark salted md5 and phpass passwords driver as legacy | Marc Alexander | 2014-06-01 | 1 | -0/+8 |
| | | | | | | | | | | | | PHPBB3-12352 | ||||
| * | | [ticket/12352] Introduce user row to passwords check methods | Marc Alexander | 2014-06-01 | 4 | -5/+24 |
| | | | | | | | | | | | | | | | | | | | | | This will ensure that legacy hash types that might need the user row can properly check if the supplied password is correct. PHPBB3-12352 | ||||
| * | | [ticket/12352] Add legacy passwords driver for sha1 smf type passwords | Marc Alexander | 2014-06-01 | 3 | -0/+73 |
| |/ | | | | | | | PHPBB3-12352 | ||||
* | | [ticket/12508] Ignore extensions in migration_tips dev tool | Joas Schilling | 2014-06-10 | 1 | -0/+1 |
| | | | | | | | | PHPBB3-12508 | ||||
* | | [ticket/12508] Fix doc block | Joas Schilling | 2014-06-10 | 1 | -1/+3 |
| | | | | | | | | PHPBB3-12508 | ||||
* | | [ticket/12508] Add new line to separate the if and foreach better | Joas Schilling | 2014-06-10 | 1 | -0/+1 |
| | | | | | | | | PHPBB3-12508 | ||||
* | | [ticket/12508] Only take a list of names for set_extensions() | Joas Schilling | 2014-06-10 | 2 | -5/+13 |
| | | | | | | | | PHPBB3-12508 | ||||
* | | [ticket/12508] Fix class doc block | Joas Schilling | 2014-06-10 | 1 | -1/+1 |
| | | | | | | | | PHPBB3-12508 | ||||
* | | [ticket/12508] Move \phpbb\extension\finder to \phpbb\finder | Joas Schilling | 2014-06-10 | 5 | -22/+22 |
| | | | | | | | | PHPBB3-12508 | ||||
* | | [ticket/12508] Fix usages of the finder | Joas Schilling | 2014-06-10 | 1 | -2/+12 |
| | | | | | | | | PHPBB3-12508 | ||||
* | | [ticket/12508] Remove extension manager from finder | Joas Schilling | 2014-06-10 | 1 | -36/+25 |
| | | | | | | | | PHPBB3-12508 |