mirror of
https://github.com/kennethreitz-archive/untar.it.git
synced 2026-06-05 15:20:17 +00:00
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"routes": [
|
|
{
|
|
"url": "/",
|
|
"context": {},
|
|
"filters": [
|
|
"mako"
|
|
],
|
|
"file": "templates/index.mako"
|
|
},
|
|
{
|
|
"url": "/tar.gz/",
|
|
"context": {
|
|
"filetype": "tar.gz"
|
|
},
|
|
"filters": [
|
|
"filetype"
|
|
],
|
|
"file": "templates/filetype.mako"
|
|
},
|
|
{
|
|
"url": "/tar.bz2/",
|
|
"context": {
|
|
"filetype": "tar.bz2"
|
|
},
|
|
"filters": [
|
|
"filetype"
|
|
],
|
|
"file": "templates/filetype.mako"
|
|
}
|
|
],
|
|
"static": [
|
|
{
|
|
"url": "/static",
|
|
"file": "static"
|
|
}
|
|
],
|
|
"filters": {
|
|
"mako": {
|
|
"class": "composer.filters:Mako",
|
|
"kwargs": {
|
|
"directories": [
|
|
"templates"
|
|
]
|
|
}
|
|
},
|
|
"filetype": {
|
|
"class": "composer.filters:MakoContainer",
|
|
"kwargs": {
|
|
"directories": [
|
|
"templates"
|
|
],
|
|
"template": "filetype.mako"
|
|
}
|
|
},
|
|
"markdown": {
|
|
"class": "composer.filters:Markdown",
|
|
"kwargs": {}
|
|
}
|
|
}
|
|
}
|