Merge pull request #837 from justinmayer/relativeoff

Change RELATIVE_URLS default to False - Fixes #829
This commit is contained in:
Justin Mayer 2013-04-12 07:09:23 -07:00
commit 4687ae7f30
36 changed files with 478 additions and 472 deletions

View file

@ -54,9 +54,9 @@ If you have made changes that affect the output of a Pelican-generated weblog,
then you should update the output used by functional tests.
To do so, you can use the following two commands::
$ LC_ALL="C" pelican -o pelican/tests/output/custom/ -s samples/pelican.conf.py \
$ pelican -o pelican/tests/output/custom/ -s samples/pelican.conf.py \
samples/content/
$ LC_ALL="C" pelican -o pelican/tests/output/basic/ samples/content/
$ pelican -o pelican/tests/output/basic/ samples/content/
testing for python3
-------------------

View file

@ -107,9 +107,9 @@ Setting name (default value) What doe
`OUTPUT_SOURCES_EXTENSION` (``.text``) Controls the extension that will be used by the SourcesGenerator.
Defaults to ``.text``. If not a valid string the default value
will be used.
`RELATIVE_URLS` (``True``) Defines whether Pelican should use document-relative URLs or
not. If set to ``False``, Pelican will use the SITEURL
setting to construct absolute URLs.
`RELATIVE_URLS` (``False``) Defines whether Pelican should use document-relative URLs or
not. Only set this to ``True`` when developing/testing and only
if you fully understand the effect it can have on links/feeds.
`PLUGINS` (``[]``) The list of plugins to load. See :ref:`plugins`.
`SITENAME` (``'A Pelican Blog'``) Your site name
`SITEURL` Base URL of your website. Not defined by default,