aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_download.php
Commit message (Collapse)AuthorAgeFilesLines
...
* [feature/attach-dl] phpbb_filter_disallowed_extensions: Preserve array keys.Andreas Fischer2012-08-071-2/+2
| | | | PHPBB3-11042
* [feature/attach-dl] phpbb_check_attach_extensions: Get rid of pass-by-referenceAndreas Fischer2012-08-071-9/+8
| | | | PHPBB3-11042
* [feature/attach-dl] Added a function for checking allowed extensionsFyorl2012-08-041-0/+23
| | | | PHPBB3-11042
* [feature/attach-dl] Added function for incrementing download counterFyorl2012-08-041-0/+21
| | | | PHPBB3-11042
* Merge branch 'develop-olympus' into developOleg Pudeyev2012-02-111-1/+1
| | | | | | | | * develop-olympus: [ticket/10633] Stop leaking filename of attachments when thumbnail is requested Conflicts: phpBB/download/file.php
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-1/+1
| | | | PHPBB3-9916
* [feature/request-class] Adjust code base to do html decoding manuallyIgor Wiedler2011-08-181-1/+1
| | | | PHPBB3-9716
* [feature/request-class] Do not html escape user agent in header_filenameIgor Wiedler2011-08-181-1/+1
| | | | PHPBB3-9716
* Merge branch 'develop' into feature/request-classIgor Wiedler2011-08-181-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (157 commits) [ticket/10316] Resolve inconsistent move topic behavior [ticket/9297] Add network to class name of unit tests. [ticket/9297] Fix typo in localhost. [ticket/9297] Rename test class to reflect its contents. [ticket/9297] Adjust comment - IPv6 is needed for IPv6 connections to work. [ticket/9297] Fix markTestSkipped call in setUpBeforeClass. [ticket/9608] Remove use of references in topic_review [ticket/9297] Skip FTP PASV/EPSV test if FTP connection fails. [ticket/9297] Separate ipv4 and ipv6 tests into separate functions. [ticket/9297] Update copyright year of unit test file. [feature/template-engine] Delete _get_locator function. [feature/template-engine] Clean up template locator usage in bbcode. [ticket/9297] Make EPSV unit tests work without IPv6. [ticket/9297] Unit tests for ftp_fsock PASV and EPSV. [ticket/9297] Add support for Extended Passive Mode (EPSV) in ftp_fsock class. [ticket/10312] Un-check the shadow option while moving. [feature/template-engine] Need to call set_template on template. [feature/template-engine] Update installer for template engine changes. [feature/template-engine] Dependency inject locator into template. [feature/template-engine] Delete useless code from set_template. ... Conflicts: phpBB/includes/functions.php
| * [ticket/10258] Add HTML5 meta charset tagIgor Wiedler2011-07-291-0/+1
| | | | | | | | | | | | | | This allows knowing the charset when saving web pages to disk. Also, this is supported by all browsers. PHPBB3-10258
| * [ticket/10258] Remove the meta charset tagIgor Wiedler2011-07-121-1/+0
| | | | | | | | | | | | | | The charset tag is useless, because if a charset content-type header is present it takes precedence. And phpBB always sends such a header. PHPBB3-10258
| * [ticket/10258] Remove X-UA-Compatible and imagetoolbar meta tagsIgor Wiedler2011-07-101-1/+0
| | | | | | | | | | | | These meta tags are IE specific and do not validate as HTML5. PHPBB3-10258
| * [ticket/10258] Change the DOCTYPE to HTML5Igor Wiedler2011-07-091-2/+3
| | | | | | | | PHPBB3-10258
* | [feature/request-class] Add server(), header() and is_ajax() to requestIgor Wiedler2011-07-151-21/+18
|/ | | | | | | | | | | | Extend the request class with helpers for reading server vars (server()) and HTTP request headers (header()). Refactor the existing code base to make use of these helpers, make $_SERVER a deactivated super global. Also introduce an is_ajax() method, which checks the X-Requested-With header for the value 'XMLHttpRequest', which is sent by JavaScript libraries, such as jQuery. PHPBB3-9716
* Merge branch 'develop-olympus' into developAndreas Fischer2011-02-241-0/+3
| | | | | | | | | * develop-olympus: [ticket/10056] Corrected a typo in Firebird name. [ticket/10041] Use send_status_line more in download/file.php Conflicts: phpBB/download/file.php
* [ticket/9790] Support for lighttpd's X-Sendfile header for attachments.Andreas Fischer2011-01-181-15/+8
| | | | PHPBB3-9790
* [ticket/9790] Support for nginx's X-Accel-Redirect header for attachments.Andreas Fischer2011-01-171-0/+10
| | | | PHPBB3-9790
* [ticket/9790] Always call file_gc(false) before sending the file.Andreas Fischer2011-01-171-3/+4
| | | | | | This also unloads the cache before the file is send. PHPBB3-9790
* [ticket/9790] Add $exit parameter to file_gc().Andreas Fischer2011-01-171-2/+15
| | | | PHPBB3-9790
* [ticket/9627] Prefix function names with 'phpbb_'.Andreas Fischer2010-10-231-6/+6
| | | | PHPBB3-9627
* [ticket/9627] Split http_range_request() into several functions.Andreas Fischer2010-10-231-31/+50
| | | | | | | Split http_range_request() into several functions for better reusability and to allow some unit testing. PHPBB3-9627
* [ticket/9627] Make sure range request reads till the end of the file.Andreas Fischer2010-10-231-0/+6
| | | | PHPBB3-9627
* [ticket/9627] Make use of 'static' since the function is called more than onceAndreas Fischer2010-10-231-9/+28
| | | | PHPBB3-9627
* [ticket/9627] Make sure the database record for the filesize is correct.Andreas Fischer2010-10-231-0/+10
| | | | PHPBB3-9627
* [ticket/9627] Support for HTTP range requests in download/file.phpAndreas Fischer2010-10-231-0/+114
| | | | | | | Initial draft of "resume support" for attachments. This should allow users to resume partially downloaded attachments. PHPBB3-9627
* [ticket/9792] Move function definitions out of download/file.phpAndreas Fischer2010-08-301-0/+409
Move functions defined in download/file.php out to includes/functions_download.php so they can be properly reused and unit tested. PHPBB3-9792