├── .coveragerc ├── .flake8 ├── .github ├── CODEOWNERS ├── release_notes.py ├── renovate.json5 └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── VERSION ├── aip_site ├── __init__.py ├── cli.py ├── jinja │ ├── __init__.py │ ├── env.py │ ├── ext │ │ ├── __init__.py │ │ ├── sample.py │ │ └── tab.py │ └── loaders.py ├── md.py ├── models │ ├── __init__.py │ ├── aip.py │ ├── page.py │ ├── scope.py │ └── site.py ├── publisher.py ├── server.py ├── support │ ├── assets │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── github.png │ │ │ └── glue-icons.svg │ │ ├── js │ │ │ ├── aip │ │ │ │ ├── aip-graphviz.js │ │ │ │ └── aip-index.js │ │ │ ├── global.js │ │ │ ├── graphviz │ │ │ │ ├── lite.render.js │ │ │ │ └── viz.js │ │ │ ├── search │ │ │ │ ├── pagination.js │ │ │ │ ├── tipuesearch.min.js │ │ │ │ └── tipuesearch_set.js │ │ │ └── syntax.js │ │ └── misc │ │ │ └── ebnf-filtering.txt │ ├── scss │ │ ├── hero.scss │ │ ├── imports │ │ │ ├── aip │ │ │ │ ├── badges.scss │ │ │ │ ├── breadcrumbs.scss │ │ │ │ ├── header.scss │ │ │ │ ├── nav.scss │ │ │ │ ├── news.scss │ │ │ │ └── tables.scss │ │ │ ├── callouts.scss │ │ │ ├── colors.scss │ │ │ ├── footer.scss │ │ │ ├── header.scss │ │ │ ├── headings.scss │ │ │ ├── lists.scss │ │ │ ├── nav.scss │ │ │ ├── sidebar.scss │ │ │ ├── syntax.scss │ │ │ ├── tables.scss │ │ │ └── tabs.scss │ │ ├── print.scss │ │ ├── search.scss │ │ └── style.scss │ └── templates │ │ ├── aip-listing.html.j2 │ │ ├── aip.html.j2 │ │ ├── includes │ │ ├── breadcrumb.html.j2 │ │ ├── footer.html.j2 │ │ ├── header.html.j2 │ │ ├── nav.html.j2 │ │ └── state_banners │ │ │ ├── draft.html.j2 │ │ │ ├── rejected.html.j2 │ │ │ ├── replaced.html.j2 │ │ │ ├── reviewing.html.j2 │ │ │ └── withdrawn.html.j2 │ │ ├── index.html.j2 │ │ ├── layouts │ │ └── base.html.j2 │ │ ├── page.html.j2 │ │ ├── redirect.html.j2 │ │ ├── search.html.j2 │ │ └── search.js.j2 └── utils.py ├── setup.py └── tests ├── conftest.py ├── test_cli.py ├── test_data ├── CONTRIBUTING.md ├── aip │ ├── general │ │ ├── 0031.md │ │ ├── 0038 │ │ │ ├── aip.md │ │ │ └── aip.yaml │ │ ├── 0043.md │ │ ├── 0059.md │ │ ├── 0062 │ │ │ ├── aip.en.md.j2 │ │ │ ├── aip.md.j2 │ │ │ ├── aip.yaml │ │ │ ├── les_mis.oas.yaml │ │ │ └── les_mis.proto │ │ ├── red-herring │ │ └── scope.yaml │ ├── poetry │ │ ├── 1609.md │ │ ├── 1622.md │ │ └── scope.yaml │ └── red-herring ├── config │ ├── ext.yaml │ ├── header.yaml │ ├── hero.yaml │ └── urls.yaml └── pages │ ├── authors │ ├── dickens.md │ └── hugo.md │ ├── general │ ├── faq.md.j2 │ ├── licensing.md │ ├── licensing.yaml │ └── page.md │ └── red-herring ├── test_jinja_ext_sample.py ├── test_jinja_ext_tab.py ├── test_jinja_loaders.py ├── test_md.py ├── test_models_aip.py ├── test_models_page.py ├── test_models_scope.py ├── test_models_site.py └── test_publisher.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.github/release_notes.py -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | scss/imports/colors.scss 2 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6.5 2 | -------------------------------------------------------------------------------- /aip_site/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aip_site/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/cli.py -------------------------------------------------------------------------------- /aip_site/jinja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aip_site/jinja/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/jinja/env.py -------------------------------------------------------------------------------- /aip_site/jinja/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aip_site/jinja/ext/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/jinja/ext/sample.py -------------------------------------------------------------------------------- /aip_site/jinja/ext/tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/jinja/ext/tab.py -------------------------------------------------------------------------------- /aip_site/jinja/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/jinja/loaders.py -------------------------------------------------------------------------------- /aip_site/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/md.py -------------------------------------------------------------------------------- /aip_site/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aip_site/models/aip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/models/aip.py -------------------------------------------------------------------------------- /aip_site/models/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/models/page.py -------------------------------------------------------------------------------- /aip_site/models/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/models/scope.py -------------------------------------------------------------------------------- /aip_site/models/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/models/site.py -------------------------------------------------------------------------------- /aip_site/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/publisher.py -------------------------------------------------------------------------------- /aip_site/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/server.py -------------------------------------------------------------------------------- /aip_site/support/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/favicon.ico -------------------------------------------------------------------------------- /aip_site/support/assets/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/images/github.png -------------------------------------------------------------------------------- /aip_site/support/assets/images/glue-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/images/glue-icons.svg -------------------------------------------------------------------------------- /aip_site/support/assets/js/aip/aip-graphviz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/aip/aip-graphviz.js -------------------------------------------------------------------------------- /aip_site/support/assets/js/aip/aip-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/aip/aip-index.js -------------------------------------------------------------------------------- /aip_site/support/assets/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/global.js -------------------------------------------------------------------------------- /aip_site/support/assets/js/graphviz/lite.render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/graphviz/lite.render.js -------------------------------------------------------------------------------- /aip_site/support/assets/js/graphviz/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/graphviz/viz.js -------------------------------------------------------------------------------- /aip_site/support/assets/js/search/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/search/pagination.js -------------------------------------------------------------------------------- /aip_site/support/assets/js/search/tipuesearch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/search/tipuesearch.min.js -------------------------------------------------------------------------------- /aip_site/support/assets/js/search/tipuesearch_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/search/tipuesearch_set.js -------------------------------------------------------------------------------- /aip_site/support/assets/js/syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/js/syntax.js -------------------------------------------------------------------------------- /aip_site/support/assets/misc/ebnf-filtering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/assets/misc/ebnf-filtering.txt -------------------------------------------------------------------------------- /aip_site/support/scss/hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/hero.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/aip/badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/aip/badges.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/aip/breadcrumbs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/aip/breadcrumbs.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/aip/header.scss: -------------------------------------------------------------------------------- 1 | .h-c-header__cta-li form.h-c-sitesearch { 2 | padding-right: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /aip_site/support/scss/imports/aip/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/aip/nav.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/aip/news.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/aip/news.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/aip/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/aip/tables.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/callouts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/callouts.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/colors.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/footer.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/header.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/headings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/headings.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/lists.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/nav.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/sidebar.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/syntax.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/tables.scss -------------------------------------------------------------------------------- /aip_site/support/scss/imports/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/imports/tabs.scss -------------------------------------------------------------------------------- /aip_site/support/scss/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/print.scss -------------------------------------------------------------------------------- /aip_site/support/scss/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/search.scss -------------------------------------------------------------------------------- /aip_site/support/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/scss/style.scss -------------------------------------------------------------------------------- /aip_site/support/templates/aip-listing.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/aip-listing.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/aip.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/aip.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/breadcrumb.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/breadcrumb.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/footer.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/footer.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/header.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/header.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/nav.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/nav.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/state_banners/draft.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/state_banners/draft.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/state_banners/rejected.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/state_banners/rejected.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/state_banners/replaced.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/state_banners/replaced.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/state_banners/reviewing.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/state_banners/reviewing.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/includes/state_banners/withdrawn.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/includes/state_banners/withdrawn.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/index.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/layouts/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/layouts/base.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/page.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/page.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/redirect.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/redirect.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/search.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/search.html.j2 -------------------------------------------------------------------------------- /aip_site/support/templates/search.js.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/support/templates/search.js.j2 -------------------------------------------------------------------------------- /aip_site/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/aip_site/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_data/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/CONTRIBUTING.md -------------------------------------------------------------------------------- /tests/test_data/aip/general/0031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0031.md -------------------------------------------------------------------------------- /tests/test_data/aip/general/0038/aip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0038/aip.md -------------------------------------------------------------------------------- /tests/test_data/aip/general/0038/aip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0038/aip.yaml -------------------------------------------------------------------------------- /tests/test_data/aip/general/0043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0043.md -------------------------------------------------------------------------------- /tests/test_data/aip/general/0059.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0059.md -------------------------------------------------------------------------------- /tests/test_data/aip/general/0062/aip.en.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0062/aip.en.md.j2 -------------------------------------------------------------------------------- /tests/test_data/aip/general/0062/aip.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0062/aip.md.j2 -------------------------------------------------------------------------------- /tests/test_data/aip/general/0062/aip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0062/aip.yaml -------------------------------------------------------------------------------- /tests/test_data/aip/general/0062/les_mis.oas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0062/les_mis.oas.yaml -------------------------------------------------------------------------------- /tests/test_data/aip/general/0062/les_mis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/0062/les_mis.proto -------------------------------------------------------------------------------- /tests/test_data/aip/general/red-herring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/red-herring -------------------------------------------------------------------------------- /tests/test_data/aip/general/scope.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/general/scope.yaml -------------------------------------------------------------------------------- /tests/test_data/aip/poetry/1609.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/poetry/1609.md -------------------------------------------------------------------------------- /tests/test_data/aip/poetry/1622.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/poetry/1622.md -------------------------------------------------------------------------------- /tests/test_data/aip/poetry/scope.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | title: Shakespearean Poetry 3 | order: 10 4 | -------------------------------------------------------------------------------- /tests/test_data/aip/red-herring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/aip/red-herring -------------------------------------------------------------------------------- /tests/test_data/config/ext.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/config/ext.yaml -------------------------------------------------------------------------------- /tests/test_data/config/header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/config/header.yaml -------------------------------------------------------------------------------- /tests/test_data/config/hero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/config/hero.yaml -------------------------------------------------------------------------------- /tests/test_data/config/urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/config/urls.yaml -------------------------------------------------------------------------------- /tests/test_data/pages/authors/dickens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/pages/authors/dickens.md -------------------------------------------------------------------------------- /tests/test_data/pages/authors/hugo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/pages/authors/hugo.md -------------------------------------------------------------------------------- /tests/test_data/pages/general/faq.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/pages/general/faq.md.j2 -------------------------------------------------------------------------------- /tests/test_data/pages/general/licensing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/pages/general/licensing.md -------------------------------------------------------------------------------- /tests/test_data/pages/general/licensing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/pages/general/licensing.yaml -------------------------------------------------------------------------------- /tests/test_data/pages/general/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/pages/general/page.md -------------------------------------------------------------------------------- /tests/test_data/pages/red-herring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_data/pages/red-herring -------------------------------------------------------------------------------- /tests/test_jinja_ext_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_jinja_ext_sample.py -------------------------------------------------------------------------------- /tests/test_jinja_ext_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_jinja_ext_tab.py -------------------------------------------------------------------------------- /tests/test_jinja_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_jinja_loaders.py -------------------------------------------------------------------------------- /tests/test_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_md.py -------------------------------------------------------------------------------- /tests/test_models_aip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_models_aip.py -------------------------------------------------------------------------------- /tests/test_models_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_models_page.py -------------------------------------------------------------------------------- /tests/test_models_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_models_scope.py -------------------------------------------------------------------------------- /tests/test_models_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_models_site.py -------------------------------------------------------------------------------- /tests/test_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aip-dev/site-generator/HEAD/tests/test_publisher.py --------------------------------------------------------------------------------