simdjson 0.1.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.
- checksums.yaml +7 -0
- data/.clang-format +5 -0
- data/.gitignore +14 -0
- data/.gitmodules +3 -0
- data/.rubocop.yml +9 -0
- data/.travis.yml +7 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +32 -0
- data/benchmark/apache_builds.json +4421 -0
- data/benchmark/demo.json +15 -0
- data/benchmark/github_events.json +1390 -0
- data/benchmark/run_benchmark.rb +30 -0
- data/ext/simdjson/extconf.rb +22 -0
- data/ext/simdjson/simdjson.cpp +76 -0
- data/ext/simdjson/simdjson.hpp +6 -0
- data/lib/simdjson/version.rb +3 -0
- data/lib/simdjson.rb +2 -0
- data/simdjson.gemspec +35 -0
- data/vendor/.gitkeep +0 -0
- data/vendor/simdjson/AUTHORS +3 -0
- data/vendor/simdjson/CMakeLists.txt +63 -0
- data/vendor/simdjson/CONTRIBUTORS +27 -0
- data/vendor/simdjson/Dockerfile +10 -0
- data/vendor/simdjson/LICENSE +201 -0
- data/vendor/simdjson/Makefile +203 -0
- data/vendor/simdjson/Notes.md +85 -0
- data/vendor/simdjson/README.md +581 -0
- data/vendor/simdjson/amalgamation.sh +158 -0
- data/vendor/simdjson/benchmark/CMakeLists.txt +8 -0
- data/vendor/simdjson/benchmark/benchmark.h +223 -0
- data/vendor/simdjson/benchmark/distinctuseridcompetition.cpp +347 -0
- data/vendor/simdjson/benchmark/linux/linux-perf-events.h +93 -0
- data/vendor/simdjson/benchmark/minifiercompetition.cpp +181 -0
- data/vendor/simdjson/benchmark/parse.cpp +393 -0
- data/vendor/simdjson/benchmark/parseandstatcompetition.cpp +305 -0
- data/vendor/simdjson/benchmark/parsingcompetition.cpp +298 -0
- data/vendor/simdjson/benchmark/statisticalmodel.cpp +208 -0
- data/vendor/simdjson/dependencies/jsoncppdist/json/json-forwards.h +344 -0
- data/vendor/simdjson/dependencies/jsoncppdist/json/json.h +2366 -0
- data/vendor/simdjson/dependencies/jsoncppdist/jsoncpp.cpp +5418 -0
- data/vendor/simdjson/doc/apache_builds.jsonparseandstat.png +0 -0
- data/vendor/simdjson/doc/gbps.png +0 -0
- data/vendor/simdjson/doc/github_events.jsonparseandstat.png +0 -0
- data/vendor/simdjson/doc/twitter.jsonparseandstat.png +0 -0
- data/vendor/simdjson/doc/update-center.jsonparseandstat.png +0 -0
- data/vendor/simdjson/images/halvarflake.png +0 -0
- data/vendor/simdjson/images/logo.png +0 -0
- data/vendor/simdjson/include/simdjson/common_defs.h +102 -0
- data/vendor/simdjson/include/simdjson/isadetection.h +152 -0
- data/vendor/simdjson/include/simdjson/jsoncharutils.h +301 -0
- data/vendor/simdjson/include/simdjson/jsonformatutils.h +202 -0
- data/vendor/simdjson/include/simdjson/jsonioutil.h +32 -0
- data/vendor/simdjson/include/simdjson/jsonminifier.h +30 -0
- data/vendor/simdjson/include/simdjson/jsonparser.h +250 -0
- data/vendor/simdjson/include/simdjson/numberparsing.h +587 -0
- data/vendor/simdjson/include/simdjson/padded_string.h +70 -0
- data/vendor/simdjson/include/simdjson/parsedjson.h +544 -0
- data/vendor/simdjson/include/simdjson/portability.h +172 -0
- data/vendor/simdjson/include/simdjson/simdjson.h +44 -0
- data/vendor/simdjson/include/simdjson/simdjson_version.h +13 -0
- data/vendor/simdjson/include/simdjson/simdprune_tables.h +35074 -0
- data/vendor/simdjson/include/simdjson/simdutf8check_arm64.h +180 -0
- data/vendor/simdjson/include/simdjson/simdutf8check_haswell.h +198 -0
- data/vendor/simdjson/include/simdjson/simdutf8check_westmere.h +169 -0
- data/vendor/simdjson/include/simdjson/stage1_find_marks.h +121 -0
- data/vendor/simdjson/include/simdjson/stage1_find_marks_arm64.h +210 -0
- data/vendor/simdjson/include/simdjson/stage1_find_marks_flatten.h +93 -0
- data/vendor/simdjson/include/simdjson/stage1_find_marks_flatten_haswell.h +95 -0
- data/vendor/simdjson/include/simdjson/stage1_find_marks_haswell.h +210 -0
- data/vendor/simdjson/include/simdjson/stage1_find_marks_macros.h +239 -0
- data/vendor/simdjson/include/simdjson/stage1_find_marks_westmere.h +194 -0
- data/vendor/simdjson/include/simdjson/stage2_build_tape.h +85 -0
- data/vendor/simdjson/include/simdjson/stringparsing.h +105 -0
- data/vendor/simdjson/include/simdjson/stringparsing_arm64.h +56 -0
- data/vendor/simdjson/include/simdjson/stringparsing_haswell.h +43 -0
- data/vendor/simdjson/include/simdjson/stringparsing_macros.h +88 -0
- data/vendor/simdjson/include/simdjson/stringparsing_westmere.h +41 -0
- data/vendor/simdjson/jsonexamples/small/jsoniter_scala/README.md +4 -0
- data/vendor/simdjson/scripts/dumpsimplestats.sh +11 -0
- data/vendor/simdjson/scripts/issue150.sh +14 -0
- data/vendor/simdjson/scripts/javascript/README.md +3 -0
- data/vendor/simdjson/scripts/javascript/generatelargejson.js +19 -0
- data/vendor/simdjson/scripts/minifier.sh +11 -0
- data/vendor/simdjson/scripts/parseandstat.sh +24 -0
- data/vendor/simdjson/scripts/parser.sh +11 -0
- data/vendor/simdjson/scripts/parsingcompdata.sh +26 -0
- data/vendor/simdjson/scripts/plotparse.sh +98 -0
- data/vendor/simdjson/scripts/selectparser.sh +11 -0
- data/vendor/simdjson/scripts/setupfortesting/disablehyperthreading.sh +15 -0
- data/vendor/simdjson/scripts/setupfortesting/powerpolicy.sh +32 -0
- data/vendor/simdjson/scripts/setupfortesting/setupfortesting.sh +6 -0
- data/vendor/simdjson/scripts/setupfortesting/turboboost.sh +51 -0
- data/vendor/simdjson/scripts/testjson2json.sh +99 -0
- data/vendor/simdjson/scripts/transitions/Makefile +10 -0
- data/vendor/simdjson/scripts/transitions/generatetransitions.cpp +20 -0
- data/vendor/simdjson/singleheader/README.md +1 -0
- data/vendor/simdjson/singleheader/amalgamation_demo.cpp +20 -0
- data/vendor/simdjson/singleheader/simdjson.cpp +1652 -0
- data/vendor/simdjson/singleheader/simdjson.h +39692 -0
- data/vendor/simdjson/src/CMakeLists.txt +67 -0
- data/vendor/simdjson/src/jsonioutil.cpp +35 -0
- data/vendor/simdjson/src/jsonminifier.cpp +285 -0
- data/vendor/simdjson/src/jsonparser.cpp +91 -0
- data/vendor/simdjson/src/parsedjson.cpp +323 -0
- data/vendor/simdjson/src/parsedjsoniterator.cpp +272 -0
- data/vendor/simdjson/src/simdjson.cpp +30 -0
- data/vendor/simdjson/src/stage1_find_marks.cpp +41 -0
- data/vendor/simdjson/src/stage2_build_tape.cpp +567 -0
- data/vendor/simdjson/style/clang-format-check.sh +25 -0
- data/vendor/simdjson/style/clang-format.sh +25 -0
- data/vendor/simdjson/style/run-clang-format.py +326 -0
- data/vendor/simdjson/tape.md +134 -0
- data/vendor/simdjson/tests/CMakeLists.txt +25 -0
- data/vendor/simdjson/tests/allparserscheckfile.cpp +192 -0
- data/vendor/simdjson/tests/basictests.cpp +75 -0
- data/vendor/simdjson/tests/jsoncheck.cpp +136 -0
- data/vendor/simdjson/tests/numberparsingcheck.cpp +224 -0
- data/vendor/simdjson/tests/pointercheck.cpp +38 -0
- data/vendor/simdjson/tests/singleheadertest.cpp +22 -0
- data/vendor/simdjson/tests/stringparsingcheck.cpp +408 -0
- data/vendor/simdjson/tools/CMakeLists.txt +3 -0
- data/vendor/simdjson/tools/cmake/FindCTargets.cmake +15 -0
- data/vendor/simdjson/tools/cmake/FindOptions.cmake +52 -0
- data/vendor/simdjson/tools/json2json.cpp +112 -0
- data/vendor/simdjson/tools/jsonpointer.cpp +93 -0
- data/vendor/simdjson/tools/jsonstats.cpp +143 -0
- data/vendor/simdjson/tools/minify.cpp +21 -0
- data/vendor/simdjson/tools/release.py +125 -0
- data/vendor/simdjson/windows/dirent_portable.h +1043 -0
- metadata +273 -0
@@ -0,0 +1,1390 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"type": "PushEvent",
|
4
|
+
"created_at": "2013-01-10T07:58:30Z",
|
5
|
+
"actor": {
|
6
|
+
"gravatar_id": "a7cec1f75a06a5f8ab53139515da5d99",
|
7
|
+
"login": "jathanism",
|
8
|
+
"avatar_url": "https://secure.gravatar.com/avatar/a7cec1f75a06a5f8ab53139515da5d99?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
9
|
+
"url": "https://api.github.com/users/jathanism",
|
10
|
+
"id": 138052
|
11
|
+
},
|
12
|
+
"repo": {
|
13
|
+
"url": "https://api.github.com/repos/jathanism/trigger",
|
14
|
+
"id": 6357414,
|
15
|
+
"name": "jathanism/trigger"
|
16
|
+
},
|
17
|
+
"public": true,
|
18
|
+
"payload": {
|
19
|
+
"commits": [
|
20
|
+
{
|
21
|
+
"url": "https://api.github.com/repos/jathanism/trigger/commits/05570a3080693f6e55244e012b3b1ec59516c01b",
|
22
|
+
"message": "- SSH Channel data now initialized in base class (TriggerSSHChannelBase)\n- New doc w/ checklist for adding new vendor support to Trigger.",
|
23
|
+
"distinct": true,
|
24
|
+
"sha": "05570a3080693f6e55244e012b3b1ec59516c01b",
|
25
|
+
"author": {
|
26
|
+
"email": "jathanism@aol.com",
|
27
|
+
"name": "jathanism"
|
28
|
+
}
|
29
|
+
}
|
30
|
+
],
|
31
|
+
"distinct_size": 1,
|
32
|
+
"ref": "refs/heads/issue-22",
|
33
|
+
"push_id": 134107894,
|
34
|
+
"head": "05570a3080693f6e55244e012b3b1ec59516c01b",
|
35
|
+
"before": "7460e1588817b3f885fb4ec76ec2f08c7caf6385",
|
36
|
+
"size": 1
|
37
|
+
},
|
38
|
+
"id": "1652857722"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"type": "CreateEvent",
|
42
|
+
"created_at": "2013-01-10T07:58:29Z",
|
43
|
+
"actor": {
|
44
|
+
"gravatar_id": "51c8c8adbe8abff73c622a734afae4b0",
|
45
|
+
"login": "noahlu",
|
46
|
+
"avatar_url": "https://secure.gravatar.com/avatar/51c8c8adbe8abff73c622a734afae4b0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
47
|
+
"url": "https://api.github.com/users/noahlu",
|
48
|
+
"id": 1229684
|
49
|
+
},
|
50
|
+
"repo": {
|
51
|
+
"url": "https://api.github.com/repos/noahlu/mockingbird",
|
52
|
+
"id": 7536438,
|
53
|
+
"name": "noahlu/mockingbird"
|
54
|
+
},
|
55
|
+
"public": true,
|
56
|
+
"payload": {
|
57
|
+
"description": "blog system",
|
58
|
+
"master_branch": "master",
|
59
|
+
"ref": "master",
|
60
|
+
"ref_type": "branch"
|
61
|
+
},
|
62
|
+
"id": "1652857721"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"type": "ForkEvent",
|
66
|
+
"created_at": "2013-01-10T07:58:29Z",
|
67
|
+
"actor": {
|
68
|
+
"gravatar_id": "053e38be1bd8b18bf8b1c26e11a797ff",
|
69
|
+
"login": "rtlong",
|
70
|
+
"avatar_url": "https://secure.gravatar.com/avatar/053e38be1bd8b18bf8b1c26e11a797ff?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
71
|
+
"url": "https://api.github.com/users/rtlong",
|
72
|
+
"id": 199912
|
73
|
+
},
|
74
|
+
"repo": {
|
75
|
+
"url": "https://api.github.com/repos/Bluebie/digiusb.rb",
|
76
|
+
"id": 7270403,
|
77
|
+
"name": "Bluebie/digiusb.rb"
|
78
|
+
},
|
79
|
+
"public": true,
|
80
|
+
"payload": {
|
81
|
+
"forkee": {
|
82
|
+
"description": "A little ruby thing for talking to digiusb, like a serial port or like a telnet (whichever!)",
|
83
|
+
"fork": true,
|
84
|
+
"url": "https://api.github.com/repos/rtlong/digiusb.rb",
|
85
|
+
"language": "Ruby",
|
86
|
+
"stargazers_url": "https://api.github.com/repos/rtlong/digiusb.rb/stargazers",
|
87
|
+
"clone_url": "https://github.com/rtlong/digiusb.rb.git",
|
88
|
+
"tags_url": "https://api.github.com/repos/rtlong/digiusb.rb/tags{/tag}",
|
89
|
+
"full_name": "rtlong/digiusb.rb",
|
90
|
+
"merges_url": "https://api.github.com/repos/rtlong/digiusb.rb/merges",
|
91
|
+
"forks": 0,
|
92
|
+
"private": false,
|
93
|
+
"git_refs_url": "https://api.github.com/repos/rtlong/digiusb.rb/git/refs{/sha}",
|
94
|
+
"archive_url": "https://api.github.com/repos/rtlong/digiusb.rb/{archive_format}{/ref}",
|
95
|
+
"collaborators_url": "https://api.github.com/repos/rtlong/digiusb.rb/collaborators{/collaborator}",
|
96
|
+
"owner": {
|
97
|
+
"url": "https://api.github.com/users/rtlong",
|
98
|
+
"gists_url": "https://api.github.com/users/rtlong/gists{/gist_id}",
|
99
|
+
"gravatar_id": "053e38be1bd8b18bf8b1c26e11a797ff",
|
100
|
+
"type": "User",
|
101
|
+
"avatar_url": "https://secure.gravatar.com/avatar/053e38be1bd8b18bf8b1c26e11a797ff?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
102
|
+
"subscriptions_url": "https://api.github.com/users/rtlong/subscriptions",
|
103
|
+
"organizations_url": "https://api.github.com/users/rtlong/orgs",
|
104
|
+
"received_events_url": "https://api.github.com/users/rtlong/received_events",
|
105
|
+
"repos_url": "https://api.github.com/users/rtlong/repos",
|
106
|
+
"login": "rtlong",
|
107
|
+
"id": 199912,
|
108
|
+
"starred_url": "https://api.github.com/users/rtlong/starred{/owner}{/repo}",
|
109
|
+
"events_url": "https://api.github.com/users/rtlong/events{/privacy}",
|
110
|
+
"followers_url": "https://api.github.com/users/rtlong/followers",
|
111
|
+
"following_url": "https://api.github.com/users/rtlong/following"
|
112
|
+
},
|
113
|
+
"languages_url": "https://api.github.com/repos/rtlong/digiusb.rb/languages",
|
114
|
+
"trees_url": "https://api.github.com/repos/rtlong/digiusb.rb/git/trees{/sha}",
|
115
|
+
"labels_url": "https://api.github.com/repos/rtlong/digiusb.rb/labels{/name}",
|
116
|
+
"html_url": "https://github.com/rtlong/digiusb.rb",
|
117
|
+
"pushed_at": "2013-01-08T13:23:08Z",
|
118
|
+
"created_at": "2013-01-10T07:58:28Z",
|
119
|
+
"has_issues": false,
|
120
|
+
"forks_url": "https://api.github.com/repos/rtlong/digiusb.rb/forks",
|
121
|
+
"branches_url": "https://api.github.com/repos/rtlong/digiusb.rb/branches{/branch}",
|
122
|
+
"commits_url": "https://api.github.com/repos/rtlong/digiusb.rb/commits{/sha}",
|
123
|
+
"notifications_url": "https://api.github.com/repos/rtlong/digiusb.rb/notifications{?since,all,participating}",
|
124
|
+
"open_issues": 0,
|
125
|
+
"contents_url": "https://api.github.com/repos/rtlong/digiusb.rb/contents/{+path}",
|
126
|
+
"blobs_url": "https://api.github.com/repos/rtlong/digiusb.rb/git/blobs{/sha}",
|
127
|
+
"issues_url": "https://api.github.com/repos/rtlong/digiusb.rb/issues{/number}",
|
128
|
+
"compare_url": "https://api.github.com/repos/rtlong/digiusb.rb/compare/{base}...{head}",
|
129
|
+
"issue_events_url": "https://api.github.com/repos/rtlong/digiusb.rb/issues/events{/number}",
|
130
|
+
"name": "digiusb.rb",
|
131
|
+
"updated_at": "2013-01-10T07:58:28Z",
|
132
|
+
"statuses_url": "https://api.github.com/repos/rtlong/digiusb.rb/statuses/{sha}",
|
133
|
+
"forks_count": 0,
|
134
|
+
"assignees_url": "https://api.github.com/repos/rtlong/digiusb.rb/assignees{/user}",
|
135
|
+
"ssh_url": "git@github.com:rtlong/digiusb.rb.git",
|
136
|
+
"public": true,
|
137
|
+
"has_wiki": true,
|
138
|
+
"subscribers_url": "https://api.github.com/repos/rtlong/digiusb.rb/subscribers",
|
139
|
+
"mirror_url": null,
|
140
|
+
"watchers_count": 0,
|
141
|
+
"id": 7536836,
|
142
|
+
"has_downloads": true,
|
143
|
+
"git_commits_url": "https://api.github.com/repos/rtlong/digiusb.rb/git/commits{/sha}",
|
144
|
+
"downloads_url": "https://api.github.com/repos/rtlong/digiusb.rb/downloads",
|
145
|
+
"pulls_url": "https://api.github.com/repos/rtlong/digiusb.rb/pulls{/number}",
|
146
|
+
"homepage": null,
|
147
|
+
"issue_comment_url": "https://api.github.com/repos/rtlong/digiusb.rb/issues/comments/{number}",
|
148
|
+
"hooks_url": "https://api.github.com/repos/rtlong/digiusb.rb/hooks",
|
149
|
+
"subscription_url": "https://api.github.com/repos/rtlong/digiusb.rb/subscription",
|
150
|
+
"milestones_url": "https://api.github.com/repos/rtlong/digiusb.rb/milestones{/number}",
|
151
|
+
"svn_url": "https://github.com/rtlong/digiusb.rb",
|
152
|
+
"events_url": "https://api.github.com/repos/rtlong/digiusb.rb/events",
|
153
|
+
"git_tags_url": "https://api.github.com/repos/rtlong/digiusb.rb/git/tags{/sha}",
|
154
|
+
"teams_url": "https://api.github.com/repos/rtlong/digiusb.rb/teams",
|
155
|
+
"comments_url": "https://api.github.com/repos/rtlong/digiusb.rb/comments{/number}",
|
156
|
+
"open_issues_count": 0,
|
157
|
+
"keys_url": "https://api.github.com/repos/rtlong/digiusb.rb/keys{/key_id}",
|
158
|
+
"git_url": "git://github.com/rtlong/digiusb.rb.git",
|
159
|
+
"contributors_url": "https://api.github.com/repos/rtlong/digiusb.rb/contributors",
|
160
|
+
"size": 280,
|
161
|
+
"watchers": 0
|
162
|
+
}
|
163
|
+
},
|
164
|
+
"id": "1652857715"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"type": "WatchEvent",
|
168
|
+
"created_at": "2013-01-10T07:58:29Z",
|
169
|
+
"actor": {
|
170
|
+
"gravatar_id": "7641a96810be55debc2a1515ff0b6c2a",
|
171
|
+
"login": "Armaklan",
|
172
|
+
"avatar_url": "https://secure.gravatar.com/avatar/7641a96810be55debc2a1515ff0b6c2a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
173
|
+
"url": "https://api.github.com/users/Armaklan",
|
174
|
+
"id": 2310432
|
175
|
+
},
|
176
|
+
"repo": {
|
177
|
+
"url": "https://api.github.com/repos/scrooloose/syntastic",
|
178
|
+
"id": 248523,
|
179
|
+
"name": "scrooloose/syntastic"
|
180
|
+
},
|
181
|
+
"public": true,
|
182
|
+
"payload": {
|
183
|
+
"action": "started"
|
184
|
+
},
|
185
|
+
"id": "1652857714"
|
186
|
+
},
|
187
|
+
{
|
188
|
+
"type": "PushEvent",
|
189
|
+
"created_at": "2013-01-10T07:58:28Z",
|
190
|
+
"actor": {
|
191
|
+
"gravatar_id": "3c4478e6ae6c60b73d21c9fa0d1785ea",
|
192
|
+
"login": "ChrisMissal",
|
193
|
+
"avatar_url": "https://secure.gravatar.com/avatar/3c4478e6ae6c60b73d21c9fa0d1785ea?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
194
|
+
"url": "https://api.github.com/users/ChrisMissal",
|
195
|
+
"id": 67798
|
196
|
+
},
|
197
|
+
"repo": {
|
198
|
+
"url": "https://api.github.com/repos/ChrisMissal/NugetStatus",
|
199
|
+
"id": 3873737,
|
200
|
+
"name": "ChrisMissal/NugetStatus"
|
201
|
+
},
|
202
|
+
"public": true,
|
203
|
+
"payload": {
|
204
|
+
"commits": [
|
205
|
+
{
|
206
|
+
"url": "https://api.github.com/repos/ChrisMissal/NugetStatus/commits/458203e8a5b2aea9fc71041bd82b5ee2df5324cd",
|
207
|
+
"message": "added images for build status",
|
208
|
+
"distinct": true,
|
209
|
+
"sha": "458203e8a5b2aea9fc71041bd82b5ee2df5324cd",
|
210
|
+
"author": {
|
211
|
+
"email": "chris.missal@gmail.com",
|
212
|
+
"name": "Chris Missal"
|
213
|
+
}
|
214
|
+
}
|
215
|
+
],
|
216
|
+
"distinct_size": 1,
|
217
|
+
"ref": "refs/heads/master",
|
218
|
+
"push_id": 134107891,
|
219
|
+
"before": "b04e7f47bf97821ba0b1d71da6ed82b8eb22a435",
|
220
|
+
"head": "458203e8a5b2aea9fc71041bd82b5ee2df5324cd",
|
221
|
+
"size": 1
|
222
|
+
},
|
223
|
+
"id": "1652857713"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"type": "PushEvent",
|
227
|
+
"created_at": "2013-01-10T07:58:27Z",
|
228
|
+
"actor": {
|
229
|
+
"gravatar_id": "f8b3de3c77bce8a6b65841936fefe353",
|
230
|
+
"login": "markpiro",
|
231
|
+
"avatar_url": "https://secure.gravatar.com/avatar/f8b3de3c77bce8a6b65841936fefe353?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
232
|
+
"url": "https://api.github.com/users/markpiro",
|
233
|
+
"id": 362803
|
234
|
+
},
|
235
|
+
"repo": {
|
236
|
+
"url": "https://api.github.com/repos/markpiro/muzicbaux",
|
237
|
+
"id": 7496715,
|
238
|
+
"name": "markpiro/muzicbaux"
|
239
|
+
},
|
240
|
+
"public": true,
|
241
|
+
"payload": {
|
242
|
+
"commits": [
|
243
|
+
{
|
244
|
+
"url": "https://api.github.com/repos/markpiro/muzicbaux/commits/bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c",
|
245
|
+
"message": "auth callback change",
|
246
|
+
"distinct": false,
|
247
|
+
"sha": "bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c",
|
248
|
+
"author": {
|
249
|
+
"email": "justbanter@gmail.com",
|
250
|
+
"name": "mark"
|
251
|
+
}
|
252
|
+
}
|
253
|
+
],
|
254
|
+
"distinct_size": 0,
|
255
|
+
"ref": "refs/heads/gh-pages",
|
256
|
+
"push_id": 134107890,
|
257
|
+
"head": "bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c",
|
258
|
+
"before": "b06a8ac52ce1e0a984c79a7a0d8e7a96e6674615",
|
259
|
+
"size": 1
|
260
|
+
},
|
261
|
+
"id": "1652857711"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"type": "WatchEvent",
|
265
|
+
"created_at": "2013-01-10T07:58:27Z",
|
266
|
+
"actor": {
|
267
|
+
"gravatar_id": "8001f021514ae09142731a7d00190512",
|
268
|
+
"login": "tmaybe",
|
269
|
+
"avatar_url": "https://secure.gravatar.com/avatar/8001f021514ae09142731a7d00190512?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
270
|
+
"url": "https://api.github.com/users/tmaybe",
|
271
|
+
"id": 546665
|
272
|
+
},
|
273
|
+
"repo": {
|
274
|
+
"url": "https://api.github.com/repos/ubuwaits/beautiful-web-type",
|
275
|
+
"id": 3159966,
|
276
|
+
"name": "ubuwaits/beautiful-web-type"
|
277
|
+
},
|
278
|
+
"public": true,
|
279
|
+
"payload": {
|
280
|
+
"action": "started"
|
281
|
+
},
|
282
|
+
"id": "1652857705"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"type": "WatchEvent",
|
286
|
+
"created_at": "2013-01-10T07:58:26Z",
|
287
|
+
"actor": {
|
288
|
+
"gravatar_id": "6674c7cd4753478f1dddec7d3ca479e0",
|
289
|
+
"login": "neeckeloo",
|
290
|
+
"avatar_url": "https://secure.gravatar.com/avatar/6674c7cd4753478f1dddec7d3ca479e0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
291
|
+
"url": "https://api.github.com/users/neeckeloo",
|
292
|
+
"id": 1768645
|
293
|
+
},
|
294
|
+
"repo": {
|
295
|
+
"url": "https://api.github.com/repos/pmsipilot/jquery-highchartTable-plugin",
|
296
|
+
"id": 2986393,
|
297
|
+
"name": "pmsipilot/jquery-highchartTable-plugin"
|
298
|
+
},
|
299
|
+
"public": true,
|
300
|
+
"org": {
|
301
|
+
"gravatar_id": "6f61ed1e3396060275238bd85c6bce45",
|
302
|
+
"login": "pmsipilot",
|
303
|
+
"avatar_url": "https://secure.gravatar.com/avatar/6f61ed1e3396060275238bd85c6bce45?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
304
|
+
"url": "https://api.github.com/orgs/pmsipilot",
|
305
|
+
"id": 1233777
|
306
|
+
},
|
307
|
+
"payload": {
|
308
|
+
"action": "started"
|
309
|
+
},
|
310
|
+
"id": "1652857702"
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"type": "WatchEvent",
|
314
|
+
"created_at": "2013-01-10T07:58:26Z",
|
315
|
+
"actor": {
|
316
|
+
"gravatar_id": "404c21b3964401b264bc0ccda001c8b5",
|
317
|
+
"login": "xyzgentoo",
|
318
|
+
"avatar_url": "https://secure.gravatar.com/avatar/404c21b3964401b264bc0ccda001c8b5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
319
|
+
"url": "https://api.github.com/users/xyzgentoo",
|
320
|
+
"id": 503440
|
321
|
+
},
|
322
|
+
"repo": {
|
323
|
+
"url": "https://api.github.com/repos/takashisite/TSPopover",
|
324
|
+
"id": 4324360,
|
325
|
+
"name": "takashisite/TSPopover"
|
326
|
+
},
|
327
|
+
"public": true,
|
328
|
+
"payload": {
|
329
|
+
"action": "started"
|
330
|
+
},
|
331
|
+
"id": "1652857701"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"type": "PushEvent",
|
335
|
+
"created_at": "2013-01-10T07:58:23Z",
|
336
|
+
"actor": {
|
337
|
+
"gravatar_id": "34b251cf082c202fb3160b1afb810001",
|
338
|
+
"login": "janodvarko",
|
339
|
+
"avatar_url": "https://secure.gravatar.com/avatar/34b251cf082c202fb3160b1afb810001?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
340
|
+
"url": "https://api.github.com/users/janodvarko",
|
341
|
+
"id": 37785
|
342
|
+
},
|
343
|
+
"repo": {
|
344
|
+
"url": "https://api.github.com/repos/firebug/firebug",
|
345
|
+
"id": 900208,
|
346
|
+
"name": "firebug/firebug"
|
347
|
+
},
|
348
|
+
"public": true,
|
349
|
+
"org": {
|
350
|
+
"gravatar_id": "22b746e34a570b90788b575588c4ce3e",
|
351
|
+
"login": "firebug",
|
352
|
+
"avatar_url": "https://secure.gravatar.com/avatar/22b746e34a570b90788b575588c4ce3e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
353
|
+
"url": "https://api.github.com/orgs/firebug",
|
354
|
+
"id": 386750
|
355
|
+
},
|
356
|
+
"payload": {
|
357
|
+
"commits": [
|
358
|
+
{
|
359
|
+
"url": "https://api.github.com/repos/firebug/firebug/commits/2ce302eb2f4cf52963cdf0208a39193fc6f965a7",
|
360
|
+
"message": "FBTest: move script/4932/ test into the main test list",
|
361
|
+
"distinct": true,
|
362
|
+
"sha": "2ce302eb2f4cf52963cdf0208a39193fc6f965a7",
|
363
|
+
"author": {
|
364
|
+
"email": "odvarko@gmail.com",
|
365
|
+
"name": "Jan Odvarko"
|
366
|
+
}
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"url": "https://api.github.com/repos/firebug/firebug/commits/30bbd75152df3069435f2f02d140962f1b880653",
|
370
|
+
"message": "Merge branch 'master' of github.com:firebug/firebug",
|
371
|
+
"distinct": true,
|
372
|
+
"sha": "30bbd75152df3069435f2f02d140962f1b880653",
|
373
|
+
"author": {
|
374
|
+
"email": "odvarko@gmail.com",
|
375
|
+
"name": "Jan Odvarko"
|
376
|
+
}
|
377
|
+
}
|
378
|
+
],
|
379
|
+
"distinct_size": 2,
|
380
|
+
"ref": "refs/heads/master",
|
381
|
+
"push_id": 134107888,
|
382
|
+
"head": "30bbd75152df3069435f2f02d140962f1b880653",
|
383
|
+
"before": "bc2ea3c0978a178828b1dfa9229484f9b7ccb95e",
|
384
|
+
"size": 2
|
385
|
+
},
|
386
|
+
"id": "1652857699"
|
387
|
+
},
|
388
|
+
{
|
389
|
+
"type": "IssueCommentEvent",
|
390
|
+
"created_at": "2013-01-10T07:58:23Z",
|
391
|
+
"actor": {
|
392
|
+
"gravatar_id": "29f82ebe1801087f04de6aaae92e19ea",
|
393
|
+
"login": "pat",
|
394
|
+
"avatar_url": "https://secure.gravatar.com/avatar/29f82ebe1801087f04de6aaae92e19ea?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
395
|
+
"url": "https://api.github.com/users/pat",
|
396
|
+
"id": 4183
|
397
|
+
},
|
398
|
+
"repo": {
|
399
|
+
"url": "https://api.github.com/repos/pat/thinking-sphinx",
|
400
|
+
"id": 9525,
|
401
|
+
"name": "pat/thinking-sphinx"
|
402
|
+
},
|
403
|
+
"public": true,
|
404
|
+
"payload": {
|
405
|
+
"issue": {
|
406
|
+
"user": {
|
407
|
+
"url": "https://api.github.com/users/lephyrius",
|
408
|
+
"gists_url": "https://api.github.com/users/lephyrius/gists{/gist_id}",
|
409
|
+
"gravatar_id": "ed0c8be5f65a0b1b77b9db7991f4ede1",
|
410
|
+
"type": "User",
|
411
|
+
"avatar_url": "https://secure.gravatar.com/avatar/ed0c8be5f65a0b1b77b9db7991f4ede1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
412
|
+
"subscriptions_url": "https://api.github.com/users/lephyrius/subscriptions",
|
413
|
+
"received_events_url": "https://api.github.com/users/lephyrius/received_events",
|
414
|
+
"organizations_url": "https://api.github.com/users/lephyrius/orgs",
|
415
|
+
"repos_url": "https://api.github.com/users/lephyrius/repos",
|
416
|
+
"login": "lephyrius",
|
417
|
+
"id": 747215,
|
418
|
+
"starred_url": "https://api.github.com/users/lephyrius/starred{/owner}{/repo}",
|
419
|
+
"events_url": "https://api.github.com/users/lephyrius/events{/privacy}",
|
420
|
+
"followers_url": "https://api.github.com/users/lephyrius/followers",
|
421
|
+
"following_url": "https://api.github.com/users/lephyrius/following"
|
422
|
+
},
|
423
|
+
"url": "https://api.github.com/repos/pat/thinking-sphinx/issues/415",
|
424
|
+
"labels": [
|
425
|
+
|
426
|
+
],
|
427
|
+
"html_url": "https://github.com/pat/thinking-sphinx/issues/415",
|
428
|
+
"labels_url": "https://api.github.com/repos/pat/thinking-sphinx/issues/415/labels{/name}",
|
429
|
+
"pull_request": {
|
430
|
+
"html_url": null,
|
431
|
+
"patch_url": null,
|
432
|
+
"diff_url": null
|
433
|
+
},
|
434
|
+
"created_at": "2013-01-05T11:13:24Z",
|
435
|
+
"closed_at": "2013-01-05T17:28:50Z",
|
436
|
+
"milestone": null,
|
437
|
+
"title": "Migrating to TS3 got some error",
|
438
|
+
"body": "```\r\nundefined method `<<' for nil:NilClass\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/active_record/sql_source.rb:107:in `block in prepare_for_render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/active_record/sql_source.rb:104:in `each'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/active_record/sql_source.rb:104:in `prepare_for_render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/active_record/sql_source.rb:61:in `render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration/index.rb:29:in `block in render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration/index.rb:29:in `collect'\r\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration/index.rb:29:in `render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/core/index.rb:48:in `render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration.rb:39:in `block in render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration.rb:39:in `collect'\r\n.rvm/gems/ruby-1.9.3-p327/gems/riddle-1.5.4/lib/riddle/configuration.rb:39:in `render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/configuration.rb:81:in `render'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/configuration.rb:87:in `block in render_to_file'\r\n.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/open-uri.rb:35:in `open'\r\n.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/open-uri.rb:35:in `open'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/configuration.rb:87:in `render_to_file'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/rake_interface.rb:4:in `configure'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/rake_interface.rb:31:in `index'\r\n.rvm/gems/ruby-1.9.3-p327/gems/thinking-sphinx-3.0.0/lib/thinking_sphinx/tasks.rb:9:in `block (2 levels) in <top (required)>'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:228:in `call'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:228:in `block in execute'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:223:in `each'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:223:in `execute'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:166:in `block in invoke_with_call_chain'\r\n.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:159:in `invoke_with_call_chain'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:187:in `block in invoke_prerequisites'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:185:in `each'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:185:in `invoke_prerequisites'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:165:in `block in invoke_with_call_chain'\r\n.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:159:in `invoke_with_call_chain'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/task.rb:152:in `invoke'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:143:in `invoke_task'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:101:in `block (2 levels) in top_level'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:101:in `each'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:101:in `block in top_level'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:110:in `run_with_threads'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:95:in `top_level'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:73:in `block in run'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:160:in `standard_exception_handling'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/lib/rake/application.rb:70:in `run'\r\n.rvm/gems/ruby-1.9.3-p327/gems/rake-10.0.3/bin/rake:33:in `<top (required)>'\r\n.rvm/gems/ruby-1.9.3-p327/bin/rake:23:in `load'\r\n.rvm/gems/ruby-1.9.3-p327/bin/rake:23:in `<main>'\r\nTasks: TOP => ts:rebuild => ts:index\r\n```\r\nGot this error when migrating to thinking sphinx 3.\r\n",
|
439
|
+
"updated_at": "2013-01-10T07:58:23Z",
|
440
|
+
"number": 415,
|
441
|
+
"state": "closed",
|
442
|
+
"assignee": null,
|
443
|
+
"id": 9704821,
|
444
|
+
"events_url": "https://api.github.com/repos/pat/thinking-sphinx/issues/415/events",
|
445
|
+
"comments_url": "https://api.github.com/repos/pat/thinking-sphinx/issues/415/comments",
|
446
|
+
"comments": 8
|
447
|
+
},
|
448
|
+
"action": "created",
|
449
|
+
"comment": {
|
450
|
+
"user": {
|
451
|
+
"url": "https://api.github.com/users/pat",
|
452
|
+
"gists_url": "https://api.github.com/users/pat/gists{/gist_id}",
|
453
|
+
"gravatar_id": "29f82ebe1801087f04de6aaae92e19ea",
|
454
|
+
"type": "User",
|
455
|
+
"avatar_url": "https://secure.gravatar.com/avatar/29f82ebe1801087f04de6aaae92e19ea?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
456
|
+
"subscriptions_url": "https://api.github.com/users/pat/subscriptions",
|
457
|
+
"received_events_url": "https://api.github.com/users/pat/received_events",
|
458
|
+
"organizations_url": "https://api.github.com/users/pat/orgs",
|
459
|
+
"repos_url": "https://api.github.com/users/pat/repos",
|
460
|
+
"login": "pat",
|
461
|
+
"id": 4183,
|
462
|
+
"starred_url": "https://api.github.com/users/pat/starred{/owner}{/repo}",
|
463
|
+
"events_url": "https://api.github.com/users/pat/events{/privacy}",
|
464
|
+
"followers_url": "https://api.github.com/users/pat/followers",
|
465
|
+
"following_url": "https://api.github.com/users/pat/following"
|
466
|
+
},
|
467
|
+
"url": "https://api.github.com/repos/pat/thinking-sphinx/issues/comments/12084063",
|
468
|
+
"issue_url": "https://api.github.com/repos/pat/thinking-sphinx/issues/9704821",
|
469
|
+
"created_at": "2013-01-10T07:58:23Z",
|
470
|
+
"body": "I was just wondering what the cause of the issue was.",
|
471
|
+
"updated_at": "2013-01-10T07:58:23Z",
|
472
|
+
"id": 12084063
|
473
|
+
}
|
474
|
+
},
|
475
|
+
"id": "1652857697"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"type": "IssuesEvent",
|
479
|
+
"created_at": "2013-01-10T07:58:22Z",
|
480
|
+
"actor": {
|
481
|
+
"gravatar_id": "786552a84365e60df3eeec8bc339a18c",
|
482
|
+
"login": "imsky",
|
483
|
+
"avatar_url": "https://secure.gravatar.com/avatar/786552a84365e60df3eeec8bc339a18c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
484
|
+
"url": "https://api.github.com/users/imsky",
|
485
|
+
"id": 330895
|
486
|
+
},
|
487
|
+
"repo": {
|
488
|
+
"url": "https://api.github.com/repos/imsky/holder",
|
489
|
+
"id": 4641606,
|
490
|
+
"name": "imsky/holder"
|
491
|
+
},
|
492
|
+
"public": true,
|
493
|
+
"payload": {
|
494
|
+
"issue": {
|
495
|
+
"user": {
|
496
|
+
"url": "https://api.github.com/users/imsky",
|
497
|
+
"gists_url": "https://api.github.com/users/imsky/gists{/gist_id}",
|
498
|
+
"gravatar_id": "786552a84365e60df3eeec8bc339a18c",
|
499
|
+
"type": "User",
|
500
|
+
"avatar_url": "https://secure.gravatar.com/avatar/786552a84365e60df3eeec8bc339a18c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
501
|
+
"subscriptions_url": "https://api.github.com/users/imsky/subscriptions",
|
502
|
+
"organizations_url": "https://api.github.com/users/imsky/orgs",
|
503
|
+
"received_events_url": "https://api.github.com/users/imsky/received_events",
|
504
|
+
"repos_url": "https://api.github.com/users/imsky/repos",
|
505
|
+
"login": "imsky",
|
506
|
+
"id": 330895,
|
507
|
+
"starred_url": "https://api.github.com/users/imsky/starred{/owner}{/repo}",
|
508
|
+
"events_url": "https://api.github.com/users/imsky/events{/privacy}",
|
509
|
+
"followers_url": "https://api.github.com/users/imsky/followers",
|
510
|
+
"following_url": "https://api.github.com/users/imsky/following"
|
511
|
+
},
|
512
|
+
"url": "https://api.github.com/repos/imsky/holder/issues/27",
|
513
|
+
"labels": [
|
514
|
+
|
515
|
+
],
|
516
|
+
"html_url": "https://github.com/imsky/holder/issues/27",
|
517
|
+
"labels_url": "https://api.github.com/repos/imsky/holder/issues/27/labels{/name}",
|
518
|
+
"pull_request": {
|
519
|
+
"html_url": null,
|
520
|
+
"patch_url": null,
|
521
|
+
"diff_url": null
|
522
|
+
},
|
523
|
+
"title": "Fix width regression on retina display",
|
524
|
+
"created_at": "2013-01-10T07:58:22Z",
|
525
|
+
"closed_at": null,
|
526
|
+
"milestone": null,
|
527
|
+
"body": "",
|
528
|
+
"updated_at": "2013-01-10T07:58:22Z",
|
529
|
+
"assignee": {
|
530
|
+
"url": "https://api.github.com/users/imsky",
|
531
|
+
"gists_url": "https://api.github.com/users/imsky/gists{/gist_id}",
|
532
|
+
"gravatar_id": "786552a84365e60df3eeec8bc339a18c",
|
533
|
+
"type": "User",
|
534
|
+
"avatar_url": "https://secure.gravatar.com/avatar/786552a84365e60df3eeec8bc339a18c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
535
|
+
"subscriptions_url": "https://api.github.com/users/imsky/subscriptions",
|
536
|
+
"organizations_url": "https://api.github.com/users/imsky/orgs",
|
537
|
+
"received_events_url": "https://api.github.com/users/imsky/received_events",
|
538
|
+
"repos_url": "https://api.github.com/users/imsky/repos",
|
539
|
+
"login": "imsky",
|
540
|
+
"id": 330895,
|
541
|
+
"starred_url": "https://api.github.com/users/imsky/starred{/owner}{/repo}",
|
542
|
+
"events_url": "https://api.github.com/users/imsky/events{/privacy}",
|
543
|
+
"followers_url": "https://api.github.com/users/imsky/followers",
|
544
|
+
"following_url": "https://api.github.com/users/imsky/following"
|
545
|
+
},
|
546
|
+
"number": 27,
|
547
|
+
"state": "open",
|
548
|
+
"id": 9833911,
|
549
|
+
"events_url": "https://api.github.com/repos/imsky/holder/issues/27/events",
|
550
|
+
"comments_url": "https://api.github.com/repos/imsky/holder/issues/27/comments",
|
551
|
+
"comments": 0
|
552
|
+
},
|
553
|
+
"action": "opened"
|
554
|
+
},
|
555
|
+
"id": "1652857694"
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"type": "PushEvent",
|
559
|
+
"created_at": "2013-01-10T07:58:22Z",
|
560
|
+
"actor": {
|
561
|
+
"gravatar_id": "f0b6d83305726d6a06282a864c92ec46",
|
562
|
+
"login": "MartinGeisse",
|
563
|
+
"avatar_url": "https://secure.gravatar.com/avatar/f0b6d83305726d6a06282a864c92ec46?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
564
|
+
"url": "https://api.github.com/users/MartinGeisse",
|
565
|
+
"id": 1786083
|
566
|
+
},
|
567
|
+
"repo": {
|
568
|
+
"url": "https://api.github.com/repos/MartinGeisse/public",
|
569
|
+
"id": 4472103,
|
570
|
+
"name": "MartinGeisse/public"
|
571
|
+
},
|
572
|
+
"public": true,
|
573
|
+
"payload": {
|
574
|
+
"commits": [
|
575
|
+
{
|
576
|
+
"url": "https://api.github.com/repos/MartinGeisse/public/commits/21ab9590d5b793d84564e68dc3f7f9ce28e6d272",
|
577
|
+
"message": "...",
|
578
|
+
"distinct": true,
|
579
|
+
"sha": "21ab9590d5b793d84564e68dc3f7f9ce28e6d272",
|
580
|
+
"author": {
|
581
|
+
"email": "geisse@Shopgates-Mac-mini-3.local",
|
582
|
+
"name": "Martin Geisse"
|
583
|
+
}
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"url": "https://api.github.com/repos/MartinGeisse/public/commits/928877011d46d807955a7894c3397d2c5307faa9",
|
587
|
+
"message": "...",
|
588
|
+
"distinct": true,
|
589
|
+
"sha": "928877011d46d807955a7894c3397d2c5307faa9",
|
590
|
+
"author": {
|
591
|
+
"email": "geisse@Shopgates-Mac-mini-3.local",
|
592
|
+
"name": "Martin Geisse"
|
593
|
+
}
|
594
|
+
}
|
595
|
+
],
|
596
|
+
"distinct_size": 2,
|
597
|
+
"ref": "refs/heads/master",
|
598
|
+
"push_id": 134107887,
|
599
|
+
"head": "928877011d46d807955a7894c3397d2c5307faa9",
|
600
|
+
"before": "bdf420d834e807827bc15eb38901d2bbb31bde17",
|
601
|
+
"size": 2
|
602
|
+
},
|
603
|
+
"id": "1652857692"
|
604
|
+
},
|
605
|
+
{
|
606
|
+
"type": "PushEvent",
|
607
|
+
"created_at": "2013-01-10T07:58:22Z",
|
608
|
+
"actor": {
|
609
|
+
"gravatar_id": "d89b0514cf4a50d0e53c5533fbe73e83",
|
610
|
+
"login": "mengzhuo",
|
611
|
+
"avatar_url": "https://secure.gravatar.com/avatar/d89b0514cf4a50d0e53c5533fbe73e83?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
612
|
+
"url": "https://api.github.com/users/mengzhuo",
|
613
|
+
"id": 885662
|
614
|
+
},
|
615
|
+
"repo": {
|
616
|
+
"url": "https://api.github.com/repos/mengzhuo/personal-Vim",
|
617
|
+
"id": 7450902,
|
618
|
+
"name": "mengzhuo/personal-Vim"
|
619
|
+
},
|
620
|
+
"public": true,
|
621
|
+
"payload": {
|
622
|
+
"commits": [
|
623
|
+
{
|
624
|
+
"url": "https://api.github.com/repos/mengzhuo/personal-Vim/commits/689b7eba4735c494befb3367a216cb7218d92dd6",
|
625
|
+
"message": "format vimrc",
|
626
|
+
"distinct": true,
|
627
|
+
"sha": "689b7eba4735c494befb3367a216cb7218d92dd6",
|
628
|
+
"author": {
|
629
|
+
"email": "mengzhuo1203@gmail.com",
|
630
|
+
"name": "Meng Zhuo"
|
631
|
+
}
|
632
|
+
}
|
633
|
+
],
|
634
|
+
"distinct_size": 1,
|
635
|
+
"ref": "refs/heads/master",
|
636
|
+
"push_id": 134107885,
|
637
|
+
"head": "689b7eba4735c494befb3367a216cb7218d92dd6",
|
638
|
+
"before": "ce44e73622d6ff7b4284ada289ec350087f5c846",
|
639
|
+
"size": 1
|
640
|
+
},
|
641
|
+
"id": "1652857690"
|
642
|
+
},
|
643
|
+
{
|
644
|
+
"type": "PushEvent",
|
645
|
+
"created_at": "2013-01-10T07:58:22Z",
|
646
|
+
"actor": {
|
647
|
+
"gravatar_id": "7611f72ccfcc7126d82e8edbfac70267",
|
648
|
+
"login": "mpetersen",
|
649
|
+
"avatar_url": "https://secure.gravatar.com/avatar/7611f72ccfcc7126d82e8edbfac70267?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
650
|
+
"url": "https://api.github.com/users/mpetersen",
|
651
|
+
"id": 50281
|
652
|
+
},
|
653
|
+
"repo": {
|
654
|
+
"url": "https://api.github.com/repos/mpetersen/nelson",
|
655
|
+
"id": 5403274,
|
656
|
+
"name": "mpetersen/nelson"
|
657
|
+
},
|
658
|
+
"public": true,
|
659
|
+
"payload": {
|
660
|
+
"commits": [
|
661
|
+
{
|
662
|
+
"url": "https://api.github.com/repos/mpetersen/nelson/commits/621ed66f18cdf9aadf4a685d6ea6f6cbc43dac83",
|
663
|
+
"message": "Update README.md",
|
664
|
+
"distinct": true,
|
665
|
+
"sha": "621ed66f18cdf9aadf4a685d6ea6f6cbc43dac83",
|
666
|
+
"author": {
|
667
|
+
"email": "mail@moritzpetersen.de",
|
668
|
+
"name": "Moritz Petersen"
|
669
|
+
}
|
670
|
+
}
|
671
|
+
],
|
672
|
+
"distinct_size": 1,
|
673
|
+
"ref": "refs/heads/master",
|
674
|
+
"push_id": 134107879,
|
675
|
+
"head": "621ed66f18cdf9aadf4a685d6ea6f6cbc43dac83",
|
676
|
+
"before": "4b17c791ddbf0cb7f6bb03989555bbd9680fdade",
|
677
|
+
"size": 1
|
678
|
+
},
|
679
|
+
"id": "1652857684"
|
680
|
+
},
|
681
|
+
{
|
682
|
+
"type": "PushEvent",
|
683
|
+
"created_at": "2013-01-10T07:58:21Z",
|
684
|
+
"actor": {
|
685
|
+
"gravatar_id": "d41d8cd98f00b204e9800998ecf8427e",
|
686
|
+
"login": "graudeejs",
|
687
|
+
"avatar_url": "https://secure.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
688
|
+
"url": "https://api.github.com/users/graudeejs",
|
689
|
+
"id": 1020124
|
690
|
+
},
|
691
|
+
"repo": {
|
692
|
+
"url": "https://api.github.com/repos/cubesystems/i18n-leaf",
|
693
|
+
"id": 6688885,
|
694
|
+
"name": "cubesystems/i18n-leaf"
|
695
|
+
},
|
696
|
+
"public": true,
|
697
|
+
"org": {
|
698
|
+
"gravatar_id": "e12067ce3c567fca0d089997694f9e9f",
|
699
|
+
"login": "cubesystems",
|
700
|
+
"avatar_url": "https://secure.gravatar.com/avatar/e12067ce3c567fca0d089997694f9e9f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
701
|
+
"url": "https://api.github.com/orgs/cubesystems",
|
702
|
+
"id": 686284
|
703
|
+
},
|
704
|
+
"payload": {
|
705
|
+
"commits": [
|
706
|
+
{
|
707
|
+
"url": "https://api.github.com/repos/cubesystems/i18n-leaf/commits/196a702cf97a1d9bc076c23299fc2054580e74c7",
|
708
|
+
"message": "Fix typo, remove contributing section.... for now",
|
709
|
+
"distinct": true,
|
710
|
+
"sha": "196a702cf97a1d9bc076c23299fc2054580e74c7",
|
711
|
+
"author": {
|
712
|
+
"email": "aldis@cubesystems.lv",
|
713
|
+
"name": "Aldis Berjoza"
|
714
|
+
}
|
715
|
+
}
|
716
|
+
],
|
717
|
+
"distinct_size": 1,
|
718
|
+
"ref": "refs/heads/master",
|
719
|
+
"push_id": 134107876,
|
720
|
+
"before": "f12210994ba154c848e712c772ede5aef718786c",
|
721
|
+
"head": "196a702cf97a1d9bc076c23299fc2054580e74c7",
|
722
|
+
"size": 1
|
723
|
+
},
|
724
|
+
"id": "1652857682"
|
725
|
+
},
|
726
|
+
{
|
727
|
+
"type": "PushEvent",
|
728
|
+
"created_at": "2013-01-10T07:58:21Z",
|
729
|
+
"actor": {
|
730
|
+
"gravatar_id": "d514d73311703c0c91bc1f380134567a",
|
731
|
+
"login": "njmittet",
|
732
|
+
"avatar_url": "https://secure.gravatar.com/avatar/d514d73311703c0c91bc1f380134567a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
733
|
+
"url": "https://api.github.com/users/njmittet",
|
734
|
+
"id": 655211
|
735
|
+
},
|
736
|
+
"repo": {
|
737
|
+
"url": "https://api.github.com/repos/njmittet/git-test",
|
738
|
+
"id": 6186327,
|
739
|
+
"name": "njmittet/git-test"
|
740
|
+
},
|
741
|
+
"public": true,
|
742
|
+
"payload": {
|
743
|
+
"commits": [
|
744
|
+
{
|
745
|
+
"url": "https://api.github.com/repos/njmittet/git-test/commits/a265dd95d563a1815e4817fba43cd157f814693f",
|
746
|
+
"message": "Added another line",
|
747
|
+
"distinct": true,
|
748
|
+
"sha": "a265dd95d563a1815e4817fba43cd157f814693f",
|
749
|
+
"author": {
|
750
|
+
"email": "njmittet@gmail.com",
|
751
|
+
"name": "Nils Jørgen Mittet"
|
752
|
+
}
|
753
|
+
},
|
754
|
+
{
|
755
|
+
"url": "https://api.github.com/repos/njmittet/git-test/commits/d58dd1b6d201a3a3ddd55d09b529af6374297f38",
|
756
|
+
"message": "Merge branch 'master' of github.com:njmittet/git-test\n\nConflicts:\n\tclient.txt",
|
757
|
+
"distinct": true,
|
758
|
+
"sha": "d58dd1b6d201a3a3ddd55d09b529af6374297f38",
|
759
|
+
"author": {
|
760
|
+
"email": "njmittet@gmail.com",
|
761
|
+
"name": "Nils Jørgen Mittet"
|
762
|
+
}
|
763
|
+
}
|
764
|
+
],
|
765
|
+
"distinct_size": 2,
|
766
|
+
"ref": "refs/heads/master",
|
767
|
+
"push_id": 134107874,
|
768
|
+
"head": "d58dd1b6d201a3a3ddd55d09b529af6374297f38",
|
769
|
+
"before": "42cc0d9567ea359340ccd602cb6fa6215ce9e961",
|
770
|
+
"size": 2
|
771
|
+
},
|
772
|
+
"id": "1652857680"
|
773
|
+
},
|
774
|
+
{
|
775
|
+
"type": "WatchEvent",
|
776
|
+
"created_at": "2013-01-10T07:58:20Z",
|
777
|
+
"actor": {
|
778
|
+
"gravatar_id": "11cf92381d24bdea86a357cc2c6bff4e",
|
779
|
+
"login": "demitsuri",
|
780
|
+
"avatar_url": "https://secure.gravatar.com/avatar/11cf92381d24bdea86a357cc2c6bff4e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
781
|
+
"url": "https://api.github.com/users/demitsuri",
|
782
|
+
"id": 2697636
|
783
|
+
},
|
784
|
+
"repo": {
|
785
|
+
"url": "https://api.github.com/repos/JohnAlbin/git-svn-migrate",
|
786
|
+
"id": 870387,
|
787
|
+
"name": "JohnAlbin/git-svn-migrate"
|
788
|
+
},
|
789
|
+
"public": true,
|
790
|
+
"payload": {
|
791
|
+
"action": "started"
|
792
|
+
},
|
793
|
+
"id": "1652857678"
|
794
|
+
},
|
795
|
+
{
|
796
|
+
"type": "PushEvent",
|
797
|
+
"created_at": "2013-01-10T07:58:20Z",
|
798
|
+
"actor": {
|
799
|
+
"gravatar_id": "699eb751118c39590468040803ec21d6",
|
800
|
+
"login": "eatienza",
|
801
|
+
"avatar_url": "https://secure.gravatar.com/avatar/699eb751118c39590468040803ec21d6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
802
|
+
"url": "https://api.github.com/users/eatienza",
|
803
|
+
"id": 1743603
|
804
|
+
},
|
805
|
+
"repo": {
|
806
|
+
"url": "https://api.github.com/repos/eatienza/gopack",
|
807
|
+
"id": 7172902,
|
808
|
+
"name": "eatienza/gopack"
|
809
|
+
},
|
810
|
+
"public": true,
|
811
|
+
"payload": {
|
812
|
+
"commits": [
|
813
|
+
{
|
814
|
+
"url": "https://api.github.com/repos/eatienza/gopack/commits/139a78b68326dfd000e24ad55e366a3deaba40ae",
|
815
|
+
"message": "make gpk test work in subdirectories",
|
816
|
+
"distinct": true,
|
817
|
+
"sha": "139a78b68326dfd000e24ad55e366a3deaba40ae",
|
818
|
+
"author": {
|
819
|
+
"email": "eric@ericaro.net",
|
820
|
+
"name": "Eric Atienza"
|
821
|
+
}
|
822
|
+
}
|
823
|
+
],
|
824
|
+
"distinct_size": 1,
|
825
|
+
"ref": "refs/heads/master",
|
826
|
+
"push_id": 134107873,
|
827
|
+
"head": "139a78b68326dfd000e24ad55e366a3deaba40ae",
|
828
|
+
"before": "065c2d29b6ea565fe08cc84863cafbcabc8ce6ff",
|
829
|
+
"size": 1
|
830
|
+
},
|
831
|
+
"id": "1652857675"
|
832
|
+
},
|
833
|
+
{
|
834
|
+
"type": "GollumEvent",
|
835
|
+
"created_at": "2013-01-10T07:58:19Z",
|
836
|
+
"actor": {
|
837
|
+
"gravatar_id": "8b608e9e82cf3cda8c66cb1b08a014b3",
|
838
|
+
"login": "greentea039",
|
839
|
+
"avatar_url": "https://secure.gravatar.com/avatar/8b608e9e82cf3cda8c66cb1b08a014b3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
840
|
+
"url": "https://api.github.com/users/greentea039",
|
841
|
+
"id": 2049309
|
842
|
+
},
|
843
|
+
"repo": {
|
844
|
+
"url": "https://api.github.com/repos/GaryMcNabb/HVSTAT",
|
845
|
+
"id": 5182252,
|
846
|
+
"name": "GaryMcNabb/HVSTAT"
|
847
|
+
},
|
848
|
+
"public": true,
|
849
|
+
"payload": {
|
850
|
+
"pages": [
|
851
|
+
{
|
852
|
+
"page_name": "Home",
|
853
|
+
"html_url": "https://github.com/GaryMcNabb/HVSTAT/wiki/Home",
|
854
|
+
"title": "Home",
|
855
|
+
"sha": "3753f109634c7f5ba6f465f65b5c8f575054f9f8",
|
856
|
+
"summary": null,
|
857
|
+
"action": "edited"
|
858
|
+
}
|
859
|
+
]
|
860
|
+
},
|
861
|
+
"id": "1652857670"
|
862
|
+
},
|
863
|
+
{
|
864
|
+
"type": "WatchEvent",
|
865
|
+
"created_at": "2013-01-10T07:58:18Z",
|
866
|
+
"actor": {
|
867
|
+
"gravatar_id": "be73a0d3304f2a2c43b0c27a79045b69",
|
868
|
+
"login": "henter",
|
869
|
+
"avatar_url": "https://secure.gravatar.com/avatar/be73a0d3304f2a2c43b0c27a79045b69?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
870
|
+
"url": "https://api.github.com/users/henter",
|
871
|
+
"id": 239970
|
872
|
+
},
|
873
|
+
"repo": {
|
874
|
+
"url": "https://api.github.com/repos/jackyz/pobi",
|
875
|
+
"id": 7216584,
|
876
|
+
"name": "jackyz/pobi"
|
877
|
+
},
|
878
|
+
"public": true,
|
879
|
+
"payload": {
|
880
|
+
"action": "started"
|
881
|
+
},
|
882
|
+
"id": "1652857669"
|
883
|
+
},
|
884
|
+
{
|
885
|
+
"type": "CreateEvent",
|
886
|
+
"created_at": "2013-01-10T07:58:18Z",
|
887
|
+
"actor": {
|
888
|
+
"gravatar_id": "9721138b1cd172d47e88cd4d11614362",
|
889
|
+
"login": "marciohariki",
|
890
|
+
"avatar_url": "https://secure.gravatar.com/avatar/9721138b1cd172d47e88cd4d11614362?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
891
|
+
"url": "https://api.github.com/users/marciohariki",
|
892
|
+
"id": 478795
|
893
|
+
},
|
894
|
+
"repo": {
|
895
|
+
"url": "https://api.github.com/repos/marciohariki/faraja",
|
896
|
+
"id": 7536835,
|
897
|
+
"name": "marciohariki/faraja"
|
898
|
+
},
|
899
|
+
"public": true,
|
900
|
+
"payload": {
|
901
|
+
"description": "",
|
902
|
+
"master_branch": "master",
|
903
|
+
"ref": null,
|
904
|
+
"ref_type": "repository"
|
905
|
+
},
|
906
|
+
"id": "1652857668"
|
907
|
+
},
|
908
|
+
{
|
909
|
+
"type": "CreateEvent",
|
910
|
+
"created_at": "2013-01-10T07:58:18Z",
|
911
|
+
"actor": {
|
912
|
+
"gravatar_id": "16044a3433095bc94514e1ac58a005a8",
|
913
|
+
"login": "OdyX",
|
914
|
+
"avatar_url": "https://secure.gravatar.com/avatar/16044a3433095bc94514e1ac58a005a8?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
915
|
+
"url": "https://api.github.com/users/OdyX",
|
916
|
+
"id": 417403
|
917
|
+
},
|
918
|
+
"repo": {
|
919
|
+
"url": "https://api.github.com/repos/OdyX/colobot-level-i18n-infra",
|
920
|
+
"id": 7536834,
|
921
|
+
"name": "OdyX/colobot-level-i18n-infra"
|
922
|
+
},
|
923
|
+
"public": true,
|
924
|
+
"payload": {
|
925
|
+
"description": "Translation infrastructure work for colobot levels",
|
926
|
+
"master_branch": "master",
|
927
|
+
"ref": null,
|
928
|
+
"ref_type": "repository"
|
929
|
+
},
|
930
|
+
"id": "1652857667"
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"type": "IssueCommentEvent",
|
934
|
+
"created_at": "2013-01-10T07:58:17Z",
|
935
|
+
"actor": {
|
936
|
+
"gravatar_id": "29bc0a400b55eb59e811fce93477ca38",
|
937
|
+
"login": "rosenkrieger",
|
938
|
+
"avatar_url": "https://secure.gravatar.com/avatar/29bc0a400b55eb59e811fce93477ca38?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
939
|
+
"url": "https://api.github.com/users/rosenkrieger",
|
940
|
+
"id": 2276814
|
941
|
+
},
|
942
|
+
"repo": {
|
943
|
+
"url": "https://api.github.com/repos/SynoCommunity/spksrc",
|
944
|
+
"id": 2565137,
|
945
|
+
"name": "SynoCommunity/spksrc"
|
946
|
+
},
|
947
|
+
"public": true,
|
948
|
+
"org": {
|
949
|
+
"gravatar_id": "35084cec3ea4e7ea80951078d2030339",
|
950
|
+
"login": "SynoCommunity",
|
951
|
+
"avatar_url": "https://secure.gravatar.com/avatar/35084cec3ea4e7ea80951078d2030339?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
952
|
+
"url": "https://api.github.com/orgs/SynoCommunity",
|
953
|
+
"id": 1123581
|
954
|
+
},
|
955
|
+
"payload": {
|
956
|
+
"issue": {
|
957
|
+
"user": {
|
958
|
+
"url": "https://api.github.com/users/G1zm0",
|
959
|
+
"gists_url": "https://api.github.com/users/G1zm0/gists{/gist_id}",
|
960
|
+
"gravatar_id": "0d0b73f1ccb919689faa904c2c658d3b",
|
961
|
+
"type": "User",
|
962
|
+
"avatar_url": "https://secure.gravatar.com/avatar/0d0b73f1ccb919689faa904c2c658d3b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
963
|
+
"subscriptions_url": "https://api.github.com/users/G1zm0/subscriptions",
|
964
|
+
"received_events_url": "https://api.github.com/users/G1zm0/received_events",
|
965
|
+
"organizations_url": "https://api.github.com/users/G1zm0/orgs",
|
966
|
+
"repos_url": "https://api.github.com/users/G1zm0/repos",
|
967
|
+
"login": "G1zm0",
|
968
|
+
"id": 1174845,
|
969
|
+
"starred_url": "https://api.github.com/users/G1zm0/starred{/owner}{/repo}",
|
970
|
+
"events_url": "https://api.github.com/users/G1zm0/events{/privacy}",
|
971
|
+
"followers_url": "https://api.github.com/users/G1zm0/followers",
|
972
|
+
"following_url": "https://api.github.com/users/G1zm0/following"
|
973
|
+
},
|
974
|
+
"url": "https://api.github.com/repos/SynoCommunity/spksrc/issues/249",
|
975
|
+
"labels": [
|
976
|
+
|
977
|
+
],
|
978
|
+
"html_url": "https://github.com/SynoCommunity/spksrc/issues/249",
|
979
|
+
"labels_url": "https://api.github.com/repos/SynoCommunity/spksrc/issues/249/labels{/name}",
|
980
|
+
"pull_request": {
|
981
|
+
"html_url": null,
|
982
|
+
"patch_url": null,
|
983
|
+
"diff_url": null
|
984
|
+
},
|
985
|
+
"title": "Newznab install DS211J",
|
986
|
+
"created_at": "2012-09-23T14:21:36Z",
|
987
|
+
"closed_at": null,
|
988
|
+
"milestone": null,
|
989
|
+
"body": "This is related to [#227](https://github.com/SynoCommunity/spksrc/issues/227#issuecomment-8543626), to keep a log.\r\nAnd ask for help if needed.\r\n\r\nStep 1 to install is setting al [Prerequisites](http://newznab.readthedocs.org/en/latest/install/#prerequisites)\r\n- Enable php and webstation in DSM.\r\n- Do NOT enable register_globals\r\n- add :/opt/share/pear to php open_basedir\r\n- ipkg install php-curl\r\n- ipkg install php-pear\r\n- edit php.ini \r\n1. (set max php memory limit to 256), won't know if this will work.\r\n2. add pear to openbase_dir (include_path = \".:/php/includes:/opt/share/pear\")\r\n\r\n[Result:](https://dl.dropbox.com/u/16935152/newsnab/step1.png)\r\n\r\n\r\n",
|
990
|
+
"updated_at": "2013-01-10T07:58:17Z",
|
991
|
+
"assignee": null,
|
992
|
+
"number": 249,
|
993
|
+
"state": "open",
|
994
|
+
"id": 7071528,
|
995
|
+
"events_url": "https://api.github.com/repos/SynoCommunity/spksrc/issues/249/events",
|
996
|
+
"comments_url": "https://api.github.com/repos/SynoCommunity/spksrc/issues/249/comments",
|
997
|
+
"comments": 146
|
998
|
+
},
|
999
|
+
"action": "created",
|
1000
|
+
"comment": {
|
1001
|
+
"user": {
|
1002
|
+
"url": "https://api.github.com/users/rosenkrieger",
|
1003
|
+
"gists_url": "https://api.github.com/users/rosenkrieger/gists{/gist_id}",
|
1004
|
+
"gravatar_id": "29bc0a400b55eb59e811fce93477ca38",
|
1005
|
+
"type": "User",
|
1006
|
+
"avatar_url": "https://secure.gravatar.com/avatar/29bc0a400b55eb59e811fce93477ca38?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1007
|
+
"subscriptions_url": "https://api.github.com/users/rosenkrieger/subscriptions",
|
1008
|
+
"received_events_url": "https://api.github.com/users/rosenkrieger/received_events",
|
1009
|
+
"organizations_url": "https://api.github.com/users/rosenkrieger/orgs",
|
1010
|
+
"repos_url": "https://api.github.com/users/rosenkrieger/repos",
|
1011
|
+
"login": "rosenkrieger",
|
1012
|
+
"id": 2276814,
|
1013
|
+
"starred_url": "https://api.github.com/users/rosenkrieger/starred{/owner}{/repo}",
|
1014
|
+
"events_url": "https://api.github.com/users/rosenkrieger/events{/privacy}",
|
1015
|
+
"followers_url": "https://api.github.com/users/rosenkrieger/followers",
|
1016
|
+
"following_url": "https://api.github.com/users/rosenkrieger/following"
|
1017
|
+
},
|
1018
|
+
"url": "https://api.github.com/repos/SynoCommunity/spksrc/issues/comments/12084060",
|
1019
|
+
"issue_url": "https://api.github.com/repos/SynoCommunity/spksrc/issues/7071528",
|
1020
|
+
"created_at": "2013-01-10T07:58:16Z",
|
1021
|
+
"body": "Me. Again ;-)\r\n\r\nHopefully someone who understands REGEX can help me.\r\n\r\nSo I added an ebook group, for some reason there are also movies from a certain poster in there - which I do NOT want.\r\n\r\nThe REGEX /^(?P<name>.*)$/i finds everything in the group, including the stuff i do not want. \r\n\r\nHow would I have to change it so that stuff from usenet-space-cowboys is NOT included?",
|
1022
|
+
"updated_at": "2013-01-10T07:58:16Z",
|
1023
|
+
"id": 12084060
|
1024
|
+
}
|
1025
|
+
},
|
1026
|
+
"id": "1652857665"
|
1027
|
+
},
|
1028
|
+
{
|
1029
|
+
"type": "ForkEvent",
|
1030
|
+
"created_at": "2013-01-10T07:58:17Z",
|
1031
|
+
"actor": {
|
1032
|
+
"gravatar_id": "57a77579176a45583682e372067e8d23",
|
1033
|
+
"login": "slwchs",
|
1034
|
+
"avatar_url": "https://secure.gravatar.com/avatar/57a77579176a45583682e372067e8d23?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1035
|
+
"url": "https://api.github.com/users/slwchs",
|
1036
|
+
"id": 1146116
|
1037
|
+
},
|
1038
|
+
"repo": {
|
1039
|
+
"url": "https://api.github.com/repos/DeNADev/HandlerSocket-Plugin-for-MySQL",
|
1040
|
+
"id": 837872,
|
1041
|
+
"name": "DeNADev/HandlerSocket-Plugin-for-MySQL"
|
1042
|
+
},
|
1043
|
+
"public": true,
|
1044
|
+
"org": {
|
1045
|
+
"gravatar_id": "a5c6d5d74b64284fcb7d963ee2d3cfc5",
|
1046
|
+
"login": "DeNADev",
|
1047
|
+
"avatar_url": "https://secure.gravatar.com/avatar/a5c6d5d74b64284fcb7d963ee2d3cfc5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
1048
|
+
"url": "https://api.github.com/orgs/DeNADev",
|
1049
|
+
"id": 1357586
|
1050
|
+
},
|
1051
|
+
"payload": {
|
1052
|
+
"forkee": {
|
1053
|
+
"description": "",
|
1054
|
+
"fork": true,
|
1055
|
+
"url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL",
|
1056
|
+
"language": "C++",
|
1057
|
+
"stargazers_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/stargazers",
|
1058
|
+
"clone_url": "https://github.com/slwchs/HandlerSocket-Plugin-for-MySQL.git",
|
1059
|
+
"tags_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/tags{/tag}",
|
1060
|
+
"full_name": "slwchs/HandlerSocket-Plugin-for-MySQL",
|
1061
|
+
"merges_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/merges",
|
1062
|
+
"forks": 0,
|
1063
|
+
"private": false,
|
1064
|
+
"git_refs_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/refs{/sha}",
|
1065
|
+
"archive_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/{archive_format}{/ref}",
|
1066
|
+
"collaborators_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/collaborators{/collaborator}",
|
1067
|
+
"owner": {
|
1068
|
+
"url": "https://api.github.com/users/slwchs",
|
1069
|
+
"gists_url": "https://api.github.com/users/slwchs/gists{/gist_id}",
|
1070
|
+
"gravatar_id": "57a77579176a45583682e372067e8d23",
|
1071
|
+
"type": "User",
|
1072
|
+
"avatar_url": "https://secure.gravatar.com/avatar/57a77579176a45583682e372067e8d23?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1073
|
+
"subscriptions_url": "https://api.github.com/users/slwchs/subscriptions",
|
1074
|
+
"organizations_url": "https://api.github.com/users/slwchs/orgs",
|
1075
|
+
"received_events_url": "https://api.github.com/users/slwchs/received_events",
|
1076
|
+
"repos_url": "https://api.github.com/users/slwchs/repos",
|
1077
|
+
"login": "slwchs",
|
1078
|
+
"id": 1146116,
|
1079
|
+
"starred_url": "https://api.github.com/users/slwchs/starred{/owner}{/repo}",
|
1080
|
+
"events_url": "https://api.github.com/users/slwchs/events{/privacy}",
|
1081
|
+
"followers_url": "https://api.github.com/users/slwchs/followers",
|
1082
|
+
"following_url": "https://api.github.com/users/slwchs/following"
|
1083
|
+
},
|
1084
|
+
"languages_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/languages",
|
1085
|
+
"trees_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/trees{/sha}",
|
1086
|
+
"labels_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/labels{/name}",
|
1087
|
+
"html_url": "https://github.com/slwchs/HandlerSocket-Plugin-for-MySQL",
|
1088
|
+
"pushed_at": "2012-07-10T06:30:41Z",
|
1089
|
+
"created_at": "2013-01-10T07:58:16Z",
|
1090
|
+
"has_issues": false,
|
1091
|
+
"forks_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/forks",
|
1092
|
+
"branches_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/branches{/branch}",
|
1093
|
+
"commits_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/commits{/sha}",
|
1094
|
+
"notifications_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/notifications{?since,all,participating}",
|
1095
|
+
"open_issues": 0,
|
1096
|
+
"contents_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/contents/{+path}",
|
1097
|
+
"blobs_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/blobs{/sha}",
|
1098
|
+
"issues_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/issues{/number}",
|
1099
|
+
"compare_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/compare/{base}...{head}",
|
1100
|
+
"issue_events_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/issues/events{/number}",
|
1101
|
+
"name": "HandlerSocket-Plugin-for-MySQL",
|
1102
|
+
"updated_at": "2013-01-10T07:58:16Z",
|
1103
|
+
"statuses_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/statuses/{sha}",
|
1104
|
+
"forks_count": 0,
|
1105
|
+
"assignees_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/assignees{/user}",
|
1106
|
+
"ssh_url": "git@github.com:slwchs/HandlerSocket-Plugin-for-MySQL.git",
|
1107
|
+
"public": true,
|
1108
|
+
"has_wiki": true,
|
1109
|
+
"subscribers_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/subscribers",
|
1110
|
+
"mirror_url": null,
|
1111
|
+
"watchers_count": 0,
|
1112
|
+
"id": 7536833,
|
1113
|
+
"has_downloads": true,
|
1114
|
+
"git_commits_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/commits{/sha}",
|
1115
|
+
"downloads_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/downloads",
|
1116
|
+
"pulls_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/pulls{/number}",
|
1117
|
+
"homepage": "",
|
1118
|
+
"issue_comment_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/issues/comments/{number}",
|
1119
|
+
"hooks_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/hooks",
|
1120
|
+
"subscription_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/subscription",
|
1121
|
+
"milestones_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/milestones{/number}",
|
1122
|
+
"svn_url": "https://github.com/slwchs/HandlerSocket-Plugin-for-MySQL",
|
1123
|
+
"events_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/events",
|
1124
|
+
"git_tags_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/git/tags{/sha}",
|
1125
|
+
"teams_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/teams",
|
1126
|
+
"comments_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/comments{/number}",
|
1127
|
+
"open_issues_count": 0,
|
1128
|
+
"keys_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/keys{/key_id}",
|
1129
|
+
"git_url": "git://github.com/slwchs/HandlerSocket-Plugin-for-MySQL.git",
|
1130
|
+
"contributors_url": "https://api.github.com/repos/slwchs/HandlerSocket-Plugin-for-MySQL/contributors",
|
1131
|
+
"size": 204,
|
1132
|
+
"watchers": 0
|
1133
|
+
}
|
1134
|
+
},
|
1135
|
+
"id": "1652857660"
|
1136
|
+
},
|
1137
|
+
{
|
1138
|
+
"type": "PushEvent",
|
1139
|
+
"created_at": "2013-01-10T07:58:16Z",
|
1140
|
+
"actor": {
|
1141
|
+
"gravatar_id": "f8b3de3c77bce8a6b65841936fefe353",
|
1142
|
+
"login": "markpiro",
|
1143
|
+
"avatar_url": "https://secure.gravatar.com/avatar/f8b3de3c77bce8a6b65841936fefe353?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1144
|
+
"url": "https://api.github.com/users/markpiro",
|
1145
|
+
"id": 362803
|
1146
|
+
},
|
1147
|
+
"repo": {
|
1148
|
+
"url": "https://api.github.com/repos/markpiro/muzicbaux",
|
1149
|
+
"id": 7496715,
|
1150
|
+
"name": "markpiro/muzicbaux"
|
1151
|
+
},
|
1152
|
+
"public": true,
|
1153
|
+
"payload": {
|
1154
|
+
"commits": [
|
1155
|
+
{
|
1156
|
+
"url": "https://api.github.com/repos/markpiro/muzicbaux/commits/bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c",
|
1157
|
+
"message": "auth callback change",
|
1158
|
+
"distinct": true,
|
1159
|
+
"sha": "bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c",
|
1160
|
+
"author": {
|
1161
|
+
"email": "justbanter@gmail.com",
|
1162
|
+
"name": "mark"
|
1163
|
+
}
|
1164
|
+
}
|
1165
|
+
],
|
1166
|
+
"distinct_size": 1,
|
1167
|
+
"ref": "refs/heads/master",
|
1168
|
+
"push_id": 134107864,
|
1169
|
+
"head": "bbbb56de64cb3c7c1d174546fb4e340c75bb8c0c",
|
1170
|
+
"before": "b06a8ac52ce1e0a984c79a7a0d8e7a96e6674615",
|
1171
|
+
"size": 1
|
1172
|
+
},
|
1173
|
+
"id": "1652857654"
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
"type": "PushEvent",
|
1177
|
+
"created_at": "2013-01-10T07:58:15Z",
|
1178
|
+
"actor": {
|
1179
|
+
"gravatar_id": "b9fc678d24d871a8505c7da255993bc5",
|
1180
|
+
"login": "skorks",
|
1181
|
+
"avatar_url": "https://secure.gravatar.com/avatar/b9fc678d24d871a8505c7da255993bc5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1182
|
+
"url": "https://api.github.com/users/skorks",
|
1183
|
+
"id": 109413
|
1184
|
+
},
|
1185
|
+
"repo": {
|
1186
|
+
"url": "https://api.github.com/repos/skorks/escort",
|
1187
|
+
"id": 7437220,
|
1188
|
+
"name": "skorks/escort"
|
1189
|
+
},
|
1190
|
+
"public": true,
|
1191
|
+
"payload": {
|
1192
|
+
"commits": [
|
1193
|
+
{
|
1194
|
+
"url": "https://api.github.com/repos/skorks/escort/commits/047f85ba0a47de5debdb43f62c3782543e228250",
|
1195
|
+
"message": "Better formatters for help text",
|
1196
|
+
"distinct": true,
|
1197
|
+
"sha": "047f85ba0a47de5debdb43f62c3782543e228250",
|
1198
|
+
"author": {
|
1199
|
+
"email": "alan@skorks.com",
|
1200
|
+
"name": "Alan Skorkin"
|
1201
|
+
}
|
1202
|
+
}
|
1203
|
+
],
|
1204
|
+
"distinct_size": 1,
|
1205
|
+
"ref": "refs/heads/master",
|
1206
|
+
"push_id": 134107863,
|
1207
|
+
"head": "047f85ba0a47de5debdb43f62c3782543e228250",
|
1208
|
+
"before": "267ba05093edd0ea70e5dc3801a6f06b171a07d0",
|
1209
|
+
"size": 1
|
1210
|
+
},
|
1211
|
+
"id": "1652857652"
|
1212
|
+
},
|
1213
|
+
{
|
1214
|
+
"type": "PushEvent",
|
1215
|
+
"created_at": "2013-01-10T07:58:14Z",
|
1216
|
+
"actor": {
|
1217
|
+
"gravatar_id": "6a0503c195f533b5cd6bd4ccdd6cdc3e",
|
1218
|
+
"login": "kmaehashi",
|
1219
|
+
"avatar_url": "https://secure.gravatar.com/avatar/6a0503c195f533b5cd6bd4ccdd6cdc3e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1220
|
+
"url": "https://api.github.com/users/kmaehashi",
|
1221
|
+
"id": 939877
|
1222
|
+
},
|
1223
|
+
"repo": {
|
1224
|
+
"url": "https://api.github.com/repos/jubatus/website",
|
1225
|
+
"id": 2644458,
|
1226
|
+
"name": "jubatus/website"
|
1227
|
+
},
|
1228
|
+
"public": true,
|
1229
|
+
"org": {
|
1230
|
+
"gravatar_id": "e48bca9362833c506303719cf6f2fd9c",
|
1231
|
+
"login": "jubatus",
|
1232
|
+
"avatar_url": "https://secure.gravatar.com/avatar/e48bca9362833c506303719cf6f2fd9c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
|
1233
|
+
"url": "https://api.github.com/orgs/jubatus",
|
1234
|
+
"id": 740604
|
1235
|
+
},
|
1236
|
+
"payload": {
|
1237
|
+
"commits": [
|
1238
|
+
{
|
1239
|
+
"url": "https://api.github.com/repos/jubatus/website/commits/210ed738f81eadeaf7135c7ff1b7c471d9a91312",
|
1240
|
+
"message": "fix dead link",
|
1241
|
+
"distinct": true,
|
1242
|
+
"sha": "210ed738f81eadeaf7135c7ff1b7c471d9a91312",
|
1243
|
+
"author": {
|
1244
|
+
"email": "webmaster@kenichimaehashi.com",
|
1245
|
+
"name": "Kenichi Maehashi"
|
1246
|
+
}
|
1247
|
+
}
|
1248
|
+
],
|
1249
|
+
"distinct_size": 1,
|
1250
|
+
"ref": "refs/heads/develop",
|
1251
|
+
"push_id": 134107860,
|
1252
|
+
"before": "27b48c300994293b38c1b1d7f8cf656a551aa16f",
|
1253
|
+
"head": "210ed738f81eadeaf7135c7ff1b7c471d9a91312",
|
1254
|
+
"size": 1
|
1255
|
+
},
|
1256
|
+
"id": "1652857648"
|
1257
|
+
},
|
1258
|
+
{
|
1259
|
+
"type": "GollumEvent",
|
1260
|
+
"created_at": "2013-01-10T07:58:15Z",
|
1261
|
+
"actor": {
|
1262
|
+
"gravatar_id": "923326b259c68209a76497ad1d3ceec0",
|
1263
|
+
"login": "akrillo89",
|
1264
|
+
"avatar_url": "https://secure.gravatar.com/avatar/923326b259c68209a76497ad1d3ceec0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1265
|
+
"url": "https://api.github.com/users/akrillo89",
|
1266
|
+
"id": 2676770
|
1267
|
+
},
|
1268
|
+
"repo": {
|
1269
|
+
"url": "https://api.github.com/repos/arsenij-solovjev/sonar-modelbus-plugin",
|
1270
|
+
"id": 6535088,
|
1271
|
+
"name": "arsenij-solovjev/sonar-modelbus-plugin"
|
1272
|
+
},
|
1273
|
+
"public": true,
|
1274
|
+
"payload": {
|
1275
|
+
"pages": [
|
1276
|
+
{
|
1277
|
+
"page_name": "Sonar Plugin Development",
|
1278
|
+
"html_url": "https://github.com/arsenij-solovjev/sonar-modelbus-plugin/wiki/Sonar-Plugin-Development",
|
1279
|
+
"title": "Sonar Plugin Development",
|
1280
|
+
"sha": "a824c9c9bb5e874e0d91809512d42654d46f8c14",
|
1281
|
+
"summary": null,
|
1282
|
+
"action": "edited"
|
1283
|
+
}
|
1284
|
+
]
|
1285
|
+
},
|
1286
|
+
"id": "1652857651"
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"type": "ForkEvent",
|
1290
|
+
"created_at": "2013-01-10T07:58:13Z",
|
1291
|
+
"actor": {
|
1292
|
+
"gravatar_id": "28f08154fd59530479209fef41f674e1",
|
1293
|
+
"login": "vcovito",
|
1294
|
+
"avatar_url": "https://secure.gravatar.com/avatar/28f08154fd59530479209fef41f674e1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1295
|
+
"url": "https://api.github.com/users/vcovito",
|
1296
|
+
"id": 1354081
|
1297
|
+
},
|
1298
|
+
"repo": {
|
1299
|
+
"url": "https://api.github.com/repos/wang-bin/QtAV",
|
1300
|
+
"id": 6435042,
|
1301
|
+
"name": "wang-bin/QtAV"
|
1302
|
+
},
|
1303
|
+
"public": true,
|
1304
|
+
"payload": {
|
1305
|
+
"forkee": {
|
1306
|
+
"full_name": "vcovito/QtAV",
|
1307
|
+
"stargazers_url": "https://api.github.com/repos/vcovito/QtAV/stargazers",
|
1308
|
+
"clone_url": "https://github.com/vcovito/QtAV.git",
|
1309
|
+
"fork": true,
|
1310
|
+
"url": "https://api.github.com/repos/vcovito/QtAV",
|
1311
|
+
"tags_url": "https://api.github.com/repos/vcovito/QtAV/tags{/tag}",
|
1312
|
+
"description": "A media library based on Qt and FFmpeg. Development files for MinGW can be downloaded frome https://sourceforge.net/projects/qtav/files/?",
|
1313
|
+
"merges_url": "https://api.github.com/repos/vcovito/QtAV/merges",
|
1314
|
+
"forks": 0,
|
1315
|
+
"language": "C++",
|
1316
|
+
"private": false,
|
1317
|
+
"archive_url": "https://api.github.com/repos/vcovito/QtAV/{archive_format}{/ref}",
|
1318
|
+
"collaborators_url": "https://api.github.com/repos/vcovito/QtAV/collaborators{/collaborator}",
|
1319
|
+
"languages_url": "https://api.github.com/repos/vcovito/QtAV/languages",
|
1320
|
+
"owner": {
|
1321
|
+
"gists_url": "https://api.github.com/users/vcovito/gists{/gist_id}",
|
1322
|
+
"gravatar_id": "28f08154fd59530479209fef41f674e1",
|
1323
|
+
"url": "https://api.github.com/users/vcovito",
|
1324
|
+
"type": "User",
|
1325
|
+
"avatar_url": "https://secure.gravatar.com/avatar/28f08154fd59530479209fef41f674e1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png",
|
1326
|
+
"subscriptions_url": "https://api.github.com/users/vcovito/subscriptions",
|
1327
|
+
"organizations_url": "https://api.github.com/users/vcovito/orgs",
|
1328
|
+
"received_events_url": "https://api.github.com/users/vcovito/received_events",
|
1329
|
+
"repos_url": "https://api.github.com/users/vcovito/repos",
|
1330
|
+
"login": "vcovito",
|
1331
|
+
"starred_url": "https://api.github.com/users/vcovito/starred{/owner}{/repo}",
|
1332
|
+
"id": 1354081,
|
1333
|
+
"events_url": "https://api.github.com/users/vcovito/events{/privacy}",
|
1334
|
+
"followers_url": "https://api.github.com/users/vcovito/followers",
|
1335
|
+
"following_url": "https://api.github.com/users/vcovito/following"
|
1336
|
+
},
|
1337
|
+
"git_refs_url": "https://api.github.com/repos/vcovito/QtAV/git/refs{/sha}",
|
1338
|
+
"labels_url": "https://api.github.com/repos/vcovito/QtAV/labels{/name}",
|
1339
|
+
"pushed_at": "2013-01-07T12:17:03Z",
|
1340
|
+
"html_url": "https://github.com/vcovito/QtAV",
|
1341
|
+
"trees_url": "https://api.github.com/repos/vcovito/QtAV/git/trees{/sha}",
|
1342
|
+
"forks_url": "https://api.github.com/repos/vcovito/QtAV/forks",
|
1343
|
+
"commits_url": "https://api.github.com/repos/vcovito/QtAV/commits{/sha}",
|
1344
|
+
"branches_url": "https://api.github.com/repos/vcovito/QtAV/branches{/branch}",
|
1345
|
+
"notifications_url": "https://api.github.com/repos/vcovito/QtAV/notifications{?since,all,participating}",
|
1346
|
+
"created_at": "2013-01-10T07:58:13Z",
|
1347
|
+
"has_issues": false,
|
1348
|
+
"blobs_url": "https://api.github.com/repos/vcovito/QtAV/git/blobs{/sha}",
|
1349
|
+
"issues_url": "https://api.github.com/repos/vcovito/QtAV/issues{/number}",
|
1350
|
+
"compare_url": "https://api.github.com/repos/vcovito/QtAV/compare/{base}...{head}",
|
1351
|
+
"open_issues": 0,
|
1352
|
+
"contents_url": "https://api.github.com/repos/vcovito/QtAV/contents/{+path}",
|
1353
|
+
"name": "QtAV",
|
1354
|
+
"statuses_url": "https://api.github.com/repos/vcovito/QtAV/statuses/{sha}",
|
1355
|
+
"assignees_url": "https://api.github.com/repos/vcovito/QtAV/assignees{/user}",
|
1356
|
+
"forks_count": 0,
|
1357
|
+
"updated_at": "2013-01-10T07:58:13Z",
|
1358
|
+
"issue_events_url": "https://api.github.com/repos/vcovito/QtAV/issues/events{/number}",
|
1359
|
+
"ssh_url": "git@github.com:vcovito/QtAV.git",
|
1360
|
+
"subscribers_url": "https://api.github.com/repos/vcovito/QtAV/subscribers",
|
1361
|
+
"mirror_url": null,
|
1362
|
+
"public": true,
|
1363
|
+
"has_wiki": true,
|
1364
|
+
"git_commits_url": "https://api.github.com/repos/vcovito/QtAV/git/commits{/sha}",
|
1365
|
+
"downloads_url": "https://api.github.com/repos/vcovito/QtAV/downloads",
|
1366
|
+
"id": 7536832,
|
1367
|
+
"pulls_url": "https://api.github.com/repos/vcovito/QtAV/pulls{/number}",
|
1368
|
+
"has_downloads": true,
|
1369
|
+
"issue_comment_url": "https://api.github.com/repos/vcovito/QtAV/issues/comments/{number}",
|
1370
|
+
"watchers_count": 0,
|
1371
|
+
"homepage": "",
|
1372
|
+
"hooks_url": "https://api.github.com/repos/vcovito/QtAV/hooks",
|
1373
|
+
"subscription_url": "https://api.github.com/repos/vcovito/QtAV/subscription",
|
1374
|
+
"milestones_url": "https://api.github.com/repos/vcovito/QtAV/milestones{/number}",
|
1375
|
+
"events_url": "https://api.github.com/repos/vcovito/QtAV/events",
|
1376
|
+
"svn_url": "https://github.com/vcovito/QtAV",
|
1377
|
+
"git_tags_url": "https://api.github.com/repos/vcovito/QtAV/git/tags{/sha}",
|
1378
|
+
"teams_url": "https://api.github.com/repos/vcovito/QtAV/teams",
|
1379
|
+
"comments_url": "https://api.github.com/repos/vcovito/QtAV/comments{/number}",
|
1380
|
+
"open_issues_count": 0,
|
1381
|
+
"keys_url": "https://api.github.com/repos/vcovito/QtAV/keys{/key_id}",
|
1382
|
+
"contributors_url": "https://api.github.com/repos/vcovito/QtAV/contributors",
|
1383
|
+
"size": 4286,
|
1384
|
+
"watchers": 0,
|
1385
|
+
"git_url": "git://github.com/vcovito/QtAV.git"
|
1386
|
+
}
|
1387
|
+
},
|
1388
|
+
"id": "1652857642"
|
1389
|
+
}
|
1390
|
+
]
|