aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/ucp_avatar_options.html
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12822] Remove "None" option from avatar select boxesMarc Alexander2014-08-071-1/+0
| | | | | | | This option is just used for deleting avatars for which we already have a checkbox. PHPBB3-12822
* [ticket/12462] Do not use string "None" for different optionsJoas Schilling2014-06-251-1/+1
| | | | | | ... it limits translations. PHPBB3-12462
* [ticket/9388] Use "togglable" instead of "toggable"Cesar G2014-05-091-1/+1
| | | | PHPBB3-9388
* [ticket/9388] Use the new toggle function for the avatar type <select>.Cesar G2014-05-081-4/+2
| | | | PHPBB3-9388
* [feature/twig] INCLUDEJS behavior now supports local relative pathsNathaniel Guse2013-07-021-1/+1
| | | | | | | | | This was done because T_TEMPLATE_PATH is not always correct for js files (e.g. the inheriting style does not include these). Now we use the Twig Loader to find the correct file to link to (most specific file first, then parent styles). Also allows using @namespace convention PHPBB3-11598
* [feature/twig] Changing INCLUDEJS behavior slightlyNathaniel Guse2013-07-011-1/+1
| | | | | | | Automatically parsing inline variables the same way it is done for INCLUDE, INCLUDEPHP PHPBB3-11598
* [feature/twig] Changing INCLUDEJS behaviorNathan Guse2013-06-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | Was: <!-- INCLUDEJS template/foo.js --> Now: <!-- INCLUDEJS T_TEMPLATE_PATH ~ '/foo.js' --> Reasons for this: 1. INCLUDEJS is 3.1-dev only 2. INCLUDEJS has odd behavior to begin with (arbitrary setting root path to styles/name/ directory) 3. INCLUDEJS could not include files from outside directories or anywhere else 4. It was easier to change INCLUDEJS behavior to something more flexible and useful than hack around it to make it work as it was with Twig. PHPBB3-11598
* [feature/avatars] Remove unnecessary abbreviationsMarc Alexander2012-11-251-3/+3
| | | | PHPBB3-10018
* [feature/avatars] Add support for modularized avatars to ucp groupsMarc Alexander2012-11-221-0/+2
| | | | | | | This seems to be the last component where the new avatars system was still missing. PHPBB3-10018
* [feature/avatars] Handle deletion of avatarsMarc Alexander2012-11-181-0/+1
| | | | | | Previously this wasn't handled correctly if at all. PHPBB3-10018
* [feature/avatars] Add missing language variables for avatarsMarc Alexander2012-11-161-3/+3
| | | | PHPBB3-10018
* [feature/avatars] add missing html closing tags and fix tabbingMarc Alexander2012-11-121-0/+1
| | | | PHPBB3-10018
* Merge branch 'feature/avatars' of https://github.com/igorw/phpbb3 into ↵Marc Alexander2012-11-121-54/+30
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * [feature/avatars] Move avatars JavaScript code to external JS fileIgor Wiedler2012-06-271-22/+2
| | | | | | | | PHPBB3-10018
| * [feature/avatars] Remove empty script tagIgor Wiedler2012-06-271-3/+0
| | | | | | | | PHPBB3-10018
| * Merge remote-tracking branch 'upstream/develop' into feature/avatarsIgor Wiedler2012-06-271-2/+2
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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] Rework UCP to be simpler/more consistentCullen Walsh2012-03-181-5/+44
| | | | | | | | | | | | | | | | | | | | | | | | Redesigning the UCP avatar page to use javascript to make use less confusing. This design is also more easily transfered to the ACP for group avatars, which will give better consistency in the long run. PHPBB3-10018
| * | [feature/avatars] Support proper avatar deletion, stub ACPCullen Walsh2012-03-181-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fixing avatar deletion in the UCP and ACP, and stubbing the ACP configuration page. I'll admit I kind of got caught carried away, so this really should be a couple separate commits. PHPBB3-10018
| * | [feature/avatars] Implement UCP remote/local avatarsCullen Walsh2012-03-181-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | Implementing selection logic for gallery and remote avatars. Modified some of the driver interfaces to make things work nicer also. Upload functionality will be in the next commit. PHPBB3-10018
| * | [feature/avatars] UCP Avatar InterfaceCullen Walsh2012-03-181-44/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | This stubs out the avatar form fields and how form processing will occur. Form processing is not yet implemented, but shouldn't be too hard. After this I will refactor/duplicate some of the logic for the ACP. PHPBB3-10018
* | | [ticket/10780] Replace colon usage in template output with {L_COLON}Nathan Guse2012-11-101-6/+6
| |/ |/| | | | | | | | | | | Replace all the instances (I could find) where the colon is displayed to the user with {L_COLON} so it can be localised. PHPBB3-10780
* | [ticket/10734] Removed all the unnecessary corner classesShibu Lijack2012-04-021-4/+4
|/ | | | | | Removed the corner span classes from all the template and theme files. PHPBB-10734
* Bug #52495 - [Fix] Replace hard coded "px" with translated language-string.Joas Schilling2010-01-251-2/+2
| | | | | | | Authorised by: bantu git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10441 89ea8834-ac86-4346-8a33-228a782c2dd0
* Feature Bug #45375 - Add option to disable remote upload avatarsJoas Schilling2009-07-141-6/+6
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9757 89ea8834-ac86-4346-8a33-228a782c2dd0
* Cleaning up.Henry Sudhof2007-05-161-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7602 89ea8834-ac86-4346-8a33-228a782c2dd0
* #11008Henry Sudhof2007-05-161-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@7601 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fixing a bug nobody reported so far: the avatar gallery displayed a faulty ↵Henry Sudhof2007-05-071-1/+1
| | | | | | | | | message about avatars being disabled. Also fixes #10531 (let's pretend that it isn't a new feature. It's neat, though) git-svn-id: file:///svn/phpbb/trunk@7495 89ea8834-ac86-4346-8a33-228a782c2dd0
* checking in some fixes. ;) Most of them are really minor, including:Meik Sievertsen2007-04-261-0/+3
| | | | | | | | - correctly enter report notification into db - fix double-quote pm issue git-svn-id: file:///svn/phpbb/trunk@7409 89ea8834-ac86-4346-8a33-228a782c2dd0
* say hello to prosilver... YAAAYEEEEMeik Sievertsen2007-04-011-0/+67
git-svn-id: file:///svn/phpbb/trunk@7260 89ea8834-ac86-4346-8a33-228a782c2dd0