Difference between revisions of "Routing and Template Cookbook: Introduction"
From Dreamwidth Notes
Foxfirefey (Talk | contribs) m |
m (→Code Locations: tyop) |
||
Line 17: | Line 17: | ||
* [https://github.com/dreamwidth/dw-free/tree/develop/cgi-bin/DW/Controller Existing DW controllers (routing + handlers)] | * [https://github.com/dreamwidth/dw-free/tree/develop/cgi-bin/DW/Controller Existing DW controllers (routing + handlers)] | ||
* [https://github.com/dreamwidth/dw-free/tree/develop/cgi-bin/DW/Template DW Template Toolkit implementation and extensions] | * [https://github.com/dreamwidth/dw-free/tree/develop/cgi-bin/DW/Template DW Template Toolkit implementation and extensions] | ||
− | * [https://github.com/dreamwidth/dw-free/tree/develop/views | + | * [https://github.com/dreamwidth/dw-free/tree/develop/views Existing DW templates] |
== Specific Modules == | == Specific Modules == |
Latest revision as of 00:13, 7 September 2014
This cookbook seeks to provide useful examples on how to create routers, handlers, and templates for the Dreamwidth codebase.
Table of Contents
- Routing and Template Cookbook: Basic routing, handlers, and templates
- Routing and Template Cookbook: Find the handler for a URL
- Routing and Template Cookbook: Translation system
- Routing and Template Cookbook: Forms and processing
- Routing and Template Cookbook: Including resources
- Routing and Template Cookbook: Output formats
- Routing and Template Cookbook: Errors and debugging
- Routing and Template Cookbook: BML Conversion Workflow
References
- DW::Request API Documentation
- DW::Routing API Documentation
- DW::Template API Documentation
- Plugin Documentation
- Filter Documentation
Code Locations
- Existing DW controllers (routing + handlers)
- DW Template Toolkit implementation and extensions
- Existing DW templates