Changes between Version 38 and Version 39 of SummerOfCode2006
- Timestamp:
- Apr 22, 2006, 8:45:21 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SummerOfCode2006
v38 v39 70 70 * Streaming uploads and downloads. Uploading a large file can break django as the files are stored in the request. This is a security flaw as well, denial of service attacks could be as simple as uploading one large or more smaller files simultanously. 71 71 72 * Parametrized templates. Currently the only way to use the content of another template in a place that does not contain blocks is to include it. But that includes the whole template. It would be very nice if one could include blocks defined in other templates to be evaluated in a certain context. (this turned out to be harder to explain than I thought, basically what I'm saying is to make blocks work like functions, where you could call/import a block and pass it some parameters)72 * Parametrized templates. Currently the only way to use the content of another template in a place that does not contain blocks is to include it. But that includes the whole template. It would be very nice if one could include blocks defined in other templates to be evaluated in a certain context. (this turned out to be harder to explain than I thought, basically what I'm saying is to introduce a new kind of block that works like a function, where you could call/import a block and pass it some parameters) 73 73 74 74 * ...