Changeset 393
- Timestamp:
- 06/28/05 10:07:04
- Files:
-
- trunk/docs/europython2005/index.html (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docs/europython2005/index.html
r379 r393 49 49 <li>Runs everywhere python runs</li> 50 50 <li>Requires Python-2.3 or later</li> 51 <li>BSD license</li> 51 52 <li>Version 2.1 (used in this tutorial) coming soon</li> 53 </ul> 54 </div> 55 56 <div class="slide"> 57 <h1>Brief history of CherryPy</h1> 58 <ul> 59 <li>Jun 2002: CherryPy-0.1 released: users wrote .cpy files made of python code + some extensions (ex: CherryClass), then compiled them into one .py file ... bad idea (too unpythonic) ... some interest, but quite limited</li> 60 <li>Apr 2004: Last "CP1" release</li> 61 <li>Sep 2004: First "CP2" release: pure python code, no more compilation step, templating system separated from the core ... much more interest from the community</li> 62 <li>In a few weeks: CherryPy-2.1 release ... another big step forward</li> 52 63 </ul> 53 64 </div> … … 110 121 <ul> 111 122 <li>Ex: Reading the Host header from the request</li> 112 <li>Ex: Setting the response COntent-Type</li>123 <li>Ex: Setting the response Content-Type</li> 113 124 </ul> 114 125 </div> … … 126 137 <h1>Using filters</h1> 127 138 <ul> 128 <li>Ex: gzipFilter </li>139 <li>Ex: gzipFilter (uses generators)</li> 129 140 <li>Ex: encodingFilter, decodingFilter</li> 130 141 <li>Ex: staticContentFilter</li> 142 <li>Other filters: XML-RPC, Tidy, nsgmls, virtual host, caching, ...</li> 131 143 </ul> 132 144 </div> … … 135 147 <h1>Using sessions</h1> 136 148 <ul> 137 <li>TODO</li> 149 <li>Sessions are just a regular filter (sessionFilter)</li> 150 <li>Provides dictionary-like objects for storing session data</li> 151 <li>The default one is cherrypy.sessions.default</li> 138 152 </ul> 139 153 </div> … … 160 174 161 175 <div class="slide"> 162 <h1>Re sources</h1>176 <h1>References</h1> 163 177 <ul> 164 178 <li>http://www.cherrypy.org</li>

