Compare commits

...

3 Commits

Author SHA1 Message Date
Tj Holowaychuk
53589b4f37 Release 0.14.1 2010-07-05 14:24:46 -07:00
Tj Holowaychuk
aaed3e134d Style fix 2010-07-05 14:20:59 -07:00
Benny Wong
91ced24359 Newer versions of node use Buffer to hold the ejs text 2010-06-29 08:11:57 -07:00
5 changed files with 10 additions and 4 deletions

View File

@@ -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
==================

View File

@@ -291,7 +291,7 @@ Server = new Class({
// --- Express
Express = {
version: '0.14.0',
version: '0.14.1',
config: [],
routes: [],
plugins: [],

View File

@@ -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")

View File

@@ -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" },

View File

@@ -1,4 +1,4 @@
---
name: Express
description: Sinatra inspired web development framework
version: 0.14.0
version: 0.14.1