Skip to content

Commit 61cf5dc

Browse files
committed
Update links to ReadtheDocs
1 parent e60dd6b commit 61cf5dc

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See also the [GitHub releases page](https://github.com/FriendsOfSymfony/FOSHttpC
1010

1111
* Replaced hard coupling on Guzzle HTTP client with HTTPlug. You now need
1212
to explicitly specify a supported HTTP adapter in composer.json, see [installation instructions]
13-
(http://foshttpcache.readthedocs.org/en/stable/installation.html)
13+
(http://foshttpcache.readthedocs.io/en/stable/installation.html)
1414
* BC Break: Separated the HttpDispatcher from the proxy clients. All existing
1515
clients still use HTTP to send invalidation requests.
1616
* Added support and documentation for setting a custom TTL specifically for the
@@ -72,8 +72,8 @@ See also the [GitHub releases page](https://github.com/FriendsOfSymfony/FOSHttpC
7272
1.4.0
7373
-----
7474

75-
* Added symfony/http-kernel [HttpCache client](http://foshttpcache.readthedocs.org/en/stable/proxy-clients.html#symfony-client).
76-
* Added [SymfonyTestCase](http://foshttpcache.readthedocs.org/en/stable/testing-your-application.html#symfonytestcase).
75+
* Added symfony/http-kernel [HttpCache client](http://foshttpcache.readthedocs.io/en/stable/proxy-clients.html#symfony-client).
76+
* Added [SymfonyTestCase](http://foshttpcache.readthedocs.io/en/stable/testing-your-application.html#symfonytestcase).
7777
* Removed unneeded files from dist packages.
7878

7979
1.3.2
@@ -91,7 +91,7 @@ See also the [GitHub releases page](https://github.com/FriendsOfSymfony/FOSHttpC
9191
1.3.0
9292
-----
9393

94-
* Added [TagHandler](http://foshttpcache.readthedocs.org/en/stable/invalidation-handlers.html#tag-handler).
94+
* Added [TagHandler](http://foshttpcache.readthedocs.io/en/stable/invalidation-handlers.html#tag-handler).
9595
* It is no longer possible to change the event dispatcher of the
9696
CacheInvalidator once its instantiated. If you need a custom dispatcher, set
9797
it right after creating the invalidator instance.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@ Symfony-specific features to help with caching and caching proxies.
2323
Features
2424
--------
2525

26-
* Send [cache invalidation requests](http://foshttpcache.readthedocs.org/en/stable/cache-invalidator.html)
26+
* Send [cache invalidation requests](http://foshttpcache.readthedocs.io/en/stable/cache-invalidator.html)
2727
with minimal impact on performance.
2828
* Cache tagging abstraction, uses BAN with Varnish and allows tagging support for other caching proxies in the future.
29-
* Use the built-in support for [Varnish](http://foshttpcache.readthedocs.org/en/stable/varnish-configuration.html)
30-
3, 4 and 5, [NGINX](http://foshttpcache.readthedocs.org/en/stable/nginx-configuration.html), the
31-
[Symfony reverse proxy from the http-kernel component](http://foshttpcache.readthedocs.org/en/stable/symfony-cache-configuration.html)
29+
* Use the built-in support for [Varnish](http://foshttpcache.readthedocs.io/en/stable/varnish-configuration.html)
30+
3, 4 and 5, [NGINX](http://foshttpcache.readthedocs.io/en/stable/nginx-configuration.html), the
31+
[Symfony reverse proxy from the http-kernel component](http://foshttpcache.readthedocs.io/en/stable/symfony-cache-configuration.html)
3232
or easily implement your own caching proxy client.
33-
* [Test your application](http://foshttpcache.readthedocs.org/en/stable/testing-your-application.html)
33+
* [Test your application](http://foshttpcache.readthedocs.io/en/stable/testing-your-application.html)
3434
against your Varnish or NGINX setup.
3535
* This library is fully compatible with [HHVM](http://www.hhvm.com).
3636

3737
Documentation
3838
-------------
3939

40-
For more information, see [the documentation](http://foshttpcache.readthedocs.org/en/stable/).
40+
For more information, see [the documentation](http://foshttpcache.readthedocs.io/en/stable/).
4141

4242
License
4343
-------

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ Contents:
3434
testing-your-application
3535
contributing
3636

37-
.. _stable documentation: http://foshttpcache.readthedocs.org/en/stable/
37+
.. _stable documentation: http://foshttpcache.readthedocs.io/en/stable/

tests/Functional/ProxyClient/HttpDispatcherTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function testNetworkError()
3636
public function testClientError()
3737
{
3838
$requestFactory = MessageFactoryDiscovery::find();
39-
$dispatcher = new HttpDispatcher(['http://foshttpcache.readthedocs.org']);
39+
$dispatcher = new HttpDispatcher(['http://foshttpcache.readthedocs.io']);
4040
$dispatcher->invalidate($requestFactory->createRequest('GET', 'http://fos.test/this-url-should-not-exist'));
4141

4242
try {

0 commit comments

Comments
 (0)