octokit 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. data/.document +4 -0
  2. data/.gitignore +24 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE +20 -0
  5. data/README.markdown +69 -0
  6. data/Rakefile +14 -0
  7. data/changelog.markdown +34 -0
  8. data/lib/faraday/raise_error.rb +41 -0
  9. data/lib/octokit.rb +49 -0
  10. data/lib/octokit/client.rb +30 -0
  11. data/lib/octokit/client/authentication.rb +19 -0
  12. data/lib/octokit/client/commits.rb +16 -0
  13. data/lib/octokit/client/connection.rb +32 -0
  14. data/lib/octokit/client/issues.rb +60 -0
  15. data/lib/octokit/client/network.rb +15 -0
  16. data/lib/octokit/client/objects.rb +33 -0
  17. data/lib/octokit/client/organizations.rb +89 -0
  18. data/lib/octokit/client/pulls.rb +19 -0
  19. data/lib/octokit/client/repositories.rb +130 -0
  20. data/lib/octokit/client/request.rb +41 -0
  21. data/lib/octokit/client/timelines.rb +20 -0
  22. data/lib/octokit/client/users.rb +77 -0
  23. data/lib/octokit/configuration.rb +45 -0
  24. data/lib/octokit/event.rb +76 -0
  25. data/lib/octokit/repository.rb +39 -0
  26. data/lib/octokit/version.rb +3 -0
  27. data/octokit.gemspec +33 -0
  28. data/test/fixtures/blob.json +10 -0
  29. data/test/fixtures/branch_commits.json +48 -0
  30. data/test/fixtures/branches.json +6 -0
  31. data/test/fixtures/close_issue.json +1 -0
  32. data/test/fixtures/collaborators.json +1 -0
  33. data/test/fixtures/comment.json +1 -0
  34. data/test/fixtures/commits.json +824 -0
  35. data/test/fixtures/contributors.json +6 -0
  36. data/test/fixtures/emails.json +1 -0
  37. data/test/fixtures/followers.json +3 -0
  38. data/test/fixtures/full_user.json +27 -0
  39. data/test/fixtures/issue.json +14 -0
  40. data/test/fixtures/issues.json +50 -0
  41. data/test/fixtures/keys.json +1 -0
  42. data/test/fixtures/labels.json +1 -0
  43. data/test/fixtures/languages.json +1 -0
  44. data/test/fixtures/network.json +26 -0
  45. data/test/fixtures/network_data.json +1 -0
  46. data/test/fixtures/network_meta.json +109 -0
  47. data/test/fixtures/open_issue.json +1 -0
  48. data/test/fixtures/raw_git_data.yaml +7 -0
  49. data/test/fixtures/reopen_issue.json +1 -0
  50. data/test/fixtures/repo.json +14 -0
  51. data/test/fixtures/repo_search.json +452 -0
  52. data/test/fixtures/repos.json +830 -0
  53. data/test/fixtures/search.json +44 -0
  54. data/test/fixtures/show_commit.json +37 -0
  55. data/test/fixtures/tags.json +8 -0
  56. data/test/fixtures/timeline.json +1018 -0
  57. data/test/fixtures/trees.json +140 -0
  58. data/test/fixtures/user.json +16 -0
  59. data/test/helper.rb +57 -0
  60. data/test/octokit_test.rb +765 -0
  61. data/test/repository_test.rb +45 -0
  62. metadata +377 -0
@@ -0,0 +1,76 @@
1
+ module Octokit
2
+ class Event
3
+
4
+ def self.load_from_atom(entry)
5
+ entry = entry.to_mash if entry.is_a?(Hash)
6
+
7
+ event = Hashie::Mash.new({:user => entry.author, :title => entry.title})
8
+ event.published = (entry.published.is_a?(String) ? DateTime.parse(entry.published) : entry.published)
9
+ event.id = entry.id.split("/").pop.to_i
10
+
11
+ event.links = entry.links
12
+ event.content = entry.content
13
+
14
+ case entry.id
15
+ when /CreateEvent/
16
+ case entry.title
17
+ when /created tag/
18
+ event.event_type = 'tag'
19
+ event.tag = entry.links.first.split('/').pop
20
+ when /created branch/
21
+ event.event_type = 'branch'
22
+ event.branch = entry.links.first.split('/').pop
23
+ when /created repository/
24
+ event.event_type = 'repo'
25
+ end
26
+ when /MemberEvent/
27
+ event.event_type = 'member'
28
+ event.target_user = entry.title.split(" ")[2]
29
+ when /PushEvent/
30
+ event.event_type = 'push'
31
+ event.branch = entry.links.first.split('/').pop
32
+ when /ForkApplyEvent/
33
+ event.event_type = 'fork_apply'
34
+ event.branch = entry.links.first.split('/').pop
35
+ when /ForkEvent/
36
+ event.event_type = 'fork'
37
+ segments = entry.title.split(" ")
38
+ event.forked_from = Repository.new(segments.last)
39
+ when /WatchEvent/
40
+ event.event_type = 'watch'
41
+ when /FollowEvent/
42
+ event.event_type = 'follow'
43
+ event.target_user = entry.links.first.split("/").pop
44
+ when /IssuesEvent/
45
+ event.event_type = 'issue'
46
+ event.action = entry.title[/closed|opened|reopened/]
47
+ event.issue_number = entry.title[/\s\d+\s/].strip.to_i
48
+ when /GistEvent/
49
+ event.event_type = 'gist'
50
+ event.gist_number = entry.links.first.split('/').pop.to_i
51
+ when /WikiEvent/
52
+ event.event_type = 'wiki'
53
+ event.page = entry.links.first.split('/').pop
54
+ when /CommitCommentEvent/
55
+ event.event_type = 'comment'
56
+ when /DeleteEvent/
57
+ event.event_type = 'delete'
58
+ segments = entry.title.split(' ')
59
+ event.branch = segments[3]
60
+ event.repo = Repository.new(segments[5])
61
+ when /PublicEvent/
62
+ event.event_type = 'public'
63
+ segments = entry.title.split(' ')
64
+ event.repo = Repository.new([segments[0], segments[3]].join('/'))
65
+ when /DownloadEvent/
66
+ event.event_type = 'download'
67
+ segments = entry.title.split(' ')
68
+ event.repo = Repository.new(segments[5])
69
+ else
70
+ puts "Unknown event type: #{entry.id}"
71
+ end
72
+ event.repo = Repository.from_url(entry.links.first) unless %w(follow gist delete public download).include?(event.event_type)
73
+ event
74
+ end
75
+ end
76
+ end
@@ -0,0 +1,39 @@
1
+ require 'addressable/uri'
2
+
3
+ module Octokit
4
+ class Repository
5
+ attr_accessor :username, :name
6
+
7
+ def self.from_url(url)
8
+ Repository.new(Addressable::URI.parse(url).path[1..-1])
9
+ end
10
+
11
+ def initialize(repo)
12
+ case repo
13
+ when String
14
+ @username, @name = repo.split('/')
15
+ when Repository
16
+ @username = repo.username
17
+ @name = repo.name
18
+ when Hash
19
+ @name = repo[:repo] ||= repo[:name]
20
+ @username = repo[:username] ||= repo[:user] ||= repo[:owner]
21
+ end
22
+ end
23
+
24
+ def slug
25
+ [@username, @name].compact.join('/')
26
+ end
27
+
28
+ def to_s
29
+ self.slug
30
+ end
31
+
32
+ def url
33
+ "https://github.com/#{slug}"
34
+ end
35
+
36
+ alias :user :username
37
+ alias :repo :name
38
+ end
39
+ end
@@ -0,0 +1,3 @@
1
+ module Octokit
2
+ VERSION = "0.4.0".freeze unless defined?(Octokit::VERSION)
3
+ end
@@ -0,0 +1,33 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/octokit/version', __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.add_development_dependency('fakeweb', '~> 1.3')
6
+ s.add_development_dependency('jnunemaker-matchy', '~> 0.4')
7
+ s.add_development_dependency('json', '~> 1.4')
8
+ s.add_development_dependency('mocha', '~> 0.9')
9
+ s.add_development_dependency('nokogiri', '~> 1.4')
10
+ s.add_development_dependency('rake', '~> 0.8')
11
+ s.add_development_dependency('shoulda', '~> 2.11')
12
+ s.add_development_dependency('webmock', '~> 1.6')
13
+ s.add_development_dependency('ZenTest', '~> 4.4')
14
+ s.add_runtime_dependency('addressable', '~> 2.2.2')
15
+ s.add_runtime_dependency('hashie', '~> 0.4.0')
16
+ s.add_runtime_dependency('faraday', '~> 0.5.3')
17
+ s.add_runtime_dependency('faraday_middleware', '~> 0.3.1')
18
+ s.add_runtime_dependency('multi_json', '~> 0.0.5')
19
+ s.add_runtime_dependency('multi_xml', '~> 0.2.0')
20
+ s.name = 'octokit'
21
+ s.authors = ["Wynn Netherland", "Adam Stacoviak", "Erik Michaels-Ober"]
22
+ s.description = %q{Simple wrapper for the GitHub API v2}
23
+ s.email = ['wynn.netherland@gmail.com']
24
+ s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
25
+ s.files = `git ls-files`.split("\n")
26
+ s.homepage = 'http://wynnnetherland.com/projects/octokit/'
27
+ s.require_paths = ['lib']
28
+ s.summary = %q{Wrapper for the GitHub API}
29
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
30
+ s.version = Octokit::VERSION.dup
31
+ s.platform = Gem::Platform::RUBY
32
+ s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=
33
+ end
@@ -0,0 +1,10 @@
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
+ }
@@ -0,0 +1,48 @@
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
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "branches": {
3
+ "integration": "e5bb86437ec67c115eee85ce6bf0b3b513946cee",
4
+ "master": "a202fb290bac4a488f6aee9f2d30ee0738e08602"
5
+ }
6
+ }
@@ -0,0 +1 @@
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"}}
@@ -0,0 +1 @@
1
+ {"collaborators":["pengwynn","adamstac"]}
@@ -0,0 +1 @@
1
+ {"comment": {"comment": "Nice catch!", "status": "saved"}}
@@ -0,0 +1,824 @@
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
+ }