]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
docs: Remove remainder of non-GHFM references
authorStephen Finucane <stephen.finucane@intel.com>
Tue, 2 Feb 2016 23:30:40 +0000 (23:30 +0000)
committerStephen Finucane <stephen.finucane@intel.com>
Fri, 5 Feb 2016 17:37:57 +0000 (17:37 +0000)
The GitHub Format Markdown style of Markdown links breaks in some
Markdown renderers. Change to the style now used in all other files.

Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
docs/index.md
docs/installation.md

index ca4073f276b01e9b6f0f00d5d7a0292d9972a68d..8175eda79a78ef552e31b3a292f22d7558fd7b02 100644 (file)
@@ -22,7 +22,7 @@ The latest version of Patchwork is available with git. To download:
 
     $ git clone git://github.com/getpatchwork/patchwork
 
-Patchwork is distributed under the [GNU General Public License].
+Patchwork is distributed under the [GNU General Public License][ref-gpl].
 
 # Design
 
@@ -53,14 +53,16 @@ command-line client for patchwork, or directly to the XML RPC interface.
 
 # Getting Started
 
-You should check out the [installation] and [development] guides for
-information on how to get to work with patchwork.
+You should check out the [deployment][doc-deployment] and
+[development][doc-development] guides for information on how to configure
+patchwork for production and development environments, respectively.
 
 # Support
 
-All questions and contributions should be sent to the [patchwork mailing list].
+All questions and contributions should be sent to the
+[patchwork mailing list][ref-pw-ml].
 
-[GNU General Public License]: http://www.gnu.org/licenses/gpl-2.0.html
-[installation]: installation.md
-[development]: development.md
-[patchwork mailing list]: https://ozlabs.org/mailman/listinfo/patchwork
+[ref-gpl]: http://www.gnu.org/licenses/gpl-2.0.html
+[ref-pw-ml]: https://ozlabs.org/mailman/listinfo/patchwork
+[doc-deployment]: installation.md
+[doc-development]: development.md
index b1219faeb9b0dd95b5de207bd7c13603de7a3541..7c73b62609087ff1c0c1277cce7072b5dee4952b 100644 (file)
@@ -129,14 +129,13 @@ distro probably provides this. If not, install it manually:
 
 ### Configure Settings
 
-You will also need to configure a [settings] file for Django. A
-[sample settings file] is provided, which defines default settings for
+You will also need to configure a [settings][ref-django-settings] file for
+Django. A sample settings file is provided, which defines default settings for
 patchwork. You'll need to configure settings for your own setup and save this
 as `production.py` (or override the `DJANGO_SETTINGS_MODULE` environment
 variable).
 
-    cp patchwork/settings/production.example.py \
-      patchwork/settings/production.py
+    cp patchwork/settings/production{.example,}.py
 
 At the very minimum, the following settings need to be configured:
 
@@ -192,8 +191,7 @@ database:
 
     PYTHONPATH=lib/python ./manage.py loaddata default_tags default_states
 
-[sample_settings_file]: ../patchwork/settings/production.example.py
-[settings]: https://docs.djangoproject.com/en/1.8/topics/settings/
+[ref-django-settings]: https://docs.djangoproject.com/en/1.8/topics/settings/
 
 ## Apache Setup