root / trunk / breve / tests / sitemap.py
| Revision 340, 305 bytes (checked in by cliff, 9 months ago) |
|---|
| Line | |
|---|---|
| 1 | # sitemap.py - example custom tag definition file |
| 2 | |
| 3 | from breve.tags import Proto |
| 4 | |
| 5 | xmlns = "http://www.google.com/schemas/sitemap/0.84/sitemap.xsd" |
| 6 | doctype = "" |
| 7 | tag_names = [ "changefreq", "lastmod", "loc", "priority", "url", "urlset" ] |
| 8 | tags = { } |
| 9 | for t in tag_names: |
| 10 | tags [ t ] = Proto ( t ) |
| 11 | |
| 12 |
Note: See TracBrowser
for help on using the browser.
