aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config
Commit message (Collapse)AuthorAgeFilesLines
...
* | | [ticket/14168] Move attachment service definitions to services_attachmentMarc Alexander2015-10-092-32/+32
| | | | | | | | | | | | PHPBB3-14168
* | | [ticket/14168] Move phpbb_unlink() into attachment delete classMarc Alexander2015-10-091-0/+2
| | | | | | | | | | | | PHPBB3-14168
* | | [ticket/14168] Add attachment resync classMarc Alexander2015-10-091-8/+15
| | | | | | | | | | | | PHPBB3-14168
* | | [ticket/14168] Move function for attachment deletion into classMarc Alexander2015-10-091-0/+8
| | | | | | | | | | | | PHPBB3-14168
* | | [ticket/14168] Add attachment upload classMarc Alexander2015-10-091-0/+15
|/ / | | | | | | PHPBB3-14168
* | [ticket/14220] Move route loading to servicesTristan Darricau2015-10-082-2/+57
| | | | | | | | PHPBB3-14220
* | Merge pull request #3857 from Nicofuma/ticket/14124Marc Alexander2015-10-073-0/+19
|\ \ | | | | | | | | | [ticket/14124] Automatically translate exceptions in CLI
| * | [ticket/14124] Automatically translate exceptions in CLITristan Darricau2015-08-253-0/+19
| | | | | | | | | | | | PHPBB3-14124
* | | Merge pull request #3904 from Zoddo/ticket/14162Marc Alexander2015-10-071-0/+24
|\ \ \ | | | | | | | | | | | | [ticket/14162] Add CLI commands to manage migrations
| * | | [ticket/14162] Add CLI command db:listZoddo2015-09-201-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This command lists all installed and uninstalled migrations. Note: The class is named `list_command`, because `list` is a reserved word and can't be used as class name in PHP. PHPBB3-14162
| * | | [ticket/14162] Add CLI command db:revertZoddo2015-09-201-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | This command allow to revert a migration from the CLI PHPBB3-14162
* | | | Merge pull request #3727 from marc1706/ticket/13904Tristan Darricau2015-09-163-2/+59
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13904] Refactor attachments functions into service * marc1706/ticket/13904: (66 commits) [ticket/13904] Use filespec's get_filesize instead of calling filesize() [ticket/13904] Set properties to protected where possible in filespec [ticket/13904] Fix tests after changes to factory [ticket/13904] Minor coding style fixes [ticket/13904] Add language entries for error messages in upload class [ticket/13904] Modify files for updated fast-image-size library [ticket/13904] Update composer.lock [ticket/13904] Improve code coverage [ticket/13904] Add unit tests for local upload type [ticket/13904] Minor coding style fixes [ticket/13904] Improve test coverage of base upload type class [ticket/13904] Improve test coverage of remote upload type [ticket/13904] Improve test coverage of form upload type [ticket/13904] Improve test coverage of filespec class [ticket/13904] Add back tests for retrieving floats [ticket/13904] Use ini_get() wrapper in file upload types [ticket/13904] Modify files for changes in ini wrapper [ticket/13904] Add bantu/ini-get-wrapper to composer.json [ticket/13904] Switch around constructor arguments [ticket/13904] Use \phpbb\php\ini class for ini_get() ...
| * | | | [ticket/13904] Improve test coverage of filespec classMarc Alexander2015-09-091-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Use ini_get() wrapper in file upload typesMarc Alexander2015-09-091-0/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Modify files for changes in ini wrapperMarc Alexander2015-09-091-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Switch around constructor argumentsMarc Alexander2015-09-091-2/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Use \phpbb\php\ini class for ini_get()Marc Alexander2015-09-091-0/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Split code up and pass root path to remote upload typeMarc Alexander2015-09-091-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Move remote upload to its own type classMarc Alexander2015-09-091-0/+8
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Fix minor issues and move local_upload to its own classMarc Alexander2015-09-091-0/+10
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Move form_upload to its own class and define type classesMarc Alexander2015-09-091-0/+7
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Remove phpbb_root_path global from filespec classMarc Alexander2015-09-091-0/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Pass request service to upload instead of using globalMarc Alexander2015-09-091-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Use language class instead of global user in filespecMarc Alexander2015-09-091-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Use language class instead of user global in uploadMarc Alexander2015-09-091-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Use factory instead of container and add factory to servicesMarc Alexander2015-09-091-0/+6
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Pass filesystem to upload avatar againMarc Alexander2015-09-091-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Remove unneeded parameters from avatars and fix testsMarc Alexander2015-09-091-2/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Load upload class using factoryMarc Alexander2015-09-091-0/+6
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Turn filespec into prototype and improve init methodsMarc Alexander2015-09-091-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Modify constructor to be instantiatable by containerMarc Alexander2015-09-091-0/+4
| | | | | | | | | | | | | | | | | | | | PHPBB3-13904
| * | | | [ticket/13904] Add filespec class to files classesMarc Alexander2015-09-091-0/+3
| |/ / / | | | | | | | | | | | | PHPBB3-13904
* | | | Merge branch '3.1.x'Marc Alexander2015-09-131-0/+7
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | [ticket/14156] Add Symfony ResponseListenerTristan Darricau2015-09-111-0/+7
| | | | | | | | | | | | PHPBB3-14156
* | | [ticket/14150] Update fast-image-size to newest versionMarc Alexander2015-09-081-1/+1
| | | | | | | | | | | | PHPBB3-14150
* | | Merge pull request #3470 from Nicofuma/ticket/13645Máté Bartus2015-08-286-13/+71
|\ \ \ | |_|/ |/| | [ticket/13645] Move the feeds to controllers
| * | [ticket/13645] Move the feeds to controllersNicofuma2015-08-236-13/+71
| | | | | | | | | | | | PHPBB3-13645
* | | Merge pull request #3652 from Elsensee/ticket/12143Tristan Darricau2015-08-231-0/+5
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12143] Make it possible to use translated group names for non-special groups * Elsensee/ticket/12143: [ticket/12143] Fix tests after rebase [ticket/12143] Avoid no output from get_group_name() [ticket/12143] Fix those tests [ticket/12143] Add some tests [ticket/12143] Oops, fixed array index [ticket/12143] Replace group name output [ticket/12143] Add group helper class to translate groupnames [ticket/12143] Add is_set method to language service
| * | [ticket/12143] Add group helper class to translate groupnamesOliver Schramm2015-08-051-0/+5
| | | | | | | | | | | | | | | | | | We can translate groupnames now even though these groups aren't special PHPBB3-12143
* | | Merge branch '3.1.x'Marc Alexander2015-08-081-0/+1
|\ \ \ | | |/ | |/| | | | | | | | | | Conflicts: phpBB/phpbb/avatar/driver/upload.php tests/avatar/manager_test.php
| * | Merge pull request #3738 from javiexin/ticket/13981Marc Alexander2015-08-081-0/+1
| |\ \ | | | | | | | | | | | | [ticket/13981] Add events to capture avatar deletion or overwriting
| | * | [ticket/13981] Add events to capture avatar deletion or overwritingjaviexin2015-07-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | An event to capture overwriting, and another to capture deletion. Includes better error processing. Replaced global by dependency injection. PHPBB3-13981
* | | | Merge remote-tracking branch 'Nicofuma/ticket/12692'Marc Alexander2015-08-071-0/+27
|\ \ \ \ | |_|_|/ |/| | |
| * | | [ticket/12692] Fix languages vars and services orderTristan Darricau2015-07-091-9/+9
| | | | | | | | | | | | | | | | PHPBB3-12692
| * | | [ticket/12692] Move the language strings to cli.phpTristan Darricau2015-07-091-2/+2
| | | | | | | | | | | | | | | | PHPBB3-12692
| * | | [ticket/12692] Add a console command to manage the thumbnailsTristan Darricau2015-07-091-0/+27
| | | | | | | | | | | | | | | | PHPBB3-12692
* | | | Merge pull request #3698 from s9e/ticket/13935Tristan Darricau2015-08-051-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13935] Allow more admin-configurable schemes in post links * s9e/ticket/13935: [ticket/13935] Removed cache invalidation from acp_board [ticket/13935] Removed UI [ticket/13935] Allow more admin-configurable schemes in post links
| * | | | [ticket/13935] Allow more admin-configurable schemes in post linksJoshyPHP2015-07-151-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-13935
* | | | | [ticket/14052] Translate installer commandsTristan Darricau2015-07-271-0/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-14052
* | | | | Merge pull request #3514 from CHItA/ticket/13740Tristan Darricau2015-07-2721-29/+574
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13740] Refactoring installer * CHItA/ticket/13740: (75 commits) [ticket/13740] Reduce number of references in nav provider [ticket/13740] Move handle_language_select calls to the controllers [ticket/13740] Fix infinite config.php check loop [ticket/13740] Move default data settings out of constructors [ticket/13740] Deduplicate container builder's checks [ticket/13740] Use JSON for installer config [ticket/13740] Fix comment [ticket/13740] Use language service in console application [ticket/13740] Fix CS in compatibilty_globals.php [ticket/13740] Fix message element creation in JS [ticket/13740] Replace more spaces with tabs [ticket/13740] Fix CS [ticket/13740] Filter basic directory change attempts in lang change [ticket/13740] Use tabs instead of spaces in JS file [ticket/13740] Add success message when install finished [ticket/13740] Fix $script_path in obtain_data [ticket/13740] Fix is_phpbb_installed() method [ticket/13740] Login admin when install finished [ticket/13740] Enhance server output buffer bypass [ticket/13740] Secure installer config against corrupted config data ...