derwinlu
e3f5e39e17
fix outdated content_object_init refs
...
* remove content_object_init section from docs
* improve content_object_init test
The content_object_init signal used to set its class as sender and pass
the instance as additional arg in 6100773 . Commit ed907b4 removed this
behaviour to bring it inline with other signals, on the basis that
you can test for the class of the object anyway.
We also had a test in place, checking this behaviour, but it was poorly
implemented, not actually checking if the function ever got called.
closes #1711
2015-06-12 19:23:17 +02:00
Justin Mayer
1da84349c4
Merge pull request #1693 from zackw/static-honor-ignore-files
...
Honor 'IGNORE_FILES' in StaticGenerator._copy_paths (#1692 ).
2015-06-10 11:54:29 -07:00
Justin Mayer
b7e8af5977
Merge pull request #1747 from ingwinlu/fix_cache
...
Fix caching and disable by default
2015-06-09 08:42:51 -07:00
derwinlu
db59c16f42
set default for caching to false
...
ref #1689
* set default settigns in settings.py to False for
- LOAD_CONTENT_CACHE
- CACHE_CONTENT
* remove AUTORELOAD_IGNORE_CACHE and add deprecation warning
* update settings.rst to reflect the new default values
* update test_cache to enable caching options
2015-06-08 09:35:00 +02:00
Justin Mayer
a8d41e0c57
Merge pull request #1669 from zackw/semicolon-separated-author-lists
...
Support semicolon-separated author/tag lists
2015-06-06 09:17:52 -07:00
Zack Weinberg
c7b9a339eb
Apply 'IGNORE_FILES' globs to directories as well (issue 1692)
...
This adjusts the only piece of code that currently looks at IGNORE_FILES.
A subsequent commit will add a new use, with the same semantics.
2015-06-04 17:57:06 -04:00
Zack Weinberg
c918380802
Support semicolon-separated author/tag lists.
...
Idea borrowed from Docutils. This allows one to write author lists in
lastname,firstname format. The code change also means that readers with
fancy metadata that can natively represent lists (e.g. Docutils itself,
or MD-Yaml) don't have to merge 'em back together for process_metadata's
sake.
2015-06-04 17:31:20 -04:00
Steven Maude
b6f391d8e9
Document make publish
...
Also clarify the distinction between make html and make publish.
2015-06-03 09:35:13 +01:00
Steven Maude
551909893e
Document how to use a publish configuration
...
Explain how to import settings from pelicanconf.py into publishconf.py.
2015-06-03 09:35:05 +01:00
Alex Chan
641b3ffa71
Fix capitalisation of WordPress
2015-05-24 13:08:30 +01:00
Alex Chan
f8f89a8476
Fix spelling mistakes in docs
2015-05-24 13:08:23 +01:00
Justin Mayer
8786732044
Merge pull request #1703 from ingwinlu/remove_tag_cloud
...
Remove tag_cloud from Pelican core
2015-05-13 23:19:24 +02:00
Forest
2f048d3652
Add backtick missing from my last docs commit.
2015-05-09 21:20:07 -07:00
Forest
264d75b9e0
Clarify STATIC_EXCLUDE_SOURCES documentatoin.
2015-05-08 13:39:59 -07:00
Justin Mayer
807b3bced3
Merge pull request #1471 from roidelapluie/master
...
Add a new signal: page_writer_finalized
2015-05-06 13:13:48 +02:00
winlu
3effe464c6
add faq entry about tag-cloud outsourcing
2015-04-20 16:36:18 +02:00
winlu
9dd4080fe6
remove tag_cloud from core
2015-04-20 12:16:05 +02:00
Daniel M. Drucker
f864418b9e
make the quickstart work
...
The quickstart was worded confusingly - it said "from your project directory", which implied doing a `cd ..` down to the `projects` dir, which would cause `pelican content` to fail. In fact, you need to be in the `yoursite` directory, which is the directory that has the `content` directory in it.
2015-04-13 11:12:52 -04:00
winlu
adc5c4b572
fix broken refs
2015-04-10 09:02:12 +02:00
winlu
5ca808ed59
fix broken internal metadata link
2015-04-06 09:52:16 +02:00
Deniz Turgut
946e95172f
Use pelican.server in Quickstart docs
2015-04-04 15:17:59 -04:00
Justin Mayer
ebf5fca520
Merge pull request #1481 from hrbonz/template_context_docs
...
Add object details to theme docs
2015-03-24 09:57:32 -07:00
robertlagrant
ffe71d324d
Change docs wording on cache regen for #1630
2015-03-13 13:42:56 +02:00
Justin Mayer
d53c166f95
Clarify docs for FORMATTED_FIELDS setting
2015-02-25 09:42:33 -08:00
Patrick Fournier
d0afaa5fbe
Format custom metadata fields listed in the FORMATTED_FIELDS setting.
...
Adding FORMATTED_FIELDS to the default settings with ['summary'] as the default value.
2015-02-24 16:57:05 -05:00
pkirk
79aaedc681
rsync -avc, not --avc
2015-02-23 20:13:33 +01:00
Justin Mayer
d4ba7b7291
Correct Dotclear sample file link in importer docs
...
Fixes #1570
2015-02-18 09:41:27 -08:00
Justin Mayer
bfbb7d4bb5
Merge pull request #1581 from georgevreilly/win-fixes
...
Fix Pelican rendering and unit tests on Windows.
2015-02-17 17:06:19 -08:00
Justin Mayer
6a69a2c943
Merge pull request #1608 from abackstrom/patch-1
...
Docs: Note how posts are published when 'draft' is default
2015-02-17 11:21:51 -08:00
Justin Mayer
1301343d1d
Merge pull request #1582 from ingwinlu/quickstart_python_python2
...
DOCS: http server module for python3 is different then python2
2015-02-17 11:11:14 -08:00
Justin Mayer
ca0477c62f
Merge pull request #1593 from iKevinY/clarify-setting-types
...
Change the documented type of various settings
2015-02-17 10:41:07 -08:00
Justin Mayer
9152e021e2
Merge pull request #1616 from kernc/all_generators_finalized
...
Add signal: all_generators_finalized (see getpelican/pelican-plugins#314 )
2015-02-11 10:48:51 -08:00
Kernc
265f68a879
Add signal: all_generators_finalized ( getpelican/pelican-plugins#314 )
...
Some plugins have used `content_object_init` signal and read `summary`
or `content` properties of the content object. This resulted in
internal (`{filename}`) links being unresolved. When used, this signal
should hopefully mitigate that.
See also:
* https://github.com/getpelican/pelican-plugins/issues/314
* https://github.com/getpelican/pelican-plugins/pull/410
2015-02-07 16:13:12 +01:00
Matthias Bussonnier
f56b699d5b
Fix quotes in faq
2015-02-06 14:30:02 -08:00
Annika Backstrom
4e2e00b450
Docs: Note how posts are published when 'draft' is default
2015-02-01 16:45:26 -05:00
George V. Reilly
4c25610cd8
Fix Pelican rendering and unit tests on Windows.
...
* Fix {filename} links on Windows.
Otherwise '{filename}/foo/bar.jpg' doesn't work
* Clean up relative Posix path handling in contents.
* Use Posix paths in readers
* Environment for Popen must be strs, not unicodes.
* Ignore Git CRLF warnings.
* Replace CRLFs with LFs in inputs on Windows.
* Fix importer tests
* Fix test_contents
* Fix one last backslash in paginated output
* Skip the remaining failing locale tests on Windows.
* Document the use of forward slashes on Windows.
* Add some Fabric and ghp-import notes
2015-01-25 17:42:53 -08:00
Kevin Yap
88ad46fd4d
Change documented type of various settings
...
- DEFUALT_METADATA, tuple -> dictionary
- OUTPUT_RETENTION, tuple -> list
- JINJA_FILTERS, list -> dictionary
- DIRECT_TEMPLATES, tuple -> list
2015-01-17 18:15:24 -08:00
Kevin Yap
8aa9a9329e
Clarify that 'fs' date setting is a string
2015-01-17 18:15:20 -08:00
Shrayas
bf7966183a
Changing dates in copyright information
2015-01-12 09:14:09 +05:30
Shrayas
38c307eefd
Add link to GitHub docs on custom 404 pages
2015-01-11 19:18:34 -08:00
Justin Mayer
cff5f3e774
Add custom 404 page to Tips section of docs
2015-01-11 18:54:15 -08:00
winlu
30c4d0eaf3
fix whitespace
2015-01-05 12:22:00 +01:00
winlu
5432dc04a6
fix double definition of simple theme link to different targets
2015-01-05 12:07:01 +01:00
winlu
3763f96011
add comment to 'preview your site' section mentioning the http server module for python3 is different then python
2015-01-05 11:50:48 +01:00
Justin Mayer
2c8300e76f
Merge pull request #1537 from omasanori/themes-doc
...
Add missing feed variables to theme docs
2014-12-06 08:28:28 -08:00
Justin Mayer
3e058dd69c
Merge pull request #1539 from rndmh3ro/patch-1
...
Added documentation for default draft-status of articles
2014-12-06 08:26:50 -08:00
George Angelopoulos
5006dc95d2
docs: fix table formating in importer.rst
2014-11-25 17:38:37 +02:00
Sebastian Gumprich
b3b2e84533
Added documentation for default draft-status of articles
2014-11-18 13:37:27 +00:00
OGINO Masanori
33994f0024
Add missing names in a list of the feed variables.
...
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
2014-11-18 19:48:35 +09:00
Justin Mayer
30b8a2069e
Merge branch 'master' of github.com:getpelican/pelican
2014-11-04 19:55:21 -08:00