Skip to content

Commit 8f00174

Browse files
committed
Merge remote-tracking branch 'remotes/upstream/2.7' into 2.7
# Conflicts: # book/security.rst
2 parents 5c872f2 + 61efc58 commit 8f00174

File tree

357 files changed

+12987
-6176
lines changed

Some content is hidden

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

357 files changed

+12987
-6176
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/_build
2-
/_exts
2+
*.pyc

.gitmodules

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

.platform.app.yaml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# This file describes an application. You can have multiple applications
2+
# in the same project.
3+
4+
# The name of this app. Must be unique within a project.
5+
name: symfonydocs
6+
7+
# The toolstack used to build the application.
8+
type: "php"
9+
10+
build:
11+
flavor: "composer"
12+
13+
# The configuration of app when it is exposed to the web.
14+
web:
15+
# The public directory of the app, relative to its root.
16+
document_root: "/_build/html"
17+
index_files:
18+
- index.html
19+
whitelist:
20+
- \.html$
21+
- \.txt$
22+
23+
# CSS and Javascript.
24+
- \.css$
25+
- \.js$
26+
- \.hbs$
27+
28+
# image/* types.
29+
- \.gif$
30+
- \.png$
31+
- \.ico$
32+
- \.svgz?$
33+
34+
# fonts types.
35+
- \.ttf$
36+
- \.eot$
37+
- \.woff$
38+
- \.otf$
39+
40+
# robots.txt.
41+
- /robots\.txt$
42+
43+
# The size of the persistent disk of the application (in MB).
44+
disk: 512
45+
46+
# Build time dependencies.
47+
dependencies:
48+
python:
49+
sphinx: ">=1"
50+
51+
# The hooks that will be performed when the package is deployed.
52+
hooks:
53+
build: |
54+
pip install git+https://github.com/fabpot/sphinx-php.git
55+
make html

.platform/routes.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
http://www.{default}/:
2+
to: http://{default}/
3+
type: redirect
4+
http://{default}/:
5+
cache:
6+
cookies:
7+
- '*'
8+
default_ttl: 0
9+
enabled: true
10+
headers:
11+
- Accept
12+
- Accept-Language
13+
ssi:
14+
enabled: false
15+
type: upstream
16+
upstream: symfonydocs:php

.platform/services.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Keeping this file empty to not deploy unused services.

.travis.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
language: python
22

3-
python:
4-
- "2.7"
3+
python: "2.7"
54

65
sudo: false
76

8-
install:
9-
- "pip install -q -r requirements.txt --use-mirrors"
7+
cache:
8+
directories:
9+
- $HOME/.cache/pip
10+
- _build
11+
12+
install: pip install sphinx~=1.3 git+https://github.com/fabpot/sphinx-php.git
1013

1114
script: sphinx-build -nW -b html -d _build/doctrees . _build/html
1215

1316
branches:
1417
except:
1518
- github-comments
16-

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ Contributing
22
------------
33

44
We love contributors! For more information on how you can contribute to the
5-
Symfony documentation, please read [Contributing to the Documentation](http://symfony.com/doc/current/contributing/documentation/overview.html)
6-
and notice the [Pull Request Format](http://symfony.com/doc/current/contributing/documentation/overview.html#pull-request-format)
5+
Symfony documentation, please read [Contributing to the Documentation](https://symfony.com/doc/current/contributing/documentation/overview.html)
6+
and notice the [Pull Request Format](https://symfony.com/doc/current/contributing/documentation/overview.html#pull-request-format)
77
that helps us merge your pull requests faster!

README.markdown

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
Symfony Documentation
22
=====================
33

4-
This documentation is rendered online at http://symfony.com/doc/current/
4+
This documentation is rendered online at https://symfony.com/doc/current/
55

66
Contributing
77
------------
88

99
>**Note**
10-
>Unless you're documenting a feature that was introduced *after* Symfony 2.3
10+
>Unless you're documenting a feature that was introduced *after* Symfony 2.3
1111
>(e.g. in Symfony 2.4), all pull requests must be based off of the **2.3** 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
16-
[Contributing to the Documentation](http://symfony.com/doc/current/contributing/documentation/overview.html)
16+
[Contributing to the Documentation](https://symfony.com/doc/current/contributing/documentation/overview.html)
17+
18+
Platform.sh
19+
-----------
20+
21+
Pull requests are automatically built by [Platform.sh](https://platform.sh).

_exts

Lines changed: 0 additions & 1 deletion
This file was deleted.

_theme/_exts/symfonycom/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)