aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/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-115-3/+98
| | | | | | | | | | | | | | 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-112-480/+518
| | | | | | | | 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] 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-241-28/+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-231-0/+548
| | | | | | | | | | 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-231-2/+9
| | | | PHPBB3-11912
* Merge pull request #1801 from nickvergessen/ticket/11948Nils Adermann2013-10-221-11/+10
|\ | | | | Ticket/11948 Extensions should be allowed to have more then 1 routing file
| * [ticket/11948] Allow resource importing for routingJoas Schilling2013-10-211-4/+3
| | | | | | | | 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
* | [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-211-1/+1
| | | | | | | | | | | | Optional method arguments should be after any mandatory ones. PHPBB3-11930
* | [ticket/11930] Use \phpbb\path_helper for avatar URLsMarc Alexander2013-10-173-3/+10
|/ | | | | | | This will ensure that avatars still properly display on extension pages supplied via app.php. PHPBB3-11930
* [ticket/11926] Fix plupload migration dependency.Andreas Fischer2013-10-161-1/+1
| | | | PHPBB3-11926
* Merge remote-tracking branch 'noxwizard/ticket/11919' into prep-release-3.1.0-a1Joas Schilling2013-10-151-2/+2
|\ | | | | | | | | * noxwizard/ticket/11919: [ticket/11919] Remove extra argument to notification manager's sql_fetchfield()
| * [ticket/11919] Remove extra argument to notification manager's sql_fetchfield()Patrick Webster2013-10-141-2/+2
| | | | | | | | PHPBB3-11919
* | [ticket/11918] Make sql_freeresult() consistent across all DB driversPatrick Webster2013-10-148-10/+11
|/ | | | PHPBB3-11918
* Merge pull request #1772 from bantu/feature/plupload/integrationNils Adermann2013-10-133-0/+407
|\ | | | | [ticket/10929] Integration of Plupload
| * [feature/plupload/integration] Integration of PluploadAndreas Fischer2013-10-113-0/+407
| | | | | | | | | | | | | | | | This commit is a highly-refactored and up-to-date version of Fyorl's work which was part of his Google Summer of Code 2012 project "Attachment Improvements". PHPBB3-10929
* | Merge pull request #1582 from bantu/feature/plupload/cronNils Adermann2013-10-131-0/+124
|\ \ | | | | | | [ticket/10929] Cron Job for Plupload Upload Directory Cleaning
| * | [feature/plupload/cron] NamespacificationAndreas Fischer2013-10-111-6/+8
| | | | | | | | | | | | PHPBB3-10929
| * | [feature/plupload/cron] Add cronjob for cleaning plupload temporary directory.Andreas Fischer2013-10-111-0/+122
| |/ | | | | | | PHPBB3-10929
* | Merge pull request #1766 from bantu/ticket/11621David King2013-10-133-17/+52
|\ \ | | | | | | [ticket/11621] Improve MySQL fulltext search indexes
| * | [ticket/11621] Add explanation to mysql_fulltext_drop.Andreas Fischer2013-10-131-0/+8
| | | | | | | | | | | | PHPBB3-11621
| * | [ticket/11621] Correct GPLv2 link in file header.Andreas Fischer2013-10-111-1/+1
| | | | | | | | | | | | PHPBB3-11621
| * | [ticket/11621] Put mysql_fulltext_drop into alpha1 migration.Andreas Fischer2013-10-111-0/+1
| | | | | | | | | | | | PHPBB3-11621
| * | Merge remote-tracking branch 'phpbb/develop' into ticket/11621Andreas Fischer2013-10-113-7/+80
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * phpbb/develop: [ticket/11867] Schema files are not created by create_schema_files.php [ticket/11905] 3.1.0-a1 Migration [ticket/11903] Speed up paging test [ticket/11703] Extend the correct migration class. [ticket/11874] Correct when $phpbb_root_path is appended to build_url() [ticket/11703] Also use empty() for T_JQUERY_LINK. [ticket/11703] Add effectively_installed(). [ticket/11703] Make jQuery CDN switch more generic. [ticket/11874] Fix tests [ticket/11874] Do not always prepend the web path; only replace phpbb_root_path [ticket/11345] Don't include scheme, so HTTPS is used where necessary. [ticket/11345] Wrap remote webfonts in S_ALLOW_CDN. [ticket/11345] Move css import to template [ticket/11345] Add Droid Sans as fallback font [ticket/11345] Change font for buttons
| * | | [ticket/11621] Use effectively_installed() instead.Andreas Fischer2013-10-111-5/+6
| | | | | | | | | | | | | | | | PHPBB3-11621
| * | | [ticket/11621] Add migration dropping MySQL search indexes.Andreas Fischer2013-10-111-0/+38
| | | | | | | | | | | | | | | | | | | | | | | | Possibly time-consuming index-regeneration will be left to the user. PHPBB3-11621
| * | | [ticket/11621] Remove unnecessary things around index_created() return value.Andreas Fischer2013-10-111-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11621
| * | | [ticket/11621] Swap columns of post_content index.Andreas Fischer2013-10-101-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11621
| * | | Merge remote-tracking branch 'phpbb/develop' into ticket/11621Andreas Fischer2013-10-10271-2706/+5125
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * phpbb/develop: (542 commits) [ticket/11901] Pass empty string as relative_url for non-local magic URL. [ticket/11898] Correct adm_relative_path created by installer [ticket/11898] Correct admin S_LOGIN_ACTION [ticket/11892] Fix undefined variables: to_forum_id & to_topic_id [ticket/11890] Fix untranslated string when deleting posts through MCP. [ticket/11895] Fix undefined $forum_id [ticket/10383] Update the results without the overlay popup. [ticket/10383] Make the content transitions smoother. [ticket/10383] AJAXify poll voting [ticket/11888] Update default search backend in namespaces migration [ticket/11739] Rename “Remember Me” login keys module [ticket/11893] Remove unnecessary <fieldset> causing a large font size [ticket/11894] Fix typo in "Delete post" option [ticket/11888] Use \phpbb\search\fulltext_native as search backend config [ticket/11608] Mark failed test as incomplete for mysql search backend [ticket/11608] Update search backend class names to namespaces [ticket/11608] Move markIncomplete to search backends test [ticket/11608] Rename base search test class file [ticket/11608] Remove suffix test from base class [ticket/11608] Mark postgres search not found test as incomplete ...
| * | | | [ticket/11621] Remove mysql extra indexesDhruv2013-08-261-16/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove post_text index as post_content index is sufficient to search post text. PHPBB3-11621
* | | | | [ticket/11908] Namespacify phpbb_auth_provider_oauth_service_exception.Andreas Fischer2013-10-111-1/+3
| |_|_|/ |/| | | | | | | | | | | PHPBB3-11908
* | | | [ticket/11906] Fix namespace issues in prune_notificationsJoas Schilling2013-10-111-4/+6
| |_|/ |/| | | | | | | | PHPBB3-11906
* | | Merge pull request #1767 from EXreaction/ticket/11905Nils Adermann2013-10-101-0/+42
|\ \ \ | | | | | | | | [ticket/11905] 3.1.0-a1 Migration
| * | | [ticket/11905] 3.1.0-a1 MigrationNathan Guse2013-10-101-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Created a migration tips develop tool to help find the migration tree tips so they can be copied to versions released. With this, A1 is the only current tree tip (it depends on all other migrations). PHPBB3-11905
* | | | Merge pull request #1764 from EXreaction/ticket/11874Nils Adermann2013-10-101-7/+5
|\ \ \ \ | |/ / / |/| | | [ticket/11874] Do not always prepend the web path; only replace phpbb_root_path
| * | | [ticket/11874] Do not always prepend the web path; only replace phpbb_root_pathNathan Guse2013-10-101-7/+5
| | |/ | |/| | | | | | | PHPBB3-11874
* | | [ticket/11703] Extend the correct migration class.Andreas Fischer2013-10-101-1/+1
| | | | | | | | | | | | PHPBB3-11703
* | | [ticket/11703] Add effectively_installed().Andreas Fischer2013-10-101-0/+5
| | | | | | | | | | | | PHPBB3-11703
* | | [ticket/11703] Make jQuery CDN switch more generic.Andreas Fischer2013-10-101-0/+28
|/ / | | | | | | | | | | | | Config variable: load_jquery_cdn -> allow_cdn Template variable: S_JQUERY_FALLBACK -> S_ALLOW_CDN PHPBB3-11703
* | [ticket/11895] Fix undefined $forum_idNathaniel Guse2013-10-081-1/+1
| | | | | | | | PHPBB3-11895
* | Merge pull request #1753 from dhruvgoel92/ticket/11888Nathan Guse2013-10-071-1/+1
|\ \ | | | | | | [ticket/11888] Use \phpbb\search\fulltext_native as search backend config