Skip to content

Commit ff3db55

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents d288ae5 + f78d06b commit ff3db55

File tree

551 files changed

+17102
-17833
lines changed

Some content is hidden

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

551 files changed

+17102
-17833
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
/_build
1+
/_build/doctrees
2+
/_build/html
23
*.pyc

.platform.app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ dependencies:
5252
hooks:
5353
build: |
5454
pip install git+https://github.com/fabpot/sphinx-php.git
55-
make html
55+
make -C _build html

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
language: python
22

3-
python: "2.7"
3+
python: 2.7
44

55
sudo: false
6-
76
cache:
8-
directories:
9-
- $HOME/.cache/pip
10-
- _build
7+
directories: [$HOME/.cache/pip]
118

129
install: pip install sphinx~=1.3.0 git+https://github.com/fabpot/sphinx-php.git
1310

14-
script: sphinx-build -nW -b html -d _build/doctrees . _build/html
11+
script: sphinx-build -nW -c _build/ -b html -d _build/doctrees . _build/html
1512

1613
branches:
1714
except:

Makefile renamed to _build/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
SPHINXOPTS =
66
SPHINXBUILD = sphinx-build
77
PAPER =
8-
BUILDDIR = _build
8+
BUILDDIR = .
99

1010
# Internal variables.
1111
PAPEROPT_a4 = -D latex_paper_size=a4
1212
PAPEROPT_letter = -D latex_paper_size=letter
13-
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
13+
ALLSPHINXOPTS = -c $(BUILDDIR) -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) ../
1414
# the i18n builder cannot share the environment and doctrees with the others
1515
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
1616

_theme/_templates/globaltoc.html renamed to _build/_theme/_templates/globaltoc.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<div class=submenu>
22
{% set menu = [
3-
('The Book', 'book/index'),
4-
('The Cookbook', 'cookbook/index'),
3+
('Home', 'index'),
54
('The Components', 'components/index'),
65
('The Best Practices', 'best_practices/index'),
76
('The Quick Tour', 'quick_tour/index'),
File renamed without changes.

conf.py renamed to _build/conf.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575

7676
# List of patterns, relative to source directory, that match files and
7777
# directories to ignore when looking for source files.
78-
exclude_patterns = ['_theme']
78+
exclude_patterns = ['_build']
7979

8080
# The reST default role (used for this markup: `text`) to use for all documents.
8181
#default_role = None
@@ -279,4 +279,3 @@
279279

280280
# Use PHP syntax highlighting in code examples by default
281281
highlight_language='php'
282-
File renamed without changes.

_build/redirection_map

Lines changed: 332 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

_includes/_rewrite_rule_tip.rst.inc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.. tip::
2+
3+
By using rewrite rules in your
4+
:doc:`web server configuration </setup/web_server_configuration>`,
5+
the ``index.php`` won't be needed and you will have beautiful, clean URLs
6+
(e.g. ``/show``).

assetic.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. caution::
22

33
Starting from Symfony 2.8, Assetic is no longer included by default in the
4-
Symfony Standard Edition. Refer to :doc:`this article </cookbook/assetic/asset_management>`
4+
Symfony Standard Edition. Refer to :doc:`this article </assetic/asset_management>`
55
to learn how to install and enable Assetic in your Symfony application.

cookbook/assetic/apply_to_option.rst renamed to assetic/apply_to_option.rst

Lines changed: 2 additions & 2 deletions

cookbook/assetic/asset_management.rst renamed to assetic/asset_management.rst

Lines changed: 19 additions & 19 deletions

cookbook/assetic/jpeg_optimize.rst renamed to assetic/jpeg_optimize.rst

Lines changed: 1 addition & 1 deletion

cookbook/assetic/php.rst renamed to assetic/php.rst

Lines changed: 1 addition & 1 deletion

cookbook/assetic/uglifyjs.rst renamed to assetic/uglifyjs.rst

Lines changed: 5 additions & 5 deletions

cookbook/assetic/yuicompressor.rst renamed to assetic/yuicompressor.rst

Lines changed: 3 additions & 3 deletions

best_practices/configuration.rst

Lines changed: 3 additions & 3 deletions

best_practices/controllers.rst

Lines changed: 1 addition & 1 deletion

best_practices/creating-the-project.rst

Lines changed: 5 additions & 5 deletions

0 commit comments

Comments
 (0)