aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11912] Remove obsolete $file_info from pluploadMarc Alexander2013-11-111-2/+0
| | | | PHPBB3-11912
* [ticket/11912] Introduce guesser priority to mimetype guessersMarc Alexander2013-11-116-3/+109
| | | | | | | | | | | | | | The mimetype guesser priority can now be set through the service definition. Mimetypes will be guessed from the guesser with the highest priority to the one with the lowest priority. Standard priority types have been added to the service definition file. Any integer value can be used though. Standard mimetype guessers that do not have the methods get_priority and set_priority implemented, like the standard MimeTypeGuessers of symfony, will have the default priority with the value of 0. Lower priority guessers have values lower than 0 while high priority ones can be added with values higher than 0. PHPBB3-11912
* [ticket/11912] Add extension_guesser for guessing mimetype by extensionMarc Alexander2013-11-113-480/+523
| | | | | | | | The content_guesser now only guesses the mimetype with the function mime_content_type() while the guessing by extension is done using the extension_guesser. PHPBB3-11912
* [ticket/11912] Use lowercase names for guesser servicesMarc Alexander2013-10-241-2/+2
| | | | PHPBB3-11912
* [ticket/11912] Introduce guesser_interfaceMarc Alexander2013-10-242-6/+43
| | | | | | | This will contain proper documentation of the required methods if anyone would implement a newer guesser. PHPBB3-11912
* [ticket/11912] Supply filename to content_guesser for guessing on windowsMarc Alexander2013-10-243-7/+15
| | | | | | | | | The filename of the files sent to the guesser by plupload do not contain the file extension. Therefore, it's impossible to guess the mimetype if only the content_guesser is available and the function mime_content_type() doesn't exist. By supplying the filename we can circumvent this issue. PHPBB3-11912
* [ticket/11912] Remove typo in content_guesserMarc Alexander2013-10-241-1/+1
| | | | PHPBB3-11912
* [ŧicket/11912] Get rid of obsolete variables in content_guesserMarc Alexander2013-10-242-31/+1
| | | | PHPBB3-11912
* [ticket/11912] Improve extension map in content_guesserMarc Alexander2013-10-241-90/+91
| | | | PHPBB3-11912
* [ticket/11912] Add content_guesserMarc Alexander2013-10-232-0/+556
| | | | | | | | | | The content_guesser will try to use the function mime_content_type() if it's available. If that is not the case, the content_guesser will try to guess the mimetype using the file extension of the supplied file. Since this guesser will be registered after the other guessers, it will be only used if the other guessers are not available. PHPBB3-11912
* [ticket/11912] Add phpbb mimetype guesserMarc Alexander2013-10-231-0/+105
| | | | | | Mimetype guesser will be used as front-end file for mimetype guessing. PHPBB3-11912
* [ticket/11912] Integrate mimetype guesser with pluploadMarc Alexander2013-10-233-2/+33
| | | | PHPBB3-11912
* [ticket/11916] Remove files from hidden attach list after deletionMarc Alexander2013-10-231-20/+43
| | | | | | | | The hidden attachment_data list needs to be updated if a file got removed. This was not done until now and caused a general error after submitting a post if a file was removed after uploading it. PHPBB3-11916
* Merge pull request #1801 from nickvergessen/ticket/11948Nils Adermann2013-10-222-15/+14
|\ | | | | Ticket/11948 Extensions should be allowed to have more then 1 routing file
| * [ticket/11948] Allow resource importing for routingJoas Schilling2013-10-212-8/+7
| | | | | | | | PHPBB3-11948
| * [ticket/11948] Use basename and dirnameJoas Schilling2013-10-201-6/+2
| | | | | | | | PHPBB3-11948
| * [ticket/11948] Allow multiple routing files for extensionsJoas Schilling2013-10-191-9/+13
| | | | | | | | PHPBB3-11948
* | Merge remote-tracking branch 'marc1706/ticket/11930' into developAndreas Fischer2013-10-214-3/+15
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | * marc1706/ticket/11930: [ticket/11930] Update docblock of avatar driver constructor [ticket/11930] Modify order of properties to fit constructor method [ticket/11930] Move path_helper in front of optional cache argument [ticket/11930] Fix tests after adding phpbb\path_helper to avatar drivers [ticket/11930] Use \phpbb\path_helper for avatar URLs
| * | [ticket/11930] Update docblock of avatar driver constructorMarc Alexander2013-10-211-0/+1
| | | | | | | | | | | | PHPBB3-11930
| * | [ticket/11930] Modify order of properties to fit constructor methodMarc Alexander2013-10-211-7/+7
| | | | | | | | | | | | PHPBB3-11930
| * | [ticket/11930] Move path_helper in front of optional cache argumentMarc Alexander2013-10-212-5/+5
| | | | | | | | | | | | | | | | | | Optional method arguments should be after any mandatory ones. PHPBB3-11930
| * | [ticket/11930] Use \phpbb\path_helper for avatar URLsMarc Alexander2013-10-174-3/+14
| | | | | | | | | | | | | | | | | | | | | This will ensure that avatars still properly display on extension pages supplied via app.php. PHPBB3-11930
* | | Merge branch 'develop-olympus' into developNils Adermann2013-10-202-1/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/11951] Add MariaDB to platforms we test on. [ticket/11951] Add MariaDB to supported DBMSes in requirement section. Conflicts: phpBB/docs/INSTALL.html phpBB/docs/README.html
| * | | [ticket/11951] Add MariaDB to platforms we test on.Andreas Fischer2013-10-191-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11951
| * | | [ticket/11951] Add MariaDB to supported DBMSes in requirement section.Andreas Fischer2013-10-191-0/+1
| | | | | | | | | | | | | | | | PHPBB3-11951
| * | | Merge remote-tracking branch 'cyberalien/ticket/11879' into develop-olympusAndreas Fischer2013-10-021-1/+1
| |\ \ \ | | | | | | | | | | | | | | | | | | | | * cyberalien/ticket/11879: [ticket/11879] Replace .live() with .on()
| | * | | [ticket/11879] Replace .live() with .on()Vjacheslav Trushkin2013-10-021-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-11879
* | | | | [ticket/11936] Update color scheme of new no_avatar.gifMatt Friedman2013-10-203-0/+0
| | | | | | | | | | | | | | | | | | | | PHPBB3-11936
* | | | | [ticket/11936] Merge branch 'develop' into ticket/11936Matt Friedman2013-10-2032-188/+1394
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | PHPBB3-11936
| * \ \ \ \ Merge remote-tracking branch 'prototech/ticket/11939' into developAndreas Fischer2013-10-201-1/+1
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prototech/ticket/11939: [ticket/11939] Removed unneeded data attribute.
| | * | | | | [ticket/11939] Removed unneeded data attribute.callumacrae2013-10-171-1/+1
| | | |_|/ / | | |/| | | | | | | | | | | | | | | PHPBB3-11939
| * | | | | Merge remote-tracking branch 'prototech/ticket/11923' into developAndreas Fischer2013-10-201-3/+3
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prototech/ticket/11923: [ticket/11923] Attempt to translate errors only if user can change avatar.
| | * | | | | [ticket/11923] Attempt to translate errors only if user can change avatar.Cesar G2013-10-171-3/+3
| | |/ / / / | | | | | | | | | | | | | | | | | | PHPBB3-11923
| * | | | | Merge remote-tracking branch 'cyberalien/ticket/11945' into developAndreas Fischer2013-10-201-0/+6
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * cyberalien/ticket/11945: [ticket/11945] Change color for focused button
| | * | | | | [ticket/11945] Change color for focused buttonVjacheslav Trushkin2013-10-191-0/+6
| | |/ / / / | | | | | | | | | | | | | | | | | | PHPBB3-11945
| * | | | | Merge pull request #1719 from cyberalien/ticket/11552Nils Adermann2013-10-2028-178/+1373
| |\ \ \ \ \ | | | | | | | | | | | | | | Responsive design for prosilver
| | * | | | | [ticket/11552] Fix non-square avatars in notificationsVjacheslav Trushkin2013-10-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Old code was changing all avatars to square. This code will keep 50px height limit without changing aspect ratio. PHPBB3-11552
| | * | | | | [ticket/11552] Padding for lists with checkboxVjacheslav Trushkin2013-10-202-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] More responsive design adjustmentsVjacheslav Trushkin2013-10-202-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Adjustments for responsive post buttonsVjacheslav Trushkin2013-10-201-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Better responsive post buttonsVjacheslav Trushkin2013-10-204-2/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Fixing incorrect min-heightVjacheslav Trushkin2013-10-201-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Responsive design fixesVjacheslav Trushkin2013-10-202-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Adjustments for table headersVjacheslav Trushkin2013-10-202-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Responsive pollsVjacheslav Trushkin2013-10-201-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Tweaks to responsive navigationVjacheslav Trushkin2013-10-193-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Do not hide all links at onceVjacheslav Trushkin2013-10-193-5/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not hide some links as long as their is enough space to keep them out of dropdown menu PHPBB3-11552
| | * | | | | [ticket/11552] Fix online users list and popupsVjacheslav Trushkin2013-10-192-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11552
| | * | | | | [ticket/11552] Responsive member listVjacheslav Trushkin2013-10-199-53/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Responsive member list and better responsive tables PHPBB3-11552
| | * | | | | [ticket/11552] Responsive PM editorVjacheslav Trushkin2013-10-192-2/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Responsive PM editor, fix quickmod tools PHPBB3-11552