mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Merge pull request #1148 from florianjacob/modified_metadata
Added a new ''modified:' metadata tag
This commit is contained in:
commit
350706b2f0
73 changed files with 381 additions and 152 deletions
|
|
@ -4,7 +4,8 @@ Release history
|
||||||
Next release
|
Next release
|
||||||
============
|
============
|
||||||
|
|
||||||
- Nothing yet
|
* Added the `:modified:` metadata field to complement `:date:`.
|
||||||
|
Used to specify the last date and time an article was updated independently from the date and time it was published.
|
||||||
|
|
||||||
3.3.0 (2013-09-24)
|
3.3.0 (2013-09-24)
|
||||||
==================
|
==================
|
||||||
|
|
|
||||||
|
|
@ -301,6 +301,7 @@ this metadata in text files via the following syntax (give your file the
|
||||||
##############
|
##############
|
||||||
|
|
||||||
:date: 2010-10-03 10:20
|
:date: 2010-10-03 10:20
|
||||||
|
:modified: 2010-10-04 18:40
|
||||||
:tags: thats, awesome
|
:tags: thats, awesome
|
||||||
:category: yeah
|
:category: yeah
|
||||||
:slug: my-super-post
|
:slug: my-super-post
|
||||||
|
|
@ -320,6 +321,7 @@ pattern::
|
||||||
|
|
||||||
Title: My super title
|
Title: My super title
|
||||||
Date: 2010-12-03 10:20
|
Date: 2010-12-03 10:20
|
||||||
|
Modified: 2010-12-05 19:30
|
||||||
Category: Python
|
Category: Python
|
||||||
Tags: pelican, publishing
|
Tags: pelican, publishing
|
||||||
Slug: my-super-post
|
Slug: my-super-post
|
||||||
|
|
@ -341,6 +343,7 @@ interprets the HTML in a very straightforward manner, reading metadata from
|
||||||
<title>My super title</title>
|
<title>My super title</title>
|
||||||
<meta name="tags" content="thats, awesome" />
|
<meta name="tags" content="thats, awesome" />
|
||||||
<meta name="date" content="2012-07-09 22:28" />
|
<meta name="date" content="2012-07-09 22:28" />
|
||||||
|
<meta name="modified" content="2012-07-10 20:14" />
|
||||||
<meta name="category" content="yeah" />
|
<meta name="category" content="yeah" />
|
||||||
<meta name="author" content="Alexis Métaireau" />
|
<meta name="author" content="Alexis Métaireau" />
|
||||||
<meta name="summary" content="Short version for index and feeds" />
|
<meta name="summary" content="Short version for index and feeds" />
|
||||||
|
|
@ -367,6 +370,10 @@ the W3C's `suggested subset ISO 8601`__.
|
||||||
|
|
||||||
__ `W3C ISO 8601`_
|
__ `W3C ISO 8601`_
|
||||||
|
|
||||||
|
``modified`` should be last time you updated the article, and defaults to ``date`` if not specified.
|
||||||
|
Besides you can show ``modified`` in the templates, feed entries in feed readers will be updated automatically
|
||||||
|
when you set ``modified`` to the current date after you modified your article.
|
||||||
|
|
||||||
If you do not explicitly specify summary metadata for a given post, the
|
If you do not explicitly specify summary metadata for a given post, the
|
||||||
``SUMMARY_MAX_LENGTH`` setting can be used to specify how many words from the
|
``SUMMARY_MAX_LENGTH`` setting can be used to specify how many words from the
|
||||||
beginning of an article are used as the summary.
|
beginning of an article are used as the summary.
|
||||||
|
|
|
||||||
|
|
@ -113,6 +113,10 @@ class Content(object):
|
||||||
|
|
||||||
if hasattr(self, 'date'):
|
if hasattr(self, 'date'):
|
||||||
self.locale_date = strftime(self.date, self.date_format)
|
self.locale_date = strftime(self.date, self.date_format)
|
||||||
|
if not hasattr(self, 'modified'):
|
||||||
|
self.modified = self.date
|
||||||
|
if hasattr(self, 'modified'):
|
||||||
|
self.locale_modified = strftime(self.modified, self.date_format)
|
||||||
|
|
||||||
# manage status
|
# manage status
|
||||||
if not hasattr(self, 'status'):
|
if not hasattr(self, 'status'):
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@ from pelican.utils import get_date, pelican_open
|
||||||
METADATA_PROCESSORS = {
|
METADATA_PROCESSORS = {
|
||||||
'tags': lambda x, y: [Tag(tag, y) for tag in x.split(',')],
|
'tags': lambda x, y: [Tag(tag, y) for tag in x.split(',')],
|
||||||
'date': lambda x, y: get_date(x),
|
'date': lambda x, y: get_date(x),
|
||||||
|
'modified': lambda x, y: get_date(x),
|
||||||
'status': lambda x, y: x.strip(),
|
'status': lambda x, y: x.strip(),
|
||||||
'category': Category,
|
'category': Category,
|
||||||
'author': Author,
|
'author': Author,
|
||||||
|
|
@ -521,6 +522,7 @@ def default_metadata(settings=None, process=None):
|
||||||
metadata['category'] = value
|
metadata['category'] = value
|
||||||
if 'DEFAULT_DATE' in settings and settings['DEFAULT_DATE'] != 'fs':
|
if 'DEFAULT_DATE' in settings and settings['DEFAULT_DATE'] != 'fs':
|
||||||
metadata['date'] = datetime.datetime(*settings['DEFAULT_DATE'])
|
metadata['date'] = datetime.datetime(*settings['DEFAULT_DATE'])
|
||||||
|
metadata['modified'] = metadata['date']
|
||||||
return metadata
|
return metadata
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -530,6 +532,7 @@ def path_metadata(full_path, source_path, settings=None):
|
||||||
if settings.get('DEFAULT_DATE', None) == 'fs':
|
if settings.get('DEFAULT_DATE', None) == 'fs':
|
||||||
metadata['date'] = datetime.datetime.fromtimestamp(
|
metadata['date'] = datetime.datetime.fromtimestamp(
|
||||||
os.stat(full_path).st_ctime)
|
os.stat(full_path).st_ctime)
|
||||||
|
metadata['modified'] = metadata['date']
|
||||||
metadata.update(settings.get('EXTRA_PATH_METADATA', {}).get(
|
metadata.update(settings.get('EXTRA_PATH_METADATA', {}).get(
|
||||||
source_path, {}))
|
source_path, {}))
|
||||||
return metadata
|
return metadata
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
Title: Article with markdown containing footnotes
|
Title: Article with markdown containing footnotes
|
||||||
Date: 2012-10-31
|
Date: 2012-10-31
|
||||||
|
Modified: 2012-11-01
|
||||||
Summary: Summary with **inline** markup *should* be supported.
|
Summary: Summary with **inline** markup *should* be supported.
|
||||||
|
|
||||||
This is some content[^1] with some footnotes[^footnote]
|
This is some content[^1] with some footnotes[^footnote]
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
Title: マックOS X 10.8でパイソンとVirtualenvをインストールと設定
|
Title: マックOS X 10.8でパイソンとVirtualenvをインストールと設定
|
||||||
Slug: python-virtualenv-on-mac-osx-mountain-lion-10.8
|
Slug: python-virtualenv-on-mac-osx-mountain-lion-10.8
|
||||||
Date: 2012-12-20
|
Date: 2012-12-20
|
||||||
|
Modified: 2012-12-22
|
||||||
Tags: パイソン, マック
|
Tags: パイソン, マック
|
||||||
Category: 指導書
|
Category: 指導書
|
||||||
Summary: パイソンとVirtualenvをまっくでインストールする方法について明確に説明します。
|
Summary: パイソンとVirtualenvをまっくでインストールする方法について明確に説明します。
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ Title: Test md File
|
||||||
Category: test
|
Category: test
|
||||||
Tags: foo, bar, foobar
|
Tags: foo, bar, foobar
|
||||||
Date: 2010-12-02 10:14
|
Date: 2010-12-02 10:14
|
||||||
|
Modified: 2010-12-02 10:20
|
||||||
Summary: I have a lot to test
|
Summary: I have a lot to test
|
||||||
|
|
||||||
Test Markdown File Header
|
Test Markdown File Header
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ This is a super article !
|
||||||
|
|
||||||
:tags: foo, bar, foobar
|
:tags: foo, bar, foobar
|
||||||
:date: 2010-12-02 10:14
|
:date: 2010-12-02 10:14
|
||||||
|
:modified: 2010-12-02 10:20
|
||||||
:category: yeah
|
:category: yeah
|
||||||
:author: Alexis Métaireau
|
:author: Alexis Métaireau
|
||||||
:summary:
|
:summary:
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-04-20T00:00:00">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Published: Wed 20 April 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/this-is-a-super-article.html">This is a super article !</a></h1>
|
<h1 class="entry-title"><a href="/this-is-a-super-article.html">This is a super article !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/oh-yeah.html">Oh yeah !</a></h1>
|
<h1 class="entry-title"><a href="/oh-yeah.html">Oh yeah !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/a-markdown-powered-article.html">A markdown powered article</a></h1>
|
<h1 class="entry-title"><a href="/a-markdown-powered-article.html">A markdown powered article</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-04-20T00:00:00">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Published: Wed 20 April 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
<h1 class="entry-title"><a href="/filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-11-30T00:00:00">
|
<abbr class="published" title="2012-11-30T00:00:00">
|
||||||
Fri 30 November 2012
|
Published: Fri 30 November 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
@ -52,7 +52,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
@ -74,7 +74,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-15T20:30:00">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Published: Fri 15 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
@ -104,7 +104,7 @@ pelican.conf, it ...</p></div>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-03-14T00:00:00">
|
<abbr class="published" title="2010-03-14T00:00:00">
|
||||||
Sun 14 March 2010
|
Published: Sun 14 March 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/this-is-a-super-article.html">This is a super article !</a></h1>
|
<h1 class="entry-title"><a href="/this-is-a-super-article.html">This is a super article !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-11-30T00:00:00">
|
<abbr class="published" title="2012-11-30T00:00:00">
|
||||||
Fri 30 November 2012
|
Published: Fri 30 November 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
<h1 class="entry-title"><a href="/filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-11-30T00:00:00">
|
<abbr class="published" title="2012-11-30T00:00:00">
|
||||||
Fri 30 November 2012
|
Published: Fri 30 November 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
@ -52,7 +52,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
@ -74,7 +74,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-04-20T00:00:00">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Published: Wed 20 April 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -95,7 +95,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -115,7 +115,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -135,7 +135,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
<p>In <a href="/category/cat1.html">cat1</a>. </p>
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -179,7 +179,7 @@ as well as <strong>inline markup</strong>.</p>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -207,7 +207,7 @@ YEAH !</p>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-15T20:30:00">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Published: Fri 15 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
@ -237,7 +237,7 @@ pelican.conf, it ...</p></div>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-03-14T00:00:00">
|
<abbr class="published" title="2010-03-14T00:00:00">
|
||||||
Sun 14 March 2010
|
Published: Sun 14 March 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/second-article.html">Second article</a></h1>
|
<h1 class="entry-title"><a href="/second-article.html">Second article</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
@ -54,7 +54,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -78,7 +78,7 @@ as well as <strong>inline markup</strong>.</p>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-03-14T00:00:00">
|
<abbr class="published" title="2010-03-14T00:00:00">
|
||||||
Sun 14 March 2010
|
Published: Sun 14 March 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/second-article.html">Second article</a></h1>
|
<h1 class="entry-title"><a href="/second-article.html">Second article</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
@ -54,7 +54,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/this-is-a-super-article.html">This is a super article !</a></h1>
|
<h1 class="entry-title"><a href="/this-is-a-super-article.html">This is a super article !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
<h1 class="entry-title"><a href="/oh-yeah.html">Oh yeah !</a></h1>
|
<h1 class="entry-title"><a href="/oh-yeah.html">Oh yeah !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-15T20:30:00">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Published: Fri 15 October 2010
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<p>In <a href="/category/misc.html">misc</a>. </p>
|
<p>In <a href="/category/misc.html">misc</a>. </p>
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-04-20T00:00:00">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Published: Wed 20 April 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
<h1 class="entry-title"><a href="../filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-11-30T00:00:00">
|
<abbr class="published" title="2012-11-30T00:00:00">
|
||||||
Fri 30 November 2012
|
Published: Fri 30 November 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -59,7 +63,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -84,7 +92,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-04-20T00:00:00">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Published: Wed 20 April 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -108,7 +120,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -63,7 +67,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -86,7 +94,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -110,7 +122,11 @@ as well as <strong>inline markup</strong>.</p>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-15T20:30:00">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Published: Fri 15 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -73,7 +77,11 @@ pelican.conf, it ...</p></div>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-03-14T00:00:00">
|
<abbr class="published" title="2010-03-14T00:00:00">
|
||||||
Sun 14 March 2010
|
Published: Sun 14 March 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../oh-yeah.html">Oh yeah !</a></h1>
|
<h1 class="entry-title"><a href="../oh-yeah.html">Oh yeah !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../a-markdown-powered-article.html">A markdown powered article</a></h1>
|
<h1 class="entry-title"><a href="../a-markdown-powered-article.html">A markdown powered article</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-04-20T00:00:00">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Published: Wed 20 April 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -60,7 +64,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -83,7 +91,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -106,7 +118,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
<h1 class="entry-title"><a href="../filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-11-30T00:00:00">
|
<abbr class="published" title="2012-11-30T00:00:00">
|
||||||
Fri 30 November 2012
|
Published: Fri 30 November 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -59,7 +63,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -84,7 +92,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-15T20:30:00">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Published: Fri 15 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -117,7 +129,11 @@ pelican.conf, it ...</p></div>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-03-14T00:00:00">
|
<abbr class="published" title="2010-03-14T00:00:00">
|
||||||
Sun 14 March 2010
|
Published: Sun 14 March 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../this-is-a-super-article.html">This is a super article !</a></h1>
|
<h1 class="entry-title"><a href="../this-is-a-super-article.html">This is a super article !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-03-02T14:01:01">
|
<abbr class="published" title="2012-03-02T14:01:01">
|
||||||
Fri 02 March 2012
|
Published: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all-en.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-11-30T00:00:00+01:00</updated><entry><title>FILENAME_METADATA example</title><link href="http://blog.notmyidea.org/filename_metadata-example.html" rel="alternate"></link><updated>2012-11-30T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</id><summary type="html"><p>Some cool stuff!</p>
|
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all-en.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>FILENAME_METADATA example</title><link href="http://blog.notmyidea.org/filename_metadata-example.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</id><summary type="html"><p>Some cool stuff!</p>
|
||||||
</summary></entry><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html"><p>This is some article, in english</p>
|
</summary></entry><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html"><p>This is some article, in english</p>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html"><p>You're mutually oblivious.</p>
|
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html"><p>You're mutually oblivious.</p>
|
||||||
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
||||||
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html"><p>Article 1</p>
|
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html"><p>Article 1</p>
|
||||||
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html"><p>Article 2</p>
|
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html"><p>Article 2</p>
|
||||||
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html"><p>Article 3</p>
|
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html"><p>Article 3</p>
|
||||||
</summary></entry><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html"><p>Some content here !</p>
|
</summary></entry><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<h2>This is a simple title</h2>
|
||||||
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -18,13 +18,13 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html"><div class="section" id="why-not">
|
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<h2>Why not ?</h2>
|
||||||
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
||||||
YEAH !</p>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="http://blog.notmyidea.org/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="http://blog.notmyidea.org/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html"><p>Or completely awesome. Depends the needs.</p>
|
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html"><p>Or completely awesome. Depends the needs.</p>
|
||||||
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
||||||
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
||||||
<div class="section" id="testing-sourcecode-directive">
|
<div class="section" id="testing-sourcecode-directive">
|
||||||
|
|
@ -57,5 +57,5 @@ pelican.conf, it will have nothing in default.</p>
|
||||||
</pre></div>
|
</pre></div>
|
||||||
<p>Lovely.</p>
|
<p>Lovely.</p>
|
||||||
</div>
|
</div>
|
||||||
</summary></entry><entry><title>The baz tag</title><link href="http://blog.notmyidea.org/tag/baz.html" rel="alternate"></link><updated>2010-03-14T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</id><summary type="html"><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
</summary></entry><entry><title>The baz tag</title><link href="http://blog.notmyidea.org/tag/baz.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</id><summary type="html"><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all-fr.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>Trop bien !</title><link href="http://blog.notmyidea.org/oh-yeah-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-03-02:oh-yeah-fr.html</id><summary type="html"><p>Et voila du contenu en français</p>
|
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all-fr.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>Trop bien !</title><link href="http://blog.notmyidea.org/oh-yeah-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-03-02:oh-yeah-fr.html</id><summary type="html"><p>Et voila du contenu en français</p>
|
||||||
</summary></entry><entry><title>Deuxième article</title><link href="http://blog.notmyidea.org/second-article-fr.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article-fr.html</id><summary type="html"><p>Ceci est un article, en français.</p>
|
</summary></entry><entry><title>Deuxième article</title><link href="http://blog.notmyidea.org/second-article-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article-fr.html</id><summary type="html"><p>Ceci est un article, en français.</p>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry></feed>
|
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry></feed>
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-11-30T00:00:00+01:00</updated><entry><title>FILENAME_METADATA example</title><link href="http://blog.notmyidea.org/filename_metadata-example.html" rel="alternate"></link><updated>2012-11-30T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</id><summary type="html"><p>Some cool stuff!</p>
|
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/all.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>FILENAME_METADATA example</title><link href="http://blog.notmyidea.org/filename_metadata-example.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</id><summary type="html"><p>Some cool stuff!</p>
|
||||||
</summary></entry><entry><title>Trop bien !</title><link href="http://blog.notmyidea.org/oh-yeah-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-03-02:oh-yeah-fr.html</id><summary type="html"><p>Et voila du contenu en français</p>
|
</summary></entry><entry><title>Trop bien !</title><link href="http://blog.notmyidea.org/oh-yeah-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-03-02:oh-yeah-fr.html</id><summary type="html"><p>Et voila du contenu en français</p>
|
||||||
</summary></entry><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html"><p>This is some article, in english</p>
|
</summary></entry><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html"><p>This is some article, in english</p>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Deuxième article</title><link href="http://blog.notmyidea.org/second-article-fr.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article-fr.html</id><summary type="html"><p>Ceci est un article, en français.</p>
|
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Deuxième article</title><link href="http://blog.notmyidea.org/second-article-fr.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article-fr.html</id><summary type="html"><p>Ceci est un article, en français.</p>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html"><p>You're mutually oblivious.</p>
|
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html"><p>You're mutually oblivious.</p>
|
||||||
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
||||||
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html"><p>Article 1</p>
|
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html"><p>Article 1</p>
|
||||||
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html"><p>Article 2</p>
|
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html"><p>Article 2</p>
|
||||||
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html"><p>Article 3</p>
|
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html"><p>Article 3</p>
|
||||||
</summary></entry><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html"><p>Some content here !</p>
|
</summary></entry><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<h2>This is a simple title</h2>
|
||||||
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -20,13 +20,13 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html"><div class="section" id="why-not">
|
</summary><category term="foo"></category><category term="bar"></category><category term="foobar"></category></entry><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<h2>Why not ?</h2>
|
||||||
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
||||||
YEAH !</p>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="http://blog.notmyidea.org/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="http://blog.notmyidea.org/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html"><p>Or completely awesome. Depends the needs.</p>
|
</summary><category term="oh"></category><category term="bar"></category><category term="yeah"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html"><p>Or completely awesome. Depends the needs.</p>
|
||||||
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
||||||
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
||||||
<div class="section" id="testing-sourcecode-directive">
|
<div class="section" id="testing-sourcecode-directive">
|
||||||
|
|
@ -59,5 +59,5 @@ pelican.conf, it will have nothing in default.</p>
|
||||||
</pre></div>
|
</pre></div>
|
||||||
<p>Lovely.</p>
|
<p>Lovely.</p>
|
||||||
</div>
|
</div>
|
||||||
</summary></entry><entry><title>The baz tag</title><link href="http://blog.notmyidea.org/tag/baz.html" rel="alternate"></link><updated>2010-03-14T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</id><summary type="html"><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
</summary></entry><entry><title>The baz tag</title><link href="http://blog.notmyidea.org/tag/baz.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</id><summary type="html"><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/all.rss.xml" rel="self"></atom:link><lastBuildDate>Fri, 30 Nov 2012 00:00:00 +0100</lastBuildDate><item><title>FILENAME_METADATA example</title><link>http://blog.notmyidea.org/filename_metadata-example.html</link><description><p>Some cool stuff!</p>
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/all.rss.xml" rel="self"></atom:link><lastBuildDate>Fri, 02 Mar 2012 14:01:01 +0100</lastBuildDate><item><title>FILENAME_METADATA example</title><link>http://blog.notmyidea.org/filename_metadata-example.html</link><description><p>Some cool stuff!</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 30 Nov 2012 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</guid></item><item><title>Trop bien !</title><link>http://blog.notmyidea.org/oh-yeah-fr.html</link><description><p>Et voila du contenu en français</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</guid></item><item><title>Trop bien !</title><link>http://blog.notmyidea.org/oh-yeah-fr.html</link><description><p>Et voila du contenu en français</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-03-02:oh-yeah-fr.html</guid></item><item><title>Second article</title><link>http://blog.notmyidea.org/second-article.html</link><description><p>This is some article, in english</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-03-02:oh-yeah-fr.html</guid></item><item><title>Second article</title><link>http://blog.notmyidea.org/second-article.html</link><description><p>This is some article, in english</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 29 Feb 2012 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-02-29:second-article.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>Deuxième article</title><link>http://blog.notmyidea.org/second-article-fr.html</link><description><p>Ceci est un article, en français.</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-02-29:second-article.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>Deuxième article</title><link>http://blog.notmyidea.org/second-article-fr.html</link><description><p>Ceci est un article, en français.</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 29 Feb 2012 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-02-29:second-article-fr.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>A markdown powered article</title><link>http://blog.notmyidea.org/a-markdown-powered-article.html</link><description><p>You're mutually oblivious.</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-02-29:second-article-fr.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>A markdown powered article</title><link>http://blog.notmyidea.org/a-markdown-powered-article.html</link><description><p>You're mutually oblivious.</p>
|
||||||
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
||||||
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Apr 2011 00:00:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</guid></item><item><title>Article 1</title><link>http://blog.notmyidea.org/article-1.html</link><description><p>Article 1</p>
|
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</guid></item><item><title>Article 1</title><link>http://blog.notmyidea.org/article-1.html</link><description><p>Article 1</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-1.html</guid></item><item><title>Article 2</title><link>http://blog.notmyidea.org/article-2.html</link><description><p>Article 2</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-1.html</guid></item><item><title>Article 2</title><link>http://blog.notmyidea.org/article-2.html</link><description><p>Article 2</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-2.html</guid></item><item><title>Article 3</title><link>http://blog.notmyidea.org/article-3.html</link><description><p>Article 3</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-2.html</guid></item><item><title>Article 3</title><link>http://blog.notmyidea.org/article-3.html</link><description><p>Article 3</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-3.html</guid></item><item><title>This is a super article !</title><link>http://blog.notmyidea.org/this-is-a-super-article.html</link><description><p>Some content here !</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-3.html</guid></item><item><title>This is a super article !</title><link>http://blog.notmyidea.org/this-is-a-super-article.html</link><description><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<h2>This is a simple title</h2>
|
||||||
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -20,13 +20,13 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 02 Dec 2010 10:14:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</guid><category>foo</category><category>bar</category><category>foobar</category></item><item><title>Oh yeah !</title><link>http://blog.notmyidea.org/oh-yeah.html</link><description><div class="section" id="why-not">
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</guid><category>foo</category><category>bar</category><category>foobar</category></item><item><title>Oh yeah !</title><link>http://blog.notmyidea.org/oh-yeah.html</link><description><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<h2>Why not ?</h2>
|
||||||
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
||||||
YEAH !</p>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="http://blog.notmyidea.org/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="http://blog.notmyidea.org/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Oct 2010 10:14:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</guid><category>oh</category><category>bar</category><category>yeah</category></item><item><title>Unbelievable !</title><link>http://blog.notmyidea.org/unbelievable.html</link><description><p>Or completely awesome. Depends the needs.</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</guid><category>oh</category><category>bar</category><category>yeah</category></item><item><title>Unbelievable !</title><link>http://blog.notmyidea.org/unbelievable.html</link><description><p>Or completely awesome. Depends the needs.</p>
|
||||||
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
||||||
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
||||||
<div class="section" id="testing-sourcecode-directive">
|
<div class="section" id="testing-sourcecode-directive">
|
||||||
|
|
@ -59,5 +59,5 @@ pelican.conf, it will have nothing in default.</p>
|
||||||
</pre></div>
|
</pre></div>
|
||||||
<p>Lovely.</p>
|
<p>Lovely.</p>
|
||||||
</div>
|
</div>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 15 Oct 2010 20:30:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</guid></item><item><title>The baz tag</title><link>http://blog.notmyidea.org/tag/baz.html</link><description><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</guid></item><item><title>The baz tag</title><link>http://blog.notmyidea.org/tag/baz.html</link><description><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Sun, 14 Mar 2010 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</guid></item></channel></rss>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</guid></item></channel></rss>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/bar.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2010-10-20T10:14:00+02:00</updated><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2010-10-20T10:14:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html"><div class="section" id="why-not">
|
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/bar.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>Oh yeah !</title><link href="http://blog.notmyidea.org/oh-yeah.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</id><summary type="html"><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<h2>Why not ?</h2>
|
||||||
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
||||||
YEAH !</p>
|
YEAH !</p>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/bar.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 20 Oct 2010 10:14:00 +0200</lastBuildDate><item><title>Oh yeah !</title><link>http://blog.notmyidea.org/oh-yeah.html</link><description><div class="section" id="why-not">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/bar.rss.xml" rel="self"></atom:link><lastBuildDate>Fri, 02 Mar 2012 14:01:01 +0100</lastBuildDate><item><title>Oh yeah !</title><link>http://blog.notmyidea.org/oh-yeah.html</link><description><div class="section" id="why-not">
|
||||||
<h2>Why not ?</h2>
|
<h2>Why not ?</h2>
|
||||||
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
<p>After all, why not ? It's pretty simple to do it, and it will allow me to write my blogposts in rst !
|
||||||
YEAH !</p>
|
YEAH !</p>
|
||||||
<img alt="alternate text" src="http://blog.notmyidea.org/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
<img alt="alternate text" src="http://blog.notmyidea.org/pictures/Sushi.jpg" style="width: 600px; height: 450px;" />
|
||||||
</div>
|
</div>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Oct 2010 10:14:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</guid><category>oh</category><category>bar</category><category>yeah</category></item></channel></rss>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-10-20:oh-yeah.html</guid><category>oh</category><category>bar</category><category>yeah</category></item></channel></rss>
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/cat1.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2011-04-20T00:00:00+02:00</updated><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2011-04-20T00:00:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html"><p>You're mutually oblivious.</p>
|
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/cat1.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>A markdown powered article</title><link href="http://blog.notmyidea.org/a-markdown-powered-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</id><summary type="html"><p>You're mutually oblivious.</p>
|
||||||
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
||||||
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html"><p>Article 1</p>
|
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></summary></entry><entry><title>Article 1</title><link href="http://blog.notmyidea.org/article-1.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-1.html</id><summary type="html"><p>Article 1</p>
|
||||||
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html"><p>Article 2</p>
|
</summary></entry><entry><title>Article 2</title><link href="http://blog.notmyidea.org/article-2.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-2.html</id><summary type="html"><p>Article 2</p>
|
||||||
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2011-02-17T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html"><p>Article 3</p>
|
</summary></entry><entry><title>Article 3</title><link href="http://blog.notmyidea.org/article-3.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2011-02-17:article-3.html</id><summary type="html"><p>Article 3</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/cat1.rss.xml" rel="self"></atom:link><lastBuildDate>Wed, 20 Apr 2011 00:00:00 +0200</lastBuildDate><item><title>A markdown powered article</title><link>http://blog.notmyidea.org/a-markdown-powered-article.html</link><description><p>You're mutually oblivious.</p>
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/cat1.rss.xml" rel="self"></atom:link><lastBuildDate>Fri, 02 Mar 2012 14:01:01 +0100</lastBuildDate><item><title>A markdown powered article</title><link>http://blog.notmyidea.org/a-markdown-powered-article.html</link><description><p>You're mutually oblivious.</p>
|
||||||
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
<p><a href="http://blog.notmyidea.org/unbelievable.html">a root-relative link to unbelievable</a>
|
||||||
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 20 Apr 2011 00:00:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</guid></item><item><title>Article 1</title><link>http://blog.notmyidea.org/article-1.html</link><description><p>Article 1</p>
|
<a href="http://blog.notmyidea.org/unbelievable.html">a file-relative link to unbelievable</a></p></description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-04-20:a-markdown-powered-article.html</guid></item><item><title>Article 1</title><link>http://blog.notmyidea.org/article-1.html</link><description><p>Article 1</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-1.html</guid></item><item><title>Article 2</title><link>http://blog.notmyidea.org/article-2.html</link><description><p>Article 2</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-1.html</guid></item><item><title>Article 2</title><link>http://blog.notmyidea.org/article-2.html</link><description><p>Article 2</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-2.html</guid></item><item><title>Article 3</title><link>http://blog.notmyidea.org/article-3.html</link><description><p>Article 3</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-2.html</guid></item><item><title>Article 3</title><link>http://blog.notmyidea.org/article-3.html</link><description><p>Article 3</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 17 Feb 2011 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-3.html</guid></item></channel></rss>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2011-02-17:article-3.html</guid></item></channel></rss>
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/misc.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-11-30T00:00:00+01:00</updated><entry><title>FILENAME_METADATA example</title><link href="http://blog.notmyidea.org/filename_metadata-example.html" rel="alternate"></link><updated>2012-11-30T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</id><summary type="html"><p>Some cool stuff!</p>
|
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/misc.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>FILENAME_METADATA example</title><link href="http://blog.notmyidea.org/filename_metadata-example.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</id><summary type="html"><p>Some cool stuff!</p>
|
||||||
</summary></entry><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-02-29T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html"><p>This is some article, in english</p>
|
</summary></entry><entry><title>Second article</title><link href="http://blog.notmyidea.org/second-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2012-02-29:second-article.html</id><summary type="html"><p>This is some article, in english</p>
|
||||||
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2010-10-15T20:30:00+02:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html"><p>Or completely awesome. Depends the needs.</p>
|
</summary><category term="foo"></category><category term="bar"></category><category term="baz"></category></entry><entry><title>Unbelievable !</title><link href="http://blog.notmyidea.org/unbelievable.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</id><summary type="html"><p>Or completely awesome. Depends the needs.</p>
|
||||||
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
||||||
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
||||||
<div class="section" id="testing-sourcecode-directive">
|
<div class="section" id="testing-sourcecode-directive">
|
||||||
|
|
@ -34,5 +34,5 @@ pelican.conf, it will have nothing in default.</p>
|
||||||
</pre></div>
|
</pre></div>
|
||||||
<p>Lovely.</p>
|
<p>Lovely.</p>
|
||||||
</div>
|
</div>
|
||||||
</summary></entry><entry><title>The baz tag</title><link href="http://blog.notmyidea.org/tag/baz.html" rel="alternate"></link><updated>2010-03-14T00:00:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</id><summary type="html"><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
</summary></entry><entry><title>The baz tag</title><link href="http://blog.notmyidea.org/tag/baz.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</id><summary type="html"><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
||||||
</summary></entry></feed>
|
</summary></entry></feed>
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/misc.rss.xml" rel="self"></atom:link><lastBuildDate>Fri, 30 Nov 2012 00:00:00 +0100</lastBuildDate><item><title>FILENAME_METADATA example</title><link>http://blog.notmyidea.org/filename_metadata-example.html</link><description><p>Some cool stuff!</p>
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/misc.rss.xml" rel="self"></atom:link><lastBuildDate>Fri, 02 Mar 2012 14:01:01 +0100</lastBuildDate><item><title>FILENAME_METADATA example</title><link>http://blog.notmyidea.org/filename_metadata-example.html</link><description><p>Some cool stuff!</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 30 Nov 2012 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</guid></item><item><title>Second article</title><link>http://blog.notmyidea.org/second-article.html</link><description><p>This is some article, in english</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-11-30:filename_metadata-example.html</guid></item><item><title>Second article</title><link>http://blog.notmyidea.org/second-article.html</link><description><p>This is some article, in english</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Wed, 29 Feb 2012 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-02-29:second-article.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>Unbelievable !</title><link>http://blog.notmyidea.org/unbelievable.html</link><description><p>Or completely awesome. Depends the needs.</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2012-02-29:second-article.html</guid><category>foo</category><category>bar</category><category>baz</category></item><item><title>Unbelievable !</title><link>http://blog.notmyidea.org/unbelievable.html</link><description><p>Or completely awesome. Depends the needs.</p>
|
||||||
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
<p><a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a root-relative link to markdown-article</a>
|
||||||
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
<a class="reference external" href="http://blog.notmyidea.org/a-markdown-powered-article.html">a file-relative link to markdown-article</a></p>
|
||||||
<div class="section" id="testing-sourcecode-directive">
|
<div class="section" id="testing-sourcecode-directive">
|
||||||
|
|
@ -34,5 +34,5 @@ pelican.conf, it will have nothing in default.</p>
|
||||||
</pre></div>
|
</pre></div>
|
||||||
<p>Lovely.</p>
|
<p>Lovely.</p>
|
||||||
</div>
|
</div>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 15 Oct 2010 20:30:00 +0200</pubDate><guid>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</guid></item><item><title>The baz tag</title><link>http://blog.notmyidea.org/tag/baz.html</link><description><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-10-15:unbelievable.html</guid></item><item><title>The baz tag</title><link>http://blog.notmyidea.org/tag/baz.html</link><description><p>This article overrides the listening of the articles under the <em>baz</em> tag.</p>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Sun, 14 Mar 2010 00:00:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</guid></item></channel></rss>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-03-14:tag/baz.html</guid></item></channel></rss>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/yeah.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2010-12-02T10:14:00+01:00</updated><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2010-12-02T10:14:00+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html"><p>Some content here !</p>
|
<feed xmlns="http://www.w3.org/2005/Atom"><title>Alexis' log</title><link href="http://blog.notmyidea.org/" rel="alternate"></link><link href="http://blog.notmyidea.org/feeds/yeah.atom.xml" rel="self"></link><id>http://blog.notmyidea.org/</id><updated>2012-03-02T14:01:01+01:00</updated><entry><title>This is a super article !</title><link href="http://blog.notmyidea.org/this-is-a-super-article.html" rel="alternate"></link><updated>2012-03-02T14:01:01+01:00</updated><author><name>Alexis Métaireau</name></author><id>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</id><summary type="html"><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<h2>This is a simple title</h2>
|
||||||
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/yeah.rss.xml" rel="self"></atom:link><lastBuildDate>Thu, 02 Dec 2010 10:14:00 +0100</lastBuildDate><item><title>This is a super article !</title><link>http://blog.notmyidea.org/this-is-a-super-article.html</link><description><p>Some content here !</p>
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Alexis' log</title><link>http://blog.notmyidea.org/</link><description></description><atom:link href="http://blog.notmyidea.org/feeds/yeah.rss.xml" rel="self"></atom:link><lastBuildDate>Fri, 02 Mar 2012 14:01:01 +0100</lastBuildDate><item><title>This is a super article !</title><link>http://blog.notmyidea.org/this-is-a-super-article.html</link><description><p>Some content here !</p>
|
||||||
<div class="section" id="this-is-a-simple-title">
|
<div class="section" id="this-is-a-simple-title">
|
||||||
<h2>This is a simple title</h2>
|
<h2>This is a simple title</h2>
|
||||||
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
<p>And here comes the cool <a class="reference external" href="http://books.couchdb.org/relax/design-documents/views">stuff</a>.</p>
|
||||||
|
|
@ -11,4 +11,4 @@
|
||||||
</pre>
|
</pre>
|
||||||
<p>→ And now try with some utf8 hell: ééé</p>
|
<p>→ And now try with some utf8 hell: ééé</p>
|
||||||
</div>
|
</div>
|
||||||
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Thu, 02 Dec 2010 10:14:00 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</guid><category>foo</category><category>bar</category><category>foobar</category></item></channel></rss>
|
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alexis Métaireau</dc:creator><pubDate>Fri, 02 Mar 2012 14:01:01 +0100</pubDate><guid>tag:blog.notmyidea.org,2010-12-02:this-is-a-super-article.html</guid><category>foo</category><category>bar</category><category>foobar</category></item></channel></rss>
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-11-30T00:00:00">
|
<abbr class="published" title="2012-11-30T00:00:00">
|
||||||
Fri 30 November 2012
|
Published: Fri 30 November 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="./filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
<h1 class="entry-title"><a href="./filename_metadata-example.html">FILENAME_METADATA example</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-11-30T00:00:00">
|
<abbr class="published" title="2012-11-30T00:00:00">
|
||||||
Fri 30 November 2012
|
Published: Fri 30 November 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -59,7 +63,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -84,7 +92,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-04-20T00:00:00">
|
<abbr class="published" title="2011-04-20T00:00:00">
|
||||||
Wed 20 April 2011
|
Published: Wed 20 April 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -108,7 +120,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -63,7 +67,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2011-02-17T00:00:00">
|
<abbr class="published" title="2011-02-17T00:00:00">
|
||||||
Thu 17 February 2011
|
Published: Thu 17 February 2011
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -86,7 +94,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -110,7 +122,11 @@ as well as <strong>inline markup</strong>.</p>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-15T20:30:00">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Published: Fri 15 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -73,7 +77,11 @@ pelican.conf, it ...</p></div>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-03-14T00:00:00">
|
<abbr class="published" title="2010-03-14T00:00:00">
|
||||||
Sun 14 March 2010
|
Published: Sun 14 March 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-03-02T14:01:01">
|
<abbr class="published" title="2012-03-02T14:01:01">
|
||||||
Fri 02 March 2012
|
Published: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../second-article.html">Second article</a></h1>
|
<h1 class="entry-title"><a href="../second-article.html">Second article</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -61,7 +65,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -85,7 +93,11 @@ as well as <strong>inline markup</strong>.</p>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-03-14T00:00:00">
|
<abbr class="published" title="2010-03-14T00:00:00">
|
||||||
Sun 14 March 2010
|
Published: Sun 14 March 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../second-article.html">Second article</a></h1>
|
<h1 class="entry-title"><a href="../second-article.html">Second article</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2012-02-29T00:00:00">
|
<abbr class="published" title="2012-02-29T00:00:00">
|
||||||
Wed 29 February 2012
|
Published: Wed 29 February 2012
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
@ -61,7 +65,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../this-is-a-super-article.html">This is a super article !</a></h1>
|
<h1 class="entry-title"><a href="../this-is-a-super-article.html">This is a super article !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,11 @@
|
||||||
<h1 class="entry-title"><a href="../oh-yeah.html">Oh yeah !</a></h1>
|
<h1 class="entry-title"><a href="../oh-yeah.html">Oh yeah !</a></h1>
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-20T10:14:00">
|
<abbr class="published" title="2010-10-20T10:14:00">
|
||||||
Wed 20 October 2010
|
Published: Wed 20 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-12-02T10:14:00">
|
<abbr class="published" title="2010-12-02T10:14:00">
|
||||||
Thu 02 December 2010
|
Published: Thu 02 December 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,11 @@
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="2010-10-15T20:30:00">
|
<abbr class="published" title="2010-10-15T20:30:00">
|
||||||
Fri 15 October 2010
|
Published: Fri 15 October 2010
|
||||||
|
</abbr>
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="2012-03-02T14:01:01">
|
||||||
|
Updated: Fri 02 March 2012
|
||||||
</abbr>
|
</abbr>
|
||||||
|
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@ class RstReaderTest(ReaderTest):
|
||||||
' supported\nas well as <strong>inline'
|
' supported\nas well as <strong>inline'
|
||||||
' markup</strong>.</p>\n',
|
' markup</strong>.</p>\n',
|
||||||
'date': datetime.datetime(2010, 12, 2, 10, 14),
|
'date': datetime.datetime(2010, 12, 2, 10, 14),
|
||||||
|
'modified': datetime.datetime(2010, 12, 2, 10, 20),
|
||||||
'tags': ['foo', 'bar', 'foobar'],
|
'tags': ['foo', 'bar', 'foobar'],
|
||||||
'custom_field': 'http://notmyidea.org',
|
'custom_field': 'http://notmyidea.org',
|
||||||
}
|
}
|
||||||
|
|
@ -137,6 +138,7 @@ class MdReaderTest(ReaderTest):
|
||||||
'title': 'Test md File',
|
'title': 'Test md File',
|
||||||
'summary': '<p>I have a lot to test</p>',
|
'summary': '<p>I have a lot to test</p>',
|
||||||
'date': datetime.datetime(2010, 12, 2, 10, 14),
|
'date': datetime.datetime(2010, 12, 2, 10, 14),
|
||||||
|
'modified': datetime.datetime(2010, 12, 2, 10, 20),
|
||||||
'tags': ['foo', 'bar', 'foobar'],
|
'tags': ['foo', 'bar', 'foobar'],
|
||||||
}
|
}
|
||||||
for key, value in metadata.items():
|
for key, value in metadata.items():
|
||||||
|
|
@ -149,6 +151,7 @@ class MdReaderTest(ReaderTest):
|
||||||
'summary': '<p>パイソンとVirtualenvをまっくでインストールする方法について明確に説明します。</p>',
|
'summary': '<p>パイソンとVirtualenvをまっくでインストールする方法について明確に説明します。</p>',
|
||||||
'category': '指導書',
|
'category': '指導書',
|
||||||
'date': datetime.datetime(2012, 12, 20),
|
'date': datetime.datetime(2012, 12, 20),
|
||||||
|
'modified': datetime.datetime(2012, 12, 22),
|
||||||
'tags': ['パイソン', 'マック'],
|
'tags': ['パイソン', 'マック'],
|
||||||
'slug': 'python-virtualenv-on-mac-osx-mountain-lion-10.8',
|
'slug': 'python-virtualenv-on-mac-osx-mountain-lion-10.8',
|
||||||
}
|
}
|
||||||
|
|
@ -184,6 +187,7 @@ class MdReaderTest(ReaderTest):
|
||||||
'<p>Summary with <strong>inline</strong> markup '
|
'<p>Summary with <strong>inline</strong> markup '
|
||||||
'<em>should</em> be supported.</p>'),
|
'<em>should</em> be supported.</p>'),
|
||||||
'date': datetime.datetime(2012, 10, 31),
|
'date': datetime.datetime(2012, 10, 31),
|
||||||
|
'modified': datetime.datetime(2012, 11, 1),
|
||||||
'slug': 'article-with-markdown-containing-footnotes',
|
'slug': 'article-with-markdown-containing-footnotes',
|
||||||
}
|
}
|
||||||
self.assertEqual(content, expected_content)
|
self.assertEqual(content, expected_content)
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,13 @@
|
||||||
<footer class="post-info">
|
<footer class="post-info">
|
||||||
<abbr class="published" title="{{ article.date.isoformat() }}">
|
<abbr class="published" title="{{ article.date.isoformat() }}">
|
||||||
{{ article.locale_date }}
|
Published: {{ article.locale_date }}
|
||||||
</abbr>
|
</abbr>
|
||||||
|
{% if article.modified != article.date %}
|
||||||
|
<br />
|
||||||
|
<abbr class="modified" title="{{ article.modified.isoformat() }}">
|
||||||
|
Updated: {{ article.locale_modified }}
|
||||||
|
</abbr>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if article.author %}
|
{% if article.author %}
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,11 @@
|
||||||
<abbr class="published" title="{{ article.date.isoformat() }}">
|
<abbr class="published" title="{{ article.date.isoformat() }}">
|
||||||
{{ article.locale_date }}
|
{{ article.locale_date }}
|
||||||
</abbr>
|
</abbr>
|
||||||
|
{% if article.modified != article.date %}
|
||||||
|
<abbr class="modified" title="{{ article.modified.isoformat() }}">
|
||||||
|
{{ article.locale_modified }}
|
||||||
|
</abbr>
|
||||||
|
{% endif %}
|
||||||
{% if article.author %}
|
{% if article.author %}
|
||||||
<address class="vcard author">
|
<address class="vcard author">
|
||||||
By <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
|
By <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,7 @@
|
||||||
{{ translations.translations_for(page) }}
|
{{ translations.translations_for(page) }}
|
||||||
|
|
||||||
{{ page.content }}
|
{{ page.content }}
|
||||||
|
<p>
|
||||||
|
Last updated: {{ page.locale_modified }}
|
||||||
|
</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ class Writer(object):
|
||||||
description=item.get_content(self.site_url),
|
description=item.get_content(self.site_url),
|
||||||
categories=item.tags if hasattr(item, 'tags') else None,
|
categories=item.tags if hasattr(item, 'tags') else None,
|
||||||
author_name=getattr(item, 'author', ''),
|
author_name=getattr(item, 'author', ''),
|
||||||
pubdate=set_date_tzinfo(item.date,
|
pubdate=set_date_tzinfo(item.modified,
|
||||||
self.settings.get('TIMEZONE', None)))
|
self.settings.get('TIMEZONE', None)))
|
||||||
|
|
||||||
def _open_w(self, filename, encoding, override=False):
|
def _open_w(self, filename, encoding, override=False):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue