Browse Source

Fixed issues with textlinks plugin

main
Lakshmi Vyasarajan 14 years ago
parent
commit
8b56f5c375
3 changed files with 7 additions and 5 deletions
  1. +1
    -1
      hyde/ext/plugins/textlinks.py
  2. +6
    -3
      hyde/tests/ext/test_textlinks.py
  3. +0
    -1
      hyde/tests/test_generate.py

+ 1
- 1
hyde/ext/plugins/textlinks.py View File

@@ -29,7 +29,7 @@ class TextlinksPlugin(Plugin):
with
{{ media_url('/abc/def') }} or equivalent.
"""
content_link = re.compile('\[\[([^\]]*)\]\]', re.UNICODE|re.MULTILINE)
content_link = re.compile('\[\[([^\]^!][^\]]*)\]\]', re.UNICODE|re.MULTILINE)
media_link = re.compile('\[\[\!\!([^\]]*)\]\]', re.UNICODE|re.MULTILINE)
def replace_content(match):
return self.template.get_content_url_statement(match.groups(1)[0])


+ 6
- 3
hyde/tests/ext/test_textlinks.py View File

@@ -33,18 +33,20 @@ class TestTextlinks(object):
}
text = u"""
{%% markdown %%}
[[!! img/hyde-logo.png ]]
* [Rich object model][hyde objects] and
[overridable hierarchical metadata]([[%(plugins)s]]) thats available for use in
[overridable hierarchical metadata]([[ %(plugins)s ]]) thats available for use in
templates.
* Configurable [sorting][], filtering and grouping support.

[hyde objects]: [[%(objects)s]]
[hyde objects]: [[ %(objects)s ]]
[sorting]: [[%(sorter)s]]
{%% endmarkdown %%}
"""
site = Site(TEST_SITE)
site.config.plugins = ['hyde.ext.plugins.textlinks.TextlinksPlugin']
site.config.base_url = 'http://example.com/'
site.config.media_url = '/media'
tlink = File(site.content.source_folder.child('tlink.html'))
tlink.write(text % d)
gen = Generator(site)
@@ -54,4 +56,5 @@ class TestTextlinks(object):
html = f.read_all()
assert html
for name, path in d.items():
assert site.config.base_url + path in html
assert site.config.base_url + path in html
assert '/media/img/hyde-logo.png' in html

+ 0
- 1
hyde/tests/test_generate.py View File

@@ -157,7 +157,6 @@ main:
gen.generate_all()
target = File(site.config.deploy_root_path.child(resource.name))
out = target.read_all()
print out
assert "abc = def" in out
assert "home" in out
assert "articles" in out

Loading…
Cancel
Save