changeset 6789:4d04ac08fff7

docs: fix some sphinx warnings RST code blocks must have valid syntax, and <someprefix> could thus not be used as placeholder.
author Mads Kiilerich <mads@kiilerich.com>
date Sat, 12 Aug 2017 16:36:28 +0200
parents e4d2fec64955
children 8cea7986ed79
files docs/setup.rst docs/usage/vcs_support.rst kallithea/i18n/how_to
diffstat 3 files changed, 9 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/docs/setup.rst	Fri Aug 11 02:48:15 2017 +0200
+++ b/docs/setup.rst	Sat Aug 12 16:36:28 2017 +0200
@@ -763,9 +763,9 @@
 
 .. code-block:: apache
 
-    <Location /<someprefix> >
-      ProxyPass http://127.0.0.1:5000/<someprefix>
-      ProxyPassReverse http://127.0.0.1:5000/<someprefix>
+    <Location /PREFIX >
+      ProxyPass http://127.0.0.1:5000/PREFIX
+      ProxyPassReverse http://127.0.0.1:5000/PREFIX
       SetEnvIf X-Url-Scheme https HTTPS=1
     </Location>
 
@@ -778,9 +778,9 @@
 
     [filter:proxy-prefix]
     use = egg:PasteDeploy#prefix
-    prefix = /<someprefix>
+    prefix = /PREFIX
 
-then change ``<someprefix>`` into your chosen prefix
+then change ``PREFIX`` into your chosen prefix
 
 
 Apache with mod_wsgi
--- a/docs/usage/vcs_support.rst	Fri Aug 11 02:48:15 2017 +0200
+++ b/docs/usage/vcs_support.rst	Sat Aug 12 16:36:28 2017 +0200
@@ -138,6 +138,7 @@
 * go to *Admin > Settings > Remap and Rescan* in the Kallithea web interface
 * select the *Install Git hooks* checkbox when importing Git repositories
 * click *Rescan Repositories*
+
 This step will scan the filesystem and create the appropriate repository groups
 and repositories in Kallithea.
 
--- a/kallithea/i18n/how_to	Fri Aug 11 02:48:15 2017 +0200
+++ b/kallithea/i18n/how_to	Sat Aug 12 16:36:28 2017 +0200
@@ -95,3 +95,6 @@
 Run Kallithea tests by executing::
 
     py.test
+
+
+.. _Weblate: http://weblate.org/