forked from github/pelican
add support for relative cross-site links
This commit is contained in:
parent
a6dd3178b1
commit
a0504aeabe
7 changed files with 26 additions and 19 deletions
|
|
@ -134,7 +134,8 @@ class Pelican(object):
|
|||
"""Run the generators and return"""
|
||||
|
||||
context = self.settings.copy()
|
||||
filenames = {} # share the dict between all the generators
|
||||
context['filenames'] = {} # share the dict between all the generators
|
||||
context['localsiteurl'] = self.settings.get('SITEURL') # share
|
||||
generators = [
|
||||
cls(
|
||||
context,
|
||||
|
|
@ -143,8 +144,6 @@ class Pelican(object):
|
|||
self.theme,
|
||||
self.output_path,
|
||||
self.markup,
|
||||
self.delete_outputdir,
|
||||
filenames=filenames
|
||||
) for cls in self.get_generator_classes()
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ import logging
|
|||
import functools
|
||||
import os
|
||||
import re
|
||||
import urlparse
|
||||
|
||||
from datetime import datetime
|
||||
from sys import platform, stdin
|
||||
|
|
@ -132,11 +131,13 @@ class Page(object):
|
|||
key = key if self.in_default_lang else 'lang_%s' % key
|
||||
return self._expand_settings(key)
|
||||
|
||||
def _update_content(self, content):
|
||||
def _update_content(self, content, siteurl):
|
||||
"""Change all the relative paths of the content to relative paths
|
||||
suitable for the ouput content.
|
||||
|
||||
:param content: content resource that will be passed to the templates.
|
||||
:param siteurl: siteurl which is locally generated by the writer in
|
||||
case of RELATIVE_URLS.
|
||||
"""
|
||||
hrefs = re.compile(r"""
|
||||
(?P<markup><\s*[^\>]* # match tag with src and href attr
|
||||
|
|
@ -163,8 +164,8 @@ class Page(object):
|
|||
)
|
||||
|
||||
if value in self._context['filenames']:
|
||||
origin = urlparse.urljoin(self._context['SITEURL'],
|
||||
self._context['filenames'][value].url)
|
||||
origin = '/'.join((siteurl,
|
||||
self._context['filenames'][value].url))
|
||||
else:
|
||||
logger.warning(u"Unable to find {fn}, skipping url"
|
||||
" replacement".format(fn=value))
|
||||
|
|
@ -174,15 +175,16 @@ class Page(object):
|
|||
|
||||
return hrefs.sub(replacer, content)
|
||||
|
||||
@property
|
||||
@memoized
|
||||
def get_content(self, siteurl):
|
||||
return self._update_content(
|
||||
self._get_content() if hasattr(self, "_get_content")
|
||||
else self._content,
|
||||
siteurl)
|
||||
|
||||
@property
|
||||
def content(self):
|
||||
if hasattr(self, "_get_content"):
|
||||
content = self._get_content()
|
||||
else:
|
||||
content = self._content
|
||||
content = self._update_content(content)
|
||||
return content
|
||||
return self.get_content(self._context['localsiteurl'])
|
||||
|
||||
def _get_summary(self):
|
||||
"""Returns the summary of an article, based on the summary metadata
|
||||
|
|
|
|||
|
|
@ -63,7 +63,6 @@ class Generator(object):
|
|||
# get custom Jinja filters from user settings
|
||||
custom_filters = self.settings.get('JINJA_FILTERS', {})
|
||||
self.env.filters.update(custom_filters)
|
||||
self.context['filenames'] = kwargs.get('filenames', {})
|
||||
|
||||
signals.generator_init.send(self)
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ class Writer(object):
|
|||
link='%s/%s' % (self.site_url, item.url),
|
||||
unique_id='tag:%s,%s:%s' % (self.site_url.replace('http://', ''),
|
||||
item.date.date(), item.url),
|
||||
description=item.content,
|
||||
description=item.get_content(self.site_url),
|
||||
categories=item.tags if hasattr(item, 'tags') else None,
|
||||
author_name=getattr(item, 'author', ''),
|
||||
pubdate=set_date_tzinfo(item.date,
|
||||
|
|
@ -124,7 +124,9 @@ class Writer(object):
|
|||
|
||||
localcontext = context.copy()
|
||||
if relative_urls:
|
||||
localcontext['SITEURL'] = get_relative_path(name)
|
||||
relative_path = get_relative_path(name)
|
||||
context['localsiteurl'] = relative_path
|
||||
localcontext['SITEURL'] = relative_path
|
||||
|
||||
localcontext.update(kwargs)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue