<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python/pelican.git, branch caching_warning</title>
<subtitle>github.com: getpelican/pelican.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/'/>
<entry>
<title>add warnings about caching interfering with changes to settings and plugins</title>
<updated>2014-11-03T19:38:21+00:00</updated>
<author>
<name>Ondrej Grover</name>
<email>ondrej.grover@gmail.com</email>
</author>
<published>2014-11-03T14:30:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=2beefb89c51b624dd02e63825c42f3a9bffef37c'/>
<id>2beefb89c51b624dd02e63825c42f3a9bffef37c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1509 from foresto/static-files-anywhere</title>
<updated>2014-11-01T21:34:33+00:00</updated>
<author>
<name>Justin Mayer</name>
<email>entroP@gmail.com</email>
</author>
<published>2014-11-01T21:34:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=a81fcd3fefa7ffce657805163cfb32470c962bf9'/>
<id>a81fcd3fefa7ffce657805163cfb32470c962bf9</id>
<content type='text'>
Make StaticGenerator skip content sources. Refs #1019.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make StaticGenerator skip content sources. Refs #1019.</pre>
</div>
</content>
</entry>
<entry>
<title>Make StaticGenerator skip content sources. Refs #1019.</title>
<updated>2014-10-31T23:46:01+00:00</updated>
<author>
<name>Forest</name>
<email>web11.forest@tibit.com</email>
</author>
<published>2014-10-18T20:11:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=48f4f0850d7fbbe2b03f1fbd309768b7ae940822'/>
<id>48f4f0850d7fbbe2b03f1fbd309768b7ae940822</id>
<content type='text'>
This change partially addresses issue #1019, by teaching Pelican to distinguish
between static files and content source files. A user can now safely add the
same directory to both STATIC_PATHS and PAGE_PATHS (or ARTICLE_PATHS). Pelican
will then process the content source files in that directory normally, and
treat the remaining files as static, without copying the raw content source
files to the output directory. (The OUTPUT_SOURCES setting still works.)

In other words, images and markdown/reST files can now safely live together.

To keep those files together in the generated site, STATIC_SAVE_AS and
PAGE_SAVE_AS (or ARTICLE_SAVE_AS) should point to the same output directory.

There are two new configuration settings:

STATIC_EXCLUDES=[]  # This works just like PAGE_EXCLUDES and ARTICLE_EXCLUDES.
STATIC_EXCLUDE_SOURCES=True  # Set this to False to get the old behavior.

Two small but noteworthy internal changes:

StaticGenerator now runs after all the other generators. This allows it to see
which files are meant to be processed by other generators, and avoid them.

Generators now include files that they fail to process (e.g. those with missing
mandatory metadata) along with all the other paths in context['filenames'].
This allows such files to be excluded from StaticGenerator's file list, so they
won't end up accidentally published. Since these files have no Content object,
their value in context['filenames'] is None. The code that uses that dict has
been updated accordingly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change partially addresses issue #1019, by teaching Pelican to distinguish
between static files and content source files. A user can now safely add the
same directory to both STATIC_PATHS and PAGE_PATHS (or ARTICLE_PATHS). Pelican
will then process the content source files in that directory normally, and
treat the remaining files as static, without copying the raw content source
files to the output directory. (The OUTPUT_SOURCES setting still works.)

In other words, images and markdown/reST files can now safely live together.

To keep those files together in the generated site, STATIC_SAVE_AS and
PAGE_SAVE_AS (or ARTICLE_SAVE_AS) should point to the same output directory.

There are two new configuration settings:

STATIC_EXCLUDES=[]  # This works just like PAGE_EXCLUDES and ARTICLE_EXCLUDES.
STATIC_EXCLUDE_SOURCES=True  # Set this to False to get the old behavior.

Two small but noteworthy internal changes:

StaticGenerator now runs after all the other generators. This allows it to see
which files are meant to be processed by other generators, and avoid them.

Generators now include files that they fail to process (e.g. those with missing
mandatory metadata) along with all the other paths in context['filenames'].
This allows such files to be excluded from StaticGenerator's file list, so they
won't end up accidentally published. Since these files have no Content object,
their value in context['filenames'] is None. The code that uses that dict has
been updated accordingly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1511 from olivierverdier/makefile_tab</title>
<updated>2014-10-22T23:00:39+00:00</updated>
<author>
<name>Justin Mayer</name>
<email>entroP@gmail.com</email>
</author>
<published>2014-10-22T23:00:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=f9bd4acb10bb070d2404036ddf108878a58dec3f'/>
<id>f9bd4acb10bb070d2404036ddf108878a58dec3f</id>
<content type='text'>
Fix missing tab in Makefile template</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix missing tab in Makefile template</pre>
</div>
</content>
</entry>
<entry>
<title>fix missing tab in Makefile template</title>
<updated>2014-10-20T13:22:11+00:00</updated>
<author>
<name>Olivier Verdier</name>
<email>olivier.verdier@gmail.com</email>
</author>
<published>2014-10-20T13:22:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=5b389d6f36bcab96bad7b4cd5fdf5378710a802c'/>
<id>5b389d6f36bcab96bad7b4cd5fdf5378710a802c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1484 from ingwinlu/complete_rss_feed_removal</title>
<updated>2014-10-10T18:15:33+00:00</updated>
<author>
<name>Justin Mayer</name>
<email>entroP@gmail.com</email>
</author>
<published>2014-10-10T18:15:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=17c551c7934935ab5959b3705eafc69874054ed7'/>
<id>17c551c7934935ab5959b3705eafc69874054ed7</id>
<content type='text'>
add missing author feeds to pelicanconf template</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
add missing author feeds to pelicanconf template</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #1487 from foresto/spelling</title>
<updated>2014-10-04T18:27:38+00:00</updated>
<author>
<name>Kyle Fuller</name>
<email>inbox@kylefuller.co.uk</email>
</author>
<published>2014-10-04T18:27:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=7feb638b5c568eac73aaa623264b9bb3e99caadc'/>
<id>7feb638b5c568eac73aaa623264b9bb3e99caadc</id>
<content type='text'>
Spelling correction in docs: usefull -&gt; useful.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Spelling correction in docs: usefull -&gt; useful.</pre>
</div>
</content>
</entry>
<entry>
<title>Spelling correction in docs: usefull -&gt; useful.</title>
<updated>2014-10-01T09:05:49+00:00</updated>
<author>
<name>Forest</name>
<email>web11.forest@tibit.com</email>
</author>
<published>2014-10-01T09:02:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=96eaf9cea0af099025a4ff6812752fe3b2909085'/>
<id>96eaf9cea0af099025a4ff6812752fe3b2909085</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>EXTRA_PATH_METADATA path separator is OS-specific</title>
<updated>2014-09-30T17:40:26+00:00</updated>
<author>
<name>tylerhartley</name>
<email>tyleha@gmail.com</email>
</author>
<published>2014-09-20T01:45:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=693ad3296cc86915002bb86edc8dc08b714ed46e'/>
<id>693ad3296cc86915002bb86edc8dc08b714ed46e</id>
<content type='text'>
Updating docs for EXTRA_PATH_METADATA to clarify that OS-specific path
separators must be used as keys, unlike some other Pelican variables.
Refs # 1133.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updating docs for EXTRA_PATH_METADATA to clarify that OS-specific path
separators must be used as keys, unlike some other Pelican variables.
Refs # 1133.
</pre>
</div>
</content>
</entry>
<entry>
<title>add missing author feeds to pelicanconf template</title>
<updated>2014-09-29T21:38:39+00:00</updated>
<author>
<name>winlu</name>
<email>derwinlu+git@gmail.com</email>
</author>
<published>2014-09-29T21:38:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=9b4b123a0ea56af6c74e4d2596a9f9db5dcbb869'/>
<id>9b4b123a0ea56af6c74e4d2596a9f9db5dcbb869</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
