Comparar commits
7 Commits
| Autor | SHA1 | Data | |
|---|---|---|---|
| d893009a8d | |||
| b62e1741be | |||
| 903c2aa642 | |||
| d0a8bb550e | |||
| f96f1423e1 | |||
| 7bf17f2f61 | |||
| 670b6cfc15 |
+8
-8
@@ -1,12 +1,12 @@
|
||||
[submodule "support/oo"]
|
||||
path = support/oo
|
||||
[submodule "lib/support/oo"]
|
||||
path = lib/support/oo
|
||||
url = git://github.com/visionmedia/js-oo.git
|
||||
[submodule "support/ext"]
|
||||
path = support/ext
|
||||
[submodule "lib/support/ext"]
|
||||
path = lib/support/ext
|
||||
url = git://github.com/visionmedia/ext.js.git
|
||||
[submodule "support/sass"]
|
||||
path = support/sass
|
||||
[submodule "lib/support/sass"]
|
||||
path = lib/support/sass
|
||||
url = git://github.com/visionmedia/sass.js.git
|
||||
[submodule "support/haml"]
|
||||
path = support/haml
|
||||
[submodule "lib/support/haml"]
|
||||
path = lib/support/haml
|
||||
url = git://github.com/creationix/haml-js.git
|
||||
|
||||
@@ -1,4 +1,15 @@
|
||||
|
||||
0.7.3 / 2010-03-16
|
||||
==================
|
||||
|
||||
* Added package.json
|
||||
* Fixed requiring of haml / sass due to kiwi removal
|
||||
|
||||
0.7.2 / 2010-03-16
|
||||
==================
|
||||
|
||||
* Fixed GIT submodules (HAH!)
|
||||
|
||||
0.7.1 / 2010-03-16
|
||||
==================
|
||||
|
||||
|
||||
+1
-1
@@ -33,7 +33,7 @@ or
|
||||
|
||||
Install via git clone:
|
||||
|
||||
$ git://github.com/visionmedia/express.git && cd express && git submodule update
|
||||
$ git://github.com/visionmedia/express.git && cd express && git submodule update --init
|
||||
|
||||
## Performance
|
||||
|
||||
|
||||
@@ -4,12 +4,9 @@ require('express')
|
||||
require('express/plugins')
|
||||
|
||||
var messages = [],
|
||||
utils = require('express/utils'),
|
||||
kiwi = require('kiwi')
|
||||
|
||||
utils = require('express/utils')
|
||||
|
||||
configure(function(){
|
||||
kiwi.seed('haml')
|
||||
kiwi.seed('sass')
|
||||
use(MethodOverride)
|
||||
use(ContentLength)
|
||||
use(Cookie)
|
||||
|
||||
@@ -3,11 +3,7 @@ require.paths.unshift('lib')
|
||||
require('express')
|
||||
require('express/plugins')
|
||||
|
||||
var kiwi = require('kiwi')
|
||||
|
||||
configure(function(){
|
||||
kiwi.seed('haml')
|
||||
kiwi.seed('sass')
|
||||
use(MethodOverride)
|
||||
use(ContentLength)
|
||||
use(Cookie)
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
|
||||
require.paths.unshift(__dirname + '/support/ext/lib')
|
||||
require.paths.unshift(__dirname + '/support/haml/lib')
|
||||
require.paths.unshift(__dirname + '/support/sass/lib')
|
||||
require('ext')
|
||||
require('support/oo/lib/oo')
|
||||
require('support/haml/lib/haml')
|
||||
require('support/sass/lib/sass')
|
||||
require('express/core')
|
||||
@@ -314,7 +314,7 @@ Server = Class({
|
||||
// --- Express
|
||||
|
||||
Express = {
|
||||
version: '0.7.1',
|
||||
version: '0.7.3',
|
||||
config: [],
|
||||
routes: [],
|
||||
plugins: [],
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "Express",
|
||||
"description": "Sinatra inspired web development framework",
|
||||
"version": "0.7.3",
|
||||
"keywords": ["framework", "sinatra", "web", "rest", "restful"],
|
||||
"directories": {
|
||||
"lib": "lib"
|
||||
},
|
||||
"scripts": {
|
||||
"install": "git submodule update --init",
|
||||
"test": "make test"
|
||||
},
|
||||
"engines": { "node": ">= 0.1.30" }
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
---
|
||||
name: Express
|
||||
description: Sinatra inspired web development framework
|
||||
version: 0.7.1
|
||||
version: 0.7.3
|
||||
|
||||
-1
Submodule support/ext deleted from 967039b7d6
-1
Submodule support/haml deleted from 389c33c6e4
-1
Submodule support/oo deleted from 1f94bd8979
-1
Submodule support/sass deleted from 2a648b3766
Referência em uma Nova Issue
Bloquear um usuário