view tests/bakes/test_ordered_source.yaml @ 1136:5f97b5b59dfe

bake: Optimize cache handling for the baking process. - Get rid of the 2-level pipeline runs... handle a single set of passes. - Go back to load/render segments/layout passes for pages. - Add descriptions of what each job batch does. - Improve the taxonomy pipeline so it doesn't re-bake terms that don't need to be re-baked. - Simplify some of the code.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 23 Apr 2018 21:47:49 -0700
parents 1ce67d2fae0a
children
line wrap: on
line source

---
in:
    manual/00__index.html: "my index"
    manual/01_zzz.html: "zzz"
    manual/02_aaa.html: "aaa"
    manual/02_aaa/01_aaa_zzz: "aaa with zzz"
    manual/02_aaa/02_aaa_bbb: "aaa with bbb"
    manual/03_yyy.html: "yyy"
config:
    site:
        pretty_urls: true
        sources:
            manual:
                type: ordered
                default_layout: none
        routes:
            - url: '/man/%slug%'
              source: manual
outfiles:
    man/index.html: "my index"
    man/aaa/index.html: "aaa"
    man/zzz/index.html: "zzz"
    man/yyy/index.html: "yyy"
    man/aaa/aaa_zzz/index.html: "aaa with zzz"
    man/aaa/aaa_bbb/index.html: "aaa with bbb"
---
in:
    manual/00__index.html: "my index"
    manual/01_zzz.html: "zzz"
    manual/02_aaa.html: "aaa"
    manual/02_aaa/01_aaa_zzz: "aaa with zzz"
    manual/02_aaa/02_aaa_bbb: "aaa with bbb"
    manual/03_yyy.html: "yyy"
config:
    site:
        sources:
            manual:
                type: ordered
                default_layout: none
        routes:
            - url: '/man/%slug%'
              source: manual
outfiles:
    man.html: "my index"
    man/aaa.html: "aaa"
    man/zzz.html: "zzz"
    man/yyy.html: "yyy"
    man/aaa/aaa_zzz.html: "aaa with zzz"
    man/aaa/aaa_bbb.html: "aaa with bbb"