3c4fa66c | 15-Dec-2018 |
Kalle Sommer Nielsen |
Use closures over create_function() |
bae5fa6c | 14-Dec-2018 |
Peter Kokot |
Trim trailing whitespaces |
9b248f9e | 10-Dec-2018 |
Peter Kokot |
Refactor get_pseudo_packages() to repository class Changes: - get_pseudo_packages() function is moved to its own repository class. - Database::queryAll() removed since it is not used
Refactor get_pseudo_packages() to repository class Changes: - get_pseudo_packages() function is moved to its own repository class. - Database::queryAll() removed since it is not used and the method arguments don't match the number of used arguments anymore - Project types configuration is moved to repository class for now. - Some unused items removed - Some template changes and show_project_options() helper function integrated in the view layer directly since it is used in a simplified way.
show more ...
|
01735922 | 11-Dec-2018 |
Peter Kokot |
Add contributing procedure |
001a1dbe | 10-Dec-2018 |
Peter Kokot |
Add directory structure to README |
be3c259e | 10-Dec-2018 |
Peter Kokot |
Add .editorconfig file This patch adds initial EditorConfig [1] file with sensible defaults specific for future PHP code, HTML templates, and possible other file types. It helps form
Add .editorconfig file This patch adds initial EditorConfig [1] file with sensible defaults specific for future PHP code, HTML templates, and possible other file types. It helps formating code and new files in editors and IDEs that utilize EditorConfig settings. Current state of EditorConfig provides setting identation style and level, new lines types, files encodings, and similar basic files and code configurations. [1] https://editorconfig.org
show more ...
|
3f4ad27d | 09-Dec-2018 |
Peter Kokot |
Add type declarations to Captcha class |
4d51010f | 09-Dec-2018 |
Peter Kokot |
Simplify GitHub pull request form The form for attaching pull requests doesn't need to upload files. |
8ab9a1d1 | 05-Dec-2018 |
Peter Kokot |
Refactor patches uploading This patch moves patches uploading functionality from the outdated HTTP_Upload package to a dedicated service class in the app. Additional changes in
Refactor patches uploading This patch moves patches uploading functionality from the outdated HTTP_Upload package to a dedicated service class in the app. Additional changes in this context: - Functionality concerning retrieving patches data from database has been moved to a separate repository classes. - Some missed bugs fixed when uploading patches and no developer info were recorded. - Obsoleting patches functionality is now working again. - Added a simple unit test.
show more ...
|
487a0bc2 | 05-Dec-2018 |
Peter Kokot |
Add mbstring extension to required extensions |
44706d2e | 05-Dec-2018 |
Peter Kokot |
Refactor pull requests service class Changes: - Class moved to src under App namespace - Code refactored into repository class and GitHub client for managing pull requests
Refactor pull requests service class Changes: - Class moved to src under App namespace - Code refactored into repository class and GitHub client for managing pull requests - When new pull request is attached to a bug report the info comment is also added to bug activity as is practice with other activities already.
show more ...
|
73062503 | 05-Dec-2018 |
Peter Kokot |
Refactor database classes |
3f343755 | 05-Dec-2018 |
Peter Kokot |
Fix typo |
d337e731 | 05-Dec-2018 |
Peter Kokot |
Add dual PSR-4 compatible classes autoloader This patch is a workaround until Composer installation step can be used in production bugs.php.net. Once Composer can be added to the deploym
Add dual PSR-4 compatible classes autoloader This patch is a workaround until Composer installation step can be used in production bugs.php.net. Once Composer can be added to the deployment step together with rsync this can be simplified and only Composer's autoload.php will be used.
show more ...
|
b4891d7b | 05-Dec-2018 |
Peter Kokot |
Enable displaying errors for local development environments |
a5c3a8b7 | 05-Dec-2018 |
Peter Kokot |
Refactor error handling in quick fixing link This patch refactors error handling from PEAR error to exceptions. Error handling has been refactored via 23298a123688443276f60143c1261f8
Refactor error handling in quick fixing link This patch refactors error handling from PEAR error to exceptions. Error handling has been refactored via 23298a123688443276f60143c1261f85a85873fe.
show more ...
|
99094484 | 05-Dec-2018 |
Peter Kokot |
Remove PEAR errors usage from no-feedback cron job The error handling has been refactored via 23298a123688443276f60143c1261f85a85873fe. |
c8c85a57 | 05-Dec-2018 |
Peter Kokot |
Replace PEAR error handling with exceptions in pull requests |
26f5c264 | 05-Dec-2018 |
Peter Kokot |
Remove unused errors handler function handle_pear_errors() Function handle_pear_errors() has been made obsolete via 23298a123688443276f60143c1261f85a85873fe |
674023bd | 03-Dec-2018 |
Peter Kokot |
Convert UTF-8 with BOM to UTF-8 without BOM |
172d49ac | 03-Dec-2018 |
Peter Kokot |
Bump Composer dependencies Changes: - Add ext-fileinfo to required PHP extensions - composer update |
35218a28 | 03-Dec-2018 |
Peter Kokot |
Refactor numerical Captcha package into class The Text_CAPTCHA_Numeral can be integrated in the project source code instead of using a separate unmaintained dependency. This pat
Refactor numerical Captcha package into class The Text_CAPTCHA_Numeral can be integrated in the project source code instead of using a separate unmaintained dependency. This patch also adds a simple unit test.
show more ...
|
83d6860a | 03-Dec-2018 |
Niklas Keller |
Add Composer This patch adds initial Composer files and prepares the project for using Composer in development environment. Patch has been initially started via pull request at
Add Composer This patch adds initial Composer files and prepares the project for using Composer in development environment. Patch has been initially started via pull request at https://github.com/php/web-bugs/pull/27
show more ...
|
32466d71 | 02-Dec-2018 |
Peter Kokot |
Replace DIRECTORY_SEPARATOR with slash string The constant DIRECTORY_SEPARATOR is in the used cases not needed to work ok on Windows. PHP functions in these cases can handle normal slash
Replace DIRECTORY_SEPARATOR with slash string The constant DIRECTORY_SEPARATOR is in the used cases not needed to work ok on Windows. PHP functions in these cases can handle normal slash fine and this patch simplifies this a bit.
show more ...
|
017e87d8 | 02-Dec-2018 |
Peter Kokot |
Add methods and properties visibility |