aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [feature/avatars] Add allow_avatar_gravatar to schema_data.sqlMarc Alexander2012-11-221-0/+1
| | | | PHPBB3-10018
* [feature/avatars] Remove duplicate form enctypeMarc Alexander2012-11-221-1/+1
| | | | PHPBB3-10018
* [feature/avatars] Remove obsolete functions from functions_user.phpMarc Alexander2012-11-221-466/+0
| | | | | | The removed functions are no longer needed due to the new avatar system. PHPBB3-10018
* [feature/avatars] Add support for modularized avatars to ucp groupsMarc Alexander2012-11-225-160/+125
| | | | | | | This seems to be the last component where the new avatars system was still missing. PHPBB3-10018
* [feature/avatars] Use RecursiveDirectoryIterator for gallery avatarMarc Alexander2012-11-211-33/+21
| | | | | | | RecursiveDirectoryIterator is now used for populating the avatar list array of the gallery avatar. PHPBB3-10018
* [feature/avatars] Get rid of array_keys() in gallery avatarMarc Alexander2012-11-211-3/+6
| | | | PHPBB3-10018
* [feature/avatars] Use isset() instead of in_array()Marc Alexander2012-11-211-2/+2
| | | | PHPBB3-10018
* [feature/avatars] Use in_array() and fix tabbingMarc Alexander2012-11-211-4/+4
| | | | PHPBB3-10018
* [feature/avatars] Move avatar specific settings to driversMarc Alexander2012-11-217-9/+76
| | | | PHPBB3-10018
* [feature/avatars] Check if gravatar is within min/max width/heightMarc Alexander2012-11-211-0/+18
| | | | PHPBB3-10018
* [feature/avatars] Use constant for URL and fix usage of getimagesizeMarc Alexander2012-11-211-16/+39
| | | | | | | | We now use a constant for the gravatar URL. Additionally the usage of getimagesize() was reduced. It should only be run if the user didn't specify both the width and height of the avatar. PHPBB3-10018
* [feature/avatars] Use protected instead of privateMarc Alexander2012-11-194-12/+12
| | | | PHPBB3-10018
* [feature/avatars] Fix the docs and small naming fixesMarc Alexander2012-11-197-20/+71
| | | | PHPBB3-10018
* [feature/avatars] Use https for gravatarMarc Alexander2012-11-191-3/+2
| | | | PHPBB3-10018
* [feature/avatars] Miscellaenous template fixesMarc Alexander2012-11-183-4/+7
| | | | PHPBB3-10018
* [feature/avatars] Fix local and upload avatar in the ACPMarc Alexander2012-11-183-7/+7
| | | | PHPBB3-10018
* [feature/avatars] Handle deletion of avatarsMarc Alexander2012-11-186-4/+19
| | | | | | Previously this wasn't handled correctly if at all. PHPBB3-10018
* [feature/avatars] Add subsilver2 supportMarc Alexander2012-11-186-54/+101
| | | | | | This implementation might not be perfect though. PHPBB3-10018
* [feature/avatars] Add missing assign_block_vars() for avatar optionsMarc Alexander2012-11-181-0/+4
| | | | | | This is needed for selecting the gallery avatar while using subsilver2. PHPBB3-10018
* [feature/avatars] Use request class in upload avatarMarc Alexander2012-11-171-1/+2
| | | | PHPBB3-10018
* [feature/avatars] Small fixes after transition to service containersMarc Alexander2012-11-172-2/+2
| | | | PHPBB3-10018
* [feature/avatars] Fix acp front-end of user and group avatarsMarc Alexander2012-11-177-80/+51
| | | | | | Due to the changes to the avatar manager etc. these had to be updated. PHPBB3-10018
* [feature/avatars] Add missing language variables for avatarsMarc Alexander2012-11-164-6/+21
| | | | PHPBB3-10018
* [feature/avatars] Check for gravatar when checking the avatar module_authMarc Alexander2012-11-162-1/+9
| | | | PHPBB3-10018
* [feature/avatars] Add gravatar to avatar settingsMarc Alexander2012-11-162-0/+2
| | | | PHPBB3-10018
* [feature/avatars] Use correct names of input fieldsMarc Alexander2012-11-163-5/+5
| | | | | | | | | | | The name of the avatar input fields seem to have been copied from the local avatar (gallery avatar). Since the input fields have different names in the template files of the remote and gravatar avatars this will not properly default to the entered values. Additionally, the focused driver wasn't correctly filtered causing use to always default to no avatar. PHPBB3-10018
* [feature/avatars] Shorten avatar driver's class nameMarc Alexander2012-11-168-18/+18
| | | | | | | | The addition of "core_" that was used until now would require additional avatar drivers (e.g. in extensions) to also include that in their class name which would be incorrect. PHPBB3-10018
* [feature/avatars] Shorten needed language variable for avatar titleMarc Alexander2012-11-161-4/+5
| | | | PHPBB3-10018
* [feature/avatars] Add service containers for avatarsMarc Alexander2012-11-1510-53/+122
| | | | PHPBB3-10018
* [feature/avatars] Add support for custom avatar HTML codeMarc Alexander2012-11-143-3/+3
| | | | PHPBB3-10018
* [feature/avatars] Add barebone gravatar driverMarc Alexander2012-11-132-0/+159
| | | | PHPBB3-10018
* [feature/avatars] fix 'user_avatar_type' in database updaterMarc Alexander2012-11-131-4/+2
| | | | PHPBB3-10018
* [feature/avatars] Fix coding guidelines infractionsMarc Alexander2012-11-123-5/+12
|
* [feature/avatars] Replace colon usage with {L_COLON}Marc Alexander2012-11-128-12/+12
| | | | PHPBB3-10018
* [feature/avatars] add missing html closing tags and fix tabbingMarc Alexander2012-11-122-4/+6
| | | | PHPBB3-10018
* Merge branch 'feature/avatars' of https://github.com/igorw/phpbb3 into ↵Marc Alexander2012-11-1240-417/+1485
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | feature/avatars Conflicts: phpBB/adm/style/acp_groups.html phpBB/adm/style/acp_users_avatar.html phpBB/includes/acp/acp_groups.php phpBB/includes/acp/acp_users.php phpBB/includes/functions_display.php phpBB/install/database_update.php phpBB/install/schemas/mssql_schema.sql phpBB/styles/prosilver/template/ucp_avatar_options.html
| * Merge branch 'develop' into feature/avatarsIgor Wiedler2012-07-21179-720/+3779
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (201 commits) [feature/new-tz-handling] Don't use global user but make it a parameter [feature/new-tz-handling] Fix size of suggestion button in chrome [feature/new-tz-handling] Fall back to UTC, if the timezone is invalid [feature/new-tz-handling] Add previous selected value to validation if valid [feature/new-tz-handling] Display suggestion when a different value is selected [ticket/10998] Add border-radius to forum rules block - prosilver [feature/new-tz-handling] Remove additional marking of selected items [feature/new-tz-handling] Move update helper function to new class [feature/new-tz-handling] Fix unit test [feature/new-tz-handling] Delete old variable which is not used anymore [feature/new-tz-handling] Rename $user->tz back to $user->timezone [feature/pagination-as-list] New parameter for name of start var [feature/pagination-as-list] Updates for nils comments [feature/pagination-as-list] Rename and deprecate functions [feature/pagination-as-list] Various fixes and improvements [ticket/10968] Render pagination within the template [feature/new-tz-handling] Remove "timezone might be numeric" [feature/new-tz-handling] Add function to update the timezone [feature/new-tz-handling] Correctly update user and board timezones on update [ticket/10996] Use correct DBMS name in Travis config for PostgreSQL ...
| * | [feature/avatars] Rewrite drivers to use full class nameIgor Wiedler2012-06-279-38/+68
| | | | | | | | | | | | | | | | | | | | | | | | * Use full driver class name as avatar_type value * Move avatar drivers to core namespace * Make avatars installable through extensions PHPBB3-10018
| * | [feature/avatars] Fixup avatars.js rewriteIgor Wiedler2012-06-272-4/+4
| | | | | | | | | | | | PHPBB3-10018
| * | [feature/avatars] Add self-invoking closure around avatars.jsIgor Wiedler2012-06-272-0/+12
| | | | | | | | | | | | PHPBB3-10018
| * | [feature/avatars] Rewrite avatars event handler to use jQueryIgor Wiedler2012-06-272-24/+8
| | | | | | | | | | | | PHPBB3-10018
| * | [feature/avatars] Move avatars JavaScript code to external JS fileIgor Wiedler2012-06-275-64/+40
| | | | | | | | | | | | PHPBB3-10018
| * | [feature/avatars] Remove empty script tagIgor Wiedler2012-06-271-3/+0
| | | | | | | | | | | | PHPBB3-10018
| * | [feature/avatars] Remove unneeded argument for driver prepare_form()Igor Wiedler2012-06-274-7/+7
| | | | | | | | | | | | PHPBB3-10018
| * | [feature/avatars] Fix error in avatar_manager::clean_rowIgor Wiedler2012-06-271-1/+1
| | | | | | | | | | | | PHPBB3-10018
| * | Merge remote-tracking branch 'upstream/develop' into feature/avatarsIgor Wiedler2012-06-27254-1467/+2812
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (255 commits) [ticket/10935] Limit number of PM rules per user to 5000 [ticket/10801] Fixed quickmod tools. [ticket/9551] uncomment line and change length to 255 [ticket/10925] Clarify installation requirements for SQLite [ticket/10938] Serve subforum listing on forumlist from template loop [ticket/10640] Change subject length in mcp in subsilver [ticket/10640] Change subject length in MCP [ticket/10640] Do not change default value of truncate_string() [ticket/10640] Change maximum subject length [ticket/10936] remove PCRE and mbstring support check [ticket/10936] fix language key [ticket/10829] Delete T_STYLESHEET_NAME - no longer used. [ticket/10829] $style_name -> $style_path in style class. [ticket/10743] Renaming user->theme [ticket/10743] Changing obtain_cfg_items [ticket/10882] Fix test name - oops. [ticket/10931] Apply strtolower() correctly, i.e. not on false. [ticket/10931] Also test get_bytes() and get_string() with false. [ticket/10931] Make to_numeric function globally available. [ticket/10932] Use included composer.phar in build process ... Conflicts: phpBB/includes/mcp/mcp_warn.php phpBB/install/database_update.php phpBB/styles/prosilver/template/ucp_avatar_options.html
| * | | [feature/avatars] Fix clean_row regex, thanks to chrisIgor Wiedler2012-04-081-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Do not assign in an if statementIgor Wiedler2012-04-081-1/+2
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Update avatars in database_updateIgor Wiedler2012-04-082-59/+35
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Simplify clean_row, move it to avatar managerIgor Wiedler2012-04-087-57/+24
| | | | | | | | | | | | | | | | PHPBB3-10018