Commit graph

427 commits

Author SHA1 Message Date
Justin Mayer
007cd9b8fd Minor doc changes, including those for webassets 2012-10-12 23:01:50 +02:00
Nico Di Rocco
31afafda0f Added possible uses for the finalized signal to the docs 2012-10-12 23:01:50 +02:00
m-r-r
0073c64e21 Sitemap plugin & get_generators signal
This is a combination of 13 commits:

1. New signal for registering custom generators
2. New plugin: pelican.plugins.sitemap
3. pelican.plugins.sitemap: more settings
4. pelican.plugins.sitemap: translations are indexed
5. pelican.plugins.sitemap: added documentation
6. pelican.plugins.sitemap: added XML DTD & W3C dates
7. pelican.plugins.sitemap: removed a <changefreq> bug
8. the `get_generators` can now return a tuple
9. pelican.plugins.sitemap: cleaned the code
10. pelican.plugin.sitemap: settings changes
11. sitemap plugin: improved configuration & documentation
12. sitemap plugin: :set spell
13. sitemap plugin: removed useless whitespaces
2012-10-12 23:01:50 +02:00
Nico Di Rocco
966065767a Added description for the finalized signal in the docs 2012-10-12 23:01:50 +02:00
Nico Di Rocco
519d664a40 Added a new signal finalized that is dispatched when pelican finishes.
This signal can then be used for post processing.
2012-10-12 23:01:50 +02:00
Alexis Metaireau
48625964f1 Merge pull request #510 from nrocco/sourcegen
New source file .text generator
2012-10-12 13:57:18 -07:00
Alexis Metaireau
848fdedec7 Merge pull request #523 from StephaneBunel/master
New config parameter to enable Markdown extensions
2012-10-12 13:32:30 -07:00
Stéphane Bunel
e0674aad87 FIX: Standardizing "extentions" to "extensions" 2012-10-03 22:37:18 +02:00
Nico Di Rocco
c53a06a5d5 Simplified configuration option to be more flexible
As @ametaireau suggested: instead of having logic that prepends the
OUTPUT_SOURCES_EXTENSION with a '.' we allow the user more
flexibility to control the extension that can be used.
2012-10-03 22:06:45 +02:00
Alexis Metaireau
1580f7fea7 Merge pull request #527 from justinmayer/quickstart
Add Typogrify to docs as optional dependency
2012-10-02 07:12:55 -07:00
Thanos Lefteris
0bb323f63c Monospace default values of settings 2012-10-01 18:32:53 +03:00
Stéphane Bunel
45c836fdf5 Update docs and tests for MARKDOWN_EXTENTIONS 2012-09-28 23:09:57 +02:00
Nico Di Rocco
a7dd21ffaf Added a new setting OUTPUT_SOURCES_EXTENSION
Using this configurable setting users can control what extension will be
appended to filenames by the SourcesGenerator.

The default is to use the ``.text`` extension.
2012-09-28 14:59:05 +02:00
Alexis Metaireau
7828614459 Merge pull request #471 from nrocco/master
New signal called 'finalized'
2012-09-25 15:03:38 -07:00
Chris Streeter
e096fb66fb Correctly use the right variable for webassets
According to [the webasset docs](http://webassets.readthedocs.org/en/latest/integration/jinja2.html#using-the-tag)
the variable should be `ASSET_URL` instead of `ASSETS_URL`.
2012-09-19 10:24:51 -07:00
Nico Di Rocco
0a1a868b37 Added sourcefile generator that generates .text files 2012-09-15 23:11:09 +02:00
Justin Mayer
56e2c67f7f Add Typogrify to docs as optional dependency 2012-09-14 10:06:42 -07:00
Nico Di Rocco
81d6d85461 Merge branch 'master' of git://github.com/getpelican/pelican 2012-09-11 22:11:59 +02:00
Justin Mayer
3af7e2251d Clarify specifying paths in settings. Closes #477. 2012-09-11 09:27:26 -07:00
Justin Mayer
728d6076e5 Clarify docs for specifying theme. Closes #475. 2012-09-11 07:29:34 -07:00
Justin Mayer
161f60e569 Add a list of plugins to the docs. Closes #493. 2012-09-11 06:50:33 -07:00
Justin Mayer
20daa28452 Eliminate extraneous whitespace 2012-09-10 20:50:45 -07:00
Justin Mayer
3054e71f5b Minor doc changes, including those for webassets 2012-09-10 20:48:13 -07:00
Nico Di Rocco
ff3c12fd71 Added possible uses for the finalized signal to the docs 2012-09-07 08:56:33 +02:00
Nico Di Rocco
75312305b9 Merge branch 'master' of git://github.com/getpelican/pelican 2012-09-07 08:49:00 +02:00
Trae Blain
41fdfa63b1 Fixed page_name call to adapt to the link structure provided by the
Settings file. Also updated the documentation accordingly.

Update documentation to cover new page_name behavior

Fixed page_name to adapt to the links provided by the Settings file. Includes documentation updates as well.

Updated terms to maintain better syntax and consistancy

Added docstring to _from_settings() to clarify the get_page_name argument that was added. Explains why/when this argument is used.

Revert contents.py back to commit 2f29c51

Re-added docstring to _get_settings method, but this time not deleting things I shouldn't

Corrected readability change that was altered during revert.
2012-09-04 08:55:43 -05:00
Rachid Belaid
c462237b9d Add new setting EXTRA_TEMPLATES_PATHS
This setting allow to use template which are not in the theme.
Should help to build more generic themes around the content.
2012-09-03 00:57:23 +01:00
Rachid Belaid
6100773c24 Add a new signal content_object_init
It's sent when a new content object is created: Page, Article
2012-09-02 19:20:42 +01:00
m-r-r
229b0e4dcc Sitemap plugin & get_generators signal
This is a combination of 13 commits:

1. New signal for registering custom generators
2. New plugin: pelican.plugins.sitemap
3. pelican.plugins.sitemap: more settings
4. pelican.plugins.sitemap: translations are indexed
5. pelican.plugins.sitemap: added documentation
6. pelican.plugins.sitemap: added XML DTD & W3C dates
7. pelican.plugins.sitemap: removed a <changefreq> bug
8. the `get_generators` can now return a tuple
9. pelican.plugins.sitemap: cleaned the code
10. pelican.plugin.sitemap: settings changes
11. sitemap plugin: improved configuration & documentation
12. sitemap plugin: :set spell
13. sitemap plugin: removed useless whitespaces
2012-09-02 18:17:22 +02:00
Florian Jacob
39db9ddcfd Get HtmlReader to work again
wrote unit tests and documentation, improved regular expression.
The HtmlReader is enabled by default now and parses metadata in html
files of the form:
<!-- key:value -->
2012-09-02 10:29:09 +02:00
Nico Di Rocco
c1b0e83a44 Added description for the finalized signal in the docs 2012-08-31 22:17:19 +02:00
Nico Di Rocco
680e04b4a1 Merge remote-tracking branch 'upstream/master' 2012-08-31 22:04:05 +02:00
Simon
472063e98c add some doc for webassets:
- usage of the sass compiler as discussed in PR #441
- debug mode and compilers (#481)
2012-08-25 23:16:50 +02:00
Simon
d1d737777c fix issue #480 2012-08-25 22:50:19 +02:00
David Marble
831e1d04b9 docs: Pelican outputs to output/ not content/. Markdown ::: syntax must be indented 2012-08-23 18:31:45 -07:00
Nico Di Rocco
e9a0717aea Added a new signal finalized that is dispatched when pelican finishes.
This signal can then be used for post processing.
2012-08-22 23:05:07 +02:00
Eric Case
be5b5e880d added a missing space 2012-08-21 14:14:10 -07:00
Justin Mayer
b1866c8f92 Change email address in docs to "authors@" alias 2012-08-21 09:04:37 -07:00
Zoresvit
892761f732 Fixed description of copying themes/static content.
The content from `static` directory is actually copied into `theme/`, not `theme/static/`.
2012-08-16 14:19:10 +03:00
Justin Mayer
cadcfa43c3 Increment version to 3.1 in changelog and setup.py 2012-08-08 12:18:02 -07:00
Justin Mayer
440a68636b Fix silly mistakes in last doc update 2012-08-08 10:27:45 -07:00
Justin Mayer
532001c851 Add FAQ entry re: arbitrary metadata in templates 2012-08-08 10:21:29 -07:00
Justin Mayer
3bf377fd5f Minor doc fixes 2012-08-08 09:29:04 -07:00
Justin Mayer
68cf8d5c3d Update Pelican 3.0 release date in changelog 2012-08-08 08:45:04 -07:00
Justin Mayer
c0e3926b0d Prepare for 3.0 release, make README more readable
Since PyPI doesn't seem to handle anything but the most basic of reST
formatting, moving the inline links to the end of the file should
improve readability when the file is viewed in its raw form. Also
updated changelog with the 3.0 release date.
2012-08-06 07:40:10 -07:00
Justin Mayer
a3e24949af Provide specific links to virtualenvwrapper docs
Rather than detail how to install and configure virtualenvwrapper, it
seems best to instead link to the appropriate external docs.
2012-08-06 06:11:54 -07:00
Feth Arezki
8f7a3044ec Update docs/getting_started.rst
virtualenvwrapper requires a shell restart
2012-08-06 14:24:38 +02:00
Justin Mayer
0c02536605 Give devserver its own make target
Restore "make serve" to a non-backgrounded SimpleHTTPServer process and
give the develop_server.sh its own make target at "make devserver".
Add a few missing make targets to the help list and re-order targets for
consistency. Add note to docs regarding how to stop the devserver.
2012-08-05 17:25:39 -07:00
Justin Mayer
beb4dccc8c Doc links changed to new domain. Other doc fixes. 2012-08-04 11:15:44 -07:00
Justin Mayer
24d5a6053e Various fixes and improvements to the docs 2012-08-01 18:20:12 -07:00