Skip to content

Commit 9c802b3

Browse files
author
Joe Bennett
committed
Merge branch 'master' into 27345-lock-mongodb
2 parents 2f48e8a + f3d7488 commit 9c802b3

File tree

552 files changed

+17693
-14527
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

552 files changed

+17693
-14527
lines changed

.platform/routes.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.platform.app.yaml renamed to .symfony.cloud.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
name: symfonydocs
66

77
# The toolstack used to build the application.
8-
type: "php"
9-
10-
build:
11-
flavor: "composer"
8+
type: "python:3.7"
129

1310
# The configuration of app when it is exposed to the web.
1411
web:
@@ -53,7 +50,7 @@ hooks:
5350
build: |
5451
virtualenv .virtualenv
5552
. .virtualenv/bin/activate
56-
# Platform.sh currently sets PIP_USER=1.
53+
# SymfonyCloud currently sets PIP_USER=1.
5754
export PIP_USER=
5855
pip install pip==9.0.1 wheel==0.29.0
5956
pip install -r _build/.requirements.txt

.symfony/routes.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
https://{default}/:
2+
cache:
3+
cookies:
4+
- '*'
5+
default_ttl: 0
6+
enabled: true
7+
headers:
8+
- Accept
9+
- Accept-Language
10+
type: upstream
11+
upstream: symfonydocs:http
File renamed without changes.

Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM python:2-stretch as builder
2+
3+
WORKDIR /www
4+
5+
COPY ./_build/.requirements.txt _build/
6+
7+
RUN pip install pip==9.0.1 wheel==0.29.0 \
8+
&& pip install -r _build/.requirements.txt
9+
10+
COPY . /www
11+
12+
RUN make -C _build html
13+
14+
FROM nginx:latest
15+
16+
COPY --from=builder /www/_build/html /usr/share/nginx/html

README.markdown

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,32 @@ Contributing
77
------------
88

99
>**Note**
10-
>Unless you're documenting a feature that was introduced *after* Symfony 2.8
11-
>(e.g. in Symfony 3.4), all pull requests must be based off of the **2.8** branch,
10+
>Unless you're documenting a feature that was introduced *after* Symfony 3.4
11+
>(e.g. in Symfony 4.2), all pull requests must be based off of the **3.4** branch,
1212
>**not** the master or older branches.
1313
1414
We love contributors! For more information on how you can contribute to the
1515
Symfony documentation, please read
1616
[Contributing to the Documentation](https://symfony.com/doc/current/contributing/documentation/overview.html)
1717

18-
Platform.sh
19-
-----------
18+
SymfonyCloud
19+
------------
20+
21+
Pull requests are automatically built by [SymfonyCloud](https://symfony.com/cloud).
22+
23+
Docker
24+
------
25+
26+
You can build the doc locally with these commands:
27+
28+
```bash
29+
# build the image...
30+
$ docker build . -t symfony-docs
31+
32+
# ...and start the local web server
33+
# (if it's already in use, change the '8080' port by any other port)
34+
$ docker run --rm -p 8080:80 symfony-docs
35+
```
2036

21-
Pull requests are automatically built by [Platform.sh](https://platform.sh).
37+
You can now read the docs at http://127.0.0.1:8080 (if you use a virtual
38+
machine, browse its IP instead of localhost; e.g. `http://192.168.99.100:8080`).

_build/.requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Jinja2==2.9.6
66
MarkupSafe==1.0
77
Pygments==2.2.0
88
pytz==2017.2
9-
requests==2.12.5
9+
requests==2.20.0
1010
six==1.10.0
1111
snowballstemmer==1.2.1
1212
Sphinx==1.3.6

_build/redirection_map

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
/cookbook/console/commands_as_services /console/commands_as_services
120120
/cookbook/console/console_command /console
121121
/cookbook/console/index /console
122-
/cookbook/console/logging /console/logging
122+
/cookbook/console/logging /console
123123
/cookbook/console/request_context /console/request_context
124124
/cookbook/console/style /console/style
125125
/cookbook/console/usage /console
@@ -390,3 +390,26 @@
390390
/quick_tour/the_view /quick_tour/flex_recipes
391391
/service_container/service_locators /service_container/service_subscribers_locators
392392
/templating/overriding /bundles/override
393+
/security/custom_provider /security/user_provider
394+
/security/multiple_user_providers /security/user_provider
395+
/security/custom_password_authenticator /security/guard_authentication
396+
/security/api_key_authentication /security/guard_authentication
397+
/security/pre_authenticated /security/auth_providers
398+
/security/host_restriction /security/firewall_restriction
399+
/security/acl_advanced /security/acl
400+
/security/password_encoding /security
401+
/weblink /web_link
402+
/components/weblink /components/web_link
403+
/frontend/encore/installation-no-flex /frontend/encore/installation
404+
/http_cache/form_csrf_caching /security/csrf
405+
/console/logging /console
406+
/reference/forms/twig_reference /form/form_customization
407+
/form/rendering /form/form_customization
408+
/profiler/matchers /profiler
409+
/profiler/profiling_data /profiler
410+
/profiler/wdt_follow_ajax /profiler
411+
/security/entity_provider /security/user_provider
412+
/session/avoid_session_start /session
413+
/session/sessions_directory /session
414+
/frontend/encore/legacy-apps /frontend/encore/legacy-applications
415+
/configuration/external_parameters /configuration/environment_variables
-21.9 KB
Binary file not shown.

_images/components/messenger/overview.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)