/kai/templates/home/history.mako
https://bitbucket.org/bbangert/kai/ · Mako · 43 lines · 41 code · 2 blank · 0 comment · 2 complexity · 452eb33728ca8f7fdbaf5ff57516ec7c MD5 · raw file
- <div class="yui-b content">
- <h1>History of Pylons</h1>
- <h2>Pylons 0.8 (2005 - 2006)</h2>
- <p>Developed at a time when many Python frameworks (30+ of them) were vying for
- users, Ben Bangert, noticed that another Python
- framework, <a href="http://pythonweb.org/doc/bricks.doc.html">Bricks</a> had
- a similar goal and merged development efforts with James Gardner to work
- on the web development framework that became Pylons.</p>
- <p>Pylons first came into existence in September, 2005. Initially it was a
- customization of the <a href="http://www.myghty.org/">Myghty</a> Python
- Templating Framework, utilizing page handler customization to provide
- a MVC oriented web framework. Rather than running under mod_python as
- was common for Myghty, Pylons ran using Myghty's WSGI handler under
- <a href="http://pythonpaste.org/">Paste</a>.</p>
- <p>Unlike most other Python frameworks at the time, Pylons focused heavily
- on utilizing the <a href="http://www.python.org/dev/peps/pep-0333/">WSGI specification</a>
- for a flexible component based approach to a web application stack. Session handling, caching,
- the default templating language, and the request/response objects were all handled by Myghty,
- while Paste was used to load and run the application.</p>
-
- <h2>Pylons 0.9 - 0.9.7 (2006 - 2009)</h2>
- <p>Pylons 0.9 was released during <a href="http://conferences.oreillynet.com/os2006/">O'Reilly's 2006 OSCON</a>
- and brought some major changes to the internal architecture.</p>
- <p>Running as a Myghty page handler customization became a less than optimal design
- decision, and Pylons 0.9 made a clear break by running entirely as a WSGI application
- that then used Myghty as needed for templates only. Session handling and caching were
- handled by a new 3rd party package called Beaker that was based on the caching/session
- handling subsystem used by Myghty. Request and response objects were provided by light-weight
- WSGI wrappers in Paste, which was also still used to run and load the web application.</p>
- <p>During the development of the 0.9 series, several features of Paste were extracted into smaller,
- more focused packages. The testing suite became WebTest, the WSGI wrappers became WebOb, and
- the interactive debugging environment became WebError. Pylons 0.9 follows these developments
- by switching from using Paste to the new packages which provide more functionality with
- little to no backwards incompatibility issues.</p>
-
- <h2>Pylons 1.0 and beyond (2010-)</h2>
- <p>Pylons 1.0 aims to be a finished and polished web application framework utilizing the
- newly extracted, and mature Python packages developed in the past few years symbiotically
- with Pylons.</p>
- <p>Current projections are for a Pylons 1.0 release in early 2010.</p>
- </div>
- <%def name="title()">${parent.title()} - History</%def>
- <%inherit file="../layout.mako" />