Skip to content

Commit 4a89dae

Browse files
committed
update links
1 parent d58481d commit 4a89dae

File tree

3 files changed

+23
-22
lines changed

3 files changed

+23
-22
lines changed

README.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
gitlab [![Build Status](https://secure.travis-ci.org/fengmk2/gitlab.png)](http://travis-ci.org/fengmk2/gitlab)
2-
[![Coverage Status](https://coveralls.io/repos/fengmk2/gitlab/badge.png)](https://coveralls.io/r/fengmk2/gitlab)
1+
gitlab [![Build Status](https://secure.travis-ci.org/repo-utils/gitlab.png)](http://travis-ci.org/repo-utils/gitlab)
2+
[![Coverage Status](https://coveralls.io/repos/repo-utils/gitlab/badge.png)](https://coveralls.io/r/repo-utils/gitlab)
33
=======
44

5-
![logo](https://raw.github.com/fengmk2/gitlab/master/logo.png)
5+
![logo](https://raw.github.com/repo-utils/gitlab/master/logo.png)
66

77
Gitlab API nodejs client.
88

@@ -37,7 +37,7 @@ client.milestone.list({id: 1}, function (err, milestones) {
3737
```js
3838
/**
3939
* Get a project's milestone.
40-
*
40+
*
4141
* @param {Object} params
4242
* - {Number} id, project's id
4343
* - {Number} milestone_id, milestone's id.
@@ -47,7 +47,7 @@ Milestone.prototype.get = function (params, callback);
4747

4848
/**
4949
* List a project's all milestones.
50-
*
50+
*
5151
* @param {Object} params
5252
* - {Number} id, project's id.
5353
* - {Number} [page=1], page number, default is `1`.
@@ -58,7 +58,7 @@ Milestone.prototype.list = function (params, callback);
5858

5959
/**
6060
* Create a milestone.
61-
*
61+
*
6262
* @param {Object} params
6363
* - {Number} id The ID of a project
6464
* - {String} title The title of an milestone
@@ -88,18 +88,18 @@ Milestone.prototype.update = function (params, callback);
8888
```js
8989
/**
9090
* Get a list of repository branches from a project, sorted by name alphabetically.
91-
*
91+
*
9292
* @param {Object} params
9393
* - {String} id The ID of a project
9494
* @param {Function} callback
9595
*/
9696
Repository.prototype.getBranches = function (params, callback);
9797

9898
/**
99-
* Protects a single project repository branch.
100-
* This is an idempotent function, protecting an already protected repository branch
99+
* Protects a single project repository branch.
100+
* This is an idempotent function, protecting an already protected repository branch
101101
* still returns a 200 Ok status code.
102-
*
102+
*
103103
* @param {Object} params
104104
* - {String} id The ID of a project
105105
* - {String} branch The name of the branch
@@ -108,10 +108,10 @@ Repository.prototype.getBranches = function (params, callback);
108108
Repository.prototype.protectBranch = function (params, callback);
109109

110110
/**
111-
* Unprotects a single project repository branch.
112-
* This is an idempotent function, unprotecting an already unprotected repository branch
111+
* Unprotects a single project repository branch.
112+
* This is an idempotent function, unprotecting an already unprotected repository branch
113113
* still returns a 200 Ok status code.
114-
*
114+
*
115115
* @param {Object} params
116116
* - {String} id The ID of a project
117117
* - {String} branch The name of the branch
@@ -121,7 +121,7 @@ Repository.prototype.unprotectBranch = function (params, callback);
121121

122122
/**
123123
* Get a single project repository branch.
124-
*
124+
*
125125
* @param {Object} params
126126
* - {String} id The ID of a project
127127
* - {String} branch The name of the branch
@@ -131,7 +131,7 @@ Repository.prototype.getBranch = function (params, callback);
131131

132132
/**
133133
* Get a list of repository tags from a project, sorted by name in reverse alphabetical order.
134-
*
134+
*
135135
* @param {Object} params
136136
* - {String} id The ID of a project
137137
* @param {Function} callback
@@ -140,7 +140,7 @@ Repository.prototype.getTags = function (params, callback);
140140

141141
/**
142142
* Get a list of repository commits in a project.
143-
*
143+
*
144144
* @param {Object} params
145145
* - {String} id The ID of a project
146146
* - {String} [ref_name] The name of a repository branch or tag or if not given the default branch
@@ -150,7 +150,7 @@ Repository.prototype.getCommits = function (params, callback);
150150

151151
/**
152152
* Get a list of repository files and directories in a project.
153-
*
153+
*
154154
* @param {Object} params
155155
* - {String} id The ID of a project
156156
* - {String} [path] The path inside repository, default is '/'. Used to get contend of subdirectories. e.g.: `test`
@@ -161,7 +161,7 @@ Repository.prototype.getTree = function (params, callback);
161161

162162
/**
163163
* Get the raw file contents for a file.
164-
*
164+
*
165165
* @param {Object} params
166166
* - {String} id The ID of a project
167167
* - {String} sha The commit or branch name
@@ -174,19 +174,19 @@ Repository.prototype.getBlob = function (params, callback);
174174
## Authors
175175

176176
```bash
177-
$ git summary
177+
$ git summary
178178

179179
project : gitlab
180180
repo age : 5 months
181181
active : 11 days
182182
commits : 22
183183
files : 26
184-
authors :
184+
authors :
185185
20 fengmk2 90.9%
186186
2 Ondrej 9.1%
187187
```
188188

189-
## License
189+
## License
190190

191191
(The MIT License)
192192

logo.png

-12.5 KB
Loading

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@
2121
"mocha-lcov-reporter": "*",
2222
"mocha": "*"
2323
},
24+
"homepage": "https://github.com/repo-utils/gitlab",
2425
"repository": {
2526
"type": "git",
26-
"url": "git://github.com/fengmk2/gitlab.git"
27+
"url": "git://github.com/repo-utils/gitlab.git"
2728
},
2829
"keywords": [
2930
"gitlab", "gitlab api", "git"

0 commit comments

Comments
 (0)