Mercurial > piecrust2
view tests/servings/test_debug_info.yaml @ 787:f6f9a284a5f3
routing: Simplify how route functions are declared and handled.
* Site config now only has to declare the function name.
* Simply code for running route functions.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 01 Sep 2016 23:00:58 -0700 |
parents | e7fb848fd55d |
children | 45ad976712ec |
line wrap: on
line source
--- url: /foo in: pages/foo.md: | BLAH {{piecrust.debug_info}} out: BLAH --- url: /foo?!debug in: pages/foo.md: | BLAH {{piecrust.debug_info}} out_contains: | BLAH <div id="piecrust-debug-window" --- url: /foo in: pages/foo.md: BLAH {{pcurl('bar')}} out: BLAH /bar.html --- url: /foo?!debug in: pages/foo.md: BLAH {{pcurl('bar')}} out: BLAH /bar.html?!debug --- url: /foo config: site: pretty_urls: true in: pages/foo.md: BLAH {{pcurl('bar')}} out: BLAH /bar --- url: /foo?!debug config: site: pretty_urls: true in: pages/foo.md: BLAH {{pcurl('bar')}} out: BLAH /bar?!debug