From 625c1d167d999246be8e67bc0e0cf68d80c09900 Mon Sep 17 00:00:00 2001 From: tBunnyMan Date: Wed, 18 Jul 2012 11:30:02 -0700 Subject: [PATCH] Documentation Fix --- docs/faq.rst | 2 +- pelican/__init__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index d5a2c81b..2d4536a1 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -71,7 +71,7 @@ word None should not be surrounded by quotes. I'm getting a warning about Feeds generated without SITEURL being set properly ============================================================================== -`RSS and atom3 feeds require all URLs and links in them to be absolute `_. +`RSS and atom feeds require all URLs and links in them to be absolute `_. In order to properly generate all URLs properly in pelican you will need to set ``SITEURL`` to the full path of your blog. By default, when using the ``make html`` to test build your site ``SITEURL`` is disabled so you should receive this diff --git a/pelican/__init__.py b/pelican/__init__.py index 5696b0dd..9bdc34a8 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -115,20 +115,20 @@ class Pelican(object): logger.warning("%s = '%s'" % (setting, self.settings[setting])) if self.settings.get('FEED', False): - logger.warning('Found depreciated `FEED` in settings. Modify FEED' + logger.warning('Found deprecated `FEED` in settings. Modify FEED' ' to FEED_ATOM in your settings and theme for the same behavior.' ' Temporarily setting FEED_ATOM for backwards compatibility.') self.settings['FEED_ATOM'] = self.settings['FEED'] if self.settings.get('TAG_FEED', False): - logger.warning('Found depreciated `TAG_FEED` in settings. Modify ' + logger.warning('Found deprecated `TAG_FEED` in settings. Modify ' ' TAG_FEED to TAG_FEED_ATOM in your settings and theme for the ' 'same behavior. Temporarily setting TAG_FEED_ATOM for backwards ' 'compatibility.') self.settings['TAG_FEED_ATOM'] = self.settings['TAG_FEED'] if self.settings.get('CATEGORY_FEED', False): - logger.warning('Found depreciated `CATEGORY_FEED` in settings. ' + logger.warning('Found deprecated `CATEGORY_FEED` in settings. ' 'Modify CATEGORY_FEED to CATEGORY_FEED_ATOM in your settings and ' 'theme for the same behavior. Temporarily setting ' 'CATEGORY_FEED_ATOM for backwards compatibility.')