mirror of
https://github.com/expressjs/express.git
synced 2026-02-26 08:45:36 +00:00
Compare commits
3 Commits
3.0.0alpha
...
0.14.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
53589b4f37 | ||
|
|
aaed3e134d | ||
|
|
91ced24359 |
@@ -1,4 +1,10 @@
|
||||
|
||||
0.14.1 / 2010-07-05
|
||||
==================
|
||||
|
||||
* Fixed ejs Buffer issue [bdotdub]
|
||||
* Fixed querystring issue [isaacs]
|
||||
|
||||
0.14.0 / 2010-06-15
|
||||
==================
|
||||
|
||||
|
||||
@@ -291,7 +291,7 @@ Server = new Class({
|
||||
// --- Express
|
||||
|
||||
Express = {
|
||||
version: '0.14.0',
|
||||
version: '0.14.1',
|
||||
config: [],
|
||||
routes: [],
|
||||
plugins: [],
|
||||
|
||||
@@ -11,7 +11,7 @@ exports.render = function(str, options) {
|
||||
new Function("locals",
|
||||
"var p=[],print=function(){p.push.apply(p,arguments);};" +
|
||||
"with(locals){p.push('" +
|
||||
str
|
||||
String(str)
|
||||
.replace(/[\r\t\n]/g, " ")
|
||||
.split("<%").join("\t")
|
||||
.replace(/((^|%>)[^\t]*)'/g, "$1\r")
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "express",
|
||||
"description": "Sinatra inspired web development framework",
|
||||
"version": "0.14.0",
|
||||
"version": "0.14.1",
|
||||
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
||||
"contributors": [
|
||||
{ "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" },
|
||||
|
||||
Reference in New Issue
Block a user