octopussy 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. data/lib/octopussy.rb +5 -0
  2. data/lib/octopussy/client.rb +26 -3
  3. data/test/octopussy_test.rb +41 -2
  4. metadata +43 -83
  5. data/.document +0 -4
  6. data/.gitignore +0 -21
  7. data/LICENSE +0 -20
  8. data/README.markdown +0 -68
  9. data/Rakefile +0 -59
  10. data/VERSION +0 -1
  11. data/changelog.markdown +0 -30
  12. data/octopussy.gemspec +0 -105
  13. data/test/fixtures/blob.json +0 -10
  14. data/test/fixtures/branches.json +0 -6
  15. data/test/fixtures/close_issue.json +0 -1
  16. data/test/fixtures/collaborators.json +0 -1
  17. data/test/fixtures/comment.json +0 -1
  18. data/test/fixtures/contributors.json +0 -6
  19. data/test/fixtures/emails.json +0 -1
  20. data/test/fixtures/followers.json +0 -3
  21. data/test/fixtures/full_user.json +0 -27
  22. data/test/fixtures/issue.json +0 -14
  23. data/test/fixtures/issues.json +0 -50
  24. data/test/fixtures/keys.json +0 -1
  25. data/test/fixtures/labels.json +0 -1
  26. data/test/fixtures/languages.json +0 -1
  27. data/test/fixtures/list_branch_commits.json +0 -48
  28. data/test/fixtures/list_commits.json +0 -824
  29. data/test/fixtures/network.json +0 -26
  30. data/test/fixtures/network_data.json +0 -1
  31. data/test/fixtures/network_meta.json +0 -109
  32. data/test/fixtures/open_issue.json +0 -1
  33. data/test/fixtures/raw_git_data.json +0 -7
  34. data/test/fixtures/reopen_issue.json +0 -1
  35. data/test/fixtures/repo.json +0 -14
  36. data/test/fixtures/repo_search.json +0 -452
  37. data/test/fixtures/repos.json +0 -830
  38. data/test/fixtures/search.json +0 -44
  39. data/test/fixtures/show_commit.json +0 -37
  40. data/test/fixtures/tags.json +0 -8
  41. data/test/fixtures/trees.json +0 -140
  42. data/test/fixtures/user.json +0 -16
data/Rakefile DELETED
@@ -1,59 +0,0 @@
1
- require 'rake'
2
- require 'shoulda/tasks'
3
-
4
- begin
5
- require 'jeweler'
6
- Jeweler::Tasks.new do |gem|
7
- gem.name = "octopussy"
8
- gem.summary = %Q{Simple wrapper for the GitHub API}
9
- gem.description = %Q{Simple wrapper for the GitHub API v2}
10
- gem.email = "wynn.netherland@gmail.com"
11
- gem.homepage = "http://wynnnetherland.com/projects/octopussy"
12
- gem.authors = ["Wynn Netherland", "Adam Stacoviak"]
13
-
14
- gem.add_dependency('hashie', '~> 0.2.0')
15
- gem.add_dependency('httparty', '~> 0.4.5')
16
-
17
- gem.add_development_dependency('shoulda', '>= 2.10.1')
18
- gem.add_development_dependency('jnunemaker-matchy', '0.4.0')
19
- gem.add_development_dependency('mocha', '>= 0.9.4')
20
- gem.add_development_dependency('fakeweb', '>= 1.2.5')
21
- end
22
- Jeweler::GemcutterTasks.new
23
- rescue LoadError
24
- puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
25
- end
26
-
27
- require 'rake/testtask'
28
- Rake::TestTask.new(:test) do |test|
29
- test.ruby_opts = ['-rubygems'] if defined? Gem
30
- test.libs << 'lib' << 'test'
31
- test.pattern = 'test/**/*_test.rb'
32
- end
33
-
34
- begin
35
- require 'rcov/rcovtask'
36
- Rcov::RcovTask.new do |test|
37
- test.libs << 'test'
38
- test.pattern = 'test/**/test_*.rb'
39
- test.verbose = true
40
- end
41
- rescue LoadError
42
- task :rcov do
43
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
44
- end
45
- end
46
-
47
- task :test => :check_dependencies
48
-
49
- task :default => :test
50
-
51
- require 'rake/rdoctask'
52
- Rake::RDocTask.new do |rdoc|
53
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
54
-
55
- rdoc.rdoc_dir = 'rdoc'
56
- rdoc.title = "octopussy #{version}"
57
- rdoc.rdoc_files.include('README*')
58
- rdoc.rdoc_files.include('lib/**/*.rb')
59
- end
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.2.3
@@ -1,30 +0,0 @@
1
- # Changelog
2
- ## 0.2.3
3
- * Patch from [Sutto](http://github.com/Sutto) to use authentication with list repos if available
4
- ## 0.2.2
5
- * Patch from [abrader](http://github.com/abrader) to add auth_params query to the blob, tree, and repo class methods
6
- ## 0.2.1
7
- * Contributors API courtesy of @enricob
8
- ## 0.2.0
9
- * Commits API courtesy of @enricob
10
-
11
- ## 0.1.4
12
-
13
- * Preserved links array and content for events parsed from feeds
14
-
15
- ## 0.1.3
16
-
17
- * Added Download event
18
-
19
- ## 0.1.2
20
-
21
- * Added Delete event type
22
- * Added Public event type
23
-
24
- ## 0.1.1
25
-
26
- * Added Comment event type
27
-
28
- ## 0.0.1 Initial version
29
-
30
- * GitHub v2 API complete
@@ -1,105 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{octopussy}
8
- s.version = "0.2.3"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Wynn Netherland", "Adam Stacoviak"]
12
- s.date = %q{2010-06-17}
13
- s.description = %q{Simple wrapper for the GitHub API v2}
14
- s.email = %q{wynn.netherland@gmail.com}
15
- s.extra_rdoc_files = [
16
- "LICENSE",
17
- "README.markdown"
18
- ]
19
- s.files = [
20
- ".document",
21
- ".gitignore",
22
- "LICENSE",
23
- "README.markdown",
24
- "Rakefile",
25
- "VERSION",
26
- "changelog.markdown",
27
- "lib/octopussy.rb",
28
- "lib/octopussy/client.rb",
29
- "lib/octopussy/event.rb",
30
- "lib/octopussy/repo.rb",
31
- "octopussy.gemspec",
32
- "test/fixtures/blob.json",
33
- "test/fixtures/branches.json",
34
- "test/fixtures/close_issue.json",
35
- "test/fixtures/collaborators.json",
36
- "test/fixtures/comment.json",
37
- "test/fixtures/contributors.json",
38
- "test/fixtures/emails.json",
39
- "test/fixtures/followers.json",
40
- "test/fixtures/full_user.json",
41
- "test/fixtures/issue.json",
42
- "test/fixtures/issues.json",
43
- "test/fixtures/keys.json",
44
- "test/fixtures/labels.json",
45
- "test/fixtures/languages.json",
46
- "test/fixtures/list_branch_commits.json",
47
- "test/fixtures/list_commits.json",
48
- "test/fixtures/network.json",
49
- "test/fixtures/network_data.json",
50
- "test/fixtures/network_meta.json",
51
- "test/fixtures/open_issue.json",
52
- "test/fixtures/raw_git_data.json",
53
- "test/fixtures/reopen_issue.json",
54
- "test/fixtures/repo.json",
55
- "test/fixtures/repo_search.json",
56
- "test/fixtures/repos.json",
57
- "test/fixtures/search.json",
58
- "test/fixtures/show_commit.json",
59
- "test/fixtures/tags.json",
60
- "test/fixtures/trees.json",
61
- "test/fixtures/user.json",
62
- "test/helper.rb",
63
- "test/octopussy_test.rb",
64
- "test/repo_test.rb"
65
- ]
66
- s.homepage = %q{http://wynnnetherland.com/projects/octopussy}
67
- s.rdoc_options = ["--charset=UTF-8"]
68
- s.require_paths = ["lib"]
69
- s.rubygems_version = %q{1.3.6}
70
- s.summary = %q{Simple wrapper for the GitHub API}
71
- s.test_files = [
72
- "test/helper.rb",
73
- "test/octopussy_test.rb",
74
- "test/repo_test.rb"
75
- ]
76
-
77
- if s.respond_to? :specification_version then
78
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
79
- s.specification_version = 3
80
-
81
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
82
- s.add_runtime_dependency(%q<hashie>, ["~> 0.2.0"])
83
- s.add_runtime_dependency(%q<httparty>, ["~> 0.4.5"])
84
- s.add_development_dependency(%q<shoulda>, [">= 2.10.1"])
85
- s.add_development_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
86
- s.add_development_dependency(%q<mocha>, [">= 0.9.4"])
87
- s.add_development_dependency(%q<fakeweb>, [">= 1.2.5"])
88
- else
89
- s.add_dependency(%q<hashie>, ["~> 0.2.0"])
90
- s.add_dependency(%q<httparty>, ["~> 0.4.5"])
91
- s.add_dependency(%q<shoulda>, [">= 2.10.1"])
92
- s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
93
- s.add_dependency(%q<mocha>, [">= 0.9.4"])
94
- s.add_dependency(%q<fakeweb>, [">= 1.2.5"])
95
- end
96
- else
97
- s.add_dependency(%q<hashie>, ["~> 0.2.0"])
98
- s.add_dependency(%q<httparty>, ["~> 0.4.5"])
99
- s.add_dependency(%q<shoulda>, [">= 2.10.1"])
100
- s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
101
- s.add_dependency(%q<mocha>, [">= 0.9.4"])
102
- s.add_dependency(%q<fakeweb>, [">= 1.2.5"])
103
- end
104
- end
105
-
@@ -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,6 +0,0 @@
1
- {
2
- "branches": {
3
- "integration": "e5bb86437ec67c115eee85ce6bf0b3b513946cee",
4
- "master": "a202fb290bac4a488f6aee9f2d30ee0738e08602"
5
- }
6
- }
@@ -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"]}
@@ -1 +0,0 @@
1
- {"comment": {"comment": "Nice catch!", "status": "saved"}}
@@ -1,6 +0,0 @@
1
- {
2
- "contributors": [
3
- ["pengwynn", 39],
4
- ["holman", 1]
5
- ]
6
- }
@@ -1 +0,0 @@
1
- {"emails":["wynn@squeejee.com","wynn.netherland@gmail.com","wynn@orrka.com"]}
@@ -1,3 +0,0 @@
1
- {
2
- "users": ["cglee", "mattsa", "zachinglis", "seaofclouds", "njonsson", "davidnorth", "stephp", "polomasta", "webiest", "mchelen", "brogers", "marclove", "adamstac", "marshall", "handcrafted", "asenchi", "piyush", "rmetzler", "nileshtrivedi", "erikvold", "thechangelog"]
3
- }
@@ -1,27 +0,0 @@
1
- {
2
- "user": {
3
- "plan": {
4
- "name": "free",
5
- "collaborators": 0,
6
- "space": 307200,
7
- "private_repos": 0
8
- },
9
- "name": "Wynn Netherland",
10
- "company": "Orrka",
11
- "location": "Dallas, TX",
12
- "created_at": "2008/02/25 10:24:19 -0800",
13
- "collaborators": 0,
14
- "disk_usage": 85605,
15
- "public_gist_count": 3,
16
- "public_repo_count": 15,
17
- "blog": "http://wynnnetherland.com",
18
- "following_count": 55,
19
- "id": 865,
20
- "private_gist_count": 1,
21
- "owned_private_repo_count": 0,
22
- "total_private_repo_count": 0,
23
- "followers_count": 21,
24
- "login": "pengwynn",
25
- "email": "wynn.netherland@gmail.com"
26
- }
27
- }
@@ -1,14 +0,0 @@
1
- {
2
- "issue": {
3
- "number": 3,
4
- "votes": 2,
5
- "created_at": "2009/05/06 17:28:29 -0700",
6
- "body": "Not sure if this is an issue with Crack or with this lib, but every time I try to create a friendship, I get this error:rnrn>> base.friendship_create('anyone')rnCrack::ParseError: Invalid JSON stringrntfrom /Library/Ruby/Gems/1.8/gems/crack-0.1.2/lib/crack/json.rb:14:in `parse'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:73:in `parse'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:48:in `make_friendly'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:34:in `perform'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:10:in `post'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/base.rb:162:in `perform_post'rntfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/base.rb:76:in `friendship_create'rn",
7
- "title": "Crack error when creating friendship",
8
- "updated_at": "2009/08/17 14:25:17 -0700",
9
- "closed_at": null,
10
- "user": "shanev",
11
- "labels": [],
12
- "state": "open"
13
- }
14
- }
@@ -1,50 +0,0 @@
1
- {
2
- "issues": [{
3
- "number": 3,
4
- "votes": 2,
5
- "created_at": "2009/05/06 17:28:29 -0700",
6
- "body": "Not sure if this is an issue with Crack or with this lib, but every time I try to create a friendship, I get this error:\r\n\r\n>> base.friendship_create('anyone')\r\nCrack::ParseError: Invalid JSON string\r\n\tfrom /Library/Ruby/Gems/1.8/gems/crack-0.1.2/lib/crack/json.rb:14:in `parse'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:73:in `parse'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:48:in `make_friendly'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:34:in `perform'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/request.rb:10:in `post'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/base.rb:162:in `perform_post'\r\n\tfrom /Library/Ruby/Gems/1.8/gems/twitter-0.6.8/lib/twitter/base.rb:76:in `friendship_create'\r\n",
7
- "title": "Crack error when creating friendship",
8
- "updated_at": "2009/08/17 14:25:17 -0700",
9
- "closed_at": null,
10
- "user": "shanev",
11
- "labels": [],
12
- "state": "open"
13
- },
14
- {
15
- "number": 6,
16
- "votes": 2,
17
- "created_at": "2009/06/07 12:28:24 -0700",
18
- "body": "The methods on the Twitter class (firehose, friend_ids, follower_ids, status, user) assume that no errors will occur, but all of them can at least return a 50x error. An example using FakeWeb:\r\n\r\n<pre>\r\n>> FakeWeb.register_uri(:get, 'http://twitter.com/statuses/public_timeline.json',\r\n?> :string => '{\"request\":\"\\/statuses\\/public_timeline.json\",\"error\":\"Bad gateway\"}',\r\n?> :status => ['502', 'Bad Gateway'])\r\n=> [#<FakeWeb::Responder:0x7f3b2138 @options={:status=>[\"502\", \"Bad Gateway\"], :string=>\"{\\\"request\\\":\\\"\\\\/statuses\\\\/public_timeline.json\\\",\\\"error\\\":\\\"Bad gateway\\\"}\"}, @method=:get, @uri=\"http://twitter.com/statuses/public_timeline.json\", @times=1>]\r\n>> Twitter.firehose\r\nNoMethodError: undefined method `stringify_keys' for [\"request\", \"/statuses/public_timeline.json\"]:Array\r\n from /usr/lib/ruby/gems/1.8/gems/mash-0.0.3/lib/mash.rb:131:in `deep_update'\r\n from /usr/lib/ruby/gems/1.8/gems/mash-0.0.3/lib/mash.rb:50:in `initialize'\r\n from /usr/lib/ruby/gems/1.8/gems/twitter-0.6.11/lib/twitter.rb:34:in `new'\r\n from /usr/lib/ruby/gems/1.8/gems/twitter-0.6.11/lib/twitter.rb:34:in `firehose' \r\n</pre>",
19
- "title": "Methods on Twitter class don't check for errors",
20
- "updated_at": "2009/10/29 16:28:45 -0700",
21
- "closed_at": null,
22
- "user": "bkocik",
23
- "labels": [],
24
- "state": "open"
25
- },
26
- {
27
- "number": 8,
28
- "votes": 0,
29
- "created_at": "2009/06/17 14:40:43 -0700",
30
- "body": "When you request a search with a :since_id parameter too old, according to [Twitter](http://apiwiki.twitter.com/Twitter-Search-API-Method%3A-search):\r\n\r\n> This method will return an HTTP 404 error if since_id is used and is too old to be in the search index\r\n\r\nwhich results in a +Crack::ParseError+ exception",
31
- "title": "Error handling 404 from Twitter::Search (JSON error)",
32
- "updated_at": "2009/06/17 14:40:43 -0700",
33
- "closed_at": null,
34
- "user": "chubas",
35
- "labels": [],
36
- "state": "open"
37
- },
38
- {
39
- "number": 9,
40
- "votes": 3,
41
- "created_at": "2009/06/18 07:53:09 -0700",
42
- "body": "happens periodically, presumably when twitter search services returns a string for a response instead of a hash?",
43
- "title": "stringify_keys error in Mash.new when using Twitter::search",
44
- "updated_at": "2009/11/12 08:52:13 -0800",
45
- "closed_at": null,
46
- "user": "metrostar",
47
- "labels": [],
48
- "state": "open"
49
- }]
50
- }
@@ -1 +0,0 @@
1
- {"public_keys":[{"title":null,"id":2102,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAAddBIwAAAasdfasdfQEAxfm4eG+Dasd3b/d41W3BR8h9IOv63ISyaVTVXLsiwAfGZw17Kc9xpdp1NblqvDIj+T1bI6U420/Jb5tBw0MlltgUxwwySVH1f37w89VzdC7ArsR6X3KOIz/fhtmUCNyPakO+BjKjK3MtLcQvrNY5s0B91D/klP1pgcGVUzJxw5kCtZ6By3HjGXDK5lW9qMAG93ncrFc6tTE3WQ30Wgcsqf+uNmc9tyR5cO0asKneDaz1t486ydF9P97dzwM+SMY9GcpZ2gvOp0UHdA59Wr3LEE6/EqGxAxRDrT/1wtPk5Ya1TEWWX+WdlfZ1zttd3h7dkVom1cKWCa262mU3THoe5aytJw=="},{"title":null,"id":2686,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAw4GP0832tasCsbl2QcEehotpcjfMMgbep9xWuf0T6fmMXgLI9QkiPdjA2oqxdJp7l33Echsb5gVjbY+96KPd9Q6Q7FM9Si9srfJpw2folq89+LJWBYe0qw3BMDFfmBtcmTMZT1NWzZ1RT/crPqDSEGYMny9s2jR3spL2K8R9dcWalFgpasRbfEacr7xUvFbIcxeU2xsWvTjA8+YwoU2pc3tG8XX8LMMRdzadN5L9rOrxlo6XybOH6KgKPA02jKbdmsbIZ3umHylMdTckjLWSDut+7ACD+7ztuPkH9Ya9lYWBzn8kVzwL91+4T8RbYndD0VqS4GpuL2AOqVrDHMrsjw=="},{"title":null,"id":17725,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxvbvBp9ugiuHPr8LvhAjO1qHmzNSJp/SpJoP0ZXfVVR4+m9fti2Kuf5efgDIKsW4l1ODCuhuQLaa5TB+X4/uZB8PUKtZaUswNRfN/w8fzX24+pEMq9Jf2l++Nz7xyA1PngSLeZ/FWbFP5Nl8DnOnb1GiLIcGPb0rMZ4CvoxwNtp8bb2F5HVVSF0n2cyJvsb+ZqQRZwejYmLlrzagUAfrz0BWDkGw2QitZhIsy7XaqK+jDM8k9qugk19n69e5VVYZYLvFUJ16aX+zhWsx5+Li2jXFlJcYpadV3KjY4+KF2I26idO/qhQv31+QH9/gTQxKZKsWWbjFMfDlzoquG9FtZw=="},{"title":null,"id":22206,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6JdBPCEoeH3nl93pjzkw88bJ3YSaZLUhe3rWULadU/fL0vxtRBaiRAfsSIq1/ank8fLnrl3TquQq26DOrZWyam4ODHQRzHdN4MlE3kH8tSHoRedwuzFyAjCC23QpLD+4vGwhyrJmuebT13mn2t0rbnOZMpKY1f9r97Tbhx6/sMIE+n6zaWBg/miOWMaR2rQ048vNuaA+hhJz+MdU6VL94GxchuQ7eeCP1tucbEG6qQraRhvWqV2GRDJ86Xc34uC2eMQaybk+UHH4TSe9DNYSRRpHWS5IgAPZHO267X3uOhSDOOXHQx/liVVWd6PTcJQkQ6u0W8hNBQVUZAHnTgG9cQ=="},{"title":"pengwynn","id":42883,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA2QU45StpDGCM9KJgaIzv6/GXsUO8mrpOkfevd2ht7IMN5Fdl2R7jjCjv9eZmIWieBWsKiFUq2T5/+royc7jjHjGd9s8FGYIi9nACNblzDLT1w6WX6ORuS2LuUuq9uUdtAghbWImQSQDOpGaW73OCvBSuZKKKvqwSXsOFhstfwYaOLzfF9xdCVd02DJY75QSiUkNaaB4300yqQlVYdrtz2akXLXpxlzojALcoAHefuCOK7C8/J3LCiPVGftBZ7Fab6k6LV7rguhcfkyg4bwzAMMOcwx+AUj1WLv4rdDJOi4X6xJzEBitvhJFTQ4ynGXmaalKGwSzaIhByG74JsGq7Ew=="},{"title":"wynn@pengwynn.local","id":111978,"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAlugsW063BAHaUOYSJa+6T1/lKCIptIBXjppAXwnALKYJCfSTnQjEXhAv8CDXLkVDlF11A1rqYrHuVs/CdVJblRXfmHAhSy+3GcYqyrBNdRJtu/R1+ziDiAnSOTyZjLFwJwovy7coRJ4o2ZaZZkYhBQe6Th6cTtPFIho8yab3plxWzL7MvF6MPwIW3vJO38Z8c91SHBWQqbKBtLwjkWYjZSyu+MSB5BUXBIB6AcHcQOP0/0q/4rO4dk4qjkH5rXqa29knoCBHjpMJB7L3v0BedSzPN3/O7xwE85mok1OZaIYjFqNgSnEw3VVOiuJ95EVHN6ELR/gWbEYddvkRZUo8Pw=="}]}
@@ -1 +0,0 @@
1
- {"labels":["oauth"]}
@@ -1 +0,0 @@
1
- {"languages":{"Ruby":21515}}
@@ -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
- }
@@ -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
- }