Skip to content
This repository has been archived by the owner on Apr 6, 2021. It is now read-only.

Commit

Permalink
Bump versions to 0.0.1 and add explicit MIT license!
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed May 15, 2012
1 parent 8563c51 commit 2d8de98
Show file tree
Hide file tree
Showing 10 changed files with 152 additions and 43 deletions.
21 changes: 21 additions & 0 deletions child/LICENSE
@@ -0,0 +1,21 @@
The MIT License

Copyright (c) 2012 Ajax.org B.V

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
13 changes: 10 additions & 3 deletions child/package.json
@@ -1,18 +1,25 @@
{
"author": "Tim Caswell <tim@c9.io>",
"author": "Ajax.org B.V. <info@ajax.org>",
"contributors": [
{ "name": "Tim Caswell", "email": "tim@c9.io>" }
],
"name": "vfs-child",
"description": "A vfs that runs in a child process.",
"version": "0.0.0",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/c9/vfs.git"
},
"main": "parent.js",
"dependencies": {
"vfs-socket": "~0.0.0"
"vfs-socket": "~0.0.1"
},
"devDependencies": {},
"optionalDependencies": {},
"licenses" : [{
"type" : "MIT",
"url" : "http://github.com/c9/vfs/raw/master/child/LICENSE"
}],
"engines": {
"node": ">0.6.16"
}
Expand Down
21 changes: 21 additions & 0 deletions http-adapter/LICENSE
@@ -0,0 +1,21 @@
The MIT License

Copyright (c) 2012 Ajax.org B.V

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Binary file removed http-adapter/multipart2.log
Binary file not shown.
37 changes: 22 additions & 15 deletions http-adapter/package.json
@@ -1,17 +1,24 @@
{
"author": "Tim Caswell <tim@c9.io>",
"name": "vfs-http-adapter",
"description": "A http middleware to wrap vfs instances and expose them via a RESTful interface",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git://github.com/c9/vfs.git"
},
"main": "restful.js",
"dependencies": {},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": "*"
}
"author": "Ajax.org B.V. <info@ajax.org>",
"contributors": [
{ "name": "Tim Caswell", "email": "tim@c9.io>" }
],
"name": "vfs-http-adapter",
"description": "A http middleware to wrap vfs instances and expose them via a RESTful interface",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/c9/vfs.git"
},
"main": "restful.js",
"dependencies": {},
"devDependencies": {},
"optionalDependencies": {},
"licenses" : [{
"type" : "MIT",
"url" : "http://github.com/c9/vfs/raw/master/http-adapter/LICENSE"
}],
"engines": {
"node": "*"
}
}
21 changes: 21 additions & 0 deletions local/LICENSE
@@ -0,0 +1,21 @@
The MIT License

Copyright (c) 2012 Ajax.org B.V

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
42 changes: 25 additions & 17 deletions local/package.json
@@ -1,19 +1,27 @@
{
"author": "Tim Caswell <tim@c9.io>",
"name": "vfs-local",
"description": "A vfs implementation that works on the local filesystem, but with optional security constraints",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git://github.com/c9/vfs.git"
},
"main": "localfs.js",
"dependencies": {
"simple-mime": "0.0.5"
},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": ">0.6.16"
}
"author": "Ajax.org B.V. <info@ajax.org>",
"contributors": [
{ "name": "Tim Caswell", "email": "tim@c9.io>" },
{ "name": "Fabian Jakobs", "email": "fabian@c9.io" }
],
"name": "vfs-local",
"description": "A vfs implementation that works on the local filesystem, but with optional security constraints",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/c9/vfs.git"
},
"main": "localfs.js",
"dependencies": {
"simple-mime": "0.0.5"
},
"devDependencies": {},
"optionalDependencies": {},
"licenses" : [{
"type" : "MIT",
"url" : "http://github.com/c9/vfs/raw/master/local/LICENSE"
}],
"engines": {
"node": ">0.6.16"
}
}
4 changes: 0 additions & 4 deletions package.json

This file was deleted.

21 changes: 21 additions & 0 deletions socket/LICENSE
@@ -0,0 +1,21 @@
The MIT License

Copyright (c) 2012 Ajax.org B.V

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
15 changes: 11 additions & 4 deletions socket/package.json
@@ -1,19 +1,26 @@
{
"author": "Tim Caswell <tim@c9.io>",
"author": "Ajax.org B.V. <info@ajax.org>",
"contributors": [
{ "name": "Tim Caswell", "email": "tim@c9.io>" }
],
"name": "vfs-socket",
"description": "A vfs layer that communicates through a serialized socket",
"version": "0.0.0",
"description": "A vfs helper library that communicates through a serialized socket",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/c9/vfs.git"
},
"dependencies": {
"architect-agent": "~0.2.1",
"architect-socket-transport": "~0.2.1",
"vfs-local": "~0.0.0"
"vfs-local": "~0.0.1"
},
"devDependencies": {},
"optionalDependencies": {},
"licenses" : [{
"type" : "MIT",
"url" : "http://github.com/c9/vfs/raw/master/socket/LICENSE"
}],
"engines": {
"node": "*"
}
Expand Down

0 comments on commit 2d8de98

Please sign in to comment.