Skip to content

Commit

Permalink
Regenerate path handler documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Sep 4, 2015
1 parent 4f84dd4 commit 17a0912
Showing 1 changed file with 84 additions and 26 deletions.
110 changes: 84 additions & 26 deletions docs/path_handlers.txt
Expand Up @@ -7,67 +7,89 @@ the description for all the supported kinds.


archive
Link to archive path, name is the year. For example:
Link to archive path, name is the year.

Example:

link://archive/2013 => /archives/2013/index.html


archive_atom
Link to atom archive path, name is the year. For example:
Link to atom archive path, name is the year.

Example:

link://archive_atom/2013 => /archives/2013/index.atom


author
Link to an author's page. For example:
Link to an author's page.

Example:

link://author/joe => /authors/joe.html


author_atom
Link to an author's Atom feed. For example:
Link to an author's Atom feed.

Example:

link://author_atom/joe => /authors/joe.atom


author_index
Link to the author's index. For example:
Link to the author's index.

Example:

link://authors/ => /authors/index.html


author_rss
Link to an author's RSS feed. For example:
Link to an author's RSS feed.

Example:

link://author_rss/joe => /authors/joe.rss


category
A link to a category. For example:
A link to a category.

Example:

link://category/dogs => /categories/dogs.html


category_atom
A link to a category's Atom feed. For example:
A link to a category's Atom feed.

Example:

link://category_atom/dogs => /categories/dogs.atom


category_index
A link to the category index. For example:
A link to the category index.

Example:

link://category_index => /categories/index.html


category_rss
A link to a category's RSS feed. For example:
A link to a category's RSS feed.

Example:

link://category_rss/dogs => /categories/dogs.xml


filename
Link to post or story by source filename. For example:
Link to post or story by source filename.

Example:

link://filename/manual.txt => /docs/handbook.html

Expand All @@ -84,7 +106,16 @@ gallery


gallery_global
Link to the global gallery path, which contains all the images.
Link to the global gallery path, which contains all the images in galleries.

There is only one copy of an image on multilingual blogs, in the site root.

link://gallery_global/london => /galleries/trips/london/index.html

link://gallery_global/trips/london => /galleries/trips/london/index.html

(a ``gallery`` link could lead to eg. /en/galleries/trips/london/index.html)


gallery_rss
Link to an image gallery's RSS feed.
Expand All @@ -98,84 +129,111 @@ gallery_rss


index
Link to a numbered index. For example:
Link to a numbered index.

Example:

link://index/3 => /index-3.html


index_atom
Link to a numbered Atom index. For example:
Link to a numbered Atom index.

Example:

link://index_atom/3 => /index-3.atom


listing
A link to a listing. It will try to use the file name if
it's not ambiguous, or the file path. For example:
A link to a listing.

It will try to use the file name if it's not ambiguous, or the file path.

Example:

link://listing/hello.py => /listings/tutorial/hello.py.html

link://listing/tutorial/hello.py => /listings/tutorial/hello.py.html


post_path
Link to the destination of an element in the POSTS/PAGES settings. For example:
Link to the destination of an element in the POSTS/PAGES settings.

Example:

link://post_path/posts => /blog


root
Link to the current language's root. For example:
Link to the current language's root.

Example:

link://root_path => /

link://root_path => /translations/spanish/


rss
A link to the RSS feed path. For example:
A link to the RSS feed path.

Example:

link://rss => /blog/rss.xml


section_index
Link to the index for a section. For example:
Link to the index for a section.

Example:

link://section_index/cars => /cars/index.html


section_index_atom
Link to the Atom index for a section. For example:
Link to the Atom index for a section.

Example:

link://section_index_atom/cars => /cars/index.atom


slug
A link to a post with given slug, if not ambiguous. For example:
A link to a post with given slug, if not ambiguous.

Example:

links://slug/yellow-camaro => /posts/cars/awful/yellow-camaro/index.html


tag
A link to a tag's page. For example:
A link to a tag's page.

Example:

link://tag/cats => /tags/cats.html


tag_atom
A link to a tag's Atom feed. For example:
A link to a tag's Atom feed.

Example:

link://tag_atom/cats => /tags/cats.atom


tag_index
A link to the tag index. For example:
A link to the tag index.

Example:

link://tag_index => /tags/index.html


tag_rss
A link to a tag's RSS feed. For example:
A link to a tag's RSS feed.

Example:

link://tag_rss/cats => /tags/cats.xml

Expand Down

0 comments on commit 17a0912

Please sign in to comment.