Alexis Metaireau
4a6bf81b2e
remove skribit support. fixes #154
2011-08-11 23:50:04 +02:00
Alexis Metaireau
1edbe044a2
Include the "pelican-quickstart" script.
...
This ease the creation of a new blog. I modified slightly the code wrote by @Skami18
here: https://gist.github.com/1025236/dfa695e67482477907c79ae709ab827b20b18b04
This commit also renames the import script to "pelican-import".
Fixes #129 .
2011-08-11 23:34:53 +02:00
Borgar
a5f47cfae9
Allow overriding reader extensions.
...
This adds an extensions setting all readers in the style of [ext]_EXTENSIONS. So for the MarkdownReader, who's extension is "md", the setting read is MD_EXTENSIONS.
The settings allow overriding the default options passed through the readers. In the case of Markdown the default values are ['codehilite','extra'], but user may change this through the setting:
MD_EXTENSIONS = ['footnotes','abbr','codehilite']
2011-08-07 23:05:58 +00:00
Borgar
cd277672d0
Add a setting to limit feeds to a max number of items.
...
This adds FEED_MAX_ITEMS, which dictates the maximum number of items allowed in a feed.
2011-08-02 23:29:34 +00:00
mviera
a13ae91f0b
Adding more documentation about ARTICLE_PERMALINK_STRUCTURE in settings. Also, i deleted the try except because strftime never raises an exception. Issue #145
...
I set the ARTICLE_PERMALINK_STRUCTURE option as null in settings.py and remove it from pelican sample config file.
2011-07-29 22:09:09 +02:00
mviera
2609004719
I change PERMALINK_STRUCTURE to ARTICLE_PERMALINK_STRUCTURE and updating the settings.rst documentation.
...
Also I have implemented other options to this setting, such as the category, the date, the author, this kind of things.
Finally, I have setted the ARTICLE_PERMALINK_STRUCTURE option as null in pelican.conf.py sample file.
2011-07-29 01:11:35 +02:00
mviera
068a3d2f1d
Year and month in URL. Issue #145
2011-07-27 23:47:50 +02:00
Alexis Metaireau
fc2843306f
Add a settings.py sample into the documentation.
...
Fixes #118
2011-07-22 02:11:18 +02:00
Borgar
53e25ce2cf
Fixed typo in docs: missing plural s in RELATIVE_URLS.
2011-06-29 13:42:12 +00:00
Alexis Metaireau
28c0644eb6
Plugins doc + minor design changes.
2011-06-18 01:03:53 +02:00
Jochen Breuer
94b15b5260
Added template, inlcude in base and some documentation for Piwik.
2011-06-13 07:30:33 +02:00
Skami18
a7baab6a97
Added the manual for pelican-themes
2011-05-22 18:57:02 +02:00
Alexis Metaireau
5277b9dc16
Add the possibility to specify a list of alternatives for locales. Fixes #115
2011-05-19 17:28:45 +01:00
Alexis Metaireau
278038ee87
Add information about TAG_FEED. Fixes #117
2011-05-11 11:10:14 +01:00
Alexis Metaireau
aab3ee78dc
Split the settings into different sections.
...
Fixes #112
2011-05-08 16:15:43 +01:00
Alexis Metaireau
04da794b6b
Add a feature to copy files from src to dest.
...
Fixes #86
2011-05-07 22:47:30 +01:00
Alexis Metaireau
56effc24cb
Add a DEFAULT_METADATA setting.
...
It is now possible to have soem default metadata defined in the settings. Fixes #98
2011-05-07 19:56:55 +01:00
Alexis Metaireau
e09444fa89
Don't delete the output dir as a default behaviour.
...
Fixes #107
2011-05-07 19:27:33 +01:00
Alexis Metaireau
62c08f66fb
Merge branch 'master' of github.com:ametaireau/pelican
2011-04-26 00:34:38 +01:00
derdon
6b10d86407
move a default value to the table cell it belongs to
2011-04-26 00:39:31 +02:00
Alexis Metaireau
36cc74b224
Little doc fix
2011-04-25 23:33:13 +01:00
derdon
e9364df4ed
removed a confusing question mark
2011-04-25 00:40:42 +02:00
derdon
6f89ffec83
removed a useless comma
2011-04-25 00:39:21 +02:00
derdon
9e05b1fd51
various grammar fixes
2011-04-25 00:38:15 +02:00
derdon
b602e3799d
fixed the writings of two variable names in the settings table
2011-04-25 00:36:15 +02:00
derdon
c9f9f4e500
include the default values of the settings in the 1st column in parens
...
this way, it is much easier for the reader to see which variable has which
default value. I also added some default values which could not be found in
the documentation before.
2011-04-25 00:33:55 +02:00
Alexis Metaireau
34d88bb13c
Add documentation about the RELATIVE_URLS setting. Thanks to Günter Kolousek.
2011-04-24 13:05:40 +02:00
Alexander Artemenko
138e19fa19
Merge branch 'master' of git://github.com/ametaireau/pelican
...
Conflicts:
docs/settings.rst
pelican/generators.py
pelican/settings.py
2011-03-23 10:25:38 +03:00
FELD Boris
906c620327
Correct docs.
2011-02-22 11:41:57 +01:00
FELD Boris
6902485c12
Add some docs for skribit integration.
2011-02-22 11:35:06 +01:00
Alexis Metaireau
fabc1f346e
Do not activate the pagination by default
2011-02-18 12:36:53 +00:00
Laureline Guerin
3f9319d55f
some doc about pagination
2011-02-18 11:21:33 +01:00
Alexis Metaireau
816d2cd4b4
Move martyalchin and brownstone theme to pelican-themes
2011-02-01 21:51:58 +00:00
Alexis Metaireau
d13e6f14fb
Changes about locales and dates.
...
Add a way to specify the locale in the settings, and the date formating as well.
Fixes #61 .
2011-02-01 21:44:50 +00:00
Alexis Metaireau
cd9f672662
fix documentation
2011-02-01 02:06:54 +00:00
Alexis Metaireau
d0ec18f4db
Add the ability to sort categories.
...
generator.categories is now a list of (category, articles) instead of a dict. This
is to avoid using ordered dicts that have been introduces in python 2.7, so we stay
as much as possible compatible with older versions.
This fixes #62 . Thanks to Bruno for the report.
2011-02-01 01:57:39 +00:00
Alexis Metaireau
f495cb41d9
Add TWITTER_USERNAME settings in the docs.
2011-01-05 13:51:04 +01:00
Alexander Artemenko
fd47a74b9e
Template loading on demand get_templates was transformed into get_template.
2011-01-02 02:50:08 +03:00
Alexander Artemenko
b3256f0ecd
Added tag cloud generation. Result stored in the context.tag_cloud as list of tuples (tag, weight). Weight is from 1 to TAG_CLOUD_STEPS, lesser weight corresponds to bigger font size.
2011-01-01 23:08:29 +03:00
Allan Whatmough
35ca78f642
Typo
2010-12-29 13:23:09 +00:00
Allan Whatmough
426ee1f76e
Add JINJA_EXTENSIONS to the settings docs
2010-12-29 13:20:53 +00:00
Alexis Metaireau
750e211649
Update the documentations and fix some little things about the translation feature.
2010-12-20 22:50:54 +00:00
solsTiCe d'Hiver
05f90fec8e
Add missing word in settings.rst docs
2010-12-16 20:48:43 +01:00
Florian Preinstorfer
07393cf3b8
sort notmyidea template settings
2010-12-15 21:52:20 +01:00
Alexis Metaireau
2bccc298fb
Settings have to be in caps.
2010-12-15 18:14:54 +00:00
Alexis Metaireau
c347e3be42
Switch back the theme. Order the settings.
2010-12-15 18:01:29 +00:00
Florian Preinstorfer
1d2af7aa01
added a keep commandline switch (-k, --keep)
...
-keep output directory if keep commandline switch is provided
-added KEEP_OUTPUT_DIRECTORY to settings (default is to delete output
directory before processing)
-updated documentation
2010-12-15 09:27:51 +01:00
Alexis Metaireau
3e9b80e993
Fix #21 : Add a setting for the archive order (REVERSE_ARCHIVE_ORDER)
2010-12-14 15:55:26 +00:00
Alexis Metaireau
e0e62d8b8e
Update the documentation.
2010-12-14 15:31:11 +00:00