octokit 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemtest +0 -0
- data/Rakefile +1 -0
- data/lib/octokit/configuration.rb +23 -9
- data/lib/octokit/version.rb +1 -1
- data/octokit.gemspec +2 -2
- metadata +7 -131
- data/test/fixtures/blob.json +0 -10
- data/test/fixtures/branch_commits.json +0 -48
- data/test/fixtures/branches.json +0 -6
- data/test/fixtures/close_issue.json +0 -1
- data/test/fixtures/collaborators.json +0 -1
- data/test/fixtures/comment.json +0 -1
- data/test/fixtures/commits.json +0 -824
- data/test/fixtures/contributors.json +0 -6
- data/test/fixtures/emails.json +0 -1
- data/test/fixtures/followers.json +0 -3
- data/test/fixtures/full_user.json +0 -27
- data/test/fixtures/issue.json +0 -14
- data/test/fixtures/issues.json +0 -50
- data/test/fixtures/keys.json +0 -1
- data/test/fixtures/labels.json +0 -1
- data/test/fixtures/languages.json +0 -1
- data/test/fixtures/network.json +0 -26
- data/test/fixtures/network_data.json +0 -1
- data/test/fixtures/network_meta.json +0 -109
- data/test/fixtures/open_issue.json +0 -1
- data/test/fixtures/raw_git_data.yaml +0 -7
- data/test/fixtures/reopen_issue.json +0 -1
- data/test/fixtures/repo.json +0 -14
- data/test/fixtures/repo_search.json +0 -452
- data/test/fixtures/repos.json +0 -830
- data/test/fixtures/search-email.json +0 -19
- data/test/fixtures/search-username.json +0 -44
- data/test/fixtures/show_commit.json +0 -37
- data/test/fixtures/tags.json +0 -8
- data/test/fixtures/timeline.json +0 -1018
- data/test/fixtures/trees.json +0 -140
- data/test/fixtures/user.json +0 -16
- data/test/helper.rb +0 -59
- data/test/octokit_test.rb +0 -789
- data/test/repository_test.rb +0 -45
data/.gemtest
ADDED
File without changes
|
data/Rakefile
CHANGED
@@ -3,17 +3,31 @@ require File.expand_path('../version', __FILE__)
|
|
3
3
|
|
4
4
|
module Octokit
|
5
5
|
module Configuration
|
6
|
-
VALID_OPTIONS_KEYS = [
|
7
|
-
|
6
|
+
VALID_OPTIONS_KEYS = [
|
7
|
+
:adapter,
|
8
|
+
:endpoint,
|
9
|
+
:format,
|
10
|
+
:login,
|
11
|
+
:password,
|
12
|
+
:proxy,
|
13
|
+
:token,
|
14
|
+
:oauth_token,
|
15
|
+
:user_agent,
|
16
|
+
:version].freeze
|
8
17
|
|
9
|
-
|
18
|
+
VALID_FORMATS = [
|
19
|
+
:json,
|
20
|
+
:xml,
|
21
|
+
:yaml].freeze
|
22
|
+
|
23
|
+
DEFAULT_ADAPTER = Faraday.default_adapter
|
10
24
|
DEFAULT_ENDPOINT = 'https://github.com/'.freeze
|
11
|
-
DEFAULT_FORMAT = :json
|
12
|
-
DEFAULT_LOGIN = nil
|
13
|
-
DEFAULT_PASSWORD = nil
|
14
|
-
DEFAULT_PROXY = nil
|
15
|
-
DEFAULT_TOKEN = nil
|
16
|
-
DEFAULT_OAUTH_TOKEN = nil
|
25
|
+
DEFAULT_FORMAT = :json
|
26
|
+
DEFAULT_LOGIN = nil
|
27
|
+
DEFAULT_PASSWORD = nil
|
28
|
+
DEFAULT_PROXY = nil
|
29
|
+
DEFAULT_TOKEN = nil
|
30
|
+
DEFAULT_OAUTH_TOKEN = nil
|
17
31
|
DEFAULT_USER_AGENT = "Octokit Ruby Gem #{Octokit::VERSION}".freeze
|
18
32
|
DEFAULT_VERSION = 2
|
19
33
|
|
data/lib/octokit/version.rb
CHANGED
data/octokit.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.add_development_dependency('simplecov', '~> 0.3')
|
10
10
|
s.add_development_dependency('webmock', '~> 1.6')
|
11
11
|
s.add_development_dependency('ZenTest', '~> 4.4')
|
12
|
-
s.add_runtime_dependency('addressable', '~> 2.2.
|
13
|
-
s.add_runtime_dependency('hashie', '~> 0.
|
12
|
+
s.add_runtime_dependency('addressable', '~> 2.2.4')
|
13
|
+
s.add_runtime_dependency('hashie', '~> 1.0.0')
|
14
14
|
s.add_runtime_dependency('faraday', '~> 0.5.4')
|
15
15
|
s.add_runtime_dependency('faraday_middleware', '~> 0.3.1')
|
16
16
|
s.add_runtime_dependency('multi_json', '~> 0.0.5')
|
metadata
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octokit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 0
|
7
|
-
- 5
|
8
|
-
- 0
|
9
|
-
version: 0.5.0
|
4
|
+
prerelease:
|
5
|
+
version: 0.5.1
|
10
6
|
platform: ruby
|
11
7
|
authors:
|
12
8
|
- Wynn Netherland
|
@@ -16,7 +12,7 @@ autorequire:
|
|
16
12
|
bindir: bin
|
17
13
|
cert_chain: []
|
18
14
|
|
19
|
-
date: 2011-
|
15
|
+
date: 2011-02-03 00:00:00 -05:00
|
20
16
|
default_executable:
|
21
17
|
dependencies:
|
22
18
|
- !ruby/object:Gem::Dependency
|
@@ -27,9 +23,6 @@ dependencies:
|
|
27
23
|
requirements:
|
28
24
|
- - ~>
|
29
25
|
- !ruby/object:Gem::Version
|
30
|
-
segments:
|
31
|
-
- 1
|
32
|
-
- 4
|
33
26
|
version: "1.4"
|
34
27
|
type: :development
|
35
28
|
version_requirements: *id001
|
@@ -41,9 +34,6 @@ dependencies:
|
|
41
34
|
requirements:
|
42
35
|
- - ~>
|
43
36
|
- !ruby/object:Gem::Version
|
44
|
-
segments:
|
45
|
-
- 1
|
46
|
-
- 4
|
47
37
|
version: "1.4"
|
48
38
|
type: :development
|
49
39
|
version_requirements: *id002
|
@@ -55,9 +45,6 @@ dependencies:
|
|
55
45
|
requirements:
|
56
46
|
- - ~>
|
57
47
|
- !ruby/object:Gem::Version
|
58
|
-
segments:
|
59
|
-
- 0
|
60
|
-
- 8
|
61
48
|
version: "0.8"
|
62
49
|
type: :development
|
63
50
|
version_requirements: *id003
|
@@ -69,9 +56,6 @@ dependencies:
|
|
69
56
|
requirements:
|
70
57
|
- - ~>
|
71
58
|
- !ruby/object:Gem::Version
|
72
|
-
segments:
|
73
|
-
- 2
|
74
|
-
- 4
|
75
59
|
version: "2.4"
|
76
60
|
type: :development
|
77
61
|
version_requirements: *id004
|
@@ -83,9 +67,6 @@ dependencies:
|
|
83
67
|
requirements:
|
84
68
|
- - ~>
|
85
69
|
- !ruby/object:Gem::Version
|
86
|
-
segments:
|
87
|
-
- 0
|
88
|
-
- 3
|
89
70
|
version: "0.3"
|
90
71
|
type: :development
|
91
72
|
version_requirements: *id005
|
@@ -97,9 +78,6 @@ dependencies:
|
|
97
78
|
requirements:
|
98
79
|
- - ~>
|
99
80
|
- !ruby/object:Gem::Version
|
100
|
-
segments:
|
101
|
-
- 1
|
102
|
-
- 6
|
103
81
|
version: "1.6"
|
104
82
|
type: :development
|
105
83
|
version_requirements: *id006
|
@@ -111,9 +89,6 @@ dependencies:
|
|
111
89
|
requirements:
|
112
90
|
- - ~>
|
113
91
|
- !ruby/object:Gem::Version
|
114
|
-
segments:
|
115
|
-
- 4
|
116
|
-
- 4
|
117
92
|
version: "4.4"
|
118
93
|
type: :development
|
119
94
|
version_requirements: *id007
|
@@ -125,11 +100,7 @@ dependencies:
|
|
125
100
|
requirements:
|
126
101
|
- - ~>
|
127
102
|
- !ruby/object:Gem::Version
|
128
|
-
|
129
|
-
- 2
|
130
|
-
- 2
|
131
|
-
- 3
|
132
|
-
version: 2.2.3
|
103
|
+
version: 2.2.4
|
133
104
|
type: :runtime
|
134
105
|
version_requirements: *id008
|
135
106
|
- !ruby/object:Gem::Dependency
|
@@ -140,11 +111,7 @@ dependencies:
|
|
140
111
|
requirements:
|
141
112
|
- - ~>
|
142
113
|
- !ruby/object:Gem::Version
|
143
|
-
|
144
|
-
- 0
|
145
|
-
- 4
|
146
|
-
- 0
|
147
|
-
version: 0.4.0
|
114
|
+
version: 1.0.0
|
148
115
|
type: :runtime
|
149
116
|
version_requirements: *id009
|
150
117
|
- !ruby/object:Gem::Dependency
|
@@ -155,10 +122,6 @@ dependencies:
|
|
155
122
|
requirements:
|
156
123
|
- - ~>
|
157
124
|
- !ruby/object:Gem::Version
|
158
|
-
segments:
|
159
|
-
- 0
|
160
|
-
- 5
|
161
|
-
- 4
|
162
125
|
version: 0.5.4
|
163
126
|
type: :runtime
|
164
127
|
version_requirements: *id010
|
@@ -170,10 +133,6 @@ dependencies:
|
|
170
133
|
requirements:
|
171
134
|
- - ~>
|
172
135
|
- !ruby/object:Gem::Version
|
173
|
-
segments:
|
174
|
-
- 0
|
175
|
-
- 3
|
176
|
-
- 1
|
177
136
|
version: 0.3.1
|
178
137
|
type: :runtime
|
179
138
|
version_requirements: *id011
|
@@ -185,10 +144,6 @@ dependencies:
|
|
185
144
|
requirements:
|
186
145
|
- - ~>
|
187
146
|
- !ruby/object:Gem::Version
|
188
|
-
segments:
|
189
|
-
- 0
|
190
|
-
- 0
|
191
|
-
- 5
|
192
147
|
version: 0.0.5
|
193
148
|
type: :runtime
|
194
149
|
version_requirements: *id012
|
@@ -200,10 +155,6 @@ dependencies:
|
|
200
155
|
requirements:
|
201
156
|
- - ~>
|
202
157
|
- !ruby/object:Gem::Version
|
203
|
-
segments:
|
204
|
-
- 0
|
205
|
-
- 2
|
206
|
-
- 0
|
207
158
|
version: 0.2.0
|
208
159
|
type: :runtime
|
209
160
|
version_requirements: *id013
|
@@ -218,6 +169,7 @@ extra_rdoc_files: []
|
|
218
169
|
|
219
170
|
files:
|
220
171
|
- .document
|
172
|
+
- .gemtest
|
221
173
|
- .gitignore
|
222
174
|
- .rspec
|
223
175
|
- Gemfile
|
@@ -296,41 +248,6 @@ files:
|
|
296
248
|
- spec/octokit/client_spec.rb
|
297
249
|
- spec/octokit_spec.rb
|
298
250
|
- spec/repository_spec.rb
|
299
|
-
- test/fixtures/blob.json
|
300
|
-
- test/fixtures/branch_commits.json
|
301
|
-
- test/fixtures/branches.json
|
302
|
-
- test/fixtures/close_issue.json
|
303
|
-
- test/fixtures/collaborators.json
|
304
|
-
- test/fixtures/comment.json
|
305
|
-
- test/fixtures/commits.json
|
306
|
-
- test/fixtures/contributors.json
|
307
|
-
- test/fixtures/emails.json
|
308
|
-
- test/fixtures/followers.json
|
309
|
-
- test/fixtures/full_user.json
|
310
|
-
- test/fixtures/issue.json
|
311
|
-
- test/fixtures/issues.json
|
312
|
-
- test/fixtures/keys.json
|
313
|
-
- test/fixtures/labels.json
|
314
|
-
- test/fixtures/languages.json
|
315
|
-
- test/fixtures/network.json
|
316
|
-
- test/fixtures/network_data.json
|
317
|
-
- test/fixtures/network_meta.json
|
318
|
-
- test/fixtures/open_issue.json
|
319
|
-
- test/fixtures/raw_git_data.yaml
|
320
|
-
- test/fixtures/reopen_issue.json
|
321
|
-
- test/fixtures/repo.json
|
322
|
-
- test/fixtures/repo_search.json
|
323
|
-
- test/fixtures/repos.json
|
324
|
-
- test/fixtures/search-email.json
|
325
|
-
- test/fixtures/search-username.json
|
326
|
-
- test/fixtures/show_commit.json
|
327
|
-
- test/fixtures/tags.json
|
328
|
-
- test/fixtures/timeline.json
|
329
|
-
- test/fixtures/trees.json
|
330
|
-
- test/fixtures/user.json
|
331
|
-
- test/helper.rb
|
332
|
-
- test/octokit_test.rb
|
333
|
-
- test/repository_test.rb
|
334
251
|
has_rdoc: true
|
335
252
|
homepage: http://wynnnetherland.com/projects/octokit/
|
336
253
|
licenses: []
|
@@ -345,23 +262,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
345
262
|
requirements:
|
346
263
|
- - ">="
|
347
264
|
- !ruby/object:Gem::Version
|
348
|
-
segments:
|
349
|
-
- 0
|
350
265
|
version: "0"
|
351
266
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
352
267
|
none: false
|
353
268
|
requirements:
|
354
269
|
- - ">="
|
355
270
|
- !ruby/object:Gem::Version
|
356
|
-
segments:
|
357
|
-
- 1
|
358
|
-
- 3
|
359
|
-
- 6
|
360
271
|
version: 1.3.6
|
361
272
|
requirements: []
|
362
273
|
|
363
274
|
rubyforge_project:
|
364
|
-
rubygems_version: 1.
|
275
|
+
rubygems_version: 1.5.0
|
365
276
|
signing_key:
|
366
277
|
specification_version: 3
|
367
278
|
summary: Wrapper for the GitHub API
|
@@ -418,38 +329,3 @@ test_files:
|
|
418
329
|
- spec/octokit/client_spec.rb
|
419
330
|
- spec/octokit_spec.rb
|
420
331
|
- spec/repository_spec.rb
|
421
|
-
- test/fixtures/blob.json
|
422
|
-
- test/fixtures/branch_commits.json
|
423
|
-
- test/fixtures/branches.json
|
424
|
-
- test/fixtures/close_issue.json
|
425
|
-
- test/fixtures/collaborators.json
|
426
|
-
- test/fixtures/comment.json
|
427
|
-
- test/fixtures/commits.json
|
428
|
-
- test/fixtures/contributors.json
|
429
|
-
- test/fixtures/emails.json
|
430
|
-
- test/fixtures/followers.json
|
431
|
-
- test/fixtures/full_user.json
|
432
|
-
- test/fixtures/issue.json
|
433
|
-
- test/fixtures/issues.json
|
434
|
-
- test/fixtures/keys.json
|
435
|
-
- test/fixtures/labels.json
|
436
|
-
- test/fixtures/languages.json
|
437
|
-
- test/fixtures/network.json
|
438
|
-
- test/fixtures/network_data.json
|
439
|
-
- test/fixtures/network_meta.json
|
440
|
-
- test/fixtures/open_issue.json
|
441
|
-
- test/fixtures/raw_git_data.yaml
|
442
|
-
- test/fixtures/reopen_issue.json
|
443
|
-
- test/fixtures/repo.json
|
444
|
-
- test/fixtures/repo_search.json
|
445
|
-
- test/fixtures/repos.json
|
446
|
-
- test/fixtures/search-email.json
|
447
|
-
- test/fixtures/search-username.json
|
448
|
-
- test/fixtures/show_commit.json
|
449
|
-
- test/fixtures/tags.json
|
450
|
-
- test/fixtures/timeline.json
|
451
|
-
- test/fixtures/trees.json
|
452
|
-
- test/fixtures/user.json
|
453
|
-
- test/helper.rb
|
454
|
-
- test/octokit_test.rb
|
455
|
-
- test/repository_test.rb
|
data/test/fixtures/blob.json
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"blob": {
|
3
|
-
"name": "README.txt",
|
4
|
-
"size": 178,
|
5
|
-
"sha": "d4fc2d5e810d9b4bc1ce67702603080e3086a4ed",
|
6
|
-
"data": "Please visit http://famspam.com/facebox/ or open index.html in your favorite browser.nnNeed help? Join our Google Groups mailing list:n http://groups.google.com/group/facebox/n",
|
7
|
-
"mode": "100644",
|
8
|
-
"mime_type": "text/plain"
|
9
|
-
}
|
10
|
-
}
|
@@ -1,48 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"commits": [
|
3
|
-
{
|
4
|
-
"author": {
|
5
|
-
"name": "Scott Chacon",
|
6
|
-
"login": "schacon",
|
7
|
-
"email": "schacon@gmail.com"
|
8
|
-
},
|
9
|
-
"parents": [
|
10
|
-
{
|
11
|
-
"id": "a11bef06a3f659402fe7563abf99ad00de2209e6"
|
12
|
-
}
|
13
|
-
],
|
14
|
-
"url": "http:\/\/github.com\/schacon\/simplegit\/commit\/085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7",
|
15
|
-
"id": "085bb3bcb608e1e8451d4b2432f8ecbe6306e7e7",
|
16
|
-
"committed_date": "2009-04-17T21:55:53-07:00",
|
17
|
-
"authored_date": "2008-03-15T16:40:33-07:00",
|
18
|
-
"message": "removed unnecessary test code",
|
19
|
-
"committer": {
|
20
|
-
"name": "Scott Chacon",
|
21
|
-
"login": "schacon",
|
22
|
-
"email": "schacon@gmail.com"
|
23
|
-
},
|
24
|
-
"tree": "e1b3ececb0cbaf2320ca3eebb8aa2beb1bb45c66"
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"author": {
|
28
|
-
"name": "Scott Chacon",
|
29
|
-
"login": "schacon",
|
30
|
-
"email": "schacon@gmail.com"
|
31
|
-
},
|
32
|
-
"parents": [
|
33
|
-
|
34
|
-
],
|
35
|
-
"url": "http:\/\/github.com\/schacon\/simplegit\/commit\/a11bef06a3f659402fe7563abf99ad00de2209e6",
|
36
|
-
"id": "a11bef06a3f659402fe7563abf99ad00de2209e6",
|
37
|
-
"committed_date": "2008-03-15T10:31:28-07:00",
|
38
|
-
"authored_date": "2008-03-15T10:31:28-07:00",
|
39
|
-
"message": "first commit",
|
40
|
-
"committer": {
|
41
|
-
"name": "Scott Chacon",
|
42
|
-
"login": "schacon",
|
43
|
-
"email": "schacon@gmail.com"
|
44
|
-
},
|
45
|
-
"tree": "1a738da87a85f2b1c49c1421041cf41d1d90d434"
|
46
|
-
}
|
47
|
-
]
|
48
|
-
}
|
data/test/fixtures/branches.json
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"issue":{"number":2,"votes":0,"created_at":"2009/12/10 12:14:34 -0800","body":"testing api","title":"testing","updated_at":"2009/12/10 12:18:52 -0800","closed_at":"2009/12/10 12:18:52 -0800","user":"pengwynn","labels":[],"state":"closed"}}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"collaborators":["pengwynn","adamstac"]}
|
data/test/fixtures/comment.json
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"comment": {"comment": "Nice catch!", "status": "saved"}}
|
data/test/fixtures/commits.json
DELETED
@@ -1,824 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"commits": [
|
3
|
-
{
|
4
|
-
"author": {
|
5
|
-
"name": "Stefan Penner",
|
6
|
-
"login": "",
|
7
|
-
"email": "stefan@stefan-penners-macbook-pro.local"
|
8
|
-
},
|
9
|
-
"parents": [
|
10
|
-
{
|
11
|
-
"id": "3604d4fde8078c5f820dc7565f3ccef6f49be0e8"
|
12
|
-
}
|
13
|
-
],
|
14
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/ae5e66f880318c4788e424a98a8348c8f3443c96",
|
15
|
-
"id": "ae5e66f880318c4788e424a98a8348c8f3443c96",
|
16
|
-
"committed_date": "2010-04-23T08:50:57-07:00",
|
17
|
-
"authored_date": "2008-11-19T19:46:50-08:00",
|
18
|
-
"message": " added -width:0%; to #facebox table, ie 6 hack to prevent issues when the global table tag has a none default width",
|
19
|
-
"committer": {
|
20
|
-
"name": "Chris Wanstrath",
|
21
|
-
"login": "defunkt",
|
22
|
-
"email": "chris@ozmm.org"
|
23
|
-
},
|
24
|
-
"tree": "580ef38627cac4130beb49f7cde464cf072995d8"
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"author": {
|
28
|
-
"name": "Matthew Vickers",
|
29
|
-
"login": "mvickers",
|
30
|
-
"email": "mvickers@quispiam.com"
|
31
|
-
},
|
32
|
-
"parents": [
|
33
|
-
{
|
34
|
-
"id": "1ff368f79b0f0aa0e1f1d78bcaa8691f94f9703e"
|
35
|
-
}
|
36
|
-
],
|
37
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/3604d4fde8078c5f820dc7565f3ccef6f49be0e8",
|
38
|
-
"id": "3604d4fde8078c5f820dc7565f3ccef6f49be0e8",
|
39
|
-
"committed_date": "2010-04-23T08:50:45-07:00",
|
40
|
-
"authored_date": "2008-11-26T19:48:29-08:00",
|
41
|
-
"message": "Added an id to <tbody> on line 94 in order to stop IE from barfing up all over jQuery.",
|
42
|
-
"committer": {
|
43
|
-
"name": "Chris Wanstrath",
|
44
|
-
"login": "defunkt",
|
45
|
-
"email": "chris@ozmm.org"
|
46
|
-
},
|
47
|
-
"tree": "dd6e24a18e6c43e4dd17bdacac89cb34d9c5fd78"
|
48
|
-
},
|
49
|
-
{
|
50
|
-
"author": {
|
51
|
-
"name": "Stephen Martin",
|
52
|
-
"login": "",
|
53
|
-
"email": "stephenmartin@stephen-martins-mac-pro.local"
|
54
|
-
},
|
55
|
-
"parents": [
|
56
|
-
{
|
57
|
-
"id": "b9a23779076953b33744261a8b745ff753cce85b"
|
58
|
-
}
|
59
|
-
],
|
60
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/1ff368f79b0f0aa0e1f1d78bcaa8691f94f9703e",
|
61
|
-
"id": "1ff368f79b0f0aa0e1f1d78bcaa8691f94f9703e",
|
62
|
-
"committed_date": "2010-04-23T08:49:45-07:00",
|
63
|
-
"authored_date": "2009-03-19T06:28:05-07:00",
|
64
|
-
"message": "Fixed CSS expression, throwing errors in IE6.",
|
65
|
-
"committer": {
|
66
|
-
"name": "Chris Wanstrath",
|
67
|
-
"login": "defunkt",
|
68
|
-
"email": "chris@ozmm.org"
|
69
|
-
},
|
70
|
-
"tree": "2460799b2a8c55df06690b663cf47874661e6745"
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"author": {
|
74
|
-
"name": "Damien Mathieu",
|
75
|
-
"login": "dmathieu",
|
76
|
-
"email": "damien.mathieu@lim.eu"
|
77
|
-
},
|
78
|
-
"parents": [
|
79
|
-
{
|
80
|
-
"id": "c07168c6db341909f932c53cc371ba000b7cf2fd"
|
81
|
-
}
|
82
|
-
],
|
83
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/b9a23779076953b33744261a8b745ff753cce85b",
|
84
|
-
"id": "b9a23779076953b33744261a8b745ff753cce85b",
|
85
|
-
"committed_date": "2010-04-23T08:49:20-07:00",
|
86
|
-
"authored_date": "2010-02-15T09:07:49-08:00",
|
87
|
-
"message": "new callback in the documentation",
|
88
|
-
"committer": {
|
89
|
-
"name": "Chris Wanstrath",
|
90
|
-
"login": "defunkt",
|
91
|
-
"email": "chris@ozmm.org"
|
92
|
-
},
|
93
|
-
"tree": "ef691eada43ea62a660cbf64de7779188e676355"
|
94
|
-
},
|
95
|
-
{
|
96
|
-
"author": {
|
97
|
-
"name": "Damien Mathieu",
|
98
|
-
"login": "dmathieu",
|
99
|
-
"email": "damien.mathieu@lim.eu"
|
100
|
-
},
|
101
|
-
"parents": [
|
102
|
-
{
|
103
|
-
"id": "054c2c90db7b4d119a5a445bfc65e8501f45d2b3"
|
104
|
-
}
|
105
|
-
],
|
106
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/c07168c6db341909f932c53cc371ba000b7cf2fd",
|
107
|
-
"id": "c07168c6db341909f932c53cc371ba000b7cf2fd",
|
108
|
-
"committed_date": "2010-04-23T08:49:20-07:00",
|
109
|
-
"authored_date": "2010-02-15T09:05:20-08:00",
|
110
|
-
"message": "adding callback after the close of the facebox",
|
111
|
-
"committer": {
|
112
|
-
"name": "Chris Wanstrath",
|
113
|
-
"login": "defunkt",
|
114
|
-
"email": "chris@ozmm.org"
|
115
|
-
},
|
116
|
-
"tree": "731cbc5c33c2bf1c753c5174ca15926662f5e6d1"
|
117
|
-
},
|
118
|
-
{
|
119
|
-
"author": {
|
120
|
-
"name": "Chris Wanstrath",
|
121
|
-
"login": "defunkt",
|
122
|
-
"email": "chris@ozmm.org"
|
123
|
-
},
|
124
|
-
"parents": [
|
125
|
-
{
|
126
|
-
"id": "1b9275acfa6b20330eb7db26eb38fa7801eb7831"
|
127
|
-
}
|
128
|
-
],
|
129
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/054c2c90db7b4d119a5a445bfc65e8501f45d2b3",
|
130
|
-
"id": "054c2c90db7b4d119a5a445bfc65e8501f45d2b3",
|
131
|
-
"committed_date": "2009-08-29T14:10:18-07:00",
|
132
|
-
"authored_date": "2009-08-29T11:50:37-07:00",
|
133
|
-
"message": "Use a spring instead of loading the corners separately",
|
134
|
-
"committer": {
|
135
|
-
"name": "Chris Wanstrath",
|
136
|
-
"login": "defunkt",
|
137
|
-
"email": "chris@ozmm.org"
|
138
|
-
},
|
139
|
-
"tree": "f7954f5ec0086e9b6335a0b9873637076a5d69f6"
|
140
|
-
},
|
141
|
-
{
|
142
|
-
"author": {
|
143
|
-
"name": "Chris Wanstrath",
|
144
|
-
"login": "defunkt",
|
145
|
-
"email": "chris@ozmm.org"
|
146
|
-
},
|
147
|
-
"parents": [
|
148
|
-
{
|
149
|
-
"id": "7cf38757d8499a8063a66efa4af16a4fd6ff32a8"
|
150
|
-
}
|
151
|
-
],
|
152
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/1b9275acfa6b20330eb7db26eb38fa7801eb7831",
|
153
|
-
"id": "1b9275acfa6b20330eb7db26eb38fa7801eb7831",
|
154
|
-
"committed_date": "2009-05-22T17:04:06-07:00",
|
155
|
-
"authored_date": "2009-05-22T17:04:06-07:00",
|
156
|
-
"message": "Ignore hrefs consisting of only a # - it's a developer bug",
|
157
|
-
"committer": {
|
158
|
-
"name": "Chris Wanstrath",
|
159
|
-
"login": "defunkt",
|
160
|
-
"email": "chris@ozmm.org"
|
161
|
-
},
|
162
|
-
"tree": "e46fec36f3a630a3f92de9bf84a1b239a6fc3844"
|
163
|
-
},
|
164
|
-
{
|
165
|
-
"author": {
|
166
|
-
"name": "Chris Wanstrath",
|
167
|
-
"login": "defunkt",
|
168
|
-
"email": "chris@ozmm.org"
|
169
|
-
},
|
170
|
-
"parents": [
|
171
|
-
{
|
172
|
-
"id": "e905e4750c66a53555d7594fa515bd10d15fc915"
|
173
|
-
}
|
174
|
-
],
|
175
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/7cf38757d8499a8063a66efa4af16a4fd6ff32a8",
|
176
|
-
"id": "7cf38757d8499a8063a66efa4af16a4fd6ff32a8",
|
177
|
-
"committed_date": "2009-04-24T14:10:51-07:00",
|
178
|
-
"authored_date": "2009-04-24T14:10:51-07:00",
|
179
|
-
"message": "whitespace",
|
180
|
-
"committer": {
|
181
|
-
"name": "Chris Wanstrath",
|
182
|
-
"login": "defunkt",
|
183
|
-
"email": "chris@ozmm.org"
|
184
|
-
},
|
185
|
-
"tree": "29fefa83bfb818f148dbc70c6e627b31576c9ca3"
|
186
|
-
},
|
187
|
-
{
|
188
|
-
"author": {
|
189
|
-
"name": "Chris Wanstrath",
|
190
|
-
"login": "defunkt",
|
191
|
-
"email": "chris@ozmm.org"
|
192
|
-
},
|
193
|
-
"parents": [
|
194
|
-
{
|
195
|
-
"id": "04d5c6d4ab2d220508083f2cb7b30f9548ebb066"
|
196
|
-
}
|
197
|
-
],
|
198
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/e905e4750c66a53555d7594fa515bd10d15fc915",
|
199
|
-
"id": "e905e4750c66a53555d7594fa515bd10d15fc915",
|
200
|
-
"committed_date": "2009-04-24T13:23:32-07:00",
|
201
|
-
"authored_date": "2009-04-24T13:23:32-07:00",
|
202
|
-
"message": "I put the fix in the wrong place. `data` may not always be a jQuery object.",
|
203
|
-
"committer": {
|
204
|
-
"name": "Chris Wanstrath",
|
205
|
-
"login": "defunkt",
|
206
|
-
"email": "chris@ozmm.org"
|
207
|
-
},
|
208
|
-
"tree": "aadaed4bd0ce6b416b1eeb01c9cd596e4c231d01"
|
209
|
-
},
|
210
|
-
{
|
211
|
-
"author": {
|
212
|
-
"name": "Chris Wanstrath",
|
213
|
-
"login": "defunkt",
|
214
|
-
"email": "chris@ozmm.org"
|
215
|
-
},
|
216
|
-
"parents": [
|
217
|
-
{
|
218
|
-
"id": "365b84e0fd92c47ecdada91da47f2d67500b8e31"
|
219
|
-
}
|
220
|
-
],
|
221
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/04d5c6d4ab2d220508083f2cb7b30f9548ebb066",
|
222
|
-
"id": "04d5c6d4ab2d220508083f2cb7b30f9548ebb066",
|
223
|
-
"committed_date": "2009-04-23T15:57:08-07:00",
|
224
|
-
"authored_date": "2009-04-23T15:57:08-07:00",
|
225
|
-
"message": "Extracted fixes from GitHub's Facebox.",
|
226
|
-
"committer": {
|
227
|
-
"name": "Chris Wanstrath",
|
228
|
-
"login": "defunkt",
|
229
|
-
"email": "chris@ozmm.org"
|
230
|
-
},
|
231
|
-
"tree": "128e998cc19db1a3b87f2e9ff1837280812087aa"
|
232
|
-
},
|
233
|
-
{
|
234
|
-
"author": {
|
235
|
-
"name": "Chris Wanstrath",
|
236
|
-
"login": "defunkt",
|
237
|
-
"email": "chris@ozmm.org"
|
238
|
-
},
|
239
|
-
"parents": [
|
240
|
-
{
|
241
|
-
"id": "5389b68725ebebc2c5fdcb373a295f5e3339082e"
|
242
|
-
},
|
243
|
-
{
|
244
|
-
"id": "a47803c9ba26213ff194f042ab686a7749b17476"
|
245
|
-
}
|
246
|
-
],
|
247
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/365b84e0fd92c47ecdada91da47f2d67500b8e31",
|
248
|
-
"id": "365b84e0fd92c47ecdada91da47f2d67500b8e31",
|
249
|
-
"committed_date": "2008-07-26T16:24:11-07:00",
|
250
|
-
"authored_date": "2008-07-26T16:24:11-07:00",
|
251
|
-
"message": "Merge branch 'master' of git:\/\/github.com\/rmm5t\/facebox into rmm5t\/master",
|
252
|
-
"committer": {
|
253
|
-
"name": "Chris Wanstrath",
|
254
|
-
"login": "defunkt",
|
255
|
-
"email": "chris@ozmm.org"
|
256
|
-
},
|
257
|
-
"tree": "a91f5a83554481165349fbf63b201715efb87cab"
|
258
|
-
},
|
259
|
-
{
|
260
|
-
"author": {
|
261
|
-
"name": "Chris Wanstrath",
|
262
|
-
"login": "defunkt",
|
263
|
-
"email": "chris@ozmm.org"
|
264
|
-
},
|
265
|
-
"parents": [
|
266
|
-
{
|
267
|
-
"id": "fbb6b9311ed8c7eae1ee4ac71945e7ea82df3b45"
|
268
|
-
}
|
269
|
-
],
|
270
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/5389b68725ebebc2c5fdcb373a295f5e3339082e",
|
271
|
-
"id": "5389b68725ebebc2c5fdcb373a295f5e3339082e",
|
272
|
-
"committed_date": "2008-07-26T15:15:20-07:00",
|
273
|
-
"authored_date": "2008-07-26T15:15:20-07:00",
|
274
|
-
"message": "Revert \"changed from replaceWith to replaceAll\"\n\nThis reverts commit d307d7780736a3be62c68c64636d822ad3658090.",
|
275
|
-
"committer": {
|
276
|
-
"name": "Chris Wanstrath",
|
277
|
-
"login": "defunkt",
|
278
|
-
"email": "chris@ozmm.org"
|
279
|
-
},
|
280
|
-
"tree": "73afb1ed4d16d084eee5696fcf25cd4b03b9201e"
|
281
|
-
},
|
282
|
-
{
|
283
|
-
"author": {
|
284
|
-
"name": "Ryan McGeary",
|
285
|
-
"login": "rmm5t",
|
286
|
-
"email": "ryanongit@mcgeary.org"
|
287
|
-
},
|
288
|
-
"parents": [
|
289
|
-
{
|
290
|
-
"id": "fbb6b9311ed8c7eae1ee4ac71945e7ea82df3b45"
|
291
|
-
}
|
292
|
-
],
|
293
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/a47803c9ba26213ff194f042ab686a7749b17476",
|
294
|
-
"id": "a47803c9ba26213ff194f042ab686a7749b17476",
|
295
|
-
"committed_date": "2008-07-25T13:37:18-07:00",
|
296
|
-
"authored_date": "2008-07-25T13:37:18-07:00",
|
297
|
-
"message": "Fixed the extra spacing under the close image in the facebox footer",
|
298
|
-
"committer": {
|
299
|
-
"name": "Ryan McGeary",
|
300
|
-
"login": "rmm5t",
|
301
|
-
"email": "ryanongit@mcgeary.org"
|
302
|
-
},
|
303
|
-
"tree": "c2797994abf9b46aba6b01a60a8fe91038b019d4"
|
304
|
-
},
|
305
|
-
{
|
306
|
-
"author": {
|
307
|
-
"name": "Chris Wanstrath",
|
308
|
-
"login": "defunkt",
|
309
|
-
"email": "chris@ozmm.org"
|
310
|
-
},
|
311
|
-
"parents": [
|
312
|
-
{
|
313
|
-
"id": "d307d7780736a3be62c68c64636d822ad3658090"
|
314
|
-
},
|
315
|
-
{
|
316
|
-
"id": "4967e8dd55c514025f3beedeabebefef4f8eea02"
|
317
|
-
}
|
318
|
-
],
|
319
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/fbb6b9311ed8c7eae1ee4ac71945e7ea82df3b45",
|
320
|
-
"id": "fbb6b9311ed8c7eae1ee4ac71945e7ea82df3b45",
|
321
|
-
"committed_date": "2008-07-23T07:18:27-07:00",
|
322
|
-
"authored_date": "2008-07-23T07:18:27-07:00",
|
323
|
-
"message": "Merge branch 'master' of git:\/\/github.com\/fauxparse\/facebox into fauxparse\/master",
|
324
|
-
"committer": {
|
325
|
-
"name": "Chris Wanstrath",
|
326
|
-
"login": "defunkt",
|
327
|
-
"email": "chris@ozmm.org"
|
328
|
-
},
|
329
|
-
"tree": "974689965a93a082f465b2e58dc2c14b4c16868a"
|
330
|
-
},
|
331
|
-
{
|
332
|
-
"author": {
|
333
|
-
"name": "Matt Powell",
|
334
|
-
"login": "fauxparse",
|
335
|
-
"email": "fauxparse@gmail.com"
|
336
|
-
},
|
337
|
-
"parents": [
|
338
|
-
{
|
339
|
-
"id": "b24c1a8d6a2a460886efd6649494d7ae3aa0ac58"
|
340
|
-
}
|
341
|
-
],
|
342
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/4967e8dd55c514025f3beedeabebefef4f8eea02",
|
343
|
-
"id": "4967e8dd55c514025f3beedeabebefef4f8eea02",
|
344
|
-
"committed_date": "2008-06-30T18:40:20-07:00",
|
345
|
-
"authored_date": "2008-06-30T18:40:20-07:00",
|
346
|
-
"message": "namespace the click event on $('a').facebox()",
|
347
|
-
"committer": {
|
348
|
-
"name": "Matt Powell",
|
349
|
-
"login": "fauxparse",
|
350
|
-
"email": "fauxparse@gmail.com"
|
351
|
-
},
|
352
|
-
"tree": "73afb1ed4d16d084eee5696fcf25cd4b03b9201e"
|
353
|
-
},
|
354
|
-
{
|
355
|
-
"author": {
|
356
|
-
"name": "Jon Maddox",
|
357
|
-
"login": "maddox",
|
358
|
-
"email": "jon@jonsthoughtsoneverything.com"
|
359
|
-
},
|
360
|
-
"parents": [
|
361
|
-
{
|
362
|
-
"id": "b24c1a8d6a2a460886efd6649494d7ae3aa0ac58"
|
363
|
-
}
|
364
|
-
],
|
365
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/d307d7780736a3be62c68c64636d822ad3658090",
|
366
|
-
"id": "d307d7780736a3be62c68c64636d822ad3658090",
|
367
|
-
"committed_date": "2008-06-26T13:48:16-07:00",
|
368
|
-
"authored_date": "2008-06-26T13:48:16-07:00",
|
369
|
-
"message": "changed from replaceWith to replaceAll\nreplaceWith was causing crazy problems with the dom and removing the first child option tag from select boxes in facebox'd div",
|
370
|
-
"committer": {
|
371
|
-
"name": "Jon Maddox",
|
372
|
-
"login": "maddox",
|
373
|
-
"email": "jon@jonsthoughtsoneverything.com"
|
374
|
-
},
|
375
|
-
"tree": "8973fa4d90cc16b439c4859abb287ace3f9531c1"
|
376
|
-
},
|
377
|
-
{
|
378
|
-
"author": {
|
379
|
-
"name": "Sean Johnson",
|
380
|
-
"login": "",
|
381
|
-
"email": "sean@Seans-Mac-Pro.local"
|
382
|
-
},
|
383
|
-
"parents": [
|
384
|
-
{
|
385
|
-
"id": "6a3115ad2dba545eca67fda95b34e1280d3b8c30"
|
386
|
-
}
|
387
|
-
],
|
388
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/b24c1a8d6a2a460886efd6649494d7ae3aa0ac58",
|
389
|
-
"id": "b24c1a8d6a2a460886efd6649494d7ae3aa0ac58",
|
390
|
-
"committed_date": "2008-06-21T16:12:02-07:00",
|
391
|
-
"authored_date": "2008-06-21T16:12:02-07:00",
|
392
|
-
"message": "Full commit this time. Added the argument so a css class can be passed when using facebox\nprogrammatically. Improved the documentation around programmatic usage and\nadded a test file for programmatic usage.",
|
393
|
-
"committer": {
|
394
|
-
"name": "Sean Johnson",
|
395
|
-
"login": "",
|
396
|
-
"email": "sean@Seans-Mac-Pro.local"
|
397
|
-
},
|
398
|
-
"tree": "387e28856281f883f00d521955e8df3500149b12"
|
399
|
-
},
|
400
|
-
{
|
401
|
-
"author": {
|
402
|
-
"name": "Sean Johnson",
|
403
|
-
"login": "",
|
404
|
-
"email": "sean@Seans-Mac-Pro.local"
|
405
|
-
},
|
406
|
-
"parents": [
|
407
|
-
{
|
408
|
-
"id": "4bf7a39e8c4ec54f8b4cd594a3616d69004aba69"
|
409
|
-
}
|
410
|
-
],
|
411
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/6a3115ad2dba545eca67fda95b34e1280d3b8c30",
|
412
|
-
"id": "6a3115ad2dba545eca67fda95b34e1280d3b8c30",
|
413
|
-
"committed_date": "2008-06-21T07:20:05-07:00",
|
414
|
-
"authored_date": "2008-06-21T07:20:05-07:00",
|
415
|
-
"message": "Added the argument so a css class can be passed when using facebox programmatically. Improved the documentation around programmatic usage and added a test file for programmatic usage.",
|
416
|
-
"committer": {
|
417
|
-
"name": "Sean Johnson",
|
418
|
-
"login": "",
|
419
|
-
"email": "sean@Seans-Mac-Pro.local"
|
420
|
-
},
|
421
|
-
"tree": "4b72e5c7947a1226ddcbc62efc69fe9c9d2bf949"
|
422
|
-
},
|
423
|
-
{
|
424
|
-
"author": {
|
425
|
-
"name": "Chris Wanstrath",
|
426
|
-
"login": "defunkt",
|
427
|
-
"email": "chris@ozmm.org"
|
428
|
-
},
|
429
|
-
"parents": [
|
430
|
-
{
|
431
|
-
"id": "cd13d9a61288dceb0a7aa73b55ed2fd019f4f1f7"
|
432
|
-
},
|
433
|
-
{
|
434
|
-
"id": "3211367cab73233af66dac2710c94682f3f3b9b2"
|
435
|
-
}
|
436
|
-
],
|
437
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/4bf7a39e8c4ec54f8b4cd594a3616d69004aba69",
|
438
|
-
"id": "4bf7a39e8c4ec54f8b4cd594a3616d69004aba69",
|
439
|
-
"committed_date": "2008-06-18T18:00:37-07:00",
|
440
|
-
"authored_date": "2008-06-18T18:00:37-07:00",
|
441
|
-
"message": "Merge branch 'master' of git:\/\/github.com\/webweaver\/facebox into webweaver\/master",
|
442
|
-
"committer": {
|
443
|
-
"name": "Chris Wanstrath",
|
444
|
-
"login": "defunkt",
|
445
|
-
"email": "chris@ozmm.org"
|
446
|
-
},
|
447
|
-
"tree": "f7a5de2e224ec94182a3c2c081f4e7f35f70da4d"
|
448
|
-
},
|
449
|
-
{
|
450
|
-
"author": {
|
451
|
-
"name": "Chris Wanstrath",
|
452
|
-
"login": "defunkt",
|
453
|
-
"email": "chris@ozmm.org"
|
454
|
-
},
|
455
|
-
"parents": [
|
456
|
-
{
|
457
|
-
"id": "7dd94ee84787a2887f929226408109bf78a0fba3"
|
458
|
-
}
|
459
|
-
],
|
460
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/cd13d9a61288dceb0a7aa73b55ed2fd019f4f1f7",
|
461
|
-
"id": "cd13d9a61288dceb0a7aa73b55ed2fd019f4f1f7",
|
462
|
-
"committed_date": "2008-06-12T17:32:14-07:00",
|
463
|
-
"authored_date": "2008-06-12T17:32:14-07:00",
|
464
|
-
"message": "convert to the style already in facebox",
|
465
|
-
"committer": {
|
466
|
-
"name": "Chris Wanstrath",
|
467
|
-
"login": "defunkt",
|
468
|
-
"email": "chris@ozmm.org"
|
469
|
-
},
|
470
|
-
"tree": "4de017d56aba40913ab88f2755f359471296bb35"
|
471
|
-
},
|
472
|
-
{
|
473
|
-
"author": {
|
474
|
-
"name": "Chris Wanstrath",
|
475
|
-
"login": "defunkt",
|
476
|
-
"email": "chris@ozmm.org"
|
477
|
-
},
|
478
|
-
"parents": [
|
479
|
-
{
|
480
|
-
"id": "f77e00b10fcb6e09eb93110ffe09a10e23211141"
|
481
|
-
},
|
482
|
-
{
|
483
|
-
"id": "d7b67e7fc1a8a9de0e28e6824c08b3b52719708d"
|
484
|
-
}
|
485
|
-
],
|
486
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/7dd94ee84787a2887f929226408109bf78a0fba3",
|
487
|
-
"id": "7dd94ee84787a2887f929226408109bf78a0fba3",
|
488
|
-
"committed_date": "2008-06-12T17:31:00-07:00",
|
489
|
-
"authored_date": "2008-06-12T17:31:00-07:00",
|
490
|
-
"message": "Merge branch 'master' of git:\/\/github.com\/subwindow\/facebox into subwindow\/master",
|
491
|
-
"committer": {
|
492
|
-
"name": "Chris Wanstrath",
|
493
|
-
"login": "defunkt",
|
494
|
-
"email": "chris@ozmm.org"
|
495
|
-
},
|
496
|
-
"tree": "436ff9e4acc8e43d5e69aa1ffdbd55bddd05e4c7"
|
497
|
-
},
|
498
|
-
{
|
499
|
-
"author": {
|
500
|
-
"name": "komzakn",
|
501
|
-
"login": "rubymood",
|
502
|
-
"email": "nandor.komzak@gmail.com"
|
503
|
-
},
|
504
|
-
"parents": [
|
505
|
-
{
|
506
|
-
"id": "9b8c6e544533e17ffdf2c2f8f45936b18a852e0a"
|
507
|
-
}
|
508
|
-
],
|
509
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/f77e00b10fcb6e09eb93110ffe09a10e23211141",
|
510
|
-
"id": "f77e00b10fcb6e09eb93110ffe09a10e23211141",
|
511
|
-
"committed_date": "2008-06-12T06:33:53-07:00",
|
512
|
-
"authored_date": "2008-06-12T06:33:53-07:00",
|
513
|
-
"message": "Fixed a typo in showOverlay(), there was a missing hashmark on the element identifier 'facebox_overlay'.",
|
514
|
-
"committer": {
|
515
|
-
"name": "komzakn",
|
516
|
-
"login": "rubymood",
|
517
|
-
"email": "nandor.komzak@gmail.com"
|
518
|
-
},
|
519
|
-
"tree": "d91921c69fe731715d3296eb767e0548b588b646"
|
520
|
-
},
|
521
|
-
{
|
522
|
-
"author": {
|
523
|
-
"name": "Erik Peterson",
|
524
|
-
"login": "",
|
525
|
-
"email": "erik@ep.(none)"
|
526
|
-
},
|
527
|
-
"parents": [
|
528
|
-
{
|
529
|
-
"id": "9b8c6e544533e17ffdf2c2f8f45936b18a852e0a"
|
530
|
-
}
|
531
|
-
],
|
532
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/d7b67e7fc1a8a9de0e28e6824c08b3b52719708d",
|
533
|
-
"id": "d7b67e7fc1a8a9de0e28e6824c08b3b52719708d",
|
534
|
-
"committed_date": "2008-06-10T09:45:03-07:00",
|
535
|
-
"authored_date": "2008-06-10T09:45:03-07:00",
|
536
|
-
"message": "Changes div behavior from clone\/delete to move\/replace.",
|
537
|
-
"committer": {
|
538
|
-
"name": "Erik Peterson",
|
539
|
-
"login": "",
|
540
|
-
"email": "erik@ep.(none)"
|
541
|
-
},
|
542
|
-
"tree": "054875b43c69d7e6dbba7fc9f5715adb2f2d3c3d"
|
543
|
-
},
|
544
|
-
{
|
545
|
-
"author": {
|
546
|
-
"name": "webweaver",
|
547
|
-
"login": "",
|
548
|
-
"email": "paul@webweaversolutions.co.nz"
|
549
|
-
},
|
550
|
-
"parents": [
|
551
|
-
{
|
552
|
-
"id": "9b8c6e544533e17ffdf2c2f8f45936b18a852e0a"
|
553
|
-
}
|
554
|
-
],
|
555
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/3211367cab73233af66dac2710c94682f3f3b9b2",
|
556
|
-
"id": "3211367cab73233af66dac2710c94682f3f3b9b2",
|
557
|
-
"committed_date": "2008-06-05T03:44:31-07:00",
|
558
|
-
"authored_date": "2008-06-05T03:44:31-07:00",
|
559
|
-
"message": "Fixed image matching regex.\n\n\".png test\".match($.facebox.settings.imageTypesRegexp) would match (incorrect behavior)\n\".gif test\".match($.facebox.settings.imageTypesRegexp) would not match",
|
560
|
-
"committer": {
|
561
|
-
"name": "webweaver",
|
562
|
-
"login": "",
|
563
|
-
"email": "paul@webweaversolutions.co.nz"
|
564
|
-
},
|
565
|
-
"tree": "3ba40102fc75664d99dabc7901bcc795bbfb2c4d"
|
566
|
-
},
|
567
|
-
{
|
568
|
-
"author": {
|
569
|
-
"name": "Chris Wanstrath",
|
570
|
-
"login": "defunkt",
|
571
|
-
"email": "chris@ozmm.org"
|
572
|
-
},
|
573
|
-
"parents": [
|
574
|
-
{
|
575
|
-
"id": "fce84b4fccc622fa682b8550785cd596a0539c33"
|
576
|
-
},
|
577
|
-
{
|
578
|
-
"id": "ec72c3df2f7c534f9e913b37f767a2a650647b0f"
|
579
|
-
}
|
580
|
-
],
|
581
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/9b8c6e544533e17ffdf2c2f8f45936b18a852e0a",
|
582
|
-
"id": "9b8c6e544533e17ffdf2c2f8f45936b18a852e0a",
|
583
|
-
"committed_date": "2008-05-11T19:35:42-07:00",
|
584
|
-
"authored_date": "2008-05-11T19:35:42-07:00",
|
585
|
-
"message": "Merge branch 'master' of git:\/\/github.com\/tokumine\/facebox into tokumine\/master",
|
586
|
-
"committer": {
|
587
|
-
"name": "Chris Wanstrath",
|
588
|
-
"login": "defunkt",
|
589
|
-
"email": "chris@ozmm.org"
|
590
|
-
},
|
591
|
-
"tree": "fc4cc7fee2f5e065aa7ce7fe82ab6ed95e9c944a"
|
592
|
-
},
|
593
|
-
{
|
594
|
-
"author": {
|
595
|
-
"name": "Simon Tokumine",
|
596
|
-
"login": "tokumine",
|
597
|
-
"email": "simon@japancentre.com"
|
598
|
-
},
|
599
|
-
"parents": [
|
600
|
-
{
|
601
|
-
"id": "fc18e486123da27cbf82dbb4b6d1ce462f301655"
|
602
|
-
}
|
603
|
-
],
|
604
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/ec72c3df2f7c534f9e913b37f767a2a650647b0f",
|
605
|
-
"id": "ec72c3df2f7c534f9e913b37f767a2a650647b0f",
|
606
|
-
"committed_date": "2008-05-07T09:14:27-07:00",
|
607
|
-
"authored_date": "2008-05-07T09:14:27-07:00",
|
608
|
-
"message": "Changed the loading window left margin to something roughly right to help prevent epilepsy. Magic number arrived at by (CSS width of loading box + padding + 20px for the borders either side) \/ 2.",
|
609
|
-
"committer": {
|
610
|
-
"name": "Simon Tokumine",
|
611
|
-
"login": "tokumine",
|
612
|
-
"email": "simon@japancentre.com"
|
613
|
-
},
|
614
|
-
"tree": "baa96fb2a527b6c0922d2eab007c41b526fad6d3"
|
615
|
-
},
|
616
|
-
{
|
617
|
-
"author": {
|
618
|
-
"name": "Chris Wanstrath",
|
619
|
-
"login": "defunkt",
|
620
|
-
"email": "chris@ozmm.org"
|
621
|
-
},
|
622
|
-
"parents": [
|
623
|
-
{
|
624
|
-
"id": "fc18e486123da27cbf82dbb4b6d1ce462f301655"
|
625
|
-
}
|
626
|
-
],
|
627
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/fce84b4fccc622fa682b8550785cd596a0539c33",
|
628
|
-
"id": "fce84b4fccc622fa682b8550785cd596a0539c33",
|
629
|
-
"committed_date": "2008-05-05T11:38:34-07:00",
|
630
|
-
"authored_date": "2008-05-05T11:38:34-07:00",
|
631
|
-
"message": "bump version",
|
632
|
-
"committer": {
|
633
|
-
"name": "Chris Wanstrath",
|
634
|
-
"login": "defunkt",
|
635
|
-
"email": "chris@ozmm.org"
|
636
|
-
},
|
637
|
-
"tree": "a492283ce34fa4562403410d18e7ae89d20818a1"
|
638
|
-
},
|
639
|
-
{
|
640
|
-
"author": {
|
641
|
-
"name": "Chris Wanstrath",
|
642
|
-
"login": "defunkt",
|
643
|
-
"email": "chris@ozmm.org"
|
644
|
-
},
|
645
|
-
"parents": [
|
646
|
-
{
|
647
|
-
"id": "409e6514dff5a2ef6500f3438403f9ed35d3d9cd"
|
648
|
-
}
|
649
|
-
],
|
650
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/fc18e486123da27cbf82dbb4b6d1ce462f301655",
|
651
|
-
"id": "fc18e486123da27cbf82dbb4b6d1ce462f301655",
|
652
|
-
"committed_date": "2008-05-05T11:08:59-07:00",
|
653
|
-
"authored_date": "2008-05-05T11:08:59-07:00",
|
654
|
-
"message": "dont keep releases in git",
|
655
|
-
"committer": {
|
656
|
-
"name": "Chris Wanstrath",
|
657
|
-
"login": "defunkt",
|
658
|
-
"email": "chris@ozmm.org"
|
659
|
-
},
|
660
|
-
"tree": "c78b7903adbf2eb36d41e1773b99e87560fb7c2c"
|
661
|
-
},
|
662
|
-
{
|
663
|
-
"author": {
|
664
|
-
"name": "Chris Wanstrath",
|
665
|
-
"login": "defunkt",
|
666
|
-
"email": "chris@ozmm.org"
|
667
|
-
},
|
668
|
-
"parents": [
|
669
|
-
{
|
670
|
-
"id": "4cd991b001670bce2ffaf45957f69c1086c21e40"
|
671
|
-
}
|
672
|
-
],
|
673
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/409e6514dff5a2ef6500f3438403f9ed35d3d9cd",
|
674
|
-
"id": "409e6514dff5a2ef6500f3438403f9ed35d3d9cd",
|
675
|
-
"committed_date": "2008-05-02T16:56:30-07:00",
|
676
|
-
"authored_date": "2008-05-02T16:56:30-07:00",
|
677
|
-
"message": "fix typo. thanks PotatoSalad!",
|
678
|
-
"committer": {
|
679
|
-
"name": "Chris Wanstrath",
|
680
|
-
"login": "defunkt",
|
681
|
-
"email": "chris@ozmm.org"
|
682
|
-
},
|
683
|
-
"tree": "b1c58bf6d42bb733615a4013f01a0ac9fd1546d7"
|
684
|
-
},
|
685
|
-
{
|
686
|
-
"author": {
|
687
|
-
"name": "Ryan Briones",
|
688
|
-
"login": "ryanbriones",
|
689
|
-
"email": "ryan.briones@brionesandco.com"
|
690
|
-
},
|
691
|
-
"parents": [
|
692
|
-
{
|
693
|
-
"id": "554c03c2e432340293afd56d56cb26a80f3e336b"
|
694
|
-
}
|
695
|
-
],
|
696
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/4cd991b001670bce2ffaf45957f69c1086c21e40",
|
697
|
-
"id": "4cd991b001670bce2ffaf45957f69c1086c21e40",
|
698
|
-
"committed_date": "2008-04-30T13:34:48-07:00",
|
699
|
-
"authored_date": "2008-04-30T13:34:48-07:00",
|
700
|
-
"message": "use fillFaceboxFromHref when calling facebox with div option",
|
701
|
-
"committer": {
|
702
|
-
"name": "Ryan Briones",
|
703
|
-
"login": "ryanbriones",
|
704
|
-
"email": "ryan.briones@brionesandco.com"
|
705
|
-
},
|
706
|
-
"tree": "3c1971d688f09f5628759db7e934b59e88478da2"
|
707
|
-
},
|
708
|
-
{
|
709
|
-
"author": {
|
710
|
-
"name": "Chris Wanstrath",
|
711
|
-
"login": "defunkt",
|
712
|
-
"email": "chris@ozmm.org"
|
713
|
-
},
|
714
|
-
"parents": [
|
715
|
-
{
|
716
|
-
"id": "16c6542a0475179215a1667cd505960f1913dc3d"
|
717
|
-
}
|
718
|
-
],
|
719
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/554c03c2e432340293afd56d56cb26a80f3e336b",
|
720
|
-
"id": "554c03c2e432340293afd56d56cb26a80f3e336b",
|
721
|
-
"committed_date": "2008-04-09T23:54:45-07:00",
|
722
|
-
"authored_date": "2008-04-09T23:54:45-07:00",
|
723
|
-
"message": "width is now set dynamically",
|
724
|
-
"committer": {
|
725
|
-
"name": "Chris Wanstrath",
|
726
|
-
"login": "defunkt",
|
727
|
-
"email": "chris@ozmm.org"
|
728
|
-
},
|
729
|
-
"tree": "b9aaa7f56498dcd3ee8e32efad7c6b91a73ed6e0"
|
730
|
-
},
|
731
|
-
{
|
732
|
-
"author": {
|
733
|
-
"name": "Chris Wanstrath",
|
734
|
-
"login": "defunkt",
|
735
|
-
"email": "chris@ozmm.org"
|
736
|
-
},
|
737
|
-
"parents": [
|
738
|
-
{
|
739
|
-
"id": "785535c58657425174639774fa5ed9f90b468ae8"
|
740
|
-
}
|
741
|
-
],
|
742
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/16c6542a0475179215a1667cd505960f1913dc3d",
|
743
|
-
"id": "16c6542a0475179215a1667cd505960f1913dc3d",
|
744
|
-
"committed_date": "2008-04-09T23:52:25-07:00",
|
745
|
-
"authored_date": "2008-04-09T23:52:25-07:00",
|
746
|
-
"message": "dynamically set facebox width on reveal",
|
747
|
-
"committer": {
|
748
|
-
"name": "Chris Wanstrath",
|
749
|
-
"login": "defunkt",
|
750
|
-
"email": "chris@ozmm.org"
|
751
|
-
},
|
752
|
-
"tree": "add498352fb3ebb76cbc609cfe5d05071ffb901f"
|
753
|
-
},
|
754
|
-
{
|
755
|
-
"author": {
|
756
|
-
"name": "Chris Wanstrath",
|
757
|
-
"login": "defunkt",
|
758
|
-
"email": "chris@ozmm.org"
|
759
|
-
},
|
760
|
-
"parents": [
|
761
|
-
{
|
762
|
-
"id": "e4e7aac29434bf8e038b3e2a9fa3ceb9d9465609"
|
763
|
-
}
|
764
|
-
],
|
765
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/785535c58657425174639774fa5ed9f90b468ae8",
|
766
|
-
"id": "785535c58657425174639774fa5ed9f90b468ae8",
|
767
|
-
"committed_date": "2008-04-07T16:25:53-07:00",
|
768
|
-
"authored_date": "2008-04-07T16:25:53-07:00",
|
769
|
-
"message": "hook-fest",
|
770
|
-
"committer": {
|
771
|
-
"name": "Chris Wanstrath",
|
772
|
-
"login": "defunkt",
|
773
|
-
"email": "chris@ozmm.org"
|
774
|
-
},
|
775
|
-
"tree": "39eb398d2585f5dea3f8d99f856cd6fc4d203afa"
|
776
|
-
},
|
777
|
-
{
|
778
|
-
"author": {
|
779
|
-
"name": "Chris Wanstrath",
|
780
|
-
"login": "defunkt",
|
781
|
-
"email": "chris@ozmm.org"
|
782
|
-
},
|
783
|
-
"parents": [
|
784
|
-
{
|
785
|
-
"id": "38153e7032f080850de3ad0ee5cbeecbfa8b85bf"
|
786
|
-
}
|
787
|
-
],
|
788
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/e4e7aac29434bf8e038b3e2a9fa3ceb9d9465609",
|
789
|
-
"id": "e4e7aac29434bf8e038b3e2a9fa3ceb9d9465609",
|
790
|
-
"committed_date": "2008-04-07T16:19:23-07:00",
|
791
|
-
"authored_date": "2008-04-07T16:19:23-07:00",
|
792
|
-
"message": "add in overlay, defaulting to clear",
|
793
|
-
"committer": {
|
794
|
-
"name": "Chris Wanstrath",
|
795
|
-
"login": "defunkt",
|
796
|
-
"email": "chris@ozmm.org"
|
797
|
-
},
|
798
|
-
"tree": "b50d5d5dc34e7e2791b97f0a492a074afede0e77"
|
799
|
-
},
|
800
|
-
{
|
801
|
-
"author": {
|
802
|
-
"name": "Chris Wanstrath",
|
803
|
-
"login": "defunkt",
|
804
|
-
"email": "chris@ozmm.org"
|
805
|
-
},
|
806
|
-
"parents": [
|
807
|
-
{
|
808
|
-
"id": "e55ccdbcefe5c897946805c77dcfefe212f19d14"
|
809
|
-
}
|
810
|
-
],
|
811
|
-
"url": "http:\/\/github.com\/defunkt\/facebox\/commit\/38153e7032f080850de3ad0ee5cbeecbfa8b85bf",
|
812
|
-
"id": "38153e7032f080850de3ad0ee5cbeecbfa8b85bf",
|
813
|
-
"committed_date": "2008-03-11T22:13:38-07:00",
|
814
|
-
"authored_date": "2008-03-11T22:13:38-07:00",
|
815
|
-
"message": "empty contents on close",
|
816
|
-
"committer": {
|
817
|
-
"name": "Chris Wanstrath",
|
818
|
-
"login": "defunkt",
|
819
|
-
"email": "chris@ozmm.org"
|
820
|
-
},
|
821
|
-
"tree": "6e1c9a0992494389459a23faf03f4e5bb3846262"
|
822
|
-
}
|
823
|
-
]
|
824
|
-
}
|