aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/HttpUtils/GetHttpUrlTest.php
Commit message (Collapse)AuthorAgeFilesLines
* Fixes #531 - Title retrieving is failing with multiple use caseArthurHoaro2016-05-031-0/+27
| | | | see https://github.com/shaarli/Shaarli/issues/531 for details
* Fixes #410 - Retrieve title fails in multiple casesArthurHoaro2016-01-111-13/+13
| | | | | | | | | * `get_http_url()` renamed to `get_http_response()`. * Use the same HTTP context to retrieve response headers and content. * Follow HTTP 301 and 302 redirections to retrieve the title (default max 3 redirections). * Add `LinkUtils` to extract titles and charset. * Try to retrieve charset from HTTP headers first (new), then HTML content. * Use mb_string to re-encode title if necessary.
* HTTP: move server URL functions to `HttpUtils.php`VirtualTam2015-09-141-0/+38
Relates to #333 Modifications: - refactor server URL utility functions - do not access global `$_SERVER` variables - add test coverage - improve readability - apply coding conventions Signed-off-by: VirtualTam <virtualtam@flibidi.net>