Skip to content
This repository was archived by the owner on Dec 1, 2024. It is now read-only.

Commit 8470a63

Browse files
author
Lars-Magnus Skog
committed
s/rvagg\/node-/level\//
1 parent 9cbf592 commit 8470a63

17 files changed

+52
-53
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ LevelDOWN
66
A Low-level Node.js LevelDB binding
77
-------------------------
88

9-
[![Build Status](https://secure.travis-ci.org/rvagg/node-leveldown.png)](http://travis-ci.org/rvagg/node-leveldown)
9+
[![Build Status](https://secure.travis-ci.org/Level/leveldown.png)](http://travis-ci.org/Level/leveldown)
1010

1111
[![NPM](https://nodei.co/npm/leveldown.png?stars&downloads&downloadRank)](https://nodei.co/npm/leveldown/) [![NPM](https://nodei.co/npm-dl/leveldown.png?months=6&height=3)](https://nodei.co/npm/leveldown/)
1212

13-
LevelDOWN was extracted from [LevelUP](https://github.com/rvagg/node-levelup) and now serves as a stand-alone binding for LevelDB.
13+
LevelDOWN was extracted from [LevelUP](https://github.com/level/levelup) and now serves as a stand-alone binding for LevelDB.
1414

1515
It is **strongly recommended** that you use LevelUP in preference to LevelDOWN unless you have measurable performance reasons to do so. LevelUP is optimised for usability and safety. Although we are working to improve the safety of the LevelDOWN interface it is still easy to crash your Node process if you don't do things in just the right way.
1616

@@ -25,7 +25,7 @@ Tested & supported platforms
2525
* **Solaris** (SmartOS & Nodejitsu)
2626
* **FreeBSD**
2727
* **Windows**
28-
* Node 0.10 and above only, see [issue #5](https://github.com/rvagg/node-levelup/issues/5) for more info
28+
* Node 0.10 and above only, see [issue #5](https://github.com/level/levelup/issues/5) for more info
2929
* See installation instructions for *node-gyp* dependencies [here](https://github.com/TooTallNate/node-gyp#installation), you'll need these (free) components from Microsoft to compile and run any native Node add-on in Windows.
3030

3131
<a name="api"></a>
@@ -148,7 +148,7 @@ The `callback` function will be called with no arguments if the operation is suc
148148
### leveldown#batch(operations[, options], callback)
149149
<code>batch()</code> is an instance method on an existing database object. Used for very fast bulk-write operations (both *put* and *delete*). The `operations` argument should be an `Array` containing a list of operations to be executed sequentially, although as a whole they are performed as an atomic operation inside LevelDB. Each operation is contained in an object having the following properties: `type`, `key`, `value`, where the *type* is either `'put'` or `'del'`. In the case of `'del'` the `'value'` property is ignored. Any entries with a `'key'` of `null` or `undefined` will cause an error to be returned on the `callback`. Any entries where the *type* is `'put'` that have a `'value'` of `undefined`, `null`, `[]`, `''` or `new Buffer(0)` will be stored as a zero-length character array and therefore be fetched during reads as either `''` or `new Buffer(0)` depending on how they are requested.
150150

151-
See [LevelUP](https://github.com/rvagg/node-levelup#batch) for full documentation on how this works in practice.
151+
See [LevelUP](https://github.com/level/levelup#batch) for full documentation on how this works in practice.
152152

153153
#### `options`
154154

@@ -289,7 +289,7 @@ LevelDOWN is an **OPEN Open Source Project**. This means that:
289289

290290
> Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.
291291
292-
See the [CONTRIBUTING.md](https://github.com/rvagg/node-leveldown/blob/master/CONTRIBUTING.md) file for more details.
292+
See the [CONTRIBUTING.md](https://github.com/level/leveldown/blob/master/CONTRIBUTING.md) file for more details.
293293

294294
### Contributors
295295

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
],
2020
"repository": {
2121
"type": "git",
22-
"url": "https://github.com/rvagg/node-leveldown.git"
22+
"url": "https://github.com/level/leveldown.git"
2323
},
24-
"homepage": "https://github.com/rvagg/node-leveldown",
24+
"homepage": "https://github.com/level/leveldown",
2525
"keywords": [
2626
"leveldb",
2727
"level"

src/async.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#ifndef LD_ASYNC_H

src/batch_async.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66

src/batch_async.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#ifndef LD_BATCH_ASYNC_H

src/database.cc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License
4-
* <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
54
*/
65

76
#include <node.h>

src/database.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#ifndef LD_DATABASE_H

src/database_async.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#include <node.h>

src/database_async.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#ifndef LD_DATABASE_ASYNC_H

src/iterator.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#include <node.h>

src/iterator.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#ifndef LD_ITERATOR_H

src/iterator_async.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#include <node.h>

src/iterator_async.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#ifndef LD_ITERATOR_ASYNC_H

src/leveldown.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#include <node.h>

src/leveldown.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55
#ifndef LD_LEVELDOWN_H
66
#define LD_LEVELDOWN_H

src/leveldown_async.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#include <leveldb/db.h>

src/leveldown_async.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/* Copyright (c) 2012-2014 LevelDOWN contributors
2-
* See list at <https://github.com/rvagg/node-leveldown#contributing>
3-
* MIT License <https://github.com/rvagg/node-leveldown/blob/master/LICENSE.md>
1+
/* Copyright (c) 2012-2015 LevelDOWN contributors
2+
* See list at <https://github.com/level/leveldown#contributing>
3+
* MIT License <https://github.com/level/leveldown/blob/master/LICENSE.md>
44
*/
55

66
#ifndef LD_LEVELDOWN_ASYNC_H

0 commit comments

Comments
 (0)