Changes between Version 3 and Version 4 of SummerOfCode2015


Ignore:
Timestamp:
Jan 28, 2015, 1:34:25 AM (9 years ago)
Author:
Curtis Maloney
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SummerOfCode2015

    v3 v4  
    1313* Marc Tamlyn (marc.tamlyn@gmail.com) - Test framework cleanup
    1414* Russell Keith-Magee (russell@keith-magee.com) - Replacing middleware, SQLAlchemy / NoSQL integration
     15* Curtis Maloney (curtis@tinbrain.net) - Templates, URL routes
    1516
    1617== Students ==
     
    193194
    194195This project could be taken up by several GSoC students, with each student developing a backend for a different data store. If more than one student is accepted for this project, they'd be expected to coordinate efforts on any bug fixing and/or improvements required in Django itself.
     196
     197=== Template engine optimisation ===
     198* "Complexity:" Medium
     199
     200Django's Template Language is not known for its speed, but to date little work has been published on properly profiling its internals.  Many feel there is a lot of redundant work being done in the name of surety. The aim of this project would be to profile the engine and find ways to optimise the render process.
     201
     202This would best be achieved by constructing a suite of rendering benchmark tests so any chances can be evaluated meaningfully for their trade offs.
Back to Top