Skip to content

[Cookbook] [Routing] Custom route loader #2338

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from 3 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b7b28c1
add some minor interpunction fixes for consistency
ricardclau Feb 5, 2013
0948780
Fixed highlighting issues in The Book
wouterj Feb 25, 2013
a0a755f
Added PR title prefixes
wouterj Feb 27, 2013
a4aead0
Added information about currency format
wouterj Mar 4, 2013
432f303
Add a clarification to the event subscriber section
jbafford Mar 8, 2013
623f837
Fix two minor typos in the contributing section
jbafford Mar 8, 2013
ee548cb
[2.0] Re-working some language in the contributing doc to work now th…
weaverryan Mar 8, 2013
6a4ad87
[Typo] Fixing typo in date_format form option description
bicpi Mar 10, 2013
bd7dfbf
[#2290] Single command apps with arguments
Mar 10, 2013
85919a7
Merge pull request #2274 from WouterJ/issue_2273
weaverryan Mar 15, 2013
88c758c
[#2277] Backporting typo to 2.0 thanks to @pborreli
weaverryan Mar 15, 2013
540a4ce
Merge pull request #2280 from jbafford/contributing-fix
weaverryan Mar 15, 2013
3980295
Merge pull request #2281 from jbafford/components-event_dispatcher
weaverryan Mar 15, 2013
60e03c7
[#2281] Slight language tweak
weaverryan Mar 15, 2013
b9dbf81
[#2282] Adding some linking, thanks to @WouterJ
weaverryan Mar 15, 2013
9486baf
Merge pull request #2282 from symfony/doc-contributing-version-bump
weaverryan Mar 15, 2013
7199787
Unclosed parenthesis by PHP code-block
jmisel Mar 8, 2013
9ad03f7
Merge pull request #2265 from WouterJ/fix_highlighting
weaverryan Mar 17, 2013
4f16967
[#2265] Slight revert per @Stof
weaverryan Mar 17, 2013
347688a
[#2216] Backporting some missing use statements
weaverryan Mar 17, 2013
eac3adc
Merge pull request #2215 from ricardclau/interpunction_fixes
weaverryan Mar 17, 2013
48420cd
Merge branch 'patch-13' of github.com:WouterJ/symfony-docs into Woute…
weaverryan Mar 17, 2013
5047480
Merge pull request #2291 from bicpi/fix_typo_in_date_format_form_option
weaverryan Mar 17, 2013
9dfb144
Update testing.rst
ErikSaunier Mar 12, 2013
c06454d
Merge pull request #2292 from eugene-dounar/2.0
weaverryan Mar 21, 2013
5ce533a
[#2292] Making tweaks per @WouterJ and changing method name
weaverryan Mar 21, 2013
0b7d8f4
[#2292] Expanding section about the single command that shows and exp…
weaverryan Mar 21, 2013
c1cd667
Cookbook article about custom route loaders
matthiasnoback Mar 22, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions contributing/documentation/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,23 @@ then clone your fork:
$ git clone git://github.com/YOURUSERNAME/symfony-docs.git

Consistent with Symfony's source code, the documentation repository is split into
three branches: ``2.0`` for the current Symfony 2.0.x release, ``2.1`` for the
current Symfony 2.1.x release and ``master`` as the development branch for
upcoming releases.
multiple branches: ``2.0``, ``2.1``, ``2.2`` corresponding to the different
versions of Symfony itself. The ``master`` branch holds the documentation
for the development branch of the code.

Unless you're documenting a feature that's new to Symfony 2.1, your changes
should always be based on the 2.0 branch instead of the master branch. To do
this checkout the 2.0 branch before the next step:
Unless you're documenting a feature that was introduced *after* Symfony 2.0
(e.g. in Symfony 2.1), your changes should always be based on the 2.0 branch.
To do this checkout the 2.0 branch before the next step:

.. code-block:: bash

$ git checkout 2.0

.. tip::

Your base branch (e.g. 2.0) will become the "Applies to" in the :ref:`doc-contributing-pr-format`
that you'll use later.

Next, create a dedicated branch for your changes (for organization):

.. code-block:: bash
Expand Down Expand Up @@ -74,6 +79,8 @@ GitHub covers the topic of `pull requests`_ in detail.
The Symfony2 documentation is licensed under a Creative Commons
Attribution-Share Alike 3.0 Unported :doc:`License <license>`.

.. _doc-contributing-pr-format:

Pull Request Format
~~~~~~~~~~~~~~~~~~~

Expand Down