type
stringclasses 14
values | public
bool 1
class | payload
stringlengths 2
334k
| repo
dict | actor
dict | org
dict | created_at
timestamp[us] | id
stringlengths 10
10
| other
stringlengths 31
69
|
---|---|---|---|---|---|---|---|---|
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/issues/2031","repository_url":"https://api.github.com/repos/AffiliateWP/AffiliateWP","labels_url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/issues/2031/labels{/name}","comments_url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/issues/2031/comments","events_url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/issues/2031/events","html_url":"https://github.com/AffiliateWP/AffiliateWP/issues/2031","id":207975276,"number":2031,"title":"\"jQuery is not defined\" JS error if jQuery moved to footer","user":{"login":"sumobi","id":52581,"avatar_url":"https://avatars.githubusercontent.com/u/52581?v=3","gravatar_id":"","url":"https://api.github.com/users/sumobi","html_url":"https://github.com/sumobi","followers_url":"https://api.github.com/users/sumobi/followers","following_url":"https://api.github.com/users/sumobi/following{/other_user}","gists_url":"https://api.github.com/users/sumobi/gists{/gist_id}","starred_url":"https://api.github.com/users/sumobi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sumobi/subscriptions","organizations_url":"https://api.github.com/users/sumobi/orgs","repos_url":"https://api.github.com/users/sumobi/repos","events_url":"https://api.github.com/users/sumobi/events{/privacy}","received_events_url":"https://api.github.com/users/sumobi/received_events","type":"User","site_admin":false},"labels":[{"id":72778871,"url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/labels/bug","name":"bug","color":"fc2929","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/milestones/66","html_url":"https://github.com/AffiliateWP/AffiliateWP/milestone/66","labels_url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/milestones/66/labels","id":1824383,"number":66,"title":"2.1","description":"","creator":{"login":"pippinsplugins","id":1034109,"avatar_url":"https://avatars.githubusercontent.com/u/1034109?v=3","gravatar_id":"","url":"https://api.github.com/users/pippinsplugins","html_url":"https://github.com/pippinsplugins","followers_url":"https://api.github.com/users/pippinsplugins/followers","following_url":"https://api.github.com/users/pippinsplugins/following{/other_user}","gists_url":"https://api.github.com/users/pippinsplugins/gists{/gist_id}","starred_url":"https://api.github.com/users/pippinsplugins/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pippinsplugins/subscriptions","organizations_url":"https://api.github.com/users/pippinsplugins/orgs","repos_url":"https://api.github.com/users/pippinsplugins/repos","events_url":"https://api.github.com/users/pippinsplugins/events{/privacy}","received_events_url":"https://api.github.com/users/pippinsplugins/received_events","type":"User","site_admin":false},"open_issues":127,"closed_issues":1,"state":"open","created_at":"2016-06-13T19:45:34Z","updated_at":"2017-02-16T00:32:43Z","due_on":"2017-04-19T07:00:00Z","closed_at":null},"comments":1,"created_at":"2017-02-16T00:32:43Z","updated_at":"2017-02-16T21:36:03Z","closed_at":null,"body":"If jQuery has been moved to the page footer before AffiliateWP has been installed for the very first time, meaning the `affwp_js_works` option row has not yet been created, it will cause a `ReferenceError: jQuery is not defined` JS error.\r\n\r\nThis is because the `header_scripts` method (https://github.com/AffiliateWP/AffiliateWP/blob/master/includes/class-tracking.php#L59) is loaded on `wp_head` which contains the JS for firing off the `affwp_check_js` action: https://github.com/AffiliateWP/AffiliateWP/blob/master/includes/class-tracking.php#L83-L92\r\n\r\nCould we somehow detect where jQuery is loaded (head or footer) and make sure this is always loaded _after_?\r\n\r\nMeanwhile here's the quickfix:\r\n\r\n```\r\nfunction affwp_custom_move_header_scripts() {\r\n\t$tracking = affiliate_wp()->tracking;\r\n\r\n\tremove_action( 'wp_head', array( $tracking, 'header_scripts' ) );\r\n\tadd_action( 'wp_footer', array( $tracking, 'header_scripts' ), 100 );\r\n}\r\nadd_action( 'template_redirect', 'affwp_custom_move_header_scripts' );\r\n```\r\n\r\nTicket: https://secure.helpscout.net/conversation/319811659/53088/?folderId=205531"},"comment":{"url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/issues/comments/280468696","html_url":"https://github.com/AffiliateWP/AffiliateWP/issues/2031#issuecomment-280468696","issue_url":"https://api.github.com/repos/AffiliateWP/AffiliateWP/issues/2031","id":280468696,"user":{"login":"pippinsplugins","id":1034109,"avatar_url":"https://avatars.githubusercontent.com/u/1034109?v=3","gravatar_id":"","url":"https://api.github.com/users/pippinsplugins","html_url":"https://github.com/pippinsplugins","followers_url":"https://api.github.com/users/pippinsplugins/followers","following_url":"https://api.github.com/users/pippinsplugins/following{/other_user}","gists_url":"https://api.github.com/users/pippinsplugins/gists{/gist_id}","starred_url":"https://api.github.com/users/pippinsplugins/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pippinsplugins/subscriptions","organizations_url":"https://api.github.com/users/pippinsplugins/orgs","repos_url":"https://api.github.com/users/pippinsplugins/repos","events_url":"https://api.github.com/users/pippinsplugins/events{/privacy}","received_events_url":"https://api.github.com/users/pippinsplugins/received_events","type":"User","site_admin":false},"created_at":"2017-02-16T21:36:03Z","updated_at":"2017-02-16T21:36:03Z","body":">>>My first instinct would be to check if jQuery has been enqueued with something like wp_script_is( 'jquery', 'enqueued' ) then set the hook based on that.\r\n\r\nGut reaction says that would work."}} | {
"id": 15543455,
"name": "AffiliateWP/AffiliateWP",
"url": "https://api.github.com/repos/AffiliateWP/AffiliateWP"
} | {
"id": 1034109,
"login": "pippinsplugins",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1034109?",
"url": "https://api.github.com/users/pippinsplugins"
} | {
"id": 7075307,
"login": "AffiliateWP",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7075307?",
"url": "https://api.github.com/orgs/AffiliateWP"
} | 2017-02-16T21:36:03 | 5339906062 | {"actor":{"display_login":"pippinsplugins"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/AirLabsTeam/react-native-aws-cognito-js/issues/14","repository_url":"https://api.github.com/repos/AirLabsTeam/react-native-aws-cognito-js","labels_url":"https://api.github.com/repos/AirLabsTeam/react-native-aws-cognito-js/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/AirLabsTeam/react-native-aws-cognito-js/issues/14/comments","events_url":"https://api.github.com/repos/AirLabsTeam/react-native-aws-cognito-js/issues/14/events","html_url":"https://github.com/AirLabsTeam/react-native-aws-cognito-js/issues/14","id":243326597,"number":14,"title":"Access AWS resources (S3 / DynamoDB) by CognitoIdentityCredentials","user":{"login":"samuel-hkust","id":20788100,"avatar_url":"https://avatars3.githubusercontent.com/u/20788100?v=4","gravatar_id":"","url":"https://api.github.com/users/samuel-hkust","html_url":"https://github.com/samuel-hkust","followers_url":"https://api.github.com/users/samuel-hkust/followers","following_url":"https://api.github.com/users/samuel-hkust/following{/other_user}","gists_url":"https://api.github.com/users/samuel-hkust/gists{/gist_id}","starred_url":"https://api.github.com/users/samuel-hkust/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/samuel-hkust/subscriptions","organizations_url":"https://api.github.com/users/samuel-hkust/orgs","repos_url":"https://api.github.com/users/samuel-hkust/repos","events_url":"https://api.github.com/users/samuel-hkust/events{/privacy}","received_events_url":"https://api.github.com/users/samuel-hkust/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-07-17T08:34:25Z","updated_at":"2017-09-15T17:29:42Z","closed_at":null,"author_association":"NONE","body":"Thanks for this great tool! It's really helpful!\r\n\r\nNow I'm facing another problem, I'm attempting to follow this guide to access S3 resources\r\n\r\nhttps://aws.amazon.com/blogs/developer/react-native-support-in-the-aws-sdk-for-javascript/\r\n\r\n```\r\nimport {\r\n AWS,\r\n TransferUtility,\r\n Config,\r\n CognitoIdentityCredentials\r\n} from \"aws-sdk/dist/aws-sdk-react-native\";\r\n\r\n......\r\n\r\nconst s3 = new AWS.S3({\r\n region: 'us-east-1',\r\n credentials: Config.credentials\r\n});\r\n```\r\n\r\nHowever it raised error message\r\n`undefined is not an object (evaluating 'new_awsSdkReactNative.AWS.S3')`\r\n\r\nShall I use other method to import AWS resources?\r\nThank you!"},"comment":{"url":"https://api.github.com/repos/AirLabsTeam/react-native-aws-cognito-js/issues/comments/329847107","html_url":"https://github.com/AirLabsTeam/react-native-aws-cognito-js/issues/14#issuecomment-329847107","issue_url":"https://api.github.com/repos/AirLabsTeam/react-native-aws-cognito-js/issues/14","id":329847107,"user":{"login":"jmparsons","id":514330,"avatar_url":"https://avatars1.githubusercontent.com/u/514330?v=4","gravatar_id":"","url":"https://api.github.com/users/jmparsons","html_url":"https://github.com/jmparsons","followers_url":"https://api.github.com/users/jmparsons/followers","following_url":"https://api.github.com/users/jmparsons/following{/other_user}","gists_url":"https://api.github.com/users/jmparsons/gists{/gist_id}","starred_url":"https://api.github.com/users/jmparsons/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jmparsons/subscriptions","organizations_url":"https://api.github.com/users/jmparsons/orgs","repos_url":"https://api.github.com/users/jmparsons/repos","events_url":"https://api.github.com/users/jmparsons/events{/privacy}","received_events_url":"https://api.github.com/users/jmparsons/received_events","type":"User","site_admin":false},"created_at":"2017-09-15T17:29:41Z","updated_at":"2017-09-15T17:29:41Z","author_association":"MEMBER","body":"@samuel-hkust add `aws-sdk` to your project."}} | {
"id": 89185968,
"name": "AirLabsTeam/react-native-aws-cognito-js",
"url": "https://api.github.com/repos/AirLabsTeam/react-native-aws-cognito-js"
} | {
"id": 514330,
"login": "jmparsons",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/514330?",
"url": "https://api.github.com/users/jmparsons"
} | {
"id": 25886042,
"login": "AirLabsTeam",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/25886042?",
"url": "https://api.github.com/orgs/AirLabsTeam"
} | 2017-09-15T17:29:42 | 6596805104 | {"actor":{"display_login":"jmparsons"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CWISoftware/drops/issues/77","repository_url":"https://api.github.com/repos/CWISoftware/drops","labels_url":"https://api.github.com/repos/CWISoftware/drops/issues/77/labels{/name}","comments_url":"https://api.github.com/repos/CWISoftware/drops/issues/77/comments","events_url":"https://api.github.com/repos/CWISoftware/drops/issues/77/events","html_url":"https://github.com/CWISoftware/drops/pull/77","id":264372810,"number":77,"title":"Inclui suporte para o docker composer e corrige links de posts duplicados","user":{"login":"Alexandre-Machado","id":1766903,"avatar_url":"https://avatars0.githubusercontent.com/u/1766903?v=4","gravatar_id":"","url":"https://api.github.com/users/Alexandre-Machado","html_url":"https://github.com/Alexandre-Machado","followers_url":"https://api.github.com/users/Alexandre-Machado/followers","following_url":"https://api.github.com/users/Alexandre-Machado/following{/other_user}","gists_url":"https://api.github.com/users/Alexandre-Machado/gists{/gist_id}","starred_url":"https://api.github.com/users/Alexandre-Machado/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Alexandre-Machado/subscriptions","organizations_url":"https://api.github.com/users/Alexandre-Machado/orgs","repos_url":"https://api.github.com/users/Alexandre-Machado/repos","events_url":"https://api.github.com/users/Alexandre-Machado/events{/privacy}","received_events_url":"https://api.github.com/users/Alexandre-Machado/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-10-10T20:54:55Z","updated_at":"2017-10-11T18:08:57Z","closed_at":null,"author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/CWISoftware/drops/pulls/77","html_url":"https://github.com/CWISoftware/drops/pull/77","diff_url":"https://github.com/CWISoftware/drops/pull/77.diff","patch_url":"https://github.com/CWISoftware/drops/pull/77.patch"},"body":"- Inclui suporte para o docker [#46]\r\n- Corrige erros de caracteres inválidos em dois posts\r\n- Atualiza versão\r\n - ruby: '2.2.3' => '2.4.2'\r\n - jekyll: '3.1.0' => '3.6.0'\r\n - liquid: '3.0.6' => '~> 4.0'"},"comment":{"url":"https://api.github.com/repos/CWISoftware/drops/issues/comments/335898773","html_url":"https://github.com/CWISoftware/drops/pull/77#issuecomment-335898773","issue_url":"https://api.github.com/repos/CWISoftware/drops/issues/77","id":335898773,"user":{"login":"Alexandre-Machado","id":1766903,"avatar_url":"https://avatars0.githubusercontent.com/u/1766903?v=4","gravatar_id":"","url":"https://api.github.com/users/Alexandre-Machado","html_url":"https://github.com/Alexandre-Machado","followers_url":"https://api.github.com/users/Alexandre-Machado/followers","following_url":"https://api.github.com/users/Alexandre-Machado/following{/other_user}","gists_url":"https://api.github.com/users/Alexandre-Machado/gists{/gist_id}","starred_url":"https://api.github.com/users/Alexandre-Machado/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Alexandre-Machado/subscriptions","organizations_url":"https://api.github.com/users/Alexandre-Machado/orgs","repos_url":"https://api.github.com/users/Alexandre-Machado/repos","events_url":"https://api.github.com/users/Alexandre-Machado/events{/privacy}","received_events_url":"https://api.github.com/users/Alexandre-Machado/received_events","type":"User","site_admin":false},"created_at":"2017-10-11T18:08:57Z","updated_at":"2017-10-11T18:08:57Z","author_association":"MEMBER","body":"@cesarasoliveira, reapliquei teu _commit_ que alterava o arquivo _posts/2017-09-16-assinatura-digital-demoiselle-signer.markdown"}} | {
"id": 46460142,
"name": "CWISoftware/drops",
"url": "https://api.github.com/repos/CWISoftware/drops"
} | {
"id": 1766903,
"login": "Alexandre-Machado",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1766903?",
"url": "https://api.github.com/users/Alexandre-Machado"
} | {
"id": 2694338,
"login": "CWISoftware",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2694338?",
"url": "https://api.github.com/orgs/CWISoftware"
} | 2017-10-11T18:08:57 | 6703994591 | {"actor":{"display_login":"Alexandre-Machado"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/12944","repository_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA","labels_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/12944/labels{/name}","comments_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/12944/comments","events_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/12944/events","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/issues/12944","id":95184162,"number":12944,"title":"Using EMP CBM on turret does not count as a kill","user":{"login":"Soyweiser","id":3932900,"avatar_url":"https://avatars0.githubusercontent.com/u/3932900?v=3","gravatar_id":"","url":"https://api.github.com/users/Soyweiser","html_url":"https://github.com/Soyweiser","followers_url":"https://api.github.com/users/Soyweiser/followers","following_url":"https://api.github.com/users/Soyweiser/following{/other_user}","gists_url":"https://api.github.com/users/Soyweiser/gists{/gist_id}","starred_url":"https://api.github.com/users/Soyweiser/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Soyweiser/subscriptions","organizations_url":"https://api.github.com/users/Soyweiser/orgs","repos_url":"https://api.github.com/users/Soyweiser/repos","events_url":"https://api.github.com/users/Soyweiser/events{/privacy}","received_events_url":"https://api.github.com/users/Soyweiser/received_events","type":"User","site_admin":false},"labels":[{"id":475226154,"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/labels/Bionics","name":"Bionics","color":"79cf7f","default":false},{"id":43875653,"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/labels/Suggestion%20(Discuss)","name":"Suggestion (Discuss)","color":"FF3399","default":false}],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":7,"created_at":"2015-07-15T12:51:57Z","updated_at":"2017-05-02T03:54:34Z","closed_at":"2017-05-02T03:54:34Z","body":"Minor bug, but if you EMP a turret with the CBM implant it does not count as a kill.\n## <bountysource-plugin>\n\nWant to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/24376467-using-emp-cbm-on-turret-does-not-count-as-a-kill?utm_campaign=plugin&utm_content=tracker%2F146201&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F146201&utm_medium=issues&utm_source=github).\n</bountysource-plugin>\n"},"comment":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/comments/298491477","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/issues/12944#issuecomment-298491477","issue_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/12944","id":298491477,"user":{"login":"Leland","id":714017,"avatar_url":"https://avatars1.githubusercontent.com/u/714017?v=3","gravatar_id":"","url":"https://api.github.com/users/Leland","html_url":"https://github.com/Leland","followers_url":"https://api.github.com/users/Leland/followers","following_url":"https://api.github.com/users/Leland/following{/other_user}","gists_url":"https://api.github.com/users/Leland/gists{/gist_id}","starred_url":"https://api.github.com/users/Leland/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Leland/subscriptions","organizations_url":"https://api.github.com/users/Leland/orgs","repos_url":"https://api.github.com/users/Leland/repos","events_url":"https://api.github.com/users/Leland/events{/privacy}","received_events_url":"https://api.github.com/users/Leland/received_events","type":"User","site_admin":false},"created_at":"2017-05-02T03:54:34Z","updated_at":"2017-05-02T03:54:34Z","body":"Closing - old and no movement. Feel free to ping me here if there's still interest, or make a new issue."}} | {
"id": 5973855,
"name": "CleverRaven/Cataclysm-DDA",
"url": "https://api.github.com/repos/CleverRaven/Cataclysm-DDA"
} | {
"id": 714017,
"login": "Leland",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/714017?",
"url": "https://api.github.com/users/Leland"
} | {
"id": 4367009,
"login": "CleverRaven",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4367009?",
"url": "https://api.github.com/orgs/CleverRaven"
} | 2017-05-02T03:54:34 | 5791084740 | {"actor":{"display_login":"Leland"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/21558","repository_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA","labels_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/21558/labels{/name}","comments_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/21558/comments","events_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/21558/events","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/issues/21558","id":248155399,"number":21558,"title":"NPCs won't drink tea.","user":{"login":"DemAvalon","id":29681506,"avatar_url":"https://avatars0.githubusercontent.com/u/29681506?v=4","gravatar_id":"","url":"https://api.github.com/users/DemAvalon","html_url":"https://github.com/DemAvalon","followers_url":"https://api.github.com/users/DemAvalon/followers","following_url":"https://api.github.com/users/DemAvalon/following{/other_user}","gists_url":"https://api.github.com/users/DemAvalon/gists{/gist_id}","starred_url":"https://api.github.com/users/DemAvalon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DemAvalon/subscriptions","organizations_url":"https://api.github.com/users/DemAvalon/orgs","repos_url":"https://api.github.com/users/DemAvalon/repos","events_url":"https://api.github.com/users/DemAvalon/events{/privacy}","received_events_url":"https://api.github.com/users/DemAvalon/received_events","type":"User","site_admin":false},"labels":[{"id":41143376,"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/labels/NPC","name":"NPC","color":"eb6420","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2017-08-05T03:45:06Z","updated_at":"2017-08-05T04:30:57Z","closed_at":null,"body":"### Expected Behavior\r\noffer some tea to a companion, they drink it.\r\n### Actual behavior\r\nNpc refuses tea, saying that \"it doesn't seem like a good idea\".\r\n### Steps to reproduce the behavior\r\nget a companion, get tea (any tea does this) tell Npc to use tea.\r\n\r\nI know that the game is set in the U.S and that they prefer to throw their tea out of their harbors, but I thought that might change after the apocalypse"},"comment":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/comments/320398073","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/issues/21558#issuecomment-320398073","issue_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/21558","id":320398073,"user":{"login":"DangerNoodle","id":22048567,"avatar_url":"https://avatars1.githubusercontent.com/u/22048567?v=4","gravatar_id":"","url":"https://api.github.com/users/DangerNoodle","html_url":"https://github.com/DangerNoodle","followers_url":"https://api.github.com/users/DangerNoodle/followers","following_url":"https://api.github.com/users/DangerNoodle/following{/other_user}","gists_url":"https://api.github.com/users/DangerNoodle/gists{/gist_id}","starred_url":"https://api.github.com/users/DangerNoodle/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/DangerNoodle/subscriptions","organizations_url":"https://api.github.com/users/DangerNoodle/orgs","repos_url":"https://api.github.com/users/DangerNoodle/repos","events_url":"https://api.github.com/users/DangerNoodle/events{/privacy}","received_events_url":"https://api.github.com/users/DangerNoodle/received_events","type":"User","site_admin":false},"created_at":"2017-08-05T04:30:57Z","updated_at":"2017-08-05T04:30:57Z","body":"Not even iced, I suspect. How sad."}} | {
"id": 5973855,
"name": "CleverRaven/Cataclysm-DDA",
"url": "https://api.github.com/repos/CleverRaven/Cataclysm-DDA"
} | {
"id": 22048567,
"login": "DangerNoodle",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/22048567?",
"url": "https://api.github.com/users/DangerNoodle"
} | {
"id": 4367009,
"login": "CleverRaven",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4367009?",
"url": "https://api.github.com/orgs/CleverRaven"
} | 2017-08-05T04:30:57 | 6399869450 | {"actor":{"display_login":"DangerNoodle"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/20321","repository_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA","labels_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/20321/labels{/name}","comments_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/20321/comments","events_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/20321/events","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/issues/20321","id":208668468,"number":20321,"title":"Vehicle UPS-Recharging Station charges at <10% Efficiency","user":{"login":"Nioca","id":11001797,"avatar_url":"https://avatars.githubusercontent.com/u/11001797?v=3","gravatar_id":"","url":"https://api.github.com/users/Nioca","html_url":"https://github.com/Nioca","followers_url":"https://api.github.com/users/Nioca/followers","following_url":"https://api.github.com/users/Nioca/following{/other_user}","gists_url":"https://api.github.com/users/Nioca/gists{/gist_id}","starred_url":"https://api.github.com/users/Nioca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Nioca/subscriptions","organizations_url":"https://api.github.com/users/Nioca/orgs","repos_url":"https://api.github.com/users/Nioca/repos","events_url":"https://api.github.com/users/Nioca/events{/privacy}","received_events_url":"https://api.github.com/users/Nioca/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":11,"created_at":"2017-02-18T20:13:40Z","updated_at":"2017-02-20T06:08:30Z","closed_at":null,"body":"`Experimental Build 0.C-6235 Windows 7 SDL`\r\n\r\nRight now, vehicle-based UPS-Compatible Recharging Stations are woefully inefficient. Whereas most power transfers to or from UPS (bionic or otherwise) occur on a 1-for-1 basis, using a recharging station consumes 10 or more units of power in exchange for a single unit of charge on the device in question. I ran tests using Electric Cars, installing a UPS-Compatible Recharging Station in one of the trunk compartments, and then dropping UPSes in the station to charge, turning the charger off once the UPSes hit 1000 charge. The results:\r\n\r\n1000 UPS Charge (1 UPS) = 10513 Vehicle Charge (9.51% Efficiency)\r\n5000 UPS Charge (5 UPS) = 49943* Vehicle Charge (10.01% Efficiency)\r\n7997 UPS Charge (100 UPS) = 80000* Vehicle Charge (9.99% Efficiency)\r\n*I forgot to take the solar panels off the spawned Electric car for the latter two tests, which likely pulled results upward a slight bit.\r\n\r\nNeedless to say, this makes using a UPS-Compatible Recharging Station completely and wildly impractical for smaller vehicles, since utilizing it puts a massive drain on vehicle power. Gas/Diesel powered vehicles still function with a UPS-Compatible Recharging Station operating, but they'll be operating on 0% battery until the device finishes charging or the recharger gets turned off, and to add insult to injury, attempting to charge from a running vehicle with stock car/truck batteries takes much, MUCH longer than a straight drain from a storage battery (ideal charge time for an empty UPS from a full storage battery clocks in a bit under two hours, but from a stock Humvee with the engine running, it took over 7 hours). For larger vehicles, it only becomes worth it if the vehicle is producing more energy than it can actually use or has a massive surplus of energy.\r\n\r\nFor what it's worth, I don't think UPS-Compatible Recharging Stations should recharge with 100% efficiency; however, the results I'm getting suggests there's a bug or faulty formula somewhere that's causing the excessive drain."},"comment":{"url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/comments/280995944","html_url":"https://github.com/CleverRaven/Cataclysm-DDA/issues/20321#issuecomment-280995944","issue_url":"https://api.github.com/repos/CleverRaven/Cataclysm-DDA/issues/20321","id":280995944,"user":{"login":"kevingranade","id":860276,"avatar_url":"https://avatars.githubusercontent.com/u/860276?v=3","gravatar_id":"","url":"https://api.github.com/users/kevingranade","html_url":"https://github.com/kevingranade","followers_url":"https://api.github.com/users/kevingranade/followers","following_url":"https://api.github.com/users/kevingranade/following{/other_user}","gists_url":"https://api.github.com/users/kevingranade/gists{/gist_id}","starred_url":"https://api.github.com/users/kevingranade/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kevingranade/subscriptions","organizations_url":"https://api.github.com/users/kevingranade/orgs","repos_url":"https://api.github.com/users/kevingranade/repos","events_url":"https://api.github.com/users/kevingranade/events{/privacy}","received_events_url":"https://api.github.com/users/kevingranade/received_events","type":"User","site_admin":false},"created_at":"2017-02-20T06:08:30Z","updated_at":"2017-02-20T06:08:30Z","body":"On Feb 19, 2017 4:30 AM, \"Surma\" <[email protected]> wrote:\n\n\"using charger kills lights/stereo\"\n\nI'm going to ignore everything else going on for just a second... Should a\ncharacter with sufficient mechanics, or electronics, or some combination\nthere of, be allowed to change the order that energy moves in a vehicle?\n\nNot literally by changing the order, but a manual shutoff for each system\nwould be trivial, and something that shuts off non-essential systems if\ntotal system charge drops below some threshold would be doable.\n"}} | {
"id": 5973855,
"name": "CleverRaven/Cataclysm-DDA",
"url": "https://api.github.com/repos/CleverRaven/Cataclysm-DDA"
} | {
"id": 860276,
"login": "kevingranade",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/860276?",
"url": "https://api.github.com/users/kevingranade"
} | {
"id": 4367009,
"login": "CleverRaven",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4367009?",
"url": "https://api.github.com/orgs/CleverRaven"
} | 2017-02-20T06:08:30 | 5353504387 | {"actor":{"display_login":"kevingranade"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/1332","repository_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues","labels_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/1332/labels{/name}","comments_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/1332/comments","events_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/1332/events","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/1332","id":199172586,"number":1332,"title":"anaconda-navigator fails to start Win7 TypeError","user":{"login":"cj-foster","id":24957030,"avatar_url":"https://avatars.githubusercontent.com/u/24957030?v=3","gravatar_id":"","url":"https://api.github.com/users/cj-foster","html_url":"https://github.com/cj-foster","followers_url":"https://api.github.com/users/cj-foster/followers","following_url":"https://api.github.com/users/cj-foster/following{/other_user}","gists_url":"https://api.github.com/users/cj-foster/gists{/gist_id}","starred_url":"https://api.github.com/users/cj-foster/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cj-foster/subscriptions","organizations_url":"https://api.github.com/users/cj-foster/orgs","repos_url":"https://api.github.com/users/cj-foster/repos","events_url":"https://api.github.com/users/cj-foster/events{/privacy}","received_events_url":"https://api.github.com/users/cj-foster/received_events","type":"User","site_admin":false},"labels":[{"id":507370569,"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/labels/pending:release","name":"pending:release","color":"d4c5f9","default":false},{"id":355353255,"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/labels/tag:navigator","name":"tag:navigator","color":"c2e0c6","default":false}],"state":"open","locked":false,"assignee":{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars.githubusercontent.com/u/3627835?v=3","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false},"assignees":[{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars.githubusercontent.com/u/3627835?v=3","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false}],"milestone":null,"comments":7,"created_at":"2017-01-06T10:57:05Z","updated_at":"2017-01-30T16:05:11Z","closed_at":null,"body":"Starting anaconda-navigator.exe has previously worked fine but stopped today. Splash screen shows 'Initialising' then drops out with cmd window and errors:\r\n\r\n```\r\nTraceback (most recent call last):\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\Scripts\\anaconda-navigator-scrip\r\nt.py\", line 5, in <module>\r\n sys.exit(anaconda_navigator.app.main.main())\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\lib\\site-packages\\anaconda_navig\r\nator\\app\\main.py\", line 70, in main\r\n window = run_app(splash)\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\lib\\site-packages\\anaconda_navig\r\nator\\app\\main.py\", line 38, in run_app\r\n window = MainWindow(splash=splash)\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\lib\\site-packages\\anaconda_navig\r\nator\\widgets\\main_window.py\", line 145, in __init__\r\n self.api = AnacondaAPI()\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\lib\\site-packages\\anaconda_navig\r\nator\\api\\anaconda_api.py\", line 434, in AnacondaAPI\r\n ANACONDA_API = _AnacondaAPI()\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\lib\\site-packages\\anaconda_navig\r\nator\\api\\anaconda_api.py\", line 39, in __init__\r\n self._conda_api = CondaAPI()\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\lib\\site-packages\\anaconda_navig\r\nator\\api\\conda_api.py\", line 1185, in CondaAPI\r\n CONDA_API = _CondaAPI()\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\lib\\site-packages\\anaconda_navig\r\nator\\api\\conda_api.py\", line 267, in __init__\r\n self.set_root_prefix()\r\n File \"P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\lib\\site-packages\\anaconda_navig\r\nator\\api\\conda_api.py\", line 374, in set_root_prefix\r\n self.ROOT_PREFIX = info['root_prefix']\r\nTypeError: byte indices must be integers or slices, not str\r\n```\r\n\r\nLooking at other issues you'll want the following. \r\n```\r\nconda info\r\n\r\nP:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\Scripts>conda info\r\nCurrent conda install:\r\n\r\n platform : win-64\r\n conda version : 4.2.13\r\n conda is private : False\r\n conda-env version : 4.2.13\r\n conda-build version : 2.0.2\r\n python version : 3.5.2.final.0\r\n requests version : 2.11.1\r\n root environment : P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3 (writable)\r\n default environment : P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\r\n envs directories : P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\envs\r\n package cache : P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\pkgs\r\n channel URLs : https://conda.anaconda.org/r/win-64\r\n https://conda.anaconda.org/r/noarch\r\n https://repo.continuum.io/pkgs/free/win-64\r\n https://repo.continuum.io/pkgs/free/noarch\r\n https://repo.continuum.io/pkgs/pro/win-64\r\n https://repo.continuum.io/pkgs/pro/noarch\r\n https://repo.continuum.io/pkgs/msys2/win-64\r\n https://repo.continuum.io/pkgs/msys2/noarch\r\n config file : C:\\Users\\12345\\.condarc\r\n offline mode : False\r\n```\r\n\r\n```\r\nconda list\r\n\r\nP:\\utilities\\Anaconda 3-4 1.1\\Anaconda3\\Scripts>conda list\r\npackages in environment at P:\\utilities\\Anaconda 3-4 1.1\\Anaconda3:\r\n\r\n_license 1.1 py35_1\r\n_nb_ext_conf 0.3.0 py35_0\r\nalabaster 0.7.9 py35_0\r\nanaconda 4.2.0 np111py35_0\r\nanaconda-clean 1.0.0 py35_0\r\nanaconda-client 1.5.1 py35_0\r\nanaconda-navigator 1.3.1 py35_0\r\nargcomplete 1.0.0 py35_1\r\nastroid 1.4.7 py35_0\r\nastropy 1.2.1 np111py35_0\r\nbabel 2.3.4 py35_0\r\nbackports 1.0 py35_0\r\nbeautifulsoup4 4.5.1 py35_0\r\nbitarray 0.8.1 py35_1\r\nblaze 0.10.1 py35_0\r\nbokeh 0.12.2 py35_0\r\nboto 2.42.0 py35_0\r\nbottleneck 1.1.0 np111py35_0\r\nbzip2 1.0.6 vc14_3 [vc14]\r\ncffi 1.7.0 py35_0\r\nchest 0.2.3 py35_0\r\nclick 6.6 py35_0\r\ncloudpickle 0.2.1 py35_0\r\nclyent 1.2.2 py35_0\r\ncolorama 0.3.7 py35_0\r\ncomtypes 1.1.2 py35_0\r\nconda 4.2.13 py35_0\r\nconda-build 2.0.2 py35_0\r\nconda-env 2.6.0 0\r\nconfigobj 5.0.6 py35_0\r\nconsole_shortcut 0.1.1 py35_1\r\ncontextlib2 0.5.3 py35_0\r\ncryptography 1.5 py35_0\r\ncurl 7.49.0 vc14_0 [vc14]\r\ncycler 0.10.0 py35_0\r\ncython 0.24.1 py35_0\r\ncytoolz 0.8.0 py35_0\r\ndask 0.11.0 py35_0\r\ndatashape 0.5.2 py35_0\r\ndecorator 4.0.10 py35_0\r\ndill 0.2.5 py35_0\r\ndocutils 0.12 py35_2\r\ndynd-python 0.7.2 py35_0\r\nentrypoints 0.2.2 py35_0\r\net_xmlfile 1.0.1 py35_0\r\nfastcache 1.0.2 py35_1\r\nfilelock 2.0.6 py35_0\r\nflask 0.11.1 py35_0\r\nflask-cors 2.1.2 py35_0\r\nfreetype 2.5.5 vc14_1 [vc14]\r\nget_terminal_size 1.0.0 py35_0\r\ngevent 1.1.2 py35_0\r\ngreenlet 0.4.10 py35_0\r\nh5py 2.6.0 np111py35_2\r\nhdf5 1.8.15.1 vc14_4 [vc14]\r\nheapdict 1.0.0 py35_1\r\nicu 57.1 vc14_0 [vc14]\r\nidna 2.1 py35_0\r\nimagesize 0.7.1 py35_0\r\nipykernel 4.5.0 py35_0\r\nipython 5.1.0 py35_0\r\nipython_genutils 0.1.0 py35_0\r\nipywidgets 5.2.2 py35_0\r\nitsdangerous 0.24 py35_0\r\njdcal 1.2 py35_1\r\njedi 0.9.0 py35_1\r\njinja2 2.8 py35_1\r\njpeg 8d vc14_2 [vc14]\r\njsonschema 2.5.1 py35_0\r\njupyter 1.0.0 py35_3\r\njupyter_client 4.4.0 py35_0\r\njupyter_console 5.0.0 py35_0\r\njupyter_core 4.2.0 py35_0\r\nlazy-object-proxy 1.2.1 py35_0\r\nlibdynd 0.7.2 0\r\nlibpng 1.6.22 vc14_0 [vc14]\r\nlibtiff 4.0.6 vc14_2 [vc14]\r\nllvmlite 0.13.0 py35_0\r\nlocket 0.2.0 py35_1\r\nlxml 3.6.4 py35_0\r\nmarkupsafe 0.23 py35_2\r\nmatplotlib 1.5.3 np111py35_0\r\nmenuinst 1.4.1 py35_0\r\nmistune 0.7.3 py35_0\r\nmkl 11.3.3 1\r\nmkl-service 1.1.2 py35_2\r\nmpmath 0.19 py35_1\r\nmultipledispatch 0.4.8 py35_0\r\nnb_anacondacloud 1.2.0 py35_0\r\nnb_conda 2.0.0 py35_0\r\nnb_conda_kernels 2.0.0 py35_0\r\nnbconvert 4.2.0 py35_0\r\nnbformat 4.1.0 py35_0\r\nnbpresent 3.0.2 py35_0\r\nnetworkx 1.11 py35_0\r\nnltk 3.2.1 py35_0\r\nnose 1.3.7 py35_1\r\nnotebook 4.2.3 py35_0\r\nnumba 0.28.1 np111py35_0\r\nnumexpr 2.6.1 np111py35_0\r\nnumpy 1.11.1 py35_1\r\nodo 0.5.0 py35_1\r\nopenpyxl 2.3.2 py35_0\r\nopenssl 1.0.2j vc14_0 [vc14]\r\npandas 0.18.1 np111py35_0\r\npartd 0.3.6 py35_0\r\npath.py 8.2.1 py35_0\r\npathlib2 2.1.0 py35_0\r\npatsy 0.4.1 py35_0\r\npep8 1.7.0 py35_0\r\npickleshare 0.7.4 py35_0\r\npillow 3.3.1 py35_0\r\npip 8.1.2 py35_0\r\npkginfo 1.3.2 py35_0\r\nply 3.9 py35_0\r\nprompt_toolkit 1.0.3 py35_0\r\npsutil 4.3.1 py35_0\r\npy 1.4.31 py35_0\r\npyasn1 0.1.9 py35_0\r\npycosat 0.6.1 py35_1\r\npycparser 2.14 py35_1\r\npycrypto 2.6.1 py35_4\r\npycurl 7.43.0 py35_0\r\npyflakes 1.3.0 py35_0\r\npygments 2.1.3 py35_0\r\npylint 1.5.4 py35_1\r\npyopenssl 16.0.0 py35_0\r\npyparsing 2.1.4 py35_0\r\npyqt 5.6.0 py35_0\r\npytables 3.2.2 np111py35_4\r\npytest 2.9.2 py35_0\r\npython 3.5.2 0\r\npython-dateutil 2.5.3 py35_0\r\npytz 2016.6.1 py35_0\r\npywin32 220 py35_1\r\npyyaml 3.12 py35_0\r\npyzmq 15.4.0 py35_0\r\nqt 5.6.0 vc14_0 [vc14]\r\nqtawesome 0.3.3 py35_0\r\nqtconsole 4.2.1 py35_2\r\nqtpy 1.1.2 py35_0\r\nrequests 2.11.1 py35_0\r\nrope 0.9.4 py35_1\r\nruamel_yaml 0.11.14 py35_0\r\nscikit-image 0.12.3 np111py35_1\r\nscikit-learn 0.17.1 np111py35_1\r\nscipy 0.18.1 np111py35_0\r\nseaborn 0.7.1 py35_0\r\nsetuptools 27.2.0 py35_1\r\nsimplegeneric 0.8.1 py35_1\r\nsingledispatch 3.4.0.3 py35_0\r\nsip 4.18 py35_0\r\nsix 1.10.0 py35_0\r\nsnowballstemmer 1.2.1 py35_0\r\nsockjs-tornado 1.0.3 py35_0\r\nsphinx 1.5.1 py35_0\r\nspyder 3.0.0 py35_0\r\nsqlalchemy 1.0.13 py35_0\r\nstatsmodels 0.6.1 np111py35_1\r\nsympy 1.0 py35_0\r\ntk 8.5.18 vc14_0 [vc14]\r\ntoolz 0.8.0 py35_0\r\ntornado 4.4.1 py35_0\r\ntraitlets 4.3.0 py35_0\r\nunicodecsv 0.14.1 py35_0\r\nvs2015_runtime 14.0.25123 0\r\nwcwidth 0.1.7 py35_0\r\nwerkzeug 0.11.11 py35_0\r\nwheel 0.29.0 py35_0\r\nwidgetsnbextension 1.2.6 py35_0\r\nwin_unicode_console 0.5 py35_0\r\nwrapt 1.10.6 py35_0\r\nxlrd 1.0.0 py35_0\r\nxlsxwriter 0.9.3 py35_0\r\nxlwings 0.10.0 py35_0\r\nxlwt 1.1.2 py35_0\r\nzlib 1.2.8 vc14_3 [vc14]\r\n\r\n```\r\nThanks."},"comment":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/comments/276103486","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/1332#issuecomment-276103486","issue_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/1332","id":276103486,"user":{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars.githubusercontent.com/u/3627835?v=3","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false},"created_at":"2017-01-30T16:05:11Z","updated_at":"2017-01-30T16:05:11Z","body":"Could you start navigator by openning the anaconda prompt and then typing\r\n\r\n`$ anaconda-navigator` ?"}} | {
"id": 11665526,
"name": "ContinuumIO/anaconda-issues",
"url": "https://api.github.com/repos/ContinuumIO/anaconda-issues"
} | {
"id": 3627835,
"login": "goanpeca",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3627835?",
"url": "https://api.github.com/users/goanpeca"
} | {
"id": 1158637,
"login": "ContinuumIO",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1158637?",
"url": "https://api.github.com/orgs/ContinuumIO"
} | 2017-01-30T16:05:11 | 5234616860 | {"actor":{"display_login":"goanpeca"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/6263","repository_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues","labels_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/6263/labels{/name}","comments_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/6263/comments","events_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/6263/events","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/6263","id":261837925,"number":6263,"title":"Installation/Navigator Error","user":{"login":"Afrogeek254","id":9547691,"avatar_url":"https://avatars1.githubusercontent.com/u/9547691?v=4","gravatar_id":"","url":"https://api.github.com/users/Afrogeek254","html_url":"https://github.com/Afrogeek254","followers_url":"https://api.github.com/users/Afrogeek254/followers","following_url":"https://api.github.com/users/Afrogeek254/following{/other_user}","gists_url":"https://api.github.com/users/Afrogeek254/gists{/gist_id}","starred_url":"https://api.github.com/users/Afrogeek254/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Afrogeek254/subscriptions","organizations_url":"https://api.github.com/users/Afrogeek254/orgs","repos_url":"https://api.github.com/users/Afrogeek254/repos","events_url":"https://api.github.com/users/Afrogeek254/events{/privacy}","received_events_url":"https://api.github.com/users/Afrogeek254/received_events","type":"User","site_admin":false},"labels":[{"id":355353255,"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/labels/pkg:navigator","name":"pkg:navigator","color":"fbca04","default":false}],"state":"closed","locked":false,"assignee":{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false},"assignees":[{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false}],"milestone":null,"comments":1,"created_at":"2017-09-30T11:24:11Z","updated_at":"2017-09-30T11:35:29Z","closed_at":"2017-09-30T11:29:19Z","author_association":"NONE","body":"## Main error\r\nThe following errors occurred:\r\n## Traceback\r\n```\r\nCondaIOError: Missing write permissions in: C:\\Program Files\\Anaconda3\r\n#\r\n# You don't appear to have the necessary permissions to install packages\r\n# into the install area 'C:\\Program Files\\Anaconda3'.\r\n# However you can clone this environment into your home directory and\r\n# then make changes to it.\r\n# This may be done using the command:\r\n#\r\n# $ conda create -n my_root --clone=\"C:\\Program Files\\Anaconda3\"\r\n\r\n```\r\n## System information\r\n```\r\npython: 3.6.1\r\nlanguage: en_GB\r\nos: Windows;10;10.0.10240;AMD64;Intel64 Family 6 Model 69 Stepping 1, GenuineIntel\r\nversion: 1.6.2\r\nplatform: win-64\r\nqt: 5.6.2\r\npyqt: 5.6.0\r\nconda: 4.3.21\r\n```\r\n"},"comment":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/comments/333302818","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/6263#issuecomment-333302818","issue_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/6263","id":333302818,"user":{"login":"Afrogeek254","id":9547691,"avatar_url":"https://avatars1.githubusercontent.com/u/9547691?v=4","gravatar_id":"","url":"https://api.github.com/users/Afrogeek254","html_url":"https://github.com/Afrogeek254","followers_url":"https://api.github.com/users/Afrogeek254/followers","following_url":"https://api.github.com/users/Afrogeek254/following{/other_user}","gists_url":"https://api.github.com/users/Afrogeek254/gists{/gist_id}","starred_url":"https://api.github.com/users/Afrogeek254/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Afrogeek254/subscriptions","organizations_url":"https://api.github.com/users/Afrogeek254/orgs","repos_url":"https://api.github.com/users/Afrogeek254/repos","events_url":"https://api.github.com/users/Afrogeek254/events{/privacy}","received_events_url":"https://api.github.com/users/Afrogeek254/received_events","type":"User","site_admin":false},"created_at":"2017-09-30T11:35:29Z","updated_at":"2017-09-30T11:35:29Z","author_association":"NONE","body":"@goanpeca \r\nThank you for the solution. \r\nKindly advice on how i can go about it if I experience the error on a windows 10 platform"}} | {
"id": 11665526,
"name": "ContinuumIO/anaconda-issues",
"url": "https://api.github.com/repos/ContinuumIO/anaconda-issues"
} | {
"id": 9547691,
"login": "Afrogeek254",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9547691?",
"url": "https://api.github.com/users/Afrogeek254"
} | {
"id": 1158637,
"login": "ContinuumIO",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1158637?",
"url": "https://api.github.com/orgs/ContinuumIO"
} | 2017-09-30T11:35:29 | 6657851286 | {"actor":{"display_login":"Afrogeek254"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/73","repository_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues","labels_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/73/labels{/name}","comments_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/73/comments","events_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/73/events","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/73","id":26475191,"number":73,"title":"hdf5/h5py problem on windows platforms","user":{"login":"asmeurer","id":71486,"avatar_url":"https://avatars3.githubusercontent.com/u/71486?v=4","gravatar_id":"","url":"https://api.github.com/users/asmeurer","html_url":"https://github.com/asmeurer","followers_url":"https://api.github.com/users/asmeurer/followers","following_url":"https://api.github.com/users/asmeurer/following{/other_user}","gists_url":"https://api.github.com/users/asmeurer/gists{/gist_id}","starred_url":"https://api.github.com/users/asmeurer/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asmeurer/subscriptions","organizations_url":"https://api.github.com/users/asmeurer/orgs","repos_url":"https://api.github.com/users/asmeurer/repos","events_url":"https://api.github.com/users/asmeurer/events{/privacy}","received_events_url":"https://api.github.com/users/asmeurer/received_events","type":"User","site_admin":false},"labels":[{"id":117856126,"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/labels/os:windows","name":"os:windows","color":"fef2c0","default":false}],"state":"closed","locked":false,"assignee":{"login":"mingwandroid","id":1042804,"avatar_url":"https://avatars1.githubusercontent.com/u/1042804?v=4","gravatar_id":"","url":"https://api.github.com/users/mingwandroid","html_url":"https://github.com/mingwandroid","followers_url":"https://api.github.com/users/mingwandroid/followers","following_url":"https://api.github.com/users/mingwandroid/following{/other_user}","gists_url":"https://api.github.com/users/mingwandroid/gists{/gist_id}","starred_url":"https://api.github.com/users/mingwandroid/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mingwandroid/subscriptions","organizations_url":"https://api.github.com/users/mingwandroid/orgs","repos_url":"https://api.github.com/users/mingwandroid/repos","events_url":"https://api.github.com/users/mingwandroid/events{/privacy}","received_events_url":"https://api.github.com/users/mingwandroid/received_events","type":"User","site_admin":false},"assignees":[{"login":"mingwandroid","id":1042804,"avatar_url":"https://avatars1.githubusercontent.com/u/1042804?v=4","gravatar_id":"","url":"https://api.github.com/users/mingwandroid","html_url":"https://github.com/mingwandroid","followers_url":"https://api.github.com/users/mingwandroid/followers","following_url":"https://api.github.com/users/mingwandroid/following{/other_user}","gists_url":"https://api.github.com/users/mingwandroid/gists{/gist_id}","starred_url":"https://api.github.com/users/mingwandroid/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mingwandroid/subscriptions","organizations_url":"https://api.github.com/users/mingwandroid/orgs","repos_url":"https://api.github.com/users/mingwandroid/repos","events_url":"https://api.github.com/users/mingwandroid/events{/privacy}","received_events_url":"https://api.github.com/users/mingwandroid/received_events","type":"User","site_admin":false}],"milestone":null,"comments":5,"created_at":"2014-01-28T20:52:44Z","updated_at":"2017-10-26T12:58:25Z","closed_at":"2017-10-26T12:58:25Z","author_association":"CONTRIBUTOR","body":"_Issue by **[thisch](https://github.com/thisch)** from Monday Jan 27, 2014 at 20:40 GMT_\n_Originally opened as https://github.com/conda/conda/issues/531_\n\n---\n\nI found a problem in the h5py/hdf5 conda package when trying to access datasets in a hdf file. This only occurs on 32bit and 64bit windows platforms but not on linux. I tested it with the latest miniconda (python 2) version.\n\nIf I install the executable (version 2.2.1) from h5py.org, I don't see the problem.\n\n```\nIn [1]: import h5py\n\nIn [2]: h5py.__file__\nOut[2]: 'C:\\\\Users\\\\thomas\\\\Miniconda\\\\lib\\\\site-packages\\\\h5py\\\\__init__.pyc'\n\nIn [3]: h5py.__version__\nOut[3]: '2.2.1'\n\nIn [4]: f = h5py.File(\"bla.hdf\")\n\nIn [5]: f.keys()\nOut[5]:\n[u'X',\n u'XPITCH',\n u'XYAW',\n u'Y',\n u'YPITCH',\n u'YYAW',\n u'datavalid',\n u'timestamps']\n\nIn [6]: f[\"X\"]\nOut[6]: <HDF5 dataset \"X\": shape (122475,), type \"<i8\">\n\nIn [7]: f[\"X\"][::500]\nHDF5-DIAG: Error detected in HDF5 (1.8.9) thread 0:\n #000: ..\\..\\src\\H5Dio.c line 174 in H5Dread(): can't read data\n major: Dataset\n minor: Read failed\n #001: ..\\..\\src\\H5Dio.c line 449 in H5D_read(): can't read data\n major: Dataset\n minor: Read failed\n #002: ..\\..\\src\\H5Dchunk.c line 1729 in H5D_chunk_read(): unable to read raw d\nata chunk\n major: Low-level I/O\n minor: Read failed\n #003: ..\\..\\src\\H5Dchunk.c line 2760 in H5D_chunk_lock(): data pipeline read f\nailed\n major: Data filters\n minor: Filter operation failed\n #004: ..\\..\\src\\H5Z.c line 1096 in H5Z_pipeline(): required filter 'deflate' i\ns not registered\n major: Data filters\n minor: Read failed\n```\n"},"comment":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/comments/339657391","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/73#issuecomment-339657391","issue_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/73","id":339657391,"user":{"login":"mingwandroid","id":1042804,"avatar_url":"https://avatars1.githubusercontent.com/u/1042804?v=4","gravatar_id":"","url":"https://api.github.com/users/mingwandroid","html_url":"https://github.com/mingwandroid","followers_url":"https://api.github.com/users/mingwandroid/followers","following_url":"https://api.github.com/users/mingwandroid/following{/other_user}","gists_url":"https://api.github.com/users/mingwandroid/gists{/gist_id}","starred_url":"https://api.github.com/users/mingwandroid/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mingwandroid/subscriptions","organizations_url":"https://api.github.com/users/mingwandroid/orgs","repos_url":"https://api.github.com/users/mingwandroid/repos","events_url":"https://api.github.com/users/mingwandroid/events{/privacy}","received_events_url":"https://api.github.com/users/mingwandroid/received_events","type":"User","site_admin":false},"created_at":"2017-10-26T12:58:25Z","updated_at":"2017-10-26T12:58:25Z","author_association":"MEMBER","body":"```\r\n>> h5py.run_tests()\r\n.....................................................x.........................s.....s...................................x....................................s........ss.ss................................................................................................ssssss.................................................................x....x........................x.....x................................................ssss...........\r\n----------------------------------------------------------------------\r\nRan 439 tests in 2.047s\r\n\r\nOK (skipped=17, expected failures=6)\r\n<unittest.runner.TextTestResult run=439 errors=0 failures=0>\r\n```\r\n"}} | {
"id": 11665526,
"name": "ContinuumIO/anaconda-issues",
"url": "https://api.github.com/repos/ContinuumIO/anaconda-issues"
} | {
"id": 1042804,
"login": "mingwandroid",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1042804?",
"url": "https://api.github.com/users/mingwandroid"
} | {
"id": 1158637,
"login": "ContinuumIO",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1158637?",
"url": "https://api.github.com/orgs/ContinuumIO"
} | 2017-10-26T12:58:25 | 6769550892 | {"actor":{"display_login":"mingwandroid"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/4150","repository_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues","labels_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/4150/labels{/name}","comments_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/4150/comments","events_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/4150/events","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/4150","id":249786358,"number":4150,"title":"Navigator Error","user":{"login":"KEAppleby","id":29828939,"avatar_url":"https://avatars1.githubusercontent.com/u/29828939?v=4","gravatar_id":"","url":"https://api.github.com/users/KEAppleby","html_url":"https://github.com/KEAppleby","followers_url":"https://api.github.com/users/KEAppleby/followers","following_url":"https://api.github.com/users/KEAppleby/following{/other_user}","gists_url":"https://api.github.com/users/KEAppleby/gists{/gist_id}","starred_url":"https://api.github.com/users/KEAppleby/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KEAppleby/subscriptions","organizations_url":"https://api.github.com/users/KEAppleby/orgs","repos_url":"https://api.github.com/users/KEAppleby/repos","events_url":"https://api.github.com/users/KEAppleby/events{/privacy}","received_events_url":"https://api.github.com/users/KEAppleby/received_events","type":"User","site_admin":false},"labels":[{"id":355353255,"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/labels/pkg:navigator","name":"pkg:navigator","color":"fbca04","default":false},{"id":49358739,"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/labels/reso:duplicate","name":"reso:duplicate","color":"1d76db","default":false}],"state":"open","locked":false,"assignee":{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false},"assignees":[{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2017-08-12T03:51:40Z","updated_at":"2017-08-13T13:07:11Z","closed_at":null,"body":"## Main error\r\nAn unexpected error occurred on Navigator start-up<br>psutil.AccessDenied (pid=14468)\r\n## Traceback\r\n```\r\nTraceback (most recent call last):\r\n File \"C:\\ProgramData\\Anaconda3\\lib\\site-packages\\psutil\\_pswindows.py\", line 620, in wrapper\r\n return fun(self, *args, **kwargs)\r\n File \"C:\\ProgramData\\Anaconda3\\lib\\site-packages\\psutil\\_pswindows.py\", line 690, in cmdline\r\n ret = cext.proc_cmdline(self.pid)\r\nPermissionError: [WinError 5] Access is denied\r\n\r\nDuring handling of the above exception, another exception occurred:\r\n\r\nTraceback (most recent call last):\r\n File \"C:\\ProgramData\\Anaconda3\\lib\\site-packages\\anaconda_navigator\\exceptions.py\", line 75, in exception_handler\r\n return_value = func(*args, **kwargs)\r\n File \"C:\\ProgramData\\Anaconda3\\lib\\site-packages\\anaconda_navigator\\app\\start.py\", line 108, in start_app\r\n if misc.load_pid() is None: # A stale lock might be around\r\n File \"C:\\ProgramData\\Anaconda3\\lib\\site-packages\\anaconda_navigator\\utils\\misc.py\", line 384, in load_pid\r\n cmds = process.cmdline()\r\n File \"C:\\ProgramData\\Anaconda3\\lib\\site-packages\\psutil\\__init__.py\", line 701, in cmdline\r\n return self._proc.cmdline()\r\n File \"C:\\ProgramData\\Anaconda3\\lib\\site-packages\\psutil\\_pswindows.py\", line 623, in wrapper\r\n raise AccessDenied(self.pid, self._name)\r\npsutil.AccessDenied: psutil.AccessDenied (pid=14468)\r\n\r\n```\r\n## System information\r\n```\r\npython: 3.6.1\r\nlanguage: en_US\r\nos: Windows;10;10.0.15063;AMD64;Intel64 Family 6 Model 60 Stepping 3, GenuineIntel\r\nversion: 1.6.2\r\nplatform: win-32\r\nqt: 5.6.2\r\npyqt: 5.6.0\r\nconda: 4.3.21\r\n```\r\n"},"comment":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/comments/322041156","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/4150#issuecomment-322041156","issue_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/4150","id":322041156,"user":{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false},"created_at":"2017-08-13T13:07:11Z","updated_at":"2017-08-13T13:07:11Z","body":"**See issue #1984 for more information on how to fix this.**\n\n---\n\nClosing as duplicate of #1984\n\n---\n\nPlease remember to update to the latest version of Navigator to include\nthe latest fixes.\n\nOpen a terminal (on Linux or Mac) or the Anaconda Command Prompt (on windows)\nand type:\n\n```\n$ conda update anaconda-navigator\n```\n"}} | {
"id": 11665526,
"name": "ContinuumIO/anaconda-issues",
"url": "https://api.github.com/repos/ContinuumIO/anaconda-issues"
} | {
"id": 3627835,
"login": "goanpeca",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3627835?",
"url": "https://api.github.com/users/goanpeca"
} | {
"id": 1158637,
"login": "ContinuumIO",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1158637?",
"url": "https://api.github.com/orgs/ContinuumIO"
} | 2017-08-13T13:07:11 | 6445907327 | {"actor":{"display_login":"goanpeca"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/5502","repository_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues","labels_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/5502/labels{/name}","comments_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/5502/comments","events_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/5502/events","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/5502","id":257779701,"number":5502,"title":"Navigator Error","user":{"login":"fbagirov","id":3122454,"avatar_url":"https://avatars3.githubusercontent.com/u/3122454?v=4","gravatar_id":"","url":"https://api.github.com/users/fbagirov","html_url":"https://github.com/fbagirov","followers_url":"https://api.github.com/users/fbagirov/followers","following_url":"https://api.github.com/users/fbagirov/following{/other_user}","gists_url":"https://api.github.com/users/fbagirov/gists{/gist_id}","starred_url":"https://api.github.com/users/fbagirov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fbagirov/subscriptions","organizations_url":"https://api.github.com/users/fbagirov/orgs","repos_url":"https://api.github.com/users/fbagirov/repos","events_url":"https://api.github.com/users/fbagirov/events{/privacy}","received_events_url":"https://api.github.com/users/fbagirov/received_events","type":"User","site_admin":false},"labels":[{"id":355353255,"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/labels/pkg:navigator","name":"pkg:navigator","color":"fbca04","default":false},{"id":49358739,"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/labels/reso:duplicate","name":"reso:duplicate","color":"1d76db","default":false}],"state":"open","locked":false,"assignee":{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false},"assignees":[{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2017-09-14T16:24:05Z","updated_at":"2017-09-14T16:29:09Z","closed_at":null,"author_association":"NONE","body":"## Main error\r\nAn unexpected error occurred on Navigator start-up<br>byte indices must be integers or slices, not str\r\n## Traceback\r\n```\r\nTraceback (most recent call last):\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/exceptions.py\", line 75, in exception_handler\r\n return_value = func(*args, **kwargs)\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/app/start.py\", line 115, in start_app\r\n window = run_app(splash)\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/app/start.py\", line 58, in run_app\r\n window = MainWindow(splash=splash)\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/widgets/main_window.py\", line 160, in __init__\r\n self.api = AnacondaAPI()\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/api/anaconda_api.py\", line 1205, in AnacondaAPI\r\n ANACONDA_API = _AnacondaAPI()\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/api/anaconda_api.py\", line 65, in __init__\r\n self._conda_api = CondaAPI()\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/api/conda_api.py\", line 1622, in CondaAPI\r\n CONDA_API = _CondaAPI()\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/api/conda_api.py\", line 340, in __init__\r\n self.set_conda_prefix()\r\n File \"/Applications/anaconda/lib/python3.6/site-packages/anaconda_navigator/api/conda_api.py\", line 489, in set_conda_prefix\r\n self.ROOT_PREFIX = info['root_prefix']\r\nTypeError: byte indices must be integers or slices, not str\r\n\r\n```\r\n## System information\r\n```\r\npython: 3.6.1\r\nlanguage: en\r\nos: Darwin;16.7.0;Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64;x86_64;i386\r\nversion: 1.6.2\r\nplatform: osx-64\r\nqt: 5.6.2\r\npyqt: 5.6.0\r\nconda: 4.3.23\r\n```\r\n"},"comment":{"url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/comments/329536910","html_url":"https://github.com/ContinuumIO/anaconda-issues/issues/5502#issuecomment-329536910","issue_url":"https://api.github.com/repos/ContinuumIO/anaconda-issues/issues/5502","id":329536910,"user":{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false},"created_at":"2017-09-14T16:29:09Z","updated_at":"2017-09-14T16:29:09Z","author_association":"MEMBER","body":"**See Issue #1837 for more information on how to fix this.**\n\n---\n\nClosing as duplicate of #1837\n\n\n---\n\nPlease remember to update to the latest version of Navigator to include\nthe latest fixes.\n\nOpen a terminal (on Linux or Mac) or the Anaconda Command Prompt (on windows)\nand type:\n\n```\n$ conda update anaconda-navigator\n$ conda update navigator-updater\n```\n"}} | {
"id": 11665526,
"name": "ContinuumIO/anaconda-issues",
"url": "https://api.github.com/repos/ContinuumIO/anaconda-issues"
} | {
"id": 3627835,
"login": "goanpeca",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3627835?",
"url": "https://api.github.com/users/goanpeca"
} | {
"id": 1158637,
"login": "ContinuumIO",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1158637?",
"url": "https://api.github.com/orgs/ContinuumIO"
} | 2017-09-14T16:29:09 | 6591570647 | {"actor":{"display_login":"goanpeca"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CouscousPHP/Couscous/issues/187","repository_url":"https://api.github.com/repos/CouscousPHP/Couscous","labels_url":"https://api.github.com/repos/CouscousPHP/Couscous/issues/187/labels{/name}","comments_url":"https://api.github.com/repos/CouscousPHP/Couscous/issues/187/comments","events_url":"https://api.github.com/repos/CouscousPHP/Couscous/issues/187/events","html_url":"https://github.com/CouscousPHP/Couscous/pull/187","id":197727277,"number":187,"title":"Override couscous.yml configuration from command line","user":{"login":"cyberbit","id":7350183,"avatar_url":"https://avatars.githubusercontent.com/u/7350183?v=3","gravatar_id":"","url":"https://api.github.com/users/cyberbit","html_url":"https://github.com/cyberbit","followers_url":"https://api.github.com/users/cyberbit/followers","following_url":"https://api.github.com/users/cyberbit/following{/other_user}","gists_url":"https://api.github.com/users/cyberbit/gists{/gist_id}","starred_url":"https://api.github.com/users/cyberbit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cyberbit/subscriptions","organizations_url":"https://api.github.com/users/cyberbit/orgs","repos_url":"https://api.github.com/users/cyberbit/repos","events_url":"https://api.github.com/users/cyberbit/events{/privacy}","received_events_url":"https://api.github.com/users/cyberbit/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":7,"created_at":"2016-12-27T16:36:22Z","updated_at":"2017-01-09T18:53:54Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/CouscousPHP/Couscous/pulls/187","html_url":"https://github.com/CouscousPHP/Couscous/pull/187","diff_url":"https://github.com/CouscousPHP/Couscous/pull/187.diff","patch_url":"https://github.com/CouscousPHP/Couscous/pull/187.patch"},"body":"Implements #159.\r\n\r\nThis is a work in progress. I've only implemented it for the `preview` command so far. Tests are still to come."},"comment":{"url":"https://api.github.com/repos/CouscousPHP/Couscous/issues/comments/271371640","html_url":"https://github.com/CouscousPHP/Couscous/pull/187#issuecomment-271371640","issue_url":"https://api.github.com/repos/CouscousPHP/Couscous/issues/187","id":271371640,"user":{"login":"cyberbit","id":7350183,"avatar_url":"https://avatars.githubusercontent.com/u/7350183?v=3","gravatar_id":"","url":"https://api.github.com/users/cyberbit","html_url":"https://github.com/cyberbit","followers_url":"https://api.github.com/users/cyberbit/followers","following_url":"https://api.github.com/users/cyberbit/following{/other_user}","gists_url":"https://api.github.com/users/cyberbit/gists{/gist_id}","starred_url":"https://api.github.com/users/cyberbit/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cyberbit/subscriptions","organizations_url":"https://api.github.com/users/cyberbit/orgs","repos_url":"https://api.github.com/users/cyberbit/repos","events_url":"https://api.github.com/users/cyberbit/events{/privacy}","received_events_url":"https://api.github.com/users/cyberbit/received_events","type":"User","site_admin":false},"created_at":"2017-01-09T18:53:54Z","updated_at":"2017-01-09T18:53:54Z","body":"I was able to get it working by building it locally on my Win 7 machine. :man_shrugging: "}} | {
"id": 15985153,
"name": "CouscousPHP/Couscous",
"url": "https://api.github.com/repos/CouscousPHP/Couscous"
} | {
"id": 7350183,
"login": "cyberbit",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7350183?",
"url": "https://api.github.com/users/cyberbit"
} | {
"id": 9566021,
"login": "CouscousPHP",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9566021?",
"url": "https://api.github.com/orgs/CouscousPHP"
} | 2017-01-09T18:53:54 | 5124359485 | {"actor":{"display_login":"cyberbit"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/CyComponent/CyViewer/issues/1","repository_url":"https://api.github.com/repos/CyComponent/CyViewer","labels_url":"https://api.github.com/repos/CyComponent/CyViewer/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/CyComponent/CyViewer/issues/1/comments","events_url":"https://api.github.com/repos/CyComponent/CyViewer/issues/1/events","html_url":"https://github.com/CyComponent/CyViewer/issues/1","id":199946390,"number":1,"title":"not in npm registry","user":{"login":"Sigfried","id":1586931,"avatar_url":"https://avatars.githubusercontent.com/u/1586931?v=3","gravatar_id":"","url":"https://api.github.com/users/Sigfried","html_url":"https://github.com/Sigfried","followers_url":"https://api.github.com/users/Sigfried/followers","following_url":"https://api.github.com/users/Sigfried/following{/other_user}","gists_url":"https://api.github.com/users/Sigfried/gists{/gist_id}","starred_url":"https://api.github.com/users/Sigfried/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Sigfried/subscriptions","organizations_url":"https://api.github.com/users/Sigfried/orgs","repos_url":"https://api.github.com/users/Sigfried/repos","events_url":"https://api.github.com/users/Sigfried/events{/privacy}","received_events_url":"https://api.github.com/users/Sigfried/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-01-10T22:05:00Z","updated_at":"2017-01-11T11:50:44Z","closed_at":null,"body":"cy-viewer is listed as dependency in example's package json. so, running `npm i` from example directory gives:\r\n```\r\n\r\n⇒ npm i\r\nnpm ERR! Darwin 15.6.0\r\nnpm ERR! argv \"/usr/local/Cellar/node/6.7.0/bin/node\" \"/usr/local/bin/npm\" \"i\"\r\nnpm ERR! node v6.7.0\r\nnpm ERR! npm v3.10.8\r\nnpm ERR! code E404\r\n\r\nnpm ERR! 404 Registry returned 404 for GET on https://registry.npmjs.org/cy-viewer\r\nnpm ERR! 404\r\nnpm ERR! 404 'cy-viewer' is not in the npm registry.\r\nnpm ERR! 404 You should bug the author to publish it (or use the name yourself!)\r\nnpm ERR! 404 It was specified as a dependency of 'network-viewer-component-example\r\n```"},"comment":{"url":"https://api.github.com/repos/CyComponent/CyViewer/issues/comments/271849526","html_url":"https://github.com/CyComponent/CyViewer/issues/1#issuecomment-271849526","issue_url":"https://api.github.com/repos/CyComponent/CyViewer/issues/1","id":271849526,"user":{"login":"Sigfried","id":1586931,"avatar_url":"https://avatars.githubusercontent.com/u/1586931?v=3","gravatar_id":"","url":"https://api.github.com/users/Sigfried","html_url":"https://github.com/Sigfried","followers_url":"https://api.github.com/users/Sigfried/followers","following_url":"https://api.github.com/users/Sigfried/following{/other_user}","gists_url":"https://api.github.com/users/Sigfried/gists{/gist_id}","starred_url":"https://api.github.com/users/Sigfried/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Sigfried/subscriptions","organizations_url":"https://api.github.com/users/Sigfried/orgs","repos_url":"https://api.github.com/users/Sigfried/repos","events_url":"https://api.github.com/users/Sigfried/events{/privacy}","received_events_url":"https://api.github.com/users/Sigfried/received_events","type":"User","site_admin":false},"created_at":"2017-01-11T11:50:44Z","updated_at":"2017-01-11T11:50:44Z","body":"I went ahead and published it, but it still doesn't work."}} | {
"id": 70853420,
"name": "CyComponent/CyViewer",
"url": "https://api.github.com/repos/CyComponent/CyViewer"
} | {
"id": 1586931,
"login": "Sigfried",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1586931?",
"url": "https://api.github.com/users/Sigfried"
} | {
"id": 19196842,
"login": "CyComponent",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/19196842?",
"url": "https://api.github.com/orgs/CyComponent"
} | 2017-01-11T11:50:44 | 5135296722 | {"actor":{"display_login":"Sigfried"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/issues/674","repository_url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard","labels_url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/issues/674/labels{/name}","comments_url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/issues/674/comments","events_url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/issues/674/events","html_url":"https://github.com/DecipherNow/gm-fabric-dashboard/issues/674","id":268049833,"number":674,"title":"Long card titles overflow","user":{"login":"kaitmore","id":22768918,"avatar_url":"https://avatars3.githubusercontent.com/u/22768918?v=4","gravatar_id":"","url":"https://api.github.com/users/kaitmore","html_url":"https://github.com/kaitmore","followers_url":"https://api.github.com/users/kaitmore/followers","following_url":"https://api.github.com/users/kaitmore/following{/other_user}","gists_url":"https://api.github.com/users/kaitmore/gists{/gist_id}","starred_url":"https://api.github.com/users/kaitmore/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kaitmore/subscriptions","organizations_url":"https://api.github.com/users/kaitmore/orgs","repos_url":"https://api.github.com/users/kaitmore/repos","events_url":"https://api.github.com/users/kaitmore/events{/privacy}","received_events_url":"https://api.github.com/users/kaitmore/received_events","type":"User","site_admin":false},"labels":[{"id":567050197,"url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/labels/bug","name":"bug","color":"ee0701","default":true},{"id":665415444,"url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/labels/priority-1","name":"priority-1","color":"b60205","default":false}],"state":"open","locked":false,"assignee":{"login":"shanberg","id":98312,"avatar_url":"https://avatars0.githubusercontent.com/u/98312?v=4","gravatar_id":"","url":"https://api.github.com/users/shanberg","html_url":"https://github.com/shanberg","followers_url":"https://api.github.com/users/shanberg/followers","following_url":"https://api.github.com/users/shanberg/following{/other_user}","gists_url":"https://api.github.com/users/shanberg/gists{/gist_id}","starred_url":"https://api.github.com/users/shanberg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shanberg/subscriptions","organizations_url":"https://api.github.com/users/shanberg/orgs","repos_url":"https://api.github.com/users/shanberg/repos","events_url":"https://api.github.com/users/shanberg/events{/privacy}","received_events_url":"https://api.github.com/users/shanberg/received_events","type":"User","site_admin":false},"assignees":[{"login":"shanberg","id":98312,"avatar_url":"https://avatars0.githubusercontent.com/u/98312?v=4","gravatar_id":"","url":"https://api.github.com/users/shanberg","html_url":"https://github.com/shanberg","followers_url":"https://api.github.com/users/shanberg/followers","following_url":"https://api.github.com/users/shanberg/following{/other_user}","gists_url":"https://api.github.com/users/shanberg/gists{/gist_id}","starred_url":"https://api.github.com/users/shanberg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shanberg/subscriptions","organizations_url":"https://api.github.com/users/shanberg/orgs","repos_url":"https://api.github.com/users/shanberg/repos","events_url":"https://api.github.com/users/shanberg/events{/privacy}","received_events_url":"https://api.github.com/users/shanberg/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/milestones/17","html_url":"https://github.com/DecipherNow/gm-fabric-dashboard/milestone/17","labels_url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/milestones/17/labels","id":2765272,"number":17,"title":"M003 - 2017-10-30","description":"Milestone 3 - 2017-10-30","creator":{"login":"joshua-rutherford","id":5482080,"avatar_url":"https://avatars3.githubusercontent.com/u/5482080?v=4","gravatar_id":"","url":"https://api.github.com/users/joshua-rutherford","html_url":"https://github.com/joshua-rutherford","followers_url":"https://api.github.com/users/joshua-rutherford/followers","following_url":"https://api.github.com/users/joshua-rutherford/following{/other_user}","gists_url":"https://api.github.com/users/joshua-rutherford/gists{/gist_id}","starred_url":"https://api.github.com/users/joshua-rutherford/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/joshua-rutherford/subscriptions","organizations_url":"https://api.github.com/users/joshua-rutherford/orgs","repos_url":"https://api.github.com/users/joshua-rutherford/repos","events_url":"https://api.github.com/users/joshua-rutherford/events{/privacy}","received_events_url":"https://api.github.com/users/joshua-rutherford/received_events","type":"User","site_admin":false},"open_issues":23,"closed_issues":43,"state":"open","created_at":"2017-09-14T13:36:45Z","updated_at":"2017-10-24T18:44:34Z","due_on":"2017-10-29T07:00:00Z","closed_at":null},"comments":1,"created_at":"2017-10-24T14:16:14Z","updated_at":"2017-10-24T18:46:03Z","closed_at":null,"author_association":"COLLABORATOR","body":"When a card title is too long it needs to be truncated\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/issues/comments/339091991","html_url":"https://github.com/DecipherNow/gm-fabric-dashboard/issues/674#issuecomment-339091991","issue_url":"https://api.github.com/repos/DecipherNow/gm-fabric-dashboard/issues/674","id":339091991,"user":{"login":"spmcbride1201","id":8700322,"avatar_url":"https://avatars1.githubusercontent.com/u/8700322?v=4","gravatar_id":"","url":"https://api.github.com/users/spmcbride1201","html_url":"https://github.com/spmcbride1201","followers_url":"https://api.github.com/users/spmcbride1201/followers","following_url":"https://api.github.com/users/spmcbride1201/following{/other_user}","gists_url":"https://api.github.com/users/spmcbride1201/gists{/gist_id}","starred_url":"https://api.github.com/users/spmcbride1201/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/spmcbride1201/subscriptions","organizations_url":"https://api.github.com/users/spmcbride1201/orgs","repos_url":"https://api.github.com/users/spmcbride1201/repos","events_url":"https://api.github.com/users/spmcbride1201/events{/privacy}","received_events_url":"https://api.github.com/users/spmcbride1201/received_events","type":"User","site_admin":false},"created_at":"2017-10-24T18:46:03Z","updated_at":"2017-10-24T18:46:03Z","author_association":"COLLABORATOR","body":"@shanberg - That sounds like a good approach to me. 👍 "}} | {
"id": 85883218,
"name": "DecipherNow/gm-fabric-dashboard",
"url": "https://api.github.com/repos/DecipherNow/gm-fabric-dashboard"
} | {
"id": 8700322,
"login": "spmcbride1201",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8700322?",
"url": "https://api.github.com/users/spmcbride1201"
} | {
"id": 13125018,
"login": "DecipherNow",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/13125018?",
"url": "https://api.github.com/orgs/DecipherNow"
} | 2017-10-24T18:46:03 | 6759919201 | {"actor":{"display_login":"spmcbride1201"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/DestructHub/ProjectEuler/issues/129","repository_url":"https://api.github.com/repos/DestructHub/ProjectEuler","labels_url":"https://api.github.com/repos/DestructHub/ProjectEuler/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/DestructHub/ProjectEuler/issues/129/comments","events_url":"https://api.github.com/repos/DestructHub/ProjectEuler/issues/129/events","html_url":"https://github.com/DestructHub/ProjectEuler/pull/129","id":265606974,"number":129,"title":"[WIP] Fixes '/n' insertions in md5 input and fixes wrong hashes","user":{"login":"A-Hilaly","id":10897901,"avatar_url":"https://avatars2.githubusercontent.com/u/10897901?v=4","gravatar_id":"","url":"https://api.github.com/users/A-Hilaly","html_url":"https://github.com/A-Hilaly","followers_url":"https://api.github.com/users/A-Hilaly/followers","following_url":"https://api.github.com/users/A-Hilaly/following{/other_user}","gists_url":"https://api.github.com/users/A-Hilaly/gists{/gist_id}","starred_url":"https://api.github.com/users/A-Hilaly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/A-Hilaly/subscriptions","organizations_url":"https://api.github.com/users/A-Hilaly/orgs","repos_url":"https://api.github.com/users/A-Hilaly/repos","events_url":"https://api.github.com/users/A-Hilaly/events{/privacy}","received_events_url":"https://api.github.com/users/A-Hilaly/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-10-15T21:43:23Z","updated_at":"2017-10-16T08:44:38Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/DestructHub/ProjectEuler/pulls/129","html_url":"https://github.com/DestructHub/ProjectEuler/pull/129","diff_url":"https://github.com/DestructHub/ProjectEuler/pull/129.diff","patch_url":"https://github.com/DestructHub/ProjectEuler/pull/129.patch"},"body":"issue #128 \r\n\r\nSince md5 is one way hash I tried to fix the hashes (see `fix_hashes.py `) by runing a script solution for each problem , hashing it without out '\\n' ( thing I forgot at the start 🥇 ) then writing them on their own `.hash `file. it takes +/- as long as `python stats.py --build -s python` . But still some of the problems couldn't get new hashes cause of timeout, imports error ( prime library on some Python solution) . so in total 62 hash fixed and 15 still need to special treatment maybe upgrade same script or add them manually since its only 15.\r\nBy the way, fixing this issue I figured out that the hashes were hashed with `2*'\\n' `so hashes were for strings like` \"<answer>\\n\\n\"`\r\n\r\n\r\n```\r\n>>> _hash_answer('233168')\r\n'5e1f62e7ccb0b9a72102efff85671ac3'\r\n>>> _hash_answer('233168\\n')\r\n'e1edf9d1967ca96767dcc2b2d6df69f4'\r\n>>> _hash_answer('233168\\n\\n')\r\n'ae481ba878135ef3133842cb7fbbc97e'\r\n>>> _hash_answer('233168')\r\n```\r\n\r\nill will remove `fix_script.py `when PR is ready to ship\r\n\r\n\r\nfix_script out put \r\n```\r\n(venv) MBP-de-Amine:ProjectEuler ial-ah$ python3 fix_hashes.py\r\n=== > found solution for problem 1 in Python\r\n === > answer : 233168\r\n === > fixed .hash file for problem 1\r\n=== > found solution for problem 2 in Python\r\n === > answer : 4613732\r\n === > fixed .hash file for problem 2\r\n=== > found solution for problem 3 in Python\r\n === > answer : 6857\r\n === > fixed .hash file for problem 3\r\n=== > found solution for problem 4 in Python\r\n === > answer : 906609\r\n === > fixed .hash file for problem 4\r\n=== > found solution for problem 5 in Elixir\r\n === > answer : 232792560\r\n === > fixed .hash file for problem 5\r\n=== > found solution for problem 6 in Python\r\n === > answer : 25164150\r\n === > fixed .hash file for problem 6\r\n=== > found solution for problem 7 in Python\r\n === > answer : 104761\r\n === > fixed .hash file for problem 7\r\n=== > found solution for problem 8 in Python\r\n === > answer : 23514624000\r\n === > fixed .hash file for problem 8\r\n=== > found solution for problem 9 in Python\r\n === > answer : 31875000\r\n === > fixed .hash file for problem 9\r\n=== > found solution for problem 10 in Python\r\n === > answer : 142913828922\r\n === > fixed .hash file for problem 10\r\n=== > found solution for problem 11 in Python\r\n === > answer : 70600674\r\n === > fixed .hash file for problem 11\r\n=== > found solution for problem 12 in Python\r\n === > answer : 76576500\r\n === > fixed .hash file for problem 12\r\n=== > found solution for problem 13 in Python\r\n === > answer : 5537376230\r\n === > fixed .hash file for problem 13\r\n=== > found solution for problem 14 in Elixir\r\n === > answer : 837799\r\n === > fixed .hash file for problem 14\r\n=== > found solution for problem 15 in Python\r\n === > answer : 137846528820\r\n === > fixed .hash file for problem 15\r\n=== > found solution for problem 16 in Elixir\r\n === > answer : 1366\r\n === > fixed .hash file for problem 16\r\n=== > found solution for problem 17 in Python\r\n === > answer : 21124\r\n === > fixed .hash file for problem 17\r\n=== > found solution for problem 18 in Python\r\n === > answer : 1074\r\n === > fixed .hash file for problem 18\r\n=== > found solution for problem 19 in Python\r\n === > answer : 171\r\n === > fixed .hash file for problem 19\r\n=== > found solution for problem 20 in Python\r\n === > answer : 648\r\n === > fixed .hash file for problem 20\r\n=== > found solution for problem 21 in Python\r\n === > answer : 31626\r\n === > fixed .hash file for problem 21\r\n=== > found solution for problem 22 in Python\r\n === > answer : 871198282\r\n === > fixed .hash file for problem 22\r\n=== > found solution for problem 23 in Python\r\n === > answer : 4179871\r\n === > fixed .hash file for problem 23\r\n=== > found solution for problem 24 in Python\r\n === > answer : 2783915460\r\n === > fixed .hash file for problem 24\r\n=== > found solution for problem 25 in Python\r\n === > answer : 4782\r\n === > fixed .hash file for problem 25\r\n=== > found solution for problem 26 in Python\r\n === > answer : 983\r\n === > fixed .hash file for problem 26\r\n=== > found solution for problem 27 in Python\r\n === > answer : -59231\r\n === > fixed .hash file for problem 27\r\n=== > found solution for problem 28 in Python\r\n === > answer : 669171001\r\n === > fixed .hash file for problem 28\r\n=== > found solution for problem 29 in Python\r\n === > answer : 9183\r\n === > fixed .hash file for problem 29\r\n=== > found solution for problem 30 in Python\r\n === > answer : 443840\r\n === > fixed .hash file for problem 30\r\n=== > found solution for problem 31 in Python\r\n === > answer : 73682\r\n === > fixed .hash file for problem 31\r\n=== > found solution for problem 32 in Elixir\r\n === > answer : 45228\r\n === > fixed .hash file for problem 32\r\n=== > found solution for problem 33 in Python\r\n === > answer : 100\r\n === > fixed .hash file for problem 33\r\n=== > found solution for problem 34 in Elixir\r\n === > answer : 362880\r\n === > fixed .hash file for problem 34\r\n=== > found solution for problem 35 in Python\r\n === > answer : 55\r\n === > fixed .hash file for problem 35\r\n=== > found solution for problem 36 in Python\r\n === > answer : 872187\r\n === > fixed .hash file for problem 36\r\n=== > found solution for problem 37 in Python\r\n === > answer : 748317\r\n === > fixed .hash file for problem 37\r\n=== > found solution for problem 38 in Python\r\n === > answer : 932718654\r\n === > fixed .hash file for problem 38\r\n=== > found solution for problem 39 in Elixir\r\n === > answer : 840\r\n === > fixed .hash file for problem 39\r\n=== > found solution for problem 40 in Python\r\n === > answer : 210\r\n === > fixed .hash file for problem 40\r\n=== > found solution for problem 41 in CommonLisp\r\n === > Time run out \r\n=== > found solution for problem 42 in Python\r\n === > answer : 162\r\n === > fixed .hash file for problem 42\r\n=== > found solution for problem 43 in CommonLisp\r\n === > Time run out \r\n=== > found solution for problem 44 in Python\r\n === > answer : 5482660\r\n === > fixed .hash file for problem 44\r\n=== > found solution for problem 45 in Python\r\n === > answer : 1533776805\r\n === > fixed .hash file for problem 45\r\n=== > found solution for problem 46 in Python\r\n === > answer : 5777\r\n === > fixed .hash file for problem 46\r\n=== > found solution for problem 47 in Python\r\n === > answer : 134043\r\n === > fixed .hash file for problem 47\r\n=== > found solution for problem 48 in Python\r\n === > answer : 9110846700\r\n === > fixed .hash file for problem 48\r\n=== > found solution for problem 49 in Python\r\n === > answer : 296962999629\r\n === > fixed .hash file for problem 49\r\n === > found slow solution for problem 50 in Python\r\n === > SKIPPED NO ANSWER [ es : 1 ]\r\n=== > found solution for problem 52 in Ruby\r\n === > answer : 142857\r\n === > fixed .hash file for problem 52\r\n === > No solution found for problem 53\r\n=== > found solution for problem 55 in CommonLisp\r\n === > answer : 249\r\n === > fixed .hash file for problem 55\r\n=== > found solution for problem 56 in Ruby\r\n === > answer : 972\r\n === > fixed .hash file for problem 56\r\n === > No solution found for problem 57\r\n=== > found solution for problem 58 in Python\r\n === > answer : 26241\r\n === > fixed .hash file for problem 58\r\n === > No solution found for problem 59\r\n=== > found solution for problem 62 in Python\r\n === > answer : 127035954683\r\n === > fixed .hash file for problem 62\r\n=== > found solution for problem 63 in Python\r\n === > answer : 49\r\n === > fixed .hash file for problem 63\r\n=== > found solution for problem 67 in Python\r\n === > answer : 7273\r\n === > fixed .hash file for problem 67\r\n=== > found solution for problem 69 in Python\r\n === > answer : 510510\r\n === > fixed .hash file for problem 69\r\n=== > found solution for problem 70 in Python\r\n === > answer : 8319823\r\n === > fixed .hash file for problem 70\r\n=== > found solution for problem 76 in Elixir\r\n === > answer : 190569291\r\n === > fixed .hash file for problem 76\r\n=== > found solution for problem 80 in Python\r\n === > answer : 40886\r\n === > fixed .hash file for problem 80\r\n=== > found solution for problem 81 in Python\r\n === > answer : 427337\r\n === > fixed .hash file for problem 81\r\n=== > found solution for problem 89 in Elixir\r\n === > SKIPPED NO ANSWER [ es : 0 ]\r\n === > found slow solution for problem 92 in Python\r\n === > answer : 8581146\r\n === > fixed .hash file for problem 92\r\n=== > found solution for problem 97 in CommonLisp\r\n === > SKIPPED NO ANSWER [ es : 1 ]\r\n=== > found solution for problem 99 in Python\r\n === > answer : 709\r\n === > fixed .hash file for problem 99\r\n === > No solution found for problem 102\r\n === > found slow solution for problem 145 in Python\r\n === > Time run out \r\n === > No solution found for problem 206\r\n === > found slow solution for problem 357 in Python\r\n === > NO PITTY mode on for this problem\r\n === > Time run out \r\n === > found slow solution for problem 439 in Python\r\n === > NO PITTY mode on for this problem\r\n === > Time run out \r\n === > found slow solution for problem 473 in Python\r\n === > NO PITTY mode on for this problem\r\n === > Time run out \r\n=== > found solution for problem 500 in Python\r\n === > answer : 35407281\r\n === > fixed .hash file for problem 500\r\n === > found slow solution for problem 501 in Python\r\n === > NO PITTY mode on for this problem\r\n === > SKIPPED NO ANSWER [ es : 1 ]\r\n ======= > Total runtime : 395.04136395454407\r\n ======= > Total fixed hashes 62\r\n ======= > Unsolved hashes : \r\n - 41\r\n - 43\r\n - 50\r\n - 53\r\n - 57\r\n - 59\r\n - 89\r\n - 97\r\n - 102\r\n - 145\r\n - 206\r\n - 357\r\n - 439\r\n - 473\r\n - 501\r\n\r\n ======= > Timeout out solutions : \r\n - 41\r\n - 43\r\n - 145\r\n - 357\r\n - 439\r\n - 473\r\n\r\n ======= > No pitty solutions (too slow to test) : \r\n - 357\r\n - 439\r\n - 473\r\n - 501\r\n```"},"comment":{"url":"https://api.github.com/repos/DestructHub/ProjectEuler/issues/comments/336820368","html_url":"https://github.com/DestructHub/ProjectEuler/pull/129#issuecomment-336820368","issue_url":"https://api.github.com/repos/DestructHub/ProjectEuler/issues/129","id":336820368,"user":{"login":"A-Hilaly","id":10897901,"avatar_url":"https://avatars2.githubusercontent.com/u/10897901?v=4","gravatar_id":"","url":"https://api.github.com/users/A-Hilaly","html_url":"https://github.com/A-Hilaly","followers_url":"https://api.github.com/users/A-Hilaly/followers","following_url":"https://api.github.com/users/A-Hilaly/following{/other_user}","gists_url":"https://api.github.com/users/A-Hilaly/gists{/gist_id}","starred_url":"https://api.github.com/users/A-Hilaly/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/A-Hilaly/subscriptions","organizations_url":"https://api.github.com/users/A-Hilaly/orgs","repos_url":"https://api.github.com/users/A-Hilaly/repos","events_url":"https://api.github.com/users/A-Hilaly/events{/privacy}","received_events_url":"https://api.github.com/users/A-Hilaly/received_events","type":"User","site_admin":false},"created_at":"2017-10-16T08:44:38Z","updated_at":"2017-10-16T08:44:38Z","author_association":"CONTRIBUTOR","body":"@ryukinix @rafaelcn Totally agree on not merging this. It was late night when I opened this PR even if it was uncompleted. I wanted to get your opinions before trying to move to further steps. \r\n\r\n> We won't need that again after this. And if will, will be on the git history.\r\n\r\nClear ! \r\n\r\n> Would be nice get a list with the solutions that need update the hash...\r\n\r\n15 hach : [41, 43, 50, 53, 57, 59, 89, 97, 102, 145, 206, 357, 439, 473, 501]\r\nWe can use just manual solutions or a use something like this [list of answers](https://github.com/iKevinY/EulerPy/blob/master/EulerPy/data/solutions.txt) (to parse answer and rewriting hashes)"}} | {
"id": 36625177,
"name": "DestructHub/ProjectEuler",
"url": "https://api.github.com/repos/DestructHub/ProjectEuler"
} | {
"id": 10897901,
"login": "A-Hilaly",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10897901?",
"url": "https://api.github.com/users/A-Hilaly"
} | {
"id": 12687363,
"login": "DestructHub",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/12687363?",
"url": "https://api.github.com/orgs/DestructHub"
} | 2017-10-16T08:44:38 | 6720667503 | {"actor":{"display_login":"A-Hilaly"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/DreamTeamHR/TicTacToe/issues/25","repository_url":"https://api.github.com/repos/DreamTeamHR/TicTacToe","labels_url":"https://api.github.com/repos/DreamTeamHR/TicTacToe/issues/25/labels{/name}","comments_url":"https://api.github.com/repos/DreamTeamHR/TicTacToe/issues/25/comments","events_url":"https://api.github.com/repos/DreamTeamHR/TicTacToe/issues/25/events","html_url":"https://github.com/DreamTeamHR/TicTacToe/pull/25","id":269432357,"number":25,"title":"added more unit tests to board","user":{"login":"irisdogg","id":24224954,"avatar_url":"https://avatars0.githubusercontent.com/u/24224954?v=4","gravatar_id":"","url":"https://api.github.com/users/irisdogg","html_url":"https://github.com/irisdogg","followers_url":"https://api.github.com/users/irisdogg/followers","following_url":"https://api.github.com/users/irisdogg/following{/other_user}","gists_url":"https://api.github.com/users/irisdogg/gists{/gist_id}","starred_url":"https://api.github.com/users/irisdogg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/irisdogg/subscriptions","organizations_url":"https://api.github.com/users/irisdogg/orgs","repos_url":"https://api.github.com/users/irisdogg/repos","events_url":"https://api.github.com/users/irisdogg/events{/privacy}","received_events_url":"https://api.github.com/users/irisdogg/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-10-29T20:34:55Z","updated_at":"2017-10-29T20:40:56Z","closed_at":null,"author_association":"COLLABORATOR","pull_request":{"url":"https://api.github.com/repos/DreamTeamHR/TicTacToe/pulls/25","html_url":"https://github.com/DreamTeamHR/TicTacToe/pull/25","diff_url":"https://github.com/DreamTeamHR/TicTacToe/pull/25.diff","patch_url":"https://github.com/DreamTeamHR/TicTacToe/pull/25.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/DreamTeamHR/TicTacToe/issues/comments/340292527","html_url":"https://github.com/DreamTeamHR/TicTacToe/pull/25#issuecomment-340292527","issue_url":"https://api.github.com/repos/DreamTeamHR/TicTacToe/issues/25","id":340292527,"user":{"login":"codecov-io","id":8655789,"avatar_url":"https://avatars0.githubusercontent.com/u/8655789?v=4","gravatar_id":"","url":"https://api.github.com/users/codecov-io","html_url":"https://github.com/codecov-io","followers_url":"https://api.github.com/users/codecov-io/followers","following_url":"https://api.github.com/users/codecov-io/following{/other_user}","gists_url":"https://api.github.com/users/codecov-io/gists{/gist_id}","starred_url":"https://api.github.com/users/codecov-io/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/codecov-io/subscriptions","organizations_url":"https://api.github.com/users/codecov-io/orgs","repos_url":"https://api.github.com/users/codecov-io/repos","events_url":"https://api.github.com/users/codecov-io/events{/privacy}","received_events_url":"https://api.github.com/users/codecov-io/received_events","type":"User","site_admin":false},"created_at":"2017-10-29T20:40:56Z","updated_at":"2017-10-29T20:40:56Z","author_association":"NONE","body":"# [Codecov](https://codecov.io/gh/DreamTeamHR/TicTacToe/pull/25?src=pr&el=h1) Report\n> Merging [#25](https://codecov.io/gh/DreamTeamHR/TicTacToe/pull/25?src=pr&el=desc) into [master](https://codecov.io/gh/DreamTeamHR/TicTacToe/commit/0e7bad9c5c3129a71f62dba29884a19d4dc20445?src=pr&el=desc) will **increase** coverage by `2.8%`.\n> The diff coverage is `n/a`.\n\n[](https://codecov.io/gh/DreamTeamHR/TicTacToe/pull/25?src=pr&el=tree)\n\n```diff\n@@ Coverage Diff @@\n## master #25 +/- ##\n==========================================\n+ Coverage 54.49% 57.3% +2.8% \n- Complexity 44 46 +2 \n==========================================\n Files 4 4 \n Lines 178 178 \n Branches 34 34 \n==========================================\n+ Hits 97 102 +5 \n+ Misses 68 64 -4 \n+ Partials 13 12 -1\n```\n\n\n| [Impacted Files](https://codecov.io/gh/DreamTeamHR/TicTacToe/pull/25?src=pr&el=tree) | Coverage Δ | Complexity Δ | |\n|---|---|---|---|\n| [src/main/java/is/ru/tictactoe/Board.java](https://codecov.io/gh/DreamTeamHR/TicTacToe/pull/25?src=pr&el=tree#diff-c3JjL21haW4vamF2YS9pcy9ydS90aWN0YWN0b2UvQm9hcmQuamF2YQ==) | `77.52% <0%> (+5.61%)` | `31% <0%> (+2%)` | :arrow_up: |\n\n------\n\n[Continue to review full report at Codecov](https://codecov.io/gh/DreamTeamHR/TicTacToe/pull/25?src=pr&el=continue).\n> **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta)\n> `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data`\n> Powered by [Codecov](https://codecov.io/gh/DreamTeamHR/TicTacToe/pull/25?src=pr&el=footer). Last update [0e7bad9...fd8778e](https://codecov.io/gh/DreamTeamHR/TicTacToe/pull/25?src=pr&el=lastupdated). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).\n"}} | {
"id": 108436031,
"name": "DreamTeamHR/TicTacToe",
"url": "https://api.github.com/repos/DreamTeamHR/TicTacToe"
} | {
"id": 8655789,
"login": "codecov-io",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8655789?",
"url": "https://api.github.com/users/codecov-io"
} | {
"id": 32740889,
"login": "DreamTeamHR",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/32740889?",
"url": "https://api.github.com/orgs/DreamTeamHR"
} | 2017-10-29T20:40:56 | 6781056066 | {"actor":{"display_login":"codecov-io"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/EssentialsX/Essentials/issues/1730","repository_url":"https://api.github.com/repos/EssentialsX/Essentials","labels_url":"https://api.github.com/repos/EssentialsX/Essentials/issues/1730/labels{/name}","comments_url":"https://api.github.com/repos/EssentialsX/Essentials/issues/1730/comments","events_url":"https://api.github.com/repos/EssentialsX/Essentials/issues/1730/events","html_url":"https://github.com/EssentialsX/Essentials/issues/1730","id":284767959,"number":1730,"title":"Bug when /Essentials reload","user":{"login":"iskandarluqman","id":30927659,"avatar_url":"https://avatars1.githubusercontent.com/u/30927659?v=4","gravatar_id":"","url":"https://api.github.com/users/iskandarluqman","html_url":"https://github.com/iskandarluqman","followers_url":"https://api.github.com/users/iskandarluqman/followers","following_url":"https://api.github.com/users/iskandarluqman/following{/other_user}","gists_url":"https://api.github.com/users/iskandarluqman/gists{/gist_id}","starred_url":"https://api.github.com/users/iskandarluqman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iskandarluqman/subscriptions","organizations_url":"https://api.github.com/users/iskandarluqman/orgs","repos_url":"https://api.github.com/users/iskandarluqman/repos","events_url":"https://api.github.com/users/iskandarluqman/events{/privacy}","received_events_url":"https://api.github.com/users/iskandarluqman/received_events","type":"User","site_admin":false},"labels":[{"id":672607926,"url":"https://api.github.com/repos/EssentialsX/Essentials/labels/not%20enough%20info","name":"not enough info","color":"fbca04","default":false},{"id":415742880,"url":"https://api.github.com/repos/EssentialsX/Essentials/labels/problem","name":"problem","color":"d93f0b","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-12-27T17:51:33Z","updated_at":"2017-12-28T03:41:12Z","closed_at":null,"author_association":"NONE","body":"EssentialsX version : 2.0.1-b557 \r\n\r\nServer software : Spigot 1.12.2\r\n\r\nServer (logs/latest.log): [latest.log](https://github.com/EssentialsX/Essentials/files/1589570/latest.log)\r\n\r\n\r\nEssentialsX config (if applicable): \r\n\r\nSo the problem is when you reload Essentials with /essentials reload. The custom join message doesnt work/break. When a player join it show the default join message. It will work after a server restart but once you do /essentials reload, it show back the default join message. This only affect the custom join message, the custom leave does work fine although after /essentials reload. When they leave the server, it does show the custom leave message. Only the custom join message. Can you fix this bug? Thanks\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/EssentialsX/Essentials/issues/comments/354222915","html_url":"https://github.com/EssentialsX/Essentials/issues/1730#issuecomment-354222915","issue_url":"https://api.github.com/repos/EssentialsX/Essentials/issues/1730","id":354222915,"user":{"login":"iskandarluqman","id":30927659,"avatar_url":"https://avatars1.githubusercontent.com/u/30927659?v=4","gravatar_id":"","url":"https://api.github.com/users/iskandarluqman","html_url":"https://github.com/iskandarluqman","followers_url":"https://api.github.com/users/iskandarluqman/followers","following_url":"https://api.github.com/users/iskandarluqman/following{/other_user}","gists_url":"https://api.github.com/users/iskandarluqman/gists{/gist_id}","starred_url":"https://api.github.com/users/iskandarluqman/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iskandarluqman/subscriptions","organizations_url":"https://api.github.com/users/iskandarluqman/orgs","repos_url":"https://api.github.com/users/iskandarluqman/repos","events_url":"https://api.github.com/users/iskandarluqman/events{/privacy}","received_events_url":"https://api.github.com/users/iskandarluqman/received_events","type":"User","site_admin":false},"created_at":"2017-12-28T03:41:12Z","updated_at":"2017-12-28T03:41:12Z","author_association":"NONE","body":"https://pastebin.com/AwswcAUL\r\n"}} | {
"id": 33965866,
"name": "EssentialsX/Essentials",
"url": "https://api.github.com/repos/EssentialsX/Essentials"
} | {
"id": 30927659,
"login": "iskandarluqman",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/30927659?",
"url": "https://api.github.com/users/iskandarluqman"
} | {
"id": 34553309,
"login": "EssentialsX",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/34553309?",
"url": "https://api.github.com/orgs/EssentialsX"
} | 2017-12-28T03:41:13 | 7035832685 | {"actor":{"display_login":"iskandarluqman"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker/issues/231","repository_url":"https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker","labels_url":"https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker/issues/231/labels{/name}","comments_url":"https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker/issues/231/comments","events_url":"https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker/issues/231/events","html_url":"https://github.com/FireFly-WoW/FireFly-IssueTracker/issues/231","id":226862531,"number":231,"title":"[Quest][Northrend] The Ancient Armor of the Kvaldir (Flying to the Questlocation)","user":{"login":"Soockee","id":24325735,"avatar_url":"https://avatars3.githubusercontent.com/u/24325735?v=3","gravatar_id":"","url":"https://api.github.com/users/Soockee","html_url":"https://github.com/Soockee","followers_url":"https://api.github.com/users/Soockee/followers","following_url":"https://api.github.com/users/Soockee/following{/other_user}","gists_url":"https://api.github.com/users/Soockee/gists{/gist_id}","starred_url":"https://api.github.com/users/Soockee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Soockee/subscriptions","organizations_url":"https://api.github.com/users/Soockee/orgs","repos_url":"https://api.github.com/users/Soockee/repos","events_url":"https://api.github.com/users/Soockee/events{/privacy}","received_events_url":"https://api.github.com/users/Soockee/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-05-07T14:07:14Z","updated_at":"2017-05-07T14:53:52Z","closed_at":null,"body":"Description:\r\n\r\nThe NPC \"Alanya\" at Scalawag Point should gives you a flight to the Questlocation, but you get dismounted instantly.\r\n\r\nHow to:\r\n(Screenshots)\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nSame Situation for it's counterpart in the southeast:\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n![Uploading WoWScrnShot_050717_163121.jpg…]()\r\n\r\nhttp://wotlk.evowow.com/?quest=11567"},"comment":{"url":"https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker/issues/comments/299711457","html_url":"https://github.com/FireFly-WoW/FireFly-IssueTracker/issues/231#issuecomment-299711457","issue_url":"https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker/issues/231","id":299711457,"user":{"login":"TW1NKLET","id":14246378,"avatar_url":"https://avatars0.githubusercontent.com/u/14246378?v=3","gravatar_id":"","url":"https://api.github.com/users/TW1NKLET","html_url":"https://github.com/TW1NKLET","followers_url":"https://api.github.com/users/TW1NKLET/followers","following_url":"https://api.github.com/users/TW1NKLET/following{/other_user}","gists_url":"https://api.github.com/users/TW1NKLET/gists{/gist_id}","starred_url":"https://api.github.com/users/TW1NKLET/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TW1NKLET/subscriptions","organizations_url":"https://api.github.com/users/TW1NKLET/orgs","repos_url":"https://api.github.com/users/TW1NKLET/repos","events_url":"https://api.github.com/users/TW1NKLET/events{/privacy}","received_events_url":"https://api.github.com/users/TW1NKLET/received_events","type":"User","site_admin":false},"created_at":"2017-05-07T14:53:52Z","updated_at":"2017-05-07T14:53:52Z","body":"Fix:\r\n\r\n```SQL\r\nUPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (32682, 27932);\r\nDELETE FROM `smart_scripts` WHERE `entryorguid` IN (32682, 27932) AND `source_type`=0;\r\nUPDATE `creature_template` SET `InhabitType`=4, `speed_run`=2.5 WHERE `entry` IN (32682, 27932);\r\nINSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES\r\n(32682, 0, 0, 0, 27, 0, 100, 1, 0, 0, 0, 0, 53, 1, 32682, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,0,'Harry''s Bomber- On passeger rided - Start wp'),\r\n(27932, 0, 0, 0, 27, 0, 100, 1, 0, 0, 0, 0, 53, 1, 27932, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,0,'Harry''s Bomber- On passeger rided - Start wp'),\r\n(32682, 0, 1, 0, 58, 0, 100, 1, 9, 32682, 0, 0, 11, 50630, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,0,'Harry''s Bomber- On waypoint ended - Eject passengers'),\r\n(27932, 0, 1, 0, 58, 0, 100, 1, 9, 27932, 0, 0, 11, 50630, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,0,'Harry''s Bomber- On passeger ended - Eject passengers');\r\n\r\nUPDATE `smart_scripts` SET `action_type`=85 WHERE `entryorguid`=28277 AND `source_type`=0 AND `id`=0;\r\nDELETE FROM `waypoints` WHERE `entry` IN (32682, 27932);\r\nINSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES\r\n(32682, 1, 61.83957, -6228.992, 19.07242, 'Harry''s Bomber'),\r\n(32682, 2, -64.6518, -5908.95, 29.8502, 'Harry''s Bomber'),\r\n(32682, 3, -158.0859, -5631.193, 29.8502, 'Harry''s Bomber'),\r\n(32682, 4, -436.5865, -5223.862, 32.1002, 'Harry''s Bomber'),\r\n(32682, 5, -412.989, -5012.779, 45.7391, 'Harry''s Bomber'),\r\n(32682, 6, -75.09814, -4341.288, 64.29379, 'Harry''s Bomber'),\r\n(32682, 7, -51.86116, -4023.003, 70.12712, 'Harry''s Bomber'),\r\n(32682, 8, -136.1673, -3716.832, 59.96046, 'Harry''s Bomber'),\r\n(32682, 9, -170.8945, -3578.378, 4.988236, 'Harry''s Bomber'),\r\n(27932, 1, -136.1673, -3716.832, 59.96046, 'Harry''s Bomber'),\r\n(27932, 2, -51.86116, -4023.003, 70.12712, 'Harry''s Bomber'),\r\n(27932, 3, -75.09814, -4341.288, 64.29379, 'Harry''s Bomber'),\r\n(27932, 4, -412.989, -5012.779, 45.7391, 'Harry''s Bomber'),\r\n(27932, 5, -436.5865, -5223.862, 32.1002, 'Harry''s Bomber'),\r\n(27932, 6, -158.0859, -5631.193, 29.8502, 'Harry''s Bomber'),\r\n(27932, 7, -64.6518, -5908.95, 29.8502, 'Harry''s Bomber'),\r\n(27932, 8, 61.83957, -6228.992, 19.07242, 'Harry''s Bomber'),\r\n(27932, 9, 89.63259, -6287.430, -0.739605, 'Harry''s Bomber');\r\n\r\nDELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=10218;\r\nINSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`Scriptname`,`Comment`) VALUES\r\n(15,10218,0,0,0,23,0,495,0,0,0,0 ,'' , 'Harry''s Bomber - Show gossip option if the npc is in the area 495'),\r\n(15,10218,0,0,0,9,0,11567,0,0,0,0 ,'' , 'Harry''s Bomber - Show gossip option if player has taken quest 11567'),\r\n(15,10218,0,0,1,28,0,11567,0,0,0,0 ,'' , 'Harry''s Bomber - Show gossip option if player has quest 11567 completed');\r\n```"}} | {
"id": 87844111,
"name": "FireFly-WoW/FireFly-IssueTracker",
"url": "https://api.github.com/repos/FireFly-WoW/FireFly-IssueTracker"
} | {
"id": 14246378,
"login": "TW1NKLET",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/14246378?",
"url": "https://api.github.com/users/TW1NKLET"
} | {
"id": 26864221,
"login": "FireFly-WoW",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/26864221?",
"url": "https://api.github.com/orgs/FireFly-WoW"
} | 2017-05-07T14:53:52 | 5824651349 | {"actor":{"display_login":"TW1NKLET"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/FortAwesome/Font-Awesome/issues/3609","repository_url":"https://api.github.com/repos/FortAwesome/Font-Awesome","labels_url":"https://api.github.com/repos/FortAwesome/Font-Awesome/issues/3609/labels{/name}","comments_url":"https://api.github.com/repos/FortAwesome/Font-Awesome/issues/3609/comments","events_url":"https://api.github.com/repos/FortAwesome/Font-Awesome/issues/3609/events","html_url":"https://github.com/FortAwesome/Font-Awesome/issues/3609","id":34785465,"number":3609,"title":"Icon request: fa-calendar-day, fa-calendar-week, fa-calendar-month","user":{"login":"Anubiso","id":7769367,"avatar_url":"https://avatars0.githubusercontent.com/u/7769367?v=4","gravatar_id":"","url":"https://api.github.com/users/Anubiso","html_url":"https://github.com/Anubiso","followers_url":"https://api.github.com/users/Anubiso/followers","following_url":"https://api.github.com/users/Anubiso/following{/other_user}","gists_url":"https://api.github.com/users/Anubiso/gists{/gist_id}","starred_url":"https://api.github.com/users/Anubiso/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Anubiso/subscriptions","organizations_url":"https://api.github.com/users/Anubiso/orgs","repos_url":"https://api.github.com/users/Anubiso/repos","events_url":"https://api.github.com/users/Anubiso/events{/privacy}","received_events_url":"https://api.github.com/users/Anubiso/received_events","type":"User","site_admin":false},"labels":[{"id":916959,"url":"https://api.github.com/repos/FortAwesome/Font-Awesome/labels/new%20icon","name":"new icon","color":"02e10c","default":false},{"id":40518612,"url":"https://api.github.com/repos/FortAwesome/Font-Awesome/labels/web%20application%20icons","name":"web application icons","color":"eb6420","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":54,"created_at":"2014-06-02T15:48:31Z","updated_at":"2017-08-31T04:19:20Z","closed_at":null,"author_association":"NONE","body":"Different Calendar-Modes would be great!\nLike a symbol for a day-mode, a symbol for week-mode and a symbol for month-mode (current calender icon)\n\nSome illustrations:\n\n\nThis is how outlooks handles it:\n\n\nAnother, more outlookish-approach:\n\n"},"comment":{"url":"https://api.github.com/repos/FortAwesome/Font-Awesome/issues/comments/326185370","html_url":"https://github.com/FortAwesome/Font-Awesome/issues/3609#issuecomment-326185370","issue_url":"https://api.github.com/repos/FortAwesome/Font-Awesome/issues/3609","id":326185370,"user":{"login":"Ricky-G","id":14212345,"avatar_url":"https://avatars1.githubusercontent.com/u/14212345?v=4","gravatar_id":"","url":"https://api.github.com/users/Ricky-G","html_url":"https://github.com/Ricky-G","followers_url":"https://api.github.com/users/Ricky-G/followers","following_url":"https://api.github.com/users/Ricky-G/following{/other_user}","gists_url":"https://api.github.com/users/Ricky-G/gists{/gist_id}","starred_url":"https://api.github.com/users/Ricky-G/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ricky-G/subscriptions","organizations_url":"https://api.github.com/users/Ricky-G/orgs","repos_url":"https://api.github.com/users/Ricky-G/repos","events_url":"https://api.github.com/users/Ricky-G/events{/privacy}","received_events_url":"https://api.github.com/users/Ricky-G/received_events","type":"User","site_admin":false},"created_at":"2017-08-31T04:19:20Z","updated_at":"2017-08-31T04:19:20Z","author_association":"NONE","body":"+1"}} | {
"id": 3470471,
"name": "FortAwesome/Font-Awesome",
"url": "https://api.github.com/repos/FortAwesome/Font-Awesome"
} | {
"id": 14212345,
"login": "Ricky-G",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/14212345?",
"url": "https://api.github.com/users/Ricky-G"
} | {
"id": 1505683,
"login": "FortAwesome",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1505683?",
"url": "https://api.github.com/orgs/FortAwesome"
} | 2017-08-31T04:19:22 | 6533158724 | {"actor":{"display_login":"Ricky-G"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/FundersClub/eng-ops/issues/97","repository_url":"https://api.github.com/repos/FundersClub/eng-ops","labels_url":"https://api.github.com/repos/FundersClub/eng-ops/issues/97/labels{/name}","comments_url":"https://api.github.com/repos/FundersClub/eng-ops/issues/97/comments","events_url":"https://api.github.com/repos/FundersClub/eng-ops/issues/97/events","html_url":"https://github.com/FundersClub/eng-ops/pull/97","id":206775072,"number":97,"title":"Update djangorestframework to 3.5.4","user":{"login":"pyup-bot","id":16239342,"avatar_url":"https://avatars3.githubusercontent.com/u/16239342?v=3","gravatar_id":"","url":"https://api.github.com/users/pyup-bot","html_url":"https://github.com/pyup-bot","followers_url":"https://api.github.com/users/pyup-bot/followers","following_url":"https://api.github.com/users/pyup-bot/following{/other_user}","gists_url":"https://api.github.com/users/pyup-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/pyup-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pyup-bot/subscriptions","organizations_url":"https://api.github.com/users/pyup-bot/orgs","repos_url":"https://api.github.com/users/pyup-bot/repos","events_url":"https://api.github.com/users/pyup-bot/events{/privacy}","received_events_url":"https://api.github.com/users/pyup-bot/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-02-10T11:38:36Z","updated_at":"2017-03-09T15:22:18Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/FundersClub/eng-ops/pulls/97","html_url":"https://github.com/FundersClub/eng-ops/pull/97","diff_url":"https://github.com/FundersClub/eng-ops/pull/97.diff","patch_url":"https://github.com/FundersClub/eng-ops/pull/97.patch"},"body":"\nThere's a new version of [djangorestframework](https://pypi.python.org/pypi/djangorestframework) available.\nYou are currently using **3.5.3**. I have updated it to **3.5.4**\n\n\n\nThese links might come in handy: <a href=\"http://pypi.python.org/pypi/djangorestframework\">PyPI</a> | <a href=\"https://pyup.io/changelogs/djangorestframework/\">Changelog</a> | <a href=\"http://www.django-rest-framework.org\">Homepage</a> \n\n\n*I couldn't find a changelog for this release. Do you know where I can find one? [Tell me!](https://github.com/pyupio/changelogs/issues/new)*\n\n\n*Got merge conflicts? Close this PR and delete the branch. I'll create a new PR for you.*\n\nHappy merging! 🤖\n"},"comment":{"url":"https://api.github.com/repos/FundersClub/eng-ops/issues/comments/285381265","html_url":"https://github.com/FundersClub/eng-ops/pull/97#issuecomment-285381265","issue_url":"https://api.github.com/repos/FundersClub/eng-ops/issues/97","id":285381265,"user":{"login":"pyup-bot","id":16239342,"avatar_url":"https://avatars3.githubusercontent.com/u/16239342?v=3","gravatar_id":"","url":"https://api.github.com/users/pyup-bot","html_url":"https://github.com/pyup-bot","followers_url":"https://api.github.com/users/pyup-bot/followers","following_url":"https://api.github.com/users/pyup-bot/following{/other_user}","gists_url":"https://api.github.com/users/pyup-bot/gists{/gist_id}","starred_url":"https://api.github.com/users/pyup-bot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pyup-bot/subscriptions","organizations_url":"https://api.github.com/users/pyup-bot/orgs","repos_url":"https://api.github.com/users/pyup-bot/repos","events_url":"https://api.github.com/users/pyup-bot/events{/privacy}","received_events_url":"https://api.github.com/users/pyup-bot/received_events","type":"User","site_admin":false},"created_at":"2017-03-09T15:22:18Z","updated_at":"2017-03-09T15:22:18Z","body":"Closing this in favor of #108"}} | {
"id": 61750527,
"name": "FundersClub/eng-ops",
"url": "https://api.github.com/repos/FundersClub/eng-ops"
} | {
"id": 16239342,
"login": "pyup-bot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16239342?",
"url": "https://api.github.com/users/pyup-bot"
} | {
"id": 2768097,
"login": "FundersClub",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2768097?",
"url": "https://api.github.com/orgs/FundersClub"
} | 2017-03-09T15:22:18 | 5463639012 | {"actor":{"display_login":"pyup-bot"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/GardiansLab/tempo/issues/7","repository_url":"https://api.github.com/repos/GardiansLab/tempo","labels_url":"https://api.github.com/repos/GardiansLab/tempo/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/GardiansLab/tempo/issues/7/comments","events_url":"https://api.github.com/repos/GardiansLab/tempo/issues/7/events","html_url":"https://github.com/GardiansLab/tempo/issues/7","id":218512859,"number":7,"title":"Scoreboard Functionality","user":{"login":"aa-ahmed-aa","id":9592546,"avatar_url":"https://avatars2.githubusercontent.com/u/9592546?v=3","gravatar_id":"","url":"https://api.github.com/users/aa-ahmed-aa","html_url":"https://github.com/aa-ahmed-aa","followers_url":"https://api.github.com/users/aa-ahmed-aa/followers","following_url":"https://api.github.com/users/aa-ahmed-aa/following{/other_user}","gists_url":"https://api.github.com/users/aa-ahmed-aa/gists{/gist_id}","starred_url":"https://api.github.com/users/aa-ahmed-aa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aa-ahmed-aa/subscriptions","organizations_url":"https://api.github.com/users/aa-ahmed-aa/orgs","repos_url":"https://api.github.com/users/aa-ahmed-aa/repos","events_url":"https://api.github.com/users/aa-ahmed-aa/events{/privacy}","received_events_url":"https://api.github.com/users/aa-ahmed-aa/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-31T14:07:12Z","updated_at":"2017-03-31T14:50:44Z","closed_at":null,"body":null},"comment":{"url":"https://api.github.com/repos/GardiansLab/tempo/issues/comments/290733587","html_url":"https://github.com/GardiansLab/tempo/issues/7#issuecomment-290733587","issue_url":"https://api.github.com/repos/GardiansLab/tempo/issues/7","id":290733587,"user":{"login":"aa-ahmed-aa","id":9592546,"avatar_url":"https://avatars2.githubusercontent.com/u/9592546?v=3","gravatar_id":"","url":"https://api.github.com/users/aa-ahmed-aa","html_url":"https://github.com/aa-ahmed-aa","followers_url":"https://api.github.com/users/aa-ahmed-aa/followers","following_url":"https://api.github.com/users/aa-ahmed-aa/following{/other_user}","gists_url":"https://api.github.com/users/aa-ahmed-aa/gists{/gist_id}","starred_url":"https://api.github.com/users/aa-ahmed-aa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/aa-ahmed-aa/subscriptions","organizations_url":"https://api.github.com/users/aa-ahmed-aa/orgs","repos_url":"https://api.github.com/users/aa-ahmed-aa/repos","events_url":"https://api.github.com/users/aa-ahmed-aa/events{/privacy}","received_events_url":"https://api.github.com/users/aa-ahmed-aa/received_events","type":"User","site_admin":false},"created_at":"2017-03-31T14:50:44Z","updated_at":"2017-03-31T14:50:44Z","body":"scoreboard will acts like this not like this :D \n-every user-submission will have two important columns that we will use here the the problem rank that you have made the submission for and the submission time (H:M:S) \n-we will subtract the submission time from the CONTEST_START_TIME (let's call it diff time).\n-we convert the diff time (H:M:S) to single number of minutes that the user used to solve this problem For Example :\nCONTEST_START_TIME = 13:20:00\nSubmittionTime = 13:30:01\nthe user takes 10 minutes to solve the problem then the diff time is 10 \n-we will subtract the diff time from the problem rank for the above example if the rank of the problem is 500 then the rank for this problem is \nPROBLEM_RANK = 500-10 =490\n-then we keep doing this for all the accepted problems of this user untill we get total rank for this user"}} | {
"id": 86518197,
"name": "GardiansLab/tempo",
"url": "https://api.github.com/repos/GardiansLab/tempo"
} | {
"id": 9592546,
"login": "aa-ahmed-aa",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9592546?",
"url": "https://api.github.com/users/aa-ahmed-aa"
} | {
"id": 22135222,
"login": "GardiansLab",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/22135222?",
"url": "https://api.github.com/orgs/GardiansLab"
} | 2017-03-31T14:50:44 | 5603683886 | {"actor":{"display_login":"aa-ahmed-aa"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/GeoDaCenter/geoda/issues/971","repository_url":"https://api.github.com/repos/GeoDaCenter/geoda","labels_url":"https://api.github.com/repos/GeoDaCenter/geoda/issues/971/labels{/name}","comments_url":"https://api.github.com/repos/GeoDaCenter/geoda/issues/971/comments","events_url":"https://api.github.com/repos/GeoDaCenter/geoda/issues/971/events","html_url":"https://github.com/GeoDaCenter/geoda/issues/971","id":244126852,"number":971,"title":"confusion about select cores and neighbors in local cluster maps","user":{"login":"lanselin","id":4008351,"avatar_url":"https://avatars2.githubusercontent.com/u/4008351?v=4","gravatar_id":"","url":"https://api.github.com/users/lanselin","html_url":"https://github.com/lanselin","followers_url":"https://api.github.com/users/lanselin/followers","following_url":"https://api.github.com/users/lanselin/following{/other_user}","gists_url":"https://api.github.com/users/lanselin/gists{/gist_id}","starred_url":"https://api.github.com/users/lanselin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lanselin/subscriptions","organizations_url":"https://api.github.com/users/lanselin/orgs","repos_url":"https://api.github.com/users/lanselin/repos","events_url":"https://api.github.com/users/lanselin/events{/privacy}","received_events_url":"https://api.github.com/users/lanselin/received_events","type":"User","site_admin":false},"labels":[{"id":450181201,"url":"https://api.github.com/repos/GeoDaCenter/geoda/labels/design","name":"design","color":"fbca04","default":false},{"id":244726647,"url":"https://api.github.com/repos/GeoDaCenter/geoda/labels/Milestone-Release1.8","name":"Milestone-Release1.8","color":"ededed","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-07-19T18:08:57Z","updated_at":"2017-10-16T00:01:47Z","closed_at":null,"author_association":"COLLABORATOR","body":"The option \"select cores and neighbors\" seems to only work when some of the\r\ncores have been selected. It doesn't seem to do anything with the default cluster\r\nmap. There seems to be some duplication with the option Select All > Cores and \r\nNeighbors. Should the option be called \"cores and neighbors of selection\" instead?"},"comment":{"url":"https://api.github.com/repos/GeoDaCenter/geoda/issues/comments/336751795","html_url":"https://github.com/GeoDaCenter/geoda/issues/971#issuecomment-336751795","issue_url":"https://api.github.com/repos/GeoDaCenter/geoda/issues/971","id":336751795,"user":{"login":"lanselin","id":4008351,"avatar_url":"https://avatars2.githubusercontent.com/u/4008351?v=4","gravatar_id":"","url":"https://api.github.com/users/lanselin","html_url":"https://github.com/lanselin","followers_url":"https://api.github.com/users/lanselin/followers","following_url":"https://api.github.com/users/lanselin/following{/other_user}","gists_url":"https://api.github.com/users/lanselin/gists{/gist_id}","starred_url":"https://api.github.com/users/lanselin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lanselin/subscriptions","organizations_url":"https://api.github.com/users/lanselin/orgs","repos_url":"https://api.github.com/users/lanselin/repos","events_url":"https://api.github.com/users/lanselin/events{/privacy}","received_events_url":"https://api.github.com/users/lanselin/received_events","type":"User","site_admin":false},"created_at":"2017-10-16T00:01:47Z","updated_at":"2017-10-16T00:01:47Z","author_association":"COLLABORATOR","body":"I verified that \"Cores and neighbors of selection\" (to be renamed) works whenever a selection has been made. Without a selection, it does nothing, that's why we should remove the reference to cores.\r\n\r\nAlso, I may have suggested this elsewhere, there is no reason not to add this option to any thematic map, since it pertains to a \"selection\" and its neighbors, not to the cores of the clusters."}} | {
"id": 40282352,
"name": "GeoDaCenter/geoda",
"url": "https://api.github.com/repos/GeoDaCenter/geoda"
} | {
"id": 4008351,
"login": "lanselin",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4008351?",
"url": "https://api.github.com/users/lanselin"
} | {
"id": 16259639,
"login": "GeoDaCenter",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16259639?",
"url": "https://api.github.com/orgs/GeoDaCenter"
} | 2017-10-16T00:01:47 | 6719413077 | {"actor":{"display_login":"lanselin"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/MakingSense/aspnet-documentation-middleware/issues/12","repository_url":"https://api.github.com/repos/MakingSense/aspnet-documentation-middleware","labels_url":"https://api.github.com/repos/MakingSense/aspnet-documentation-middleware/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/MakingSense/aspnet-documentation-middleware/issues/12/comments","events_url":"https://api.github.com/repos/MakingSense/aspnet-documentation-middleware/issues/12/events","html_url":"https://github.com/MakingSense/aspnet-documentation-middleware/pull/12","id":277459550,"number":12,"title":"[DR-1444] Adding multilanguage support","user":{"login":"alegarciamina","id":25298072,"avatar_url":"https://avatars2.githubusercontent.com/u/25298072?v=4","gravatar_id":"","url":"https://api.github.com/users/alegarciamina","html_url":"https://github.com/alegarciamina","followers_url":"https://api.github.com/users/alegarciamina/followers","following_url":"https://api.github.com/users/alegarciamina/following{/other_user}","gists_url":"https://api.github.com/users/alegarciamina/gists{/gist_id}","starred_url":"https://api.github.com/users/alegarciamina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alegarciamina/subscriptions","organizations_url":"https://api.github.com/users/alegarciamina/orgs","repos_url":"https://api.github.com/users/alegarciamina/repos","events_url":"https://api.github.com/users/alegarciamina/events{/privacy}","received_events_url":"https://api.github.com/users/alegarciamina/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-11-28T16:56:21Z","updated_at":"2017-11-28T19:34:14Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/MakingSense/aspnet-documentation-middleware/pulls/12","html_url":"https://github.com/MakingSense/aspnet-documentation-middleware/pull/12","diff_url":"https://github.com/MakingSense/aspnet-documentation-middleware/pull/12.diff","patch_url":"https://github.com/MakingSense/aspnet-documentation-middleware/pull/12.patch"},"body":"**Changes**\r\n- Allow defining default language property\r\n- Allow specific language urls\r\n\r\n**Pending**\r\n- Allow layout translation\r\n"},"comment":{"url":"https://api.github.com/repos/MakingSense/aspnet-documentation-middleware/issues/comments/347638274","html_url":"https://github.com/MakingSense/aspnet-documentation-middleware/pull/12#issuecomment-347638274","issue_url":"https://api.github.com/repos/MakingSense/aspnet-documentation-middleware/issues/12","id":347638274,"user":{"login":"andresmoschini","id":1157864,"avatar_url":"https://avatars1.githubusercontent.com/u/1157864?v=4","gravatar_id":"","url":"https://api.github.com/users/andresmoschini","html_url":"https://github.com/andresmoschini","followers_url":"https://api.github.com/users/andresmoschini/followers","following_url":"https://api.github.com/users/andresmoschini/following{/other_user}","gists_url":"https://api.github.com/users/andresmoschini/gists{/gist_id}","starred_url":"https://api.github.com/users/andresmoschini/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andresmoschini/subscriptions","organizations_url":"https://api.github.com/users/andresmoschini/orgs","repos_url":"https://api.github.com/users/andresmoschini/repos","events_url":"https://api.github.com/users/andresmoschini/events{/privacy}","received_events_url":"https://api.github.com/users/andresmoschini/received_events","type":"User","site_admin":false},"created_at":"2017-11-28T19:34:14Z","updated_at":"2017-11-28T19:34:14Z","author_association":"MEMBER","body":"Great work! it looks much simpler than before, please try to squash commits to avoid merge commits with unuseful information."}} | {
"id": 43811014,
"name": "MakingSense/aspnet-documentation-middleware",
"url": "https://api.github.com/repos/MakingSense/aspnet-documentation-middleware"
} | {
"id": 1157864,
"login": "andresmoschini",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1157864?",
"url": "https://api.github.com/users/andresmoschini"
} | {
"id": 2685575,
"login": "MakingSense",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2685575?",
"url": "https://api.github.com/orgs/MakingSense"
} | 2017-11-28T19:34:14 | 6914826924 | {"actor":{"display_login":"andresmoschini"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/MyCATApache/Mycat-Server/issues/1578","repository_url":"https://api.github.com/repos/MyCATApache/Mycat-Server","labels_url":"https://api.github.com/repos/MyCATApache/Mycat-Server/issues/1578/labels{/name}","comments_url":"https://api.github.com/repos/MyCATApache/Mycat-Server/issues/1578/comments","events_url":"https://api.github.com/repos/MyCATApache/Mycat-Server/issues/1578/events","html_url":"https://github.com/MyCATApache/Mycat-Server/issues/1578","id":243617067,"number":1578,"title":"Mycat-Server日志记录插入操作问题","user":{"login":"dandan32","id":13331376,"avatar_url":"https://avatars3.githubusercontent.com/u/13331376?v=4","gravatar_id":"","url":"https://api.github.com/users/dandan32","html_url":"https://github.com/dandan32","followers_url":"https://api.github.com/users/dandan32/followers","following_url":"https://api.github.com/users/dandan32/following{/other_user}","gists_url":"https://api.github.com/users/dandan32/gists{/gist_id}","starred_url":"https://api.github.com/users/dandan32/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dandan32/subscriptions","organizations_url":"https://api.github.com/users/dandan32/orgs","repos_url":"https://api.github.com/users/dandan32/repos","events_url":"https://api.github.com/users/dandan32/events{/privacy}","received_events_url":"https://api.github.com/users/dandan32/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-07-18T06:55:07Z","updated_at":"2017-07-18T08:35:14Z","closed_at":null,"body":"目前使用Mycat-Server1.5做读写分离的测试,公司项目也在Mycat-Server1.5上初步能运行。\r\n\r\n但是将log4j.xml中的level调为debug后,打算做sql执行语句的记录分析。发现除了连接相关的日志,select语句日志,set语句日志之外。(insert/update/delete)这三类操作的日志一条都没有,是不是Mycat-Server1.5就不记录这部分的操作呢?"},"comment":{"url":"https://api.github.com/repos/MyCATApache/Mycat-Server/issues/comments/315996537","html_url":"https://github.com/MyCATApache/Mycat-Server/issues/1578#issuecomment-315996537","issue_url":"https://api.github.com/repos/MyCATApache/Mycat-Server/issues/1578","id":315996537,"user":{"login":"classfellow","id":7146748,"avatar_url":"https://avatars0.githubusercontent.com/u/7146748?v=4","gravatar_id":"","url":"https://api.github.com/users/classfellow","html_url":"https://github.com/classfellow","followers_url":"https://api.github.com/users/classfellow/followers","following_url":"https://api.github.com/users/classfellow/following{/other_user}","gists_url":"https://api.github.com/users/classfellow/gists{/gist_id}","starred_url":"https://api.github.com/users/classfellow/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/classfellow/subscriptions","organizations_url":"https://api.github.com/users/classfellow/orgs","repos_url":"https://api.github.com/users/classfellow/repos","events_url":"https://api.github.com/users/classfellow/events{/privacy}","received_events_url":"https://api.github.com/users/classfellow/received_events","type":"User","site_admin":false},"created_at":"2017-07-18T08:35:14Z","updated_at":"2017-07-18T08:35:14Z","body":"最近也在考虑用,期待有人回复"}} | {
"id": 27519800,
"name": "MyCATApache/Mycat-Server",
"url": "https://api.github.com/repos/MyCATApache/Mycat-Server"
} | {
"id": 7146748,
"login": "classfellow",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7146748?",
"url": "https://api.github.com/users/classfellow"
} | {
"id": 8221116,
"login": "MyCATApache",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8221116?",
"url": "https://api.github.com/orgs/MyCATApache"
} | 2017-07-18T08:35:14 | 6276027658 | {"actor":{"display_login":"classfellow"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Ninja-Squad/globe42/issues/140","repository_url":"https://api.github.com/repos/Ninja-Squad/globe42","labels_url":"https://api.github.com/repos/Ninja-Squad/globe42/issues/140/labels{/name}","comments_url":"https://api.github.com/repos/Ninja-Squad/globe42/issues/140/comments","events_url":"https://api.github.com/repos/Ninja-Squad/globe42/issues/140/events","html_url":"https://github.com/Ninja-Squad/globe42/pull/140","id":284457922,"number":140,"title":"fix: make tests pass on all browsers (chrome, firefox, safari)","user":{"login":"jnizet","id":1608223,"avatar_url":"https://avatars3.githubusercontent.com/u/1608223?v=4","gravatar_id":"","url":"https://api.github.com/users/jnizet","html_url":"https://github.com/jnizet","followers_url":"https://api.github.com/users/jnizet/followers","following_url":"https://api.github.com/users/jnizet/following{/other_user}","gists_url":"https://api.github.com/users/jnizet/gists{/gist_id}","starred_url":"https://api.github.com/users/jnizet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jnizet/subscriptions","organizations_url":"https://api.github.com/users/jnizet/orgs","repos_url":"https://api.github.com/users/jnizet/repos","events_url":"https://api.github.com/users/jnizet/events{/privacy}","received_events_url":"https://api.github.com/users/jnizet/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-12-25T16:17:53Z","updated_at":"2017-12-26T00:07:21Z","closed_at":null,"author_association":"OWNER","pull_request":{"url":"https://api.github.com/repos/Ninja-Squad/globe42/pulls/140","html_url":"https://github.com/Ninja-Squad/globe42/pull/140","diff_url":"https://github.com/Ninja-Squad/globe42/pull/140.diff","patch_url":"https://github.com/Ninja-Squad/globe42/pull/140.patch"},"body":"Surprisingly, emitting the submit event on a form in Firefox doesn't make the test fail, but makes karma start the whole test suite again, looping endlessly.\r\n\r\n@cexbrayat you might be interested in the changes I had to make here"},"comment":{"url":"https://api.github.com/repos/Ninja-Squad/globe42/issues/comments/353896909","html_url":"https://github.com/Ninja-Squad/globe42/pull/140#issuecomment-353896909","issue_url":"https://api.github.com/repos/Ninja-Squad/globe42/issues/140","id":353896909,"user":{"login":"cexbrayat","id":411874,"avatar_url":"https://avatars3.githubusercontent.com/u/411874?v=4","gravatar_id":"","url":"https://api.github.com/users/cexbrayat","html_url":"https://github.com/cexbrayat","followers_url":"https://api.github.com/users/cexbrayat/followers","following_url":"https://api.github.com/users/cexbrayat/following{/other_user}","gists_url":"https://api.github.com/users/cexbrayat/gists{/gist_id}","starred_url":"https://api.github.com/users/cexbrayat/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cexbrayat/subscriptions","organizations_url":"https://api.github.com/users/cexbrayat/orgs","repos_url":"https://api.github.com/users/cexbrayat/repos","events_url":"https://api.github.com/users/cexbrayat/events{/privacy}","received_events_url":"https://api.github.com/users/cexbrayat/received_events","type":"User","site_admin":false},"created_at":"2017-12-26T00:07:21Z","updated_at":"2017-12-26T00:07:21Z","author_association":"OWNER","body":"Surprising indeed. No issue opened about this?\r\nLGTM otherwise"}} | {
"id": 64468285,
"name": "Ninja-Squad/globe42",
"url": "https://api.github.com/repos/Ninja-Squad/globe42"
} | {
"id": 411874,
"login": "cexbrayat",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/411874?",
"url": "https://api.github.com/users/cexbrayat"
} | {
"id": 1610007,
"login": "Ninja-Squad",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1610007?",
"url": "https://api.github.com/orgs/Ninja-Squad"
} | 2017-12-26T00:07:22 | 7029410516 | {"actor":{"display_login":"cexbrayat"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe/issues/537","repository_url":"https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe","labels_url":"https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe/issues/537/labels{/name}","comments_url":"https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe/issues/537/comments","events_url":"https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe/issues/537/events","html_url":"https://github.com/OPS-E2E-PPE/split-ref-ppe/pull/537","id":277920453,"number":537,"title":"Update MD file on new branch 2017-11-29_13-48-28","user":{"login":"OPSTestPPE","id":26447601,"avatar_url":"https://avatars1.githubusercontent.com/u/26447601?v=4","gravatar_id":"","url":"https://api.github.com/users/OPSTestPPE","html_url":"https://github.com/OPSTestPPE","followers_url":"https://api.github.com/users/OPSTestPPE/followers","following_url":"https://api.github.com/users/OPSTestPPE/following{/other_user}","gists_url":"https://api.github.com/users/OPSTestPPE/gists{/gist_id}","starred_url":"https://api.github.com/users/OPSTestPPE/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OPSTestPPE/subscriptions","organizations_url":"https://api.github.com/users/OPSTestPPE/orgs","repos_url":"https://api.github.com/users/OPSTestPPE/repos","events_url":"https://api.github.com/users/OPSTestPPE/events{/privacy}","received_events_url":"https://api.github.com/users/OPSTestPPE/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":172,"created_at":"2017-11-29T21:51:54Z","updated_at":"2017-12-17T17:40:00Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe/pulls/537","html_url":"https://github.com/OPS-E2E-PPE/split-ref-ppe/pull/537","diff_url":"https://github.com/OPS-E2E-PPE/split-ref-ppe/pull/537.diff","patch_url":"https://github.com/OPS-E2E-PPE/split-ref-ppe/pull/537.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe/issues/comments/352272159","html_url":"https://github.com/OPS-E2E-PPE/split-ref-ppe/pull/537#issuecomment-352272159","issue_url":"https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe/issues/537","id":352272159,"user":{"login":"luyajun0205","id":15990849,"avatar_url":"https://avatars0.githubusercontent.com/u/15990849?v=4","gravatar_id":"","url":"https://api.github.com/users/luyajun0205","html_url":"https://github.com/luyajun0205","followers_url":"https://api.github.com/users/luyajun0205/followers","following_url":"https://api.github.com/users/luyajun0205/following{/other_user}","gists_url":"https://api.github.com/users/luyajun0205/gists{/gist_id}","starred_url":"https://api.github.com/users/luyajun0205/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luyajun0205/subscriptions","organizations_url":"https://api.github.com/users/luyajun0205/orgs","repos_url":"https://api.github.com/users/luyajun0205/repos","events_url":"https://api.github.com/users/luyajun0205/events{/privacy}","received_events_url":"https://api.github.com/users/luyajun0205/received_events","type":"User","site_admin":false},"created_at":"2017-12-17T17:40:00Z","updated_at":"2017-12-17T17:40:00Z","author_association":"CONTRIBUTOR","body":"### :x: Validation status: errors\r\n\r\n\r\nFile | Status | Preview URL | Details\r\n---- | ------ | ----------- | -------\r\n[]() | :x:Error | | [Details](#user-content-)\r\n[]() | :x:Error | | [Details](#user-content-)\r\n\r\n<a name=\"\"></a>\r\n### []()\r\n - **[Error]** System.IO.FileLoadException: Could not load file or assembly 'YamlDotNet, Version=4.2.2.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)\r\nFile name: 'YamlDotNet, Version=4.2.2.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e'\r\n at System.ModuleHandle.ResolveType(RuntimeModule module, Int32 typeToken, IntPtr* typeInstArgs, Int32 typeInstCount, IntPtr* methodInstArgs, Int32 methodInstCount, ObjectHandleOnStack type)\r\n at System.ModuleHandle.ResolveTypeHandleInternal(RuntimeModule module, Int32 typeToken, RuntimeTypeHandle[] typeInstantiationContext, RuntimeTypeHandle[] methodInstantiationContext)\r\n at System.Reflection.RuntimeModule.ResolveType(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments)\r\n at System.Reflection.CustomAttribute.FilterCustomAttributeRecord(CustomAttributeRecord caRecord, MetadataImport scope, Assembly& lastAptcaOkAssembly, RuntimeModule decoratedModule, MetadataToken decoratedToken, RuntimeType attributeFilterType, Boolean mustBeInheritable, Object[] attributes, IList derivedAttributes, RuntimeType& attributeType, IRuntimeMethodInfo& ctor, Boolean& ctorHasParameters, Boolean& isVarArg)\r\n at System.Reflection.CustomAttribute.GetCustomAttributes(RuntimeModule decoratedModule, Int32 decoratedMetadataToken, Int32 pcaCount, RuntimeType attributeFilterType, Boolean mustBeInheritable, IList derivedAttributes, Boolean isDecoratedTargetSecurityTransparent)\r\n at System.Reflection.CustomAttribute.GetCustomAttributes(RuntimePropertyInfo property, RuntimeType caType)\r\n at System.Attribute.InternalGetCustomAttributes(PropertyInfo element, Type type, Boolean inherit)\r\n at System.Composition.TypedParts.Util.DirectAttributeContext.GetCustomAttributes(Type reflectedType, MemberInfo member)\r\n at System.Composition.TypedParts.Discovery.TypeInspector.<DiscoverPropertyExports>d__7.MoveNext()\r\n at System.Composition.TypedParts.Discovery.TypeInspector.<DiscoverExports>d__5.MoveNext()\r\n at System.Composition.TypedParts.Discovery.TypeInspector.InspectTypeForPart(TypeInfo type, DiscoveredPart& part)\r\n at System.Composition.TypedParts.TypedPartExportDescriptorProvider..ctor(IEnumerable`1 types, AttributedModelProvider attributeContext)\r\n at System.Composition.Hosting.ContainerConfiguration.CreateContainer()\r\n at Microsoft.DocAsCode.Common.CompositionContainer.GetContainer(IEnumerable`1 assemblies)\r\n at Microsoft.DocAsCode.Build.Engine.DocumentBuilder..ctor(IEnumerable`1 assemblies, ImmutableArray`1 postProcessorNames, String templateHash, String intermediateFolder, String commitFromSHA, String commitToSHA, Boolean cleanupCacheHistory)\r\n at Microsoft.DocAsCode.SubCommands.DocumentBuilderWrapper.BuildDocument(BuildJsonConfig config, TemplateManager templateManager, String baseDirectory, String outputDirectory, String pluginDirectory, String templateDirectory)\r\n at Microsoft.DocAsCode.SubCommands.DocumentBuilderWrapper.BuildDocument()\r\n\r\nWRN: Assembly binding logging is turned OFF.\r\nTo enable assembly bind failure logging, set the registry value [HKLM\\Software\\Microsoft\\Fusion!EnableLog] (DWORD) to 1.\r\nNote: There is some performance penalty associated with assembly bind failure logging.\r\nTo turn this feature off, remove the registry value [HKLM\\Software\\Microsoft\\Fusion!EnableLog].\r\n\r\n - **[Warning]** Skipping file W:\\e0vs-s\\.optemp\\packages\\docfx.console.2.28.0-alpha-1044-g499d4f3\\tools\\plugins_ghb3jygz.fno\\plugins\\AutoMapper.dll due to load failure: Could not load file or assembly 'AutoMapper, Version=5.2.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)\r\n\r\n<a name=\"\"></a>\r\n### []()\r\n - **[Error]** System.IO.FileLoadException: Could not load file or assembly 'YamlDotNet, Version=4.2.2.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)\r\nFile name: 'YamlDotNet, Version=4.2.2.0, Culture=neutral, PublicKeyToken=ec19458f3c15af5e'\r\n at System.ModuleHandle.ResolveType(RuntimeModule module, Int32 typeToken, IntPtr* typeInstArgs, Int32 typeInstCount, IntPtr* methodInstArgs, Int32 methodInstCount, ObjectHandleOnStack type)\r\n at System.ModuleHandle.ResolveTypeHandleInternal(RuntimeModule module, Int32 typeToken, RuntimeTypeHandle[] typeInstantiationContext, RuntimeTypeHandle[] methodInstantiationContext)\r\n at System.Reflection.RuntimeModule.ResolveType(Int32 metadataToken, Type[] genericTypeArguments, Type[] genericMethodArguments)\r\n at System.Reflection.CustomAttribute.FilterCustomAttributeRecord(CustomAttributeRecord caRecord, MetadataImport scope, Assembly& lastAptcaOkAssembly, RuntimeModule decoratedModule, MetadataToken decoratedToken, RuntimeType attributeFilterType, Boolean mustBeInheritable, Object[] attributes, IList derivedAttributes, RuntimeType& attributeType, IRuntimeMethodInfo& ctor, Boolean& ctorHasParameters, Boolean& isVarArg)\r\n at System.Reflection.CustomAttribute.GetCustomAttributes(RuntimeModule decoratedModule, Int32 decoratedMetadataToken, Int32 pcaCount, RuntimeType attributeFilterType, Boolean mustBeInheritable, IList derivedAttributes, Boolean isDecoratedTargetSecurityTransparent)\r\n at System.Reflection.CustomAttribute.GetCustomAttributes(RuntimePropertyInfo property, RuntimeType caType)\r\n at System.Attribute.InternalGetCustomAttributes(PropertyInfo element, Type type, Boolean inherit)\r\n at System.Composition.TypedParts.Util.DirectAttributeContext.GetCustomAttributes(Type reflectedType, MemberInfo member)\r\n at System.Composition.TypedParts.Discovery.TypeInspector.<DiscoverPropertyExports>d__7.MoveNext()\r\n at System.Composition.TypedParts.Discovery.TypeInspector.<DiscoverExports>d__5.MoveNext()\r\n at System.Composition.TypedParts.Discovery.TypeInspector.InspectTypeForPart(TypeInfo type, DiscoveredPart& part)\r\n at System.Composition.TypedParts.TypedPartExportDescriptorProvider..ctor(IEnumerable`1 types, AttributedModelProvider attributeContext)\r\n at System.Composition.Hosting.ContainerConfiguration.CreateContainer()\r\n at Microsoft.DocAsCode.Common.CompositionContainer.GetContainer(IEnumerable`1 assemblies)\r\n at Microsoft.DocAsCode.Build.Engine.DocumentBuilder..ctor(IEnumerable`1 assemblies, ImmutableArray`1 postProcessorNames, String templateHash, String intermediateFolder, String commitFromSHA, String commitToSHA, Boolean cleanupCacheHistory)\r\n at Microsoft.DocAsCode.SubCommands.DocumentBuilderWrapper.BuildDocument(BuildJsonConfig config, TemplateManager templateManager, String baseDirectory, String outputDirectory, String pluginDirectory, String templateDirectory)\r\n at Microsoft.DocAsCode.SubCommands.DocumentBuilderWrapper.BuildDocument()\r\n\r\nWRN: Assembly binding logging is turned OFF.\r\nTo enable assembly bind failure logging, set the registry value [HKLM\\Software\\Microsoft\\Fusion!EnableLog] (DWORD) to 1.\r\nNote: There is some performance penalty associated with assembly bind failure logging.\r\nTo turn this feature off, remove the registry value [HKLM\\Software\\Microsoft\\Fusion!EnableLog].\r\n\r\n - **[Warning]** Skipping file W:\\e0vs-s\\.optemp\\packages\\docfx.console.2.28.0-alpha-1044-g499d4f3\\tools\\plugins_ghb3jygz.fno\\plugins\\AutoMapper.dll due to load failure: Could not load file or assembly 'AutoMapper, Version=5.2.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)\r\n\r\nFor more details, please refer to the [build report](https://opbuildstoragesandbox2.blob.core.windows.net/report/2017%5C12%5C17%5C5a01e7aa-e864-9bfe-020d-32c626d4ea60%5CPullRequest%5C201712171739248852-537%5Cworkflow_report.html?sv=2015-02-21&sr=b&sig=ySm7Z8uQiE6tiIwk1xY86iEBG%2BujHGxAFpYJ0v9DIIA%3D&st=2017-12-17T17%3A34%3A59Z&se=2018-01-17T17%3A39%3A59Z&sp=r).\r\n\r\n**Note:** If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report.\r\n"}} | {
"id": 109660768,
"name": "OPS-E2E-PPE/split-ref-ppe",
"url": "https://api.github.com/repos/OPS-E2E-PPE/split-ref-ppe"
} | {
"id": 15990849,
"login": "luyajun0205",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/15990849?",
"url": "https://api.github.com/users/luyajun0205"
} | {
"id": 24789825,
"login": "OPS-E2E-PPE",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/24789825?",
"url": "https://api.github.com/orgs/OPS-E2E-PPE"
} | 2017-12-17T17:40:00 | 6999361786 | {"actor":{"display_login":"luyajun0205"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/1778","repository_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic","labels_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/1778/labels{/name}","comments_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/1778/comments","events_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/1778/events","html_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/1778","id":230861124,"number":1778,"title":"e2e: pr warning testTue, 23 May 2017 22:02:35 GMT","user":{"login":"OPSTestPPE","id":26447601,"avatar_url":"https://avatars2.githubusercontent.com/u/26447601?v=3","gravatar_id":"","url":"https://api.github.com/users/OPSTestPPE","html_url":"https://github.com/OPSTestPPE","followers_url":"https://api.github.com/users/OPSTestPPE/followers","following_url":"https://api.github.com/users/OPSTestPPE/following{/other_user}","gists_url":"https://api.github.com/users/OPSTestPPE/gists{/gist_id}","starred_url":"https://api.github.com/users/OPSTestPPE/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OPSTestPPE/subscriptions","organizations_url":"https://api.github.com/users/OPSTestPPE/orgs","repos_url":"https://api.github.com/users/OPSTestPPE/repos","events_url":"https://api.github.com/users/OPSTestPPE/events{/privacy}","received_events_url":"https://api.github.com/users/OPSTestPPE/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-05-23T22:03:44Z","updated_at":"2017-05-23T22:04:43Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pulls/1778","html_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/1778","diff_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/1778.diff","patch_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/1778.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/comments/303545891","html_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/1778#issuecomment-303545891","issue_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/1778","id":303545891,"user":{"login":"OPSTest","id":23694395,"avatar_url":"https://avatars2.githubusercontent.com/u/23694395?v=3","gravatar_id":"","url":"https://api.github.com/users/OPSTest","html_url":"https://github.com/OPSTest","followers_url":"https://api.github.com/users/OPSTest/followers","following_url":"https://api.github.com/users/OPSTest/following{/other_user}","gists_url":"https://api.github.com/users/OPSTest/gists{/gist_id}","starred_url":"https://api.github.com/users/OPSTest/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OPSTest/subscriptions","organizations_url":"https://api.github.com/users/OPSTest/orgs","repos_url":"https://api.github.com/users/OPSTest/repos","events_url":"https://api.github.com/users/OPSTest/events{/privacy}","received_events_url":"https://api.github.com/users/OPSTest/received_events","type":"User","site_admin":false},"created_at":"2017-05-23T22:04:43Z","updated_at":"2017-05-23T22:04:43Z","body":"### :warning: Validation status: warnings\r\n\r\n\r\nFile | Status | Preview URL | Details\r\n---- | ------ | ----------- | -------\r\n[E2E_DocsBranch_Dynamic/index.md](https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/blob/prWarns-e2e/E2E_DocsBranch_Dynamic/index.md) | :warning:Warning | [View](https://ppe.docs.microsoft.com/en-us/E2E_DocsBranch_Dynamic/index?branch=pr-en-us-1778) | [Details](#user-content-E2E_DocsBranch_Dynamic%2Findex.md)\r\n\r\n<a name=\"E2E_DocsBranch_Dynamic%2Findex.md\"></a>\r\n### [E2E_DocsBranch_Dynamic/index.md](https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/blob/prWarns-e2e/E2E_DocsBranch_Dynamic/index.md)\r\n - **Line 2**: **[Warning]** Invalid file link:(~/../nonexisted1.md).\r\n - **Line 3**: **[Warning]** Invalid file link:(~/../nonexisted2.md).\r\n - **Line 4**: **[Warning]** Invalid file link:(~/../nonexisted3.md).\r\n\r\nFor more details, please refer to the [build report](https://opbuildstoragesandbox2.blob.core.windows.net/report/2017%5C5%5C23%5C76c3c196-55b4-f406-6465-98264dd87b41%5CPullRequest%5C201705232203473330-1778%5Cworkflow_report.html).\r\n\r\n**Note:** If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report.\r\n"}} | {
"id": 81908100,
"name": "OPS-E2E-PPE/E2E_DocsBranch_Dynamic",
"url": "https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic"
} | {
"id": 23694395,
"login": "OPSTest",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/23694395?",
"url": "https://api.github.com/users/OPSTest"
} | {
"id": 24789825,
"login": "OPS-E2E-PPE",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/24789825?",
"url": "https://api.github.com/orgs/OPS-E2E-PPE"
} | 2017-05-23T22:04:43 | 5929529823 | {"actor":{"display_login":"OPSTest"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2/issues/1","repository_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2","labels_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2/issues/1/comments","events_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2/issues/1/events","html_url":"https://github.com/OPS-E2E-PPE/E2E_Test_Transf_AA2/pull/1","id":230297501,"number":1,"title":"Update index.md","user":{"login":"v-peliao","id":17563727,"avatar_url":"https://avatars3.githubusercontent.com/u/17563727?v=3","gravatar_id":"","url":"https://api.github.com/users/v-peliao","html_url":"https://github.com/v-peliao","followers_url":"https://api.github.com/users/v-peliao/followers","following_url":"https://api.github.com/users/v-peliao/following{/other_user}","gists_url":"https://api.github.com/users/v-peliao/gists{/gist_id}","starred_url":"https://api.github.com/users/v-peliao/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/v-peliao/subscriptions","organizations_url":"https://api.github.com/users/v-peliao/orgs","repos_url":"https://api.github.com/users/v-peliao/repos","events_url":"https://api.github.com/users/v-peliao/events{/privacy}","received_events_url":"https://api.github.com/users/v-peliao/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2017-05-22T06:38:27Z","updated_at":"2017-06-16T09:23:25Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2/pulls/1","html_url":"https://github.com/OPS-E2E-PPE/E2E_Test_Transf_AA2/pull/1","diff_url":"https://github.com/OPS-E2E-PPE/E2E_Test_Transf_AA2/pull/1.diff","patch_url":"https://github.com/OPS-E2E-PPE/E2E_Test_Transf_AA2/pull/1.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2/issues/comments/308978031","html_url":"https://github.com/OPS-E2E-PPE/E2E_Test_Transf_AA2/pull/1#issuecomment-308978031","issue_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2/issues/1","id":308978031,"user":{"login":"luyajun0205","id":15990849,"avatar_url":"https://avatars3.githubusercontent.com/u/15990849?v=3","gravatar_id":"","url":"https://api.github.com/users/luyajun0205","html_url":"https://github.com/luyajun0205","followers_url":"https://api.github.com/users/luyajun0205/followers","following_url":"https://api.github.com/users/luyajun0205/following{/other_user}","gists_url":"https://api.github.com/users/luyajun0205/gists{/gist_id}","starred_url":"https://api.github.com/users/luyajun0205/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/luyajun0205/subscriptions","organizations_url":"https://api.github.com/users/luyajun0205/orgs","repos_url":"https://api.github.com/users/luyajun0205/repos","events_url":"https://api.github.com/users/luyajun0205/events{/privacy}","received_events_url":"https://api.github.com/users/luyajun0205/received_events","type":"User","site_admin":false},"created_at":"2017-06-16T09:23:25Z","updated_at":"2017-06-16T09:23:25Z","body":"### :white_check_mark: Validation status: passed\r\n\r\n\r\nFile | Status | Preview URL | Details\r\n---- | ------ | ----------- | -------\r\n[E2E_Test_Transf_AA2/index.md](https://github.com/OPS-E2E-PPE/E2E_Test_Transf_AA2/blob/test/E2E_Test_Transf_AA2/index.md) | :white_check_mark:Succeeded | |\r\n\r\nFor more details, please refer to the [build report](https://opbuildstoragesandbox2.blob.core.windows.net/report/2017%5C6%5C16%5Ca27a62ac-9d3a-1e72-5b52-51b1f3e988b5%5CPullRequest%5C201706160922201824-1%5Cworkflow_report.html).\r\n\r\n**Note:** If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report.\r\n"}} | {
"id": 92018221,
"name": "OPS-E2E-PPE/E2E_Test_Transf_AA2",
"url": "https://api.github.com/repos/OPS-E2E-PPE/E2E_Test_Transf_AA2"
} | {
"id": 15990849,
"login": "luyajun0205",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/15990849?",
"url": "https://api.github.com/users/luyajun0205"
} | {
"id": 24789825,
"login": "OPS-E2E-PPE",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/24789825?",
"url": "https://api.github.com/orgs/OPS-E2E-PPE"
} | 2017-06-16T09:23:25 | 6078835777 | {"actor":{"display_login":"luyajun0205"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/2473","repository_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic","labels_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/2473/labels{/name}","comments_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/2473/comments","events_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/2473/events","html_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/2473","id":234506424,"number":2473,"title":"e2e: update existing PR test Thu, 08 Jun 2017 12:10:43 GMT","user":{"login":"OPSTestPPE","id":26447601,"avatar_url":"https://avatars2.githubusercontent.com/u/26447601?v=3","gravatar_id":"","url":"https://api.github.com/users/OPSTestPPE","html_url":"https://github.com/OPSTestPPE","followers_url":"https://api.github.com/users/OPSTestPPE/followers","following_url":"https://api.github.com/users/OPSTestPPE/following{/other_user}","gists_url":"https://api.github.com/users/OPSTestPPE/gists{/gist_id}","starred_url":"https://api.github.com/users/OPSTestPPE/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OPSTestPPE/subscriptions","organizations_url":"https://api.github.com/users/OPSTestPPE/orgs","repos_url":"https://api.github.com/users/OPSTestPPE/repos","events_url":"https://api.github.com/users/OPSTestPPE/events{/privacy}","received_events_url":"https://api.github.com/users/OPSTestPPE/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-06-08T12:11:49Z","updated_at":"2017-06-08T12:12:50Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pulls/2473","html_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/2473","diff_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/2473.diff","patch_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/2473.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/comments/307085091","html_url":"https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/pull/2473#issuecomment-307085091","issue_url":"https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/issues/2473","id":307085091,"user":{"login":"OPSTest","id":23694395,"avatar_url":"https://avatars2.githubusercontent.com/u/23694395?v=3","gravatar_id":"","url":"https://api.github.com/users/OPSTest","html_url":"https://github.com/OPSTest","followers_url":"https://api.github.com/users/OPSTest/followers","following_url":"https://api.github.com/users/OPSTest/following{/other_user}","gists_url":"https://api.github.com/users/OPSTest/gists{/gist_id}","starred_url":"https://api.github.com/users/OPSTest/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/OPSTest/subscriptions","organizations_url":"https://api.github.com/users/OPSTest/orgs","repos_url":"https://api.github.com/users/OPSTest/repos","events_url":"https://api.github.com/users/OPSTest/events{/privacy}","received_events_url":"https://api.github.com/users/OPSTest/received_events","type":"User","site_admin":false},"created_at":"2017-06-08T12:12:50Z","updated_at":"2017-06-08T12:12:50Z","body":"### :white_check_mark: Validation status: passed\r\n\r\n\r\nFile | Status | Preview URL | Details\r\n---- | ------ | ----------- | -------\r\n[E2E_DocsBranch_Dynamic/index.md](https://github.com/OPS-E2E-PPE/E2E_DocsBranch_Dynamic/blob/existingPR-e2e/E2E_DocsBranch_Dynamic/index.md) | :white_check_mark:Succeeded | [View](https://ppe.docs.microsoft.com/en-us/E2E_DocsBranch_Dynamic/index?branch=pr-en-us-2473) |\r\n\r\nFor more details, please refer to the [build report](https://opbuildstoragesandbox2.blob.core.windows.net/report/2017%5C6%5C8%5C76c3c196-55b4-f406-6465-98264dd87b41%5CPullRequest%5C201706081211509602-2473%5Cworkflow_report.html).\r\n\r\n**Note:** If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report.\r\n"}} | {
"id": 81908100,
"name": "OPS-E2E-PPE/E2E_DocsBranch_Dynamic",
"url": "https://api.github.com/repos/OPS-E2E-PPE/E2E_DocsBranch_Dynamic"
} | {
"id": 23694395,
"login": "OPSTest",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/23694395?",
"url": "https://api.github.com/users/OPSTest"
} | {
"id": 24789825,
"login": "OPS-E2E-PPE",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/24789825?",
"url": "https://api.github.com/orgs/OPS-E2E-PPE"
} | 2017-06-08T12:12:50 | 6026763681 | {"actor":{"display_login":"OPSTest"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Odoo-mobile/framework/issues/350","repository_url":"https://api.github.com/repos/Odoo-mobile/framework","labels_url":"https://api.github.com/repos/Odoo-mobile/framework/issues/350/labels{/name}","comments_url":"https://api.github.com/repos/Odoo-mobile/framework/issues/350/comments","events_url":"https://api.github.com/repos/Odoo-mobile/framework/issues/350/events","html_url":"https://github.com/Odoo-mobile/framework/issues/350","id":268314505,"number":350,"title":"Do you know this APP?","user":{"login":"mikedream89","id":11469375,"avatar_url":"https://avatars1.githubusercontent.com/u/11469375?v=4","gravatar_id":"","url":"https://api.github.com/users/mikedream89","html_url":"https://github.com/mikedream89","followers_url":"https://api.github.com/users/mikedream89/followers","following_url":"https://api.github.com/users/mikedream89/following{/other_user}","gists_url":"https://api.github.com/users/mikedream89/gists{/gist_id}","starred_url":"https://api.github.com/users/mikedream89/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikedream89/subscriptions","organizations_url":"https://api.github.com/users/mikedream89/orgs","repos_url":"https://api.github.com/users/mikedream89/repos","events_url":"https://api.github.com/users/mikedream89/events{/privacy}","received_events_url":"https://api.github.com/users/mikedream89/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-10-25T08:47:57Z","updated_at":"2017-12-01T13:22:18Z","closed_at":"2017-12-01T13:22:18Z","author_association":"NONE","body":"\r\nHi guys,\r\n the APP is not has open source code??\r\n I think the APP is better.\r\n\r\n\r\n\r\n\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/Odoo-mobile/framework/issues/comments/348493294","html_url":"https://github.com/Odoo-mobile/framework/issues/350#issuecomment-348493294","issue_url":"https://api.github.com/repos/Odoo-mobile/framework/issues/350","id":348493294,"user":{"login":"mikedream89","id":11469375,"avatar_url":"https://avatars1.githubusercontent.com/u/11469375?v=4","gravatar_id":"","url":"https://api.github.com/users/mikedream89","html_url":"https://github.com/mikedream89","followers_url":"https://api.github.com/users/mikedream89/followers","following_url":"https://api.github.com/users/mikedream89/following{/other_user}","gists_url":"https://api.github.com/users/mikedream89/gists{/gist_id}","starred_url":"https://api.github.com/users/mikedream89/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikedream89/subscriptions","organizations_url":"https://api.github.com/users/mikedream89/orgs","repos_url":"https://api.github.com/users/mikedream89/repos","events_url":"https://api.github.com/users/mikedream89/events{/privacy}","received_events_url":"https://api.github.com/users/mikedream89/received_events","type":"User","site_admin":false},"created_at":"2017-12-01T13:22:18Z","updated_at":"2017-12-01T13:22:18Z","author_association":"NONE","body":"@naitikvithlani thanks"}} | {
"id": 19895668,
"name": "Odoo-mobile/framework",
"url": "https://api.github.com/repos/Odoo-mobile/framework"
} | {
"id": 11469375,
"login": "mikedream89",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11469375?",
"url": "https://api.github.com/users/mikedream89"
} | {
"id": 7613432,
"login": "Odoo-mobile",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7613432?",
"url": "https://api.github.com/orgs/Odoo-mobile"
} | 2017-12-01T13:22:18 | 6930188565 | {"actor":{"display_login":"mikedream89"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/OfflineIMAP/offlineimap/issues/412","repository_url":"https://api.github.com/repos/OfflineIMAP/offlineimap","labels_url":"https://api.github.com/repos/OfflineIMAP/offlineimap/issues/412/labels{/name}","comments_url":"https://api.github.com/repos/OfflineIMAP/offlineimap/issues/412/comments","events_url":"https://api.github.com/repos/OfflineIMAP/offlineimap/issues/412/events","html_url":"https://github.com/OfflineIMAP/offlineimap/issues/412","id":192076807,"number":412,"title":"call for official testers","user":{"login":"nicolas33","id":90065,"avatar_url":"https://avatars.githubusercontent.com/u/90065?v=3","gravatar_id":"","url":"https://api.github.com/users/nicolas33","html_url":"https://github.com/nicolas33","followers_url":"https://api.github.com/users/nicolas33/followers","following_url":"https://api.github.com/users/nicolas33/following{/other_user}","gists_url":"https://api.github.com/users/nicolas33/gists{/gist_id}","starred_url":"https://api.github.com/users/nicolas33/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nicolas33/subscriptions","organizations_url":"https://api.github.com/users/nicolas33/orgs","repos_url":"https://api.github.com/users/nicolas33/repos","events_url":"https://api.github.com/users/nicolas33/events{/privacy}","received_events_url":"https://api.github.com/users/nicolas33/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"nicolas33","id":90065,"avatar_url":"https://avatars.githubusercontent.com/u/90065?v=3","gravatar_id":"","url":"https://api.github.com/users/nicolas33","html_url":"https://github.com/nicolas33","followers_url":"https://api.github.com/users/nicolas33/followers","following_url":"https://api.github.com/users/nicolas33/following{/other_user}","gists_url":"https://api.github.com/users/nicolas33/gists{/gist_id}","starred_url":"https://api.github.com/users/nicolas33/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nicolas33/subscriptions","organizations_url":"https://api.github.com/users/nicolas33/orgs","repos_url":"https://api.github.com/users/nicolas33/repos","events_url":"https://api.github.com/users/nicolas33/events{/privacy}","received_events_url":"https://api.github.com/users/nicolas33/received_events","type":"User","site_admin":false},"assignees":[{"login":"nicolas33","id":90065,"avatar_url":"https://avatars.githubusercontent.com/u/90065?v=3","gravatar_id":"","url":"https://api.github.com/users/nicolas33","html_url":"https://github.com/nicolas33","followers_url":"https://api.github.com/users/nicolas33/followers","following_url":"https://api.github.com/users/nicolas33/following{/other_user}","gists_url":"https://api.github.com/users/nicolas33/gists{/gist_id}","starred_url":"https://api.github.com/users/nicolas33/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nicolas33/subscriptions","organizations_url":"https://api.github.com/users/nicolas33/orgs","repos_url":"https://api.github.com/users/nicolas33/repos","events_url":"https://api.github.com/users/nicolas33/events{/privacy}","received_events_url":"https://api.github.com/users/nicolas33/received_events","type":"User","site_admin":false}],"milestone":null,"comments":9,"created_at":"2016-11-28T18:09:39Z","updated_at":"2017-02-20T09:17:56Z","closed_at":null,"body":"Currently, I test the code and release when it works for me and when I think it will work for most users. This is not satisfying.\r\n\r\nWe miss of official testers to track down regressions while freezing the code before next releases.\r\n\r\nYou can join by requesting us here or with a mail sent to me or the mailing list.\r\n\r\n**You won't be requested randomly or after critical changes unless you clearly declare it's ok for you. I aim at adding a new step in our release cycle: officially freeze the code just before the next release, notify all the official testers and wait a week or so for your feedback.**\r\n\r\nCurrently, all the users **are** the testers."},"comment":{"url":"https://api.github.com/repos/OfflineIMAP/offlineimap/issues/comments/281026099","html_url":"https://github.com/OfflineIMAP/offlineimap/issues/412#issuecomment-281026099","issue_url":"https://api.github.com/repos/OfflineIMAP/offlineimap/issues/412","id":281026099,"user":{"login":"nicolas33","id":90065,"avatar_url":"https://avatars.githubusercontent.com/u/90065?v=3","gravatar_id":"","url":"https://api.github.com/users/nicolas33","html_url":"https://github.com/nicolas33","followers_url":"https://api.github.com/users/nicolas33/followers","following_url":"https://api.github.com/users/nicolas33/following{/other_user}","gists_url":"https://api.github.com/users/nicolas33/gists{/gist_id}","starred_url":"https://api.github.com/users/nicolas33/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nicolas33/subscriptions","organizations_url":"https://api.github.com/users/nicolas33/orgs","repos_url":"https://api.github.com/users/nicolas33/repos","events_url":"https://api.github.com/users/nicolas33/events{/privacy}","received_events_url":"https://api.github.com/users/nicolas33/received_events","type":"User","site_admin":false},"created_at":"2017-02-20T09:17:56Z","updated_at":"2017-02-20T09:17:56Z","body":"> The details for pushing the package release from github to pypi comes in a few variations:\r\n\r\nI've discarded this way of publishing the packages because this requires to release the credentials.\r\nPackaging and publishing on pypi is just about one or two command lines for each release. This does not happen every day so it's not an issue. I don't want to spend more time on this."}} | {
"id": 5153654,
"name": "OfflineIMAP/offlineimap",
"url": "https://api.github.com/repos/OfflineIMAP/offlineimap"
} | {
"id": 90065,
"login": "nicolas33",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/90065?",
"url": "https://api.github.com/users/nicolas33"
} | {
"id": 2027973,
"login": "OfflineIMAP",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2027973?",
"url": "https://api.github.com/orgs/OfflineIMAP"
} | 2017-02-20T09:17:56 | 5354229342 | {"actor":{"display_login":"nicolas33"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/OpenImageIO/oiio/issues/1641","repository_url":"https://api.github.com/repos/OpenImageIO/oiio","labels_url":"https://api.github.com/repos/OpenImageIO/oiio/issues/1641/labels{/name}","comments_url":"https://api.github.com/repos/OpenImageIO/oiio/issues/1641/comments","events_url":"https://api.github.com/repos/OpenImageIO/oiio/issues/1641/events","html_url":"https://github.com/OpenImageIO/oiio/pull/1641","id":215237022,"number":1641,"title":"PSD: add support for 'cmyk', 'multichannel', and 'grayscale' color modes","user":{"login":"lgritz","id":504179,"avatar_url":"https://avatars3.githubusercontent.com/u/504179?v=3","gravatar_id":"","url":"https://api.github.com/users/lgritz","html_url":"https://github.com/lgritz","followers_url":"https://api.github.com/users/lgritz/followers","following_url":"https://api.github.com/users/lgritz/following{/other_user}","gists_url":"https://api.github.com/users/lgritz/gists{/gist_id}","starred_url":"https://api.github.com/users/lgritz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lgritz/subscriptions","organizations_url":"https://api.github.com/users/lgritz/orgs","repos_url":"https://api.github.com/users/lgritz/repos","events_url":"https://api.github.com/users/lgritz/events{/privacy}","received_events_url":"https://api.github.com/users/lgritz/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-19T02:46:44Z","updated_at":"2017-03-19T04:44:52Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/OpenImageIO/oiio/pulls/1641","html_url":"https://github.com/OpenImageIO/oiio/pull/1641","diff_url":"https://github.com/OpenImageIO/oiio/pull/1641.diff","patch_url":"https://github.com/OpenImageIO/oiio/pull/1641.patch"},"body":"Fixes #1603 \r\n\r\nWith this patch to the PSD (Photoshop) reader, I believe we now correctly read grayscale, CMYK, and \"multichannel\" color modes (in addition to RGB, indexed, and bitmap, as we did before). We still don't support Lab, or duotone color modes (does anybody care?).\r\n\r\nNote that we don't correctly read 32 bit images in any of these modes (even the ones we THOUGHT we did correctly before -- they were wrong). I'll tackle that as a separate PR, or perhaps amend this one if I really find the problem immediately, we'll see. It seems to be a byte swapping issue.\r\n"},"comment":{"url":"https://api.github.com/repos/OpenImageIO/oiio/issues/comments/287594160","html_url":"https://github.com/OpenImageIO/oiio/pull/1641#issuecomment-287594160","issue_url":"https://api.github.com/repos/OpenImageIO/oiio/issues/1641","id":287594160,"user":{"login":"lgritz","id":504179,"avatar_url":"https://avatars3.githubusercontent.com/u/504179?v=3","gravatar_id":"","url":"https://api.github.com/users/lgritz","html_url":"https://github.com/lgritz","followers_url":"https://api.github.com/users/lgritz/followers","following_url":"https://api.github.com/users/lgritz/following{/other_user}","gists_url":"https://api.github.com/users/lgritz/gists{/gist_id}","starred_url":"https://api.github.com/users/lgritz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lgritz/subscriptions","organizations_url":"https://api.github.com/users/lgritz/orgs","repos_url":"https://api.github.com/users/lgritz/repos","events_url":"https://api.github.com/users/lgritz/events{/privacy}","received_events_url":"https://api.github.com/users/lgritz/received_events","type":"User","site_admin":false},"created_at":"2017-03-19T04:44:52Z","updated_at":"2017-03-19T04:44:52Z","body":"Amended to fix 32 bit mode, mostly. Turns out 32 bit pixel channels are not uint32, they are actually float values (after endian swapping)!\r\n\r\nI say \"mostly\" because there is some color space stuff to contemplate cleaning up. Seems that PhotoShop saves uint8 and uint16 images in sRGB (-ish?), whereas float images appeared to be saved as linear. I'm still looking into this matter, though. Nevertheless, what we do now (with this patch) is a whole lot less wrong than before.\r\n"}} | {
"id": 1322284,
"name": "OpenImageIO/oiio",
"url": "https://api.github.com/repos/OpenImageIO/oiio"
} | {
"id": 504179,
"login": "lgritz",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/504179?",
"url": "https://api.github.com/users/lgritz"
} | {
"id": 547887,
"login": "OpenImageIO",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/547887?",
"url": "https://api.github.com/orgs/OpenImageIO"
} | 2017-03-19T04:44:52 | 5520411779 | {"actor":{"display_login":"lgritz"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Patternslib/Patterns/issues/501","repository_url":"https://api.github.com/repos/Patternslib/Patterns","labels_url":"https://api.github.com/repos/Patternslib/Patterns/issues/501/labels{/name}","comments_url":"https://api.github.com/repos/Patternslib/Patterns/issues/501/comments","events_url":"https://api.github.com/repos/Patternslib/Patterns/issues/501/events","html_url":"https://github.com/Patternslib/Patterns/issues/501","id":224087151,"number":501,"title":"New release?","user":{"login":"agitator","id":365761,"avatar_url":"https://avatars2.githubusercontent.com/u/365761?v=3","gravatar_id":"","url":"https://api.github.com/users/agitator","html_url":"https://github.com/agitator","followers_url":"https://api.github.com/users/agitator/followers","following_url":"https://api.github.com/users/agitator/following{/other_user}","gists_url":"https://api.github.com/users/agitator/gists{/gist_id}","starred_url":"https://api.github.com/users/agitator/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/agitator/subscriptions","organizations_url":"https://api.github.com/users/agitator/orgs","repos_url":"https://api.github.com/users/agitator/repos","events_url":"https://api.github.com/users/agitator/events{/privacy}","received_events_url":"https://api.github.com/users/agitator/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2017-04-25T10:09:11Z","updated_at":"2017-06-26T15:17:28Z","closed_at":"2017-06-26T15:17:28Z","body":"last one is 2.0.14 - Aug 15, 2016"},"comment":{"url":"https://api.github.com/repos/Patternslib/Patterns/issues/comments/311090590","html_url":"https://github.com/Patternslib/Patterns/issues/501#issuecomment-311090590","issue_url":"https://api.github.com/repos/Patternslib/Patterns/issues/501","id":311090590,"user":{"login":"pilz","id":138906,"avatar_url":"https://avatars1.githubusercontent.com/u/138906?v=3","gravatar_id":"","url":"https://api.github.com/users/pilz","html_url":"https://github.com/pilz","followers_url":"https://api.github.com/users/pilz/followers","following_url":"https://api.github.com/users/pilz/following{/other_user}","gists_url":"https://api.github.com/users/pilz/gists{/gist_id}","starred_url":"https://api.github.com/users/pilz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pilz/subscriptions","organizations_url":"https://api.github.com/users/pilz/orgs","repos_url":"https://api.github.com/users/pilz/repos","events_url":"https://api.github.com/users/pilz/events{/privacy}","received_events_url":"https://api.github.com/users/pilz/received_events","type":"User","site_admin":false},"created_at":"2017-06-26T15:17:28Z","updated_at":"2017-06-26T15:17:28Z","body":"I took over from JC and did a 2.1.0 following the RELEASE.md notes. Please have a look and see if it is properly usable. Let me know of any issues with the release process."}} | {
"id": 2066292,
"name": "Patternslib/Patterns",
"url": "https://api.github.com/repos/Patternslib/Patterns"
} | {
"id": 138906,
"login": "pilz",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/138906?",
"url": "https://api.github.com/users/pilz"
} | {
"id": 2392399,
"login": "Patternslib",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2392399?",
"url": "https://api.github.com/orgs/Patternslib"
} | 2017-06-26T15:17:29 | 6138785609 | {"actor":{"display_login":"pilz"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/PioneerCode/pioneer-blog/issues/78","repository_url":"https://api.github.com/repos/PioneerCode/pioneer-blog","labels_url":"https://api.github.com/repos/PioneerCode/pioneer-blog/issues/78/labels{/name}","comments_url":"https://api.github.com/repos/PioneerCode/pioneer-blog/issues/78/comments","events_url":"https://api.github.com/repos/PioneerCode/pioneer-blog/issues/78/events","html_url":"https://github.com/PioneerCode/pioneer-blog/issues/78","id":246822113,"number":78,"title":"Admin area error","user":{"login":"jerryho83","id":20026010,"avatar_url":"https://avatars3.githubusercontent.com/u/20026010?v=4","gravatar_id":"","url":"https://api.github.com/users/jerryho83","html_url":"https://github.com/jerryho83","followers_url":"https://api.github.com/users/jerryho83/followers","following_url":"https://api.github.com/users/jerryho83/following{/other_user}","gists_url":"https://api.github.com/users/jerryho83/gists{/gist_id}","starred_url":"https://api.github.com/users/jerryho83/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jerryho83/subscriptions","organizations_url":"https://api.github.com/users/jerryho83/orgs","repos_url":"https://api.github.com/users/jerryho83/repos","events_url":"https://api.github.com/users/jerryho83/events{/privacy}","received_events_url":"https://api.github.com/users/jerryho83/received_events","type":"User","site_admin":false},"labels":[{"id":479786350,"url":"https://api.github.com/repos/PioneerCode/pioneer-blog/labels/bug","name":"bug","color":"ee0701","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2017-07-31T17:10:48Z","updated_at":"2017-08-03T15:38:01Z","closed_at":null,"body":"Hi\r\nWhen i go to admin,open console debug in chrome ,have some errors here\r\nPlease see the image in attached\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/PioneerCode/pioneer-blog/issues/comments/320006626","html_url":"https://github.com/PioneerCode/pioneer-blog/issues/78#issuecomment-320006626","issue_url":"https://api.github.com/repos/PioneerCode/pioneer-blog/issues/78","id":320006626,"user":{"login":"chad-ramos","id":3170200,"avatar_url":"https://avatars0.githubusercontent.com/u/3170200?v=4","gravatar_id":"","url":"https://api.github.com/users/chad-ramos","html_url":"https://github.com/chad-ramos","followers_url":"https://api.github.com/users/chad-ramos/followers","following_url":"https://api.github.com/users/chad-ramos/following{/other_user}","gists_url":"https://api.github.com/users/chad-ramos/gists{/gist_id}","starred_url":"https://api.github.com/users/chad-ramos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chad-ramos/subscriptions","organizations_url":"https://api.github.com/users/chad-ramos/orgs","repos_url":"https://api.github.com/users/chad-ramos/repos","events_url":"https://api.github.com/users/chad-ramos/events{/privacy}","received_events_url":"https://api.github.com/users/chad-ramos/received_events","type":"User","site_admin":false},"created_at":"2017-08-03T15:38:01Z","updated_at":"2017-08-03T15:38:01Z","body":"@jerryho83 \r\n\r\nFinally figured out what caused it for you. Should have a fix up soon.\r\n\r\n\r\n"}} | {
"id": 73494496,
"name": "PioneerCode/pioneer-blog",
"url": "https://api.github.com/repos/PioneerCode/pioneer-blog"
} | {
"id": 3170200,
"login": "chad-ramos",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3170200?",
"url": "https://api.github.com/users/chad-ramos"
} | {
"id": 12865538,
"login": "PioneerCode",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/12865538?",
"url": "https://api.github.com/orgs/PioneerCode"
} | 2017-08-03T15:38:01 | 6388474262 | {"actor":{"display_login":"chad-ramos"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/PistoiaHELM/HELMWebEditor/issues/78","repository_url":"https://api.github.com/repos/PistoiaHELM/HELMWebEditor","labels_url":"https://api.github.com/repos/PistoiaHELM/HELMWebEditor/issues/78/labels{/name}","comments_url":"https://api.github.com/repos/PistoiaHELM/HELMWebEditor/issues/78/comments","events_url":"https://api.github.com/repos/PistoiaHELM/HELMWebEditor/issues/78/events","html_url":"https://github.com/PistoiaHELM/HELMWebEditor/issues/78","id":186601869,"number":78,"title":"Documentation: \"How to implement\"","user":{"login":"scilligence","id":19560173,"avatar_url":"https://avatars.githubusercontent.com/u/19560173?v=3","gravatar_id":"","url":"https://api.github.com/users/scilligence","html_url":"https://github.com/scilligence","followers_url":"https://api.github.com/users/scilligence/followers","following_url":"https://api.github.com/users/scilligence/following{/other_user}","gists_url":"https://api.github.com/users/scilligence/gists{/gist_id}","starred_url":"https://api.github.com/users/scilligence/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scilligence/subscriptions","organizations_url":"https://api.github.com/users/scilligence/orgs","repos_url":"https://api.github.com/users/scilligence/repos","events_url":"https://api.github.com/users/scilligence/events{/privacy}","received_events_url":"https://api.github.com/users/scilligence/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"scilligence","id":19560173,"avatar_url":"https://avatars.githubusercontent.com/u/19560173?v=3","gravatar_id":"","url":"https://api.github.com/users/scilligence","html_url":"https://github.com/scilligence","followers_url":"https://api.github.com/users/scilligence/followers","following_url":"https://api.github.com/users/scilligence/following{/other_user}","gists_url":"https://api.github.com/users/scilligence/gists{/gist_id}","starred_url":"https://api.github.com/users/scilligence/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scilligence/subscriptions","organizations_url":"https://api.github.com/users/scilligence/orgs","repos_url":"https://api.github.com/users/scilligence/repos","events_url":"https://api.github.com/users/scilligence/events{/privacy}","received_events_url":"https://api.github.com/users/scilligence/received_events","type":"User","site_admin":false},"assignees":[{"login":"scilligence","id":19560173,"avatar_url":"https://avatars.githubusercontent.com/u/19560173?v=3","gravatar_id":"","url":"https://api.github.com/users/scilligence","html_url":"https://github.com/scilligence","followers_url":"https://api.github.com/users/scilligence/followers","following_url":"https://api.github.com/users/scilligence/following{/other_user}","gists_url":"https://api.github.com/users/scilligence/gists{/gist_id}","starred_url":"https://api.github.com/users/scilligence/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scilligence/subscriptions","organizations_url":"https://api.github.com/users/scilligence/orgs","repos_url":"https://api.github.com/users/scilligence/repos","events_url":"https://api.github.com/users/scilligence/events{/privacy}","received_events_url":"https://api.github.com/users/scilligence/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2016-11-01T17:57:42Z","updated_at":"2017-02-07T14:05:20Z","closed_at":"2017-02-07T14:05:20Z","body":""},"comment":{"url":"https://api.github.com/repos/PistoiaHELM/HELMWebEditor/issues/comments/278008882","html_url":"https://github.com/PistoiaHELM/HELMWebEditor/issues/78#issuecomment-278008882","issue_url":"https://api.github.com/repos/PistoiaHELM/HELMWebEditor/issues/78","id":278008882,"user":{"login":"ClairePA","id":3986896,"avatar_url":"https://avatars.githubusercontent.com/u/3986896?v=3","gravatar_id":"","url":"https://api.github.com/users/ClairePA","html_url":"https://github.com/ClairePA","followers_url":"https://api.github.com/users/ClairePA/followers","following_url":"https://api.github.com/users/ClairePA/following{/other_user}","gists_url":"https://api.github.com/users/ClairePA/gists{/gist_id}","starred_url":"https://api.github.com/users/ClairePA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ClairePA/subscriptions","organizations_url":"https://api.github.com/users/ClairePA/orgs","repos_url":"https://api.github.com/users/ClairePA/repos","events_url":"https://api.github.com/users/ClairePA/events{/privacy}","received_events_url":"https://api.github.com/users/ClairePA/received_events","type":"User","site_admin":false},"created_at":"2017-02-07T14:05:20Z","updated_at":"2017-02-07T14:05:20Z","body":"Details now available on the HELM wiki page and in the GitHub readme files. "}} | {
"id": 59609709,
"name": "PistoiaHELM/HELMWebEditor",
"url": "https://api.github.com/repos/PistoiaHELM/HELMWebEditor"
} | {
"id": 3986896,
"login": "ClairePA",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3986896?",
"url": "https://api.github.com/users/ClairePA"
} | {
"id": 3985896,
"login": "PistoiaHELM",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3985896?",
"url": "https://api.github.com/orgs/PistoiaHELM"
} | 2017-02-07T14:05:20 | 5280378064 | {"actor":{"display_login":"ClairePA"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/PlayOnLinux/POL-POM-5/issues/490","repository_url":"https://api.github.com/repos/PlayOnLinux/POL-POM-5","labels_url":"https://api.github.com/repos/PlayOnLinux/POL-POM-5/issues/490/labels{/name}","comments_url":"https://api.github.com/repos/PlayOnLinux/POL-POM-5/issues/490/comments","events_url":"https://api.github.com/repos/PlayOnLinux/POL-POM-5/issues/490/events","html_url":"https://github.com/PlayOnLinux/POL-POM-5/pull/490","id":202322551,"number":490,"title":"Fixed dark theme","user":{"login":"qparis","id":373645,"avatar_url":"https://avatars.githubusercontent.com/u/373645?v=3","gravatar_id":"","url":"https://api.github.com/users/qparis","html_url":"https://github.com/qparis","followers_url":"https://api.github.com/users/qparis/followers","following_url":"https://api.github.com/users/qparis/following{/other_user}","gists_url":"https://api.github.com/users/qparis/gists{/gist_id}","starred_url":"https://api.github.com/users/qparis/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/qparis/subscriptions","organizations_url":"https://api.github.com/users/qparis/orgs","repos_url":"https://api.github.com/users/qparis/repos","events_url":"https://api.github.com/users/qparis/events{/privacy}","received_events_url":"https://api.github.com/users/qparis/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-01-21T15:45:13Z","updated_at":"2017-01-21T15:46:12Z","closed_at":"2017-01-21T15:45:28Z","pull_request":{"url":"https://api.github.com/repos/PlayOnLinux/POL-POM-5/pulls/490","html_url":"https://github.com/PlayOnLinux/POL-POM-5/pull/490","diff_url":"https://github.com/PlayOnLinux/POL-POM-5/pull/490.diff","patch_url":"https://github.com/PlayOnLinux/POL-POM-5/pull/490.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/PlayOnLinux/POL-POM-5/issues/comments/274269268","html_url":"https://github.com/PlayOnLinux/POL-POM-5/pull/490#issuecomment-274269268","issue_url":"https://api.github.com/repos/PlayOnLinux/POL-POM-5/issues/490","id":274269268,"user":{"login":"PlayOnLinuxBOT","id":12583356,"avatar_url":"https://avatars.githubusercontent.com/u/12583356?v=3","gravatar_id":"","url":"https://api.github.com/users/PlayOnLinuxBOT","html_url":"https://github.com/PlayOnLinuxBOT","followers_url":"https://api.github.com/users/PlayOnLinuxBOT/followers","following_url":"https://api.github.com/users/PlayOnLinuxBOT/following{/other_user}","gists_url":"https://api.github.com/users/PlayOnLinuxBOT/gists{/gist_id}","starred_url":"https://api.github.com/users/PlayOnLinuxBOT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/PlayOnLinuxBOT/subscriptions","organizations_url":"https://api.github.com/users/PlayOnLinuxBOT/orgs","repos_url":"https://api.github.com/users/PlayOnLinuxBOT/repos","events_url":"https://api.github.com/users/PlayOnLinuxBOT/events{/privacy}","received_events_url":"https://api.github.com/users/PlayOnLinuxBOT/received_events","type":"User","site_admin":false},"created_at":"2017-01-21T15:46:12Z","updated_at":"2017-01-21T15:46:12Z","body":"Jenkins Build Success +1\n"}} | {
"id": 33829862,
"name": "PlayOnLinux/POL-POM-5",
"url": "https://api.github.com/repos/PlayOnLinux/POL-POM-5"
} | {
"id": 12583356,
"login": "PlayOnLinuxBOT",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/12583356?",
"url": "https://api.github.com/users/PlayOnLinuxBOT"
} | {
"id": 373652,
"login": "PlayOnLinux",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/373652?",
"url": "https://api.github.com/orgs/PlayOnLinux"
} | 2017-01-21T15:46:12 | 5190989582 | {"actor":{"display_login":"PlayOnLinuxBOT"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/PolarisSS13/Polaris/issues/3837","repository_url":"https://api.github.com/repos/PolarisSS13/Polaris","labels_url":"https://api.github.com/repos/PolarisSS13/Polaris/issues/3837/labels{/name}","comments_url":"https://api.github.com/repos/PolarisSS13/Polaris/issues/3837/comments","events_url":"https://api.github.com/repos/PolarisSS13/Polaris/issues/3837/events","html_url":"https://github.com/PolarisSS13/Polaris/pull/3837","id":258180780,"number":3837,"title":"Adds new AI cores and holograms.","user":{"login":"Belsima","id":31827220,"avatar_url":"https://avatars1.githubusercontent.com/u/31827220?v=4","gravatar_id":"","url":"https://api.github.com/users/Belsima","html_url":"https://github.com/Belsima","followers_url":"https://api.github.com/users/Belsima/followers","following_url":"https://api.github.com/users/Belsima/following{/other_user}","gists_url":"https://api.github.com/users/Belsima/gists{/gist_id}","starred_url":"https://api.github.com/users/Belsima/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Belsima/subscriptions","organizations_url":"https://api.github.com/users/Belsima/orgs","repos_url":"https://api.github.com/users/Belsima/repos","events_url":"https://api.github.com/users/Belsima/events{/privacy}","received_events_url":"https://api.github.com/users/Belsima/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-09-15T22:31:44Z","updated_at":"2017-09-15T22:32:00Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/PolarisSS13/Polaris/pulls/3837","html_url":"https://github.com/PolarisSS13/Polaris/pull/3837","diff_url":"https://github.com/PolarisSS13/Polaris/pull/3837.diff","patch_url":"https://github.com/PolarisSS13/Polaris/pull/3837.patch"},"body":null},"comment":{"url":"https://api.github.com/repos/PolarisSS13/Polaris/issues/comments/329918952","html_url":"https://github.com/PolarisSS13/Polaris/pull/3837#issuecomment-329918952","issue_url":"https://api.github.com/repos/PolarisSS13/Polaris/issues/3837","id":329918952,"user":{"login":"Anewbe","id":10236878,"avatar_url":"https://avatars2.githubusercontent.com/u/10236878?v=4","gravatar_id":"","url":"https://api.github.com/users/Anewbe","html_url":"https://github.com/Anewbe","followers_url":"https://api.github.com/users/Anewbe/followers","following_url":"https://api.github.com/users/Anewbe/following{/other_user}","gists_url":"https://api.github.com/users/Anewbe/gists{/gist_id}","starred_url":"https://api.github.com/users/Anewbe/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Anewbe/subscriptions","organizations_url":"https://api.github.com/users/Anewbe/orgs","repos_url":"https://api.github.com/users/Anewbe/repos","events_url":"https://api.github.com/users/Anewbe/events{/privacy}","received_events_url":"https://api.github.com/users/Anewbe/received_events","type":"User","site_admin":false},"created_at":"2017-09-15T22:32:00Z","updated_at":"2017-09-15T22:32:00Z","author_association":"CONTRIBUTOR","body":"Images."}} | {
"id": 33467707,
"name": "PolarisSS13/Polaris",
"url": "https://api.github.com/repos/PolarisSS13/Polaris"
} | {
"id": 10236878,
"login": "Anewbe",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10236878?",
"url": "https://api.github.com/users/Anewbe"
} | {
"id": 11812425,
"login": "PolarisSS13",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11812425?",
"url": "https://api.github.com/orgs/PolarisSS13"
} | 2017-09-15T22:32:01 | 6597886999 | {"actor":{"display_login":"Anewbe"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/RC-Dynamics/presence-server/issues/2","repository_url":"https://api.github.com/repos/RC-Dynamics/presence-server","labels_url":"https://api.github.com/repos/RC-Dynamics/presence-server/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/RC-Dynamics/presence-server/issues/2/comments","events_url":"https://api.github.com/repos/RC-Dynamics/presence-server/issues/2/events","html_url":"https://github.com/RC-Dynamics/presence-server/issues/2","id":242694672,"number":2,"title":"Wrong MQTT Response ","user":{"login":"lhcavalcanti","id":11136063,"avatar_url":"https://avatars1.githubusercontent.com/u/11136063?v=3","gravatar_id":"","url":"https://api.github.com/users/lhcavalcanti","html_url":"https://github.com/lhcavalcanti","followers_url":"https://api.github.com/users/lhcavalcanti/followers","following_url":"https://api.github.com/users/lhcavalcanti/following{/other_user}","gists_url":"https://api.github.com/users/lhcavalcanti/gists{/gist_id}","starred_url":"https://api.github.com/users/lhcavalcanti/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhcavalcanti/subscriptions","organizations_url":"https://api.github.com/users/lhcavalcanti/orgs","repos_url":"https://api.github.com/users/lhcavalcanti/repos","events_url":"https://api.github.com/users/lhcavalcanti/events{/privacy}","received_events_url":"https://api.github.com/users/lhcavalcanti/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":{"login":"lhcavalcanti","id":11136063,"avatar_url":"https://avatars1.githubusercontent.com/u/11136063?v=3","gravatar_id":"","url":"https://api.github.com/users/lhcavalcanti","html_url":"https://github.com/lhcavalcanti","followers_url":"https://api.github.com/users/lhcavalcanti/followers","following_url":"https://api.github.com/users/lhcavalcanti/following{/other_user}","gists_url":"https://api.github.com/users/lhcavalcanti/gists{/gist_id}","starred_url":"https://api.github.com/users/lhcavalcanti/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhcavalcanti/subscriptions","organizations_url":"https://api.github.com/users/lhcavalcanti/orgs","repos_url":"https://api.github.com/users/lhcavalcanti/repos","events_url":"https://api.github.com/users/lhcavalcanti/events{/privacy}","received_events_url":"https://api.github.com/users/lhcavalcanti/received_events","type":"User","site_admin":false},"assignees":[{"login":"lhcavalcanti","id":11136063,"avatar_url":"https://avatars1.githubusercontent.com/u/11136063?v=3","gravatar_id":"","url":"https://api.github.com/users/lhcavalcanti","html_url":"https://github.com/lhcavalcanti","followers_url":"https://api.github.com/users/lhcavalcanti/followers","following_url":"https://api.github.com/users/lhcavalcanti/following{/other_user}","gists_url":"https://api.github.com/users/lhcavalcanti/gists{/gist_id}","starred_url":"https://api.github.com/users/lhcavalcanti/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhcavalcanti/subscriptions","organizations_url":"https://api.github.com/users/lhcavalcanti/orgs","repos_url":"https://api.github.com/users/lhcavalcanti/repos","events_url":"https://api.github.com/users/lhcavalcanti/events{/privacy}","received_events_url":"https://api.github.com/users/lhcavalcanti/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2017-07-13T13:06:55Z","updated_at":"2017-07-13T13:09:50Z","closed_at":"2017-07-13T13:09:50Z","body":"There aren't any response to a valid opening or closing class, and a to a corrected added student."},"comment":{"url":"https://api.github.com/repos/RC-Dynamics/presence-server/issues/comments/315072981","html_url":"https://github.com/RC-Dynamics/presence-server/issues/2#issuecomment-315072981","issue_url":"https://api.github.com/repos/RC-Dynamics/presence-server/issues/2","id":315072981,"user":{"login":"lhcavalcanti","id":11136063,"avatar_url":"https://avatars1.githubusercontent.com/u/11136063?v=3","gravatar_id":"","url":"https://api.github.com/users/lhcavalcanti","html_url":"https://github.com/lhcavalcanti","followers_url":"https://api.github.com/users/lhcavalcanti/followers","following_url":"https://api.github.com/users/lhcavalcanti/following{/other_user}","gists_url":"https://api.github.com/users/lhcavalcanti/gists{/gist_id}","starred_url":"https://api.github.com/users/lhcavalcanti/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lhcavalcanti/subscriptions","organizations_url":"https://api.github.com/users/lhcavalcanti/orgs","repos_url":"https://api.github.com/users/lhcavalcanti/repos","events_url":"https://api.github.com/users/lhcavalcanti/events{/privacy}","received_events_url":"https://api.github.com/users/lhcavalcanti/received_events","type":"User","site_admin":false},"created_at":"2017-07-13T13:09:50Z","updated_at":"2017-07-13T13:09:50Z","body":"On server was added response for every case, when no answer were returned, device will consider as a wrong ID."}} | {
"id": 92075631,
"name": "RC-Dynamics/presence-server",
"url": "https://api.github.com/repos/RC-Dynamics/presence-server"
} | {
"id": 11136063,
"login": "lhcavalcanti",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11136063?",
"url": "https://api.github.com/users/lhcavalcanti"
} | {
"id": 28844958,
"login": "RC-Dynamics",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/28844958?",
"url": "https://api.github.com/orgs/RC-Dynamics"
} | 2017-07-13T13:09:50 | 6249348623 | {"actor":{"display_login":"lhcavalcanti"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/4985","repository_url":"https://api.github.com/repos/SatelliteQE/robottelo","labels_url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/4985/labels{/name}","comments_url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/4985/comments","events_url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/4985/events","html_url":"https://github.com/SatelliteQE/robottelo/pull/4985","id":243643858,"number":4985,"title":"[6.3] decorate katello-agent test cases","user":{"login":"ldjebran","id":131553,"avatar_url":"https://avatars2.githubusercontent.com/u/131553?v=4","gravatar_id":"","url":"https://api.github.com/users/ldjebran","html_url":"https://github.com/ldjebran","followers_url":"https://api.github.com/users/ldjebran/followers","following_url":"https://api.github.com/users/ldjebran/following{/other_user}","gists_url":"https://api.github.com/users/ldjebran/gists{/gist_id}","starred_url":"https://api.github.com/users/ldjebran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ldjebran/subscriptions","organizations_url":"https://api.github.com/users/ldjebran/orgs","repos_url":"https://api.github.com/users/ldjebran/repos","events_url":"https://api.github.com/users/ldjebran/events{/privacy}","received_events_url":"https://api.github.com/users/ldjebran/received_events","type":"User","site_admin":false},"labels":[{"id":468870987,"url":"https://api.github.com/repos/SatelliteQE/robottelo/labels/6.3","name":"6.3","color":"e99695","default":false},{"id":67639888,"url":"https://api.github.com/repos/SatelliteQE/robottelo/labels/CLI","name":"CLI","color":"009800","default":false},{"id":404622871,"url":"https://api.github.com/repos/SatelliteQE/robottelo/labels/review","name":"review","color":"00ff00","default":false},{"id":85367663,"url":"https://api.github.com/repos/SatelliteQE/robottelo/labels/Urgent","name":"Urgent","color":"e11d21","default":false}],"state":"open","locked":false,"assignee":{"login":"ldjebran","id":131553,"avatar_url":"https://avatars2.githubusercontent.com/u/131553?v=4","gravatar_id":"","url":"https://api.github.com/users/ldjebran","html_url":"https://github.com/ldjebran","followers_url":"https://api.github.com/users/ldjebran/followers","following_url":"https://api.github.com/users/ldjebran/following{/other_user}","gists_url":"https://api.github.com/users/ldjebran/gists{/gist_id}","starred_url":"https://api.github.com/users/ldjebran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ldjebran/subscriptions","organizations_url":"https://api.github.com/users/ldjebran/orgs","repos_url":"https://api.github.com/users/ldjebran/repos","events_url":"https://api.github.com/users/ldjebran/events{/privacy}","received_events_url":"https://api.github.com/users/ldjebran/received_events","type":"User","site_admin":false},"assignees":[{"login":"ldjebran","id":131553,"avatar_url":"https://avatars2.githubusercontent.com/u/131553?v=4","gravatar_id":"","url":"https://api.github.com/users/ldjebran","html_url":"https://github.com/ldjebran","followers_url":"https://api.github.com/users/ldjebran/followers","following_url":"https://api.github.com/users/ldjebran/following{/other_user}","gists_url":"https://api.github.com/users/ldjebran/gists{/gist_id}","starred_url":"https://api.github.com/users/ldjebran/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ldjebran/subscriptions","organizations_url":"https://api.github.com/users/ldjebran/orgs","repos_url":"https://api.github.com/users/ldjebran/repos","events_url":"https://api.github.com/users/ldjebran/events{/privacy}","received_events_url":"https://api.github.com/users/ldjebran/received_events","type":"User","site_admin":false}],"milestone":null,"comments":3,"created_at":"2017-07-18T08:50:51Z","updated_at":"2017-07-18T09:02:47Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/SatelliteQE/robottelo/pulls/4985","html_url":"https://github.com/SatelliteQE/robottelo/pull/4985","diff_url":"https://github.com/SatelliteQE/robottelo/pull/4985.diff","patch_url":"https://github.com/SatelliteQE/robottelo/pull/4985.patch"},"body":"this bug is blocking automation\r\n```console\r\n(sat-6.3.0) dlezz@elysion:~/projects/robottelo-fork$ py.test -v tests/foreman/cli/test_host.py::KatelloAgentTestCase\r\n================================================= test session starts ==================================================\r\nplatform linux2 -- Python 2.7.13, pytest-3.0.7, py-1.4.34, pluggy-0.4.0 -- /home/dlezz/.pyenv/versions/sat-6.3.0/bin/python2.7\r\ncachedir: .cache\r\nrootdir: /home/dlezz/projects/robottelo-fork, inifile:\r\nplugins: xdist-1.15.0, services-1.2.1, mock-1.6.0, cov-2.4.0\r\ncollected 11 items \r\n2017-07-18 11:46:39 - conftest - DEBUG - Deselect of WONTFIX BZs is disabled in settings\r\n\r\n\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_negative_unregister_and_pull_content SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_apply_errata <- robottelo/decorators/__init__.py SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_apply_security_erratum <- robottelo/decorators/__init__.py SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_get_errata_info <- robottelo/decorators/__init__.py SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_install_package <- robottelo/decorators/__init__.py SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_install_package_group <- robottelo/decorators/__init__.py SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_register_host_ak_with_host_collection SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_remove_package <- robottelo/decorators/__init__.py SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_remove_package_group <- robottelo/decorators/__init__.py SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_upgrade_package <- robottelo/decorators/__init__.py SKIPPED\r\ntests/foreman/cli/test_host.py::KatelloAgentTestCase::test_positive_upgrade_packages_all <- robottelo/decorators/__init__.py SKIPPED\r\n\r\n============================================== 11 skipped in 7.53 seconds ==============================================\r\n```"},"comment":{"url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/comments/316003023","html_url":"https://github.com/SatelliteQE/robottelo/pull/4985#issuecomment-316003023","issue_url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/4985","id":316003023,"user":{"login":"codecov[bot]","id":22429695,"avatar_url":"https://avatars2.githubusercontent.com/in/254?v=4","gravatar_id":"","url":"https://api.github.com/users/codecov%5Bbot%5D","html_url":"https://github.com/apps/codecov","followers_url":"https://api.github.com/users/codecov%5Bbot%5D/followers","following_url":"https://api.github.com/users/codecov%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/codecov%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/codecov%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/codecov%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/codecov%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/codecov%5Bbot%5D/repos","events_url":"https://api.github.com/users/codecov%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/codecov%5Bbot%5D/received_events","type":"Bot","site_admin":false},"created_at":"2017-07-18T09:02:47Z","updated_at":"2017-07-18T09:02:47Z","body":"# [Codecov](https://codecov.io/gh/SatelliteQE/robottelo/pull/4985?src=pr&el=h1) Report\n> Merging [#4985](https://codecov.io/gh/SatelliteQE/robottelo/pull/4985?src=pr&el=desc) into [master](https://codecov.io/gh/SatelliteQE/robottelo/commit/87f58c3d5af6282d9516282f25af263a37b272ce?src=pr&el=desc) will **not change** coverage.\n> The diff coverage is `n/a`.\n\n[](https://codecov.io/gh/SatelliteQE/robottelo/pull/4985?src=pr&el=tree)\n\n```diff\n@@ Coverage Diff @@\n## master #4985 +/- ##\n=======================================\n Coverage 40.05% 40.05% \n=======================================\n Files 88 88 \n Lines 7136 7136 \n=======================================\n Hits 2858 2858 \n Misses 4278 4278\n```\n\n\n\n------\n\n[Continue to review full report at Codecov](https://codecov.io/gh/SatelliteQE/robottelo/pull/4985?src=pr&el=continue).\n> **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta)\n> `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data`\n> Powered by [Codecov](https://codecov.io/gh/SatelliteQE/robottelo/pull/4985?src=pr&el=footer). Last update [87f58c3...dabb7bc](https://codecov.io/gh/SatelliteQE/robottelo/pull/4985?src=pr&el=lastupdated). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).\n"}} | {
"id": 4000279,
"name": "SatelliteQE/robottelo",
"url": "https://api.github.com/repos/SatelliteQE/robottelo"
} | {
"id": 22429695,
"login": "codecov[bot]",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/22429695?",
"url": "https://api.github.com/users/codecov[bot]"
} | {
"id": 8754276,
"login": "SatelliteQE",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8754276?",
"url": "https://api.github.com/orgs/SatelliteQE"
} | 2017-07-18T09:02:47 | 6276216279 | {"actor":{"display_login":"codecov"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/5612","repository_url":"https://api.github.com/repos/SatelliteQE/robottelo","labels_url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/5612/labels{/name}","comments_url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/5612/comments","events_url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/5612/events","html_url":"https://github.com/SatelliteQE/robottelo/pull/5612","id":276595231,"number":5612,"title":"Added UI test for inc update of the CV inside composite CV (BZ1304891)","user":{"login":"abalakh","id":11719030,"avatar_url":"https://avatars0.githubusercontent.com/u/11719030?v=4","gravatar_id":"","url":"https://api.github.com/users/abalakh","html_url":"https://github.com/abalakh","followers_url":"https://api.github.com/users/abalakh/followers","following_url":"https://api.github.com/users/abalakh/following{/other_user}","gists_url":"https://api.github.com/users/abalakh/gists{/gist_id}","starred_url":"https://api.github.com/users/abalakh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abalakh/subscriptions","organizations_url":"https://api.github.com/users/abalakh/orgs","repos_url":"https://api.github.com/users/abalakh/repos","events_url":"https://api.github.com/users/abalakh/events{/privacy}","received_events_url":"https://api.github.com/users/abalakh/received_events","type":"User","site_admin":false},"labels":[{"id":468870987,"url":"https://api.github.com/repos/SatelliteQE/robottelo/labels/6.3","name":"6.3","color":"e99695","default":false},{"id":536677666,"url":"https://api.github.com/repos/SatelliteQE/robottelo/labels/qe_test_coverage","name":"qe_test_coverage","color":"5319e7","default":false},{"id":404622871,"url":"https://api.github.com/repos/SatelliteQE/robottelo/labels/review","name":"review","color":"00ff00","default":false},{"id":67639907,"url":"https://api.github.com/repos/SatelliteQE/robottelo/labels/UI","name":"UI","color":"0052cc","default":false}],"state":"open","locked":false,"assignee":{"login":"abalakh","id":11719030,"avatar_url":"https://avatars0.githubusercontent.com/u/11719030?v=4","gravatar_id":"","url":"https://api.github.com/users/abalakh","html_url":"https://github.com/abalakh","followers_url":"https://api.github.com/users/abalakh/followers","following_url":"https://api.github.com/users/abalakh/following{/other_user}","gists_url":"https://api.github.com/users/abalakh/gists{/gist_id}","starred_url":"https://api.github.com/users/abalakh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abalakh/subscriptions","organizations_url":"https://api.github.com/users/abalakh/orgs","repos_url":"https://api.github.com/users/abalakh/repos","events_url":"https://api.github.com/users/abalakh/events{/privacy}","received_events_url":"https://api.github.com/users/abalakh/received_events","type":"User","site_admin":false},"assignees":[{"login":"abalakh","id":11719030,"avatar_url":"https://avatars0.githubusercontent.com/u/11719030?v=4","gravatar_id":"","url":"https://api.github.com/users/abalakh","html_url":"https://github.com/abalakh","followers_url":"https://api.github.com/users/abalakh/followers","following_url":"https://api.github.com/users/abalakh/following{/other_user}","gists_url":"https://api.github.com/users/abalakh/gists{/gist_id}","starred_url":"https://api.github.com/users/abalakh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/abalakh/subscriptions","organizations_url":"https://api.github.com/users/abalakh/orgs","repos_url":"https://api.github.com/users/abalakh/repos","events_url":"https://api.github.com/users/abalakh/events{/privacy}","received_events_url":"https://api.github.com/users/abalakh/received_events","type":"User","site_admin":false}],"milestone":null,"comments":23,"created_at":"2017-11-24T11:50:43Z","updated_at":"2017-11-28T18:32:50Z","closed_at":null,"author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/SatelliteQE/robottelo/pulls/5612","html_url":"https://github.com/SatelliteQE/robottelo/pull/5612","diff_url":"https://github.com/SatelliteQE/robottelo/pull/5612.diff","patch_url":"https://github.com/SatelliteQE/robottelo/pull/5612.patch"},"body":"https://bugzilla.redhat.com/show_bug.cgi?id=1304891\r\n```python\r\npy.test -v tests/foreman/ui/test_contentview.py -k test_positive_composite_child_inc_update\r\n============================= test session starts ==============================\r\nplatform darwin -- Python 2.7.13, pytest-3.2.3, py-1.5.2, pluggy-0.4.0 -- /Users/andrii/workspace/env/bin/python\r\ncachedir: .cache\r\nrootdir: /Users/andrii/workspace/robottelo, inifile:\r\nplugins: xdist-1.20.1, services-1.2.1, mock-1.6.3, forked-0.2, cov-2.5.1\r\ncollected 103 items\r\n2017-11-24 13:36:24 - conftest - DEBUG - BZ deselect is disabled in settings\r\n\r\n\r\ntests/foreman/ui/test_contentview.py::ContentViewTestCase::test_positive_composite_child_inc_update PASSED\r\n\r\n============================= 102 tests deselected =============================\r\n================== 1 passed, 102 deselected in 714.44 seconds ==================\r\n```"},"comment":{"url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/comments/347619746","html_url":"https://github.com/SatelliteQE/robottelo/pull/5612#issuecomment-347619746","issue_url":"https://api.github.com/repos/SatelliteQE/robottelo/issues/5612","id":347619746,"user":{"login":"oshtaier","id":10895065,"avatar_url":"https://avatars1.githubusercontent.com/u/10895065?v=4","gravatar_id":"","url":"https://api.github.com/users/oshtaier","html_url":"https://github.com/oshtaier","followers_url":"https://api.github.com/users/oshtaier/followers","following_url":"https://api.github.com/users/oshtaier/following{/other_user}","gists_url":"https://api.github.com/users/oshtaier/gists{/gist_id}","starred_url":"https://api.github.com/users/oshtaier/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oshtaier/subscriptions","organizations_url":"https://api.github.com/users/oshtaier/orgs","repos_url":"https://api.github.com/users/oshtaier/repos","events_url":"https://api.github.com/users/oshtaier/events{/privacy}","received_events_url":"https://api.github.com/users/oshtaier/received_events","type":"User","site_admin":false},"created_at":"2017-11-28T18:32:50Z","updated_at":"2017-11-28T18:32:50Z","author_association":"CONTRIBUTOR","body":"are there more expected than 1 `self.assertGreaterEqual(len(errata), 1)`?"}} | {
"id": 4000279,
"name": "SatelliteQE/robottelo",
"url": "https://api.github.com/repos/SatelliteQE/robottelo"
} | {
"id": 10895065,
"login": "oshtaier",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10895065?",
"url": "https://api.github.com/users/oshtaier"
} | {
"id": 8754276,
"login": "SatelliteQE",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8754276?",
"url": "https://api.github.com/orgs/SatelliteQE"
} | 2017-11-28T18:32:50 | 6914520863 | {"actor":{"display_login":"oshtaier"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ScriptChart/ScriptChart/issues/14","repository_url":"https://api.github.com/repos/ScriptChart/ScriptChart","labels_url":"https://api.github.com/repos/ScriptChart/ScriptChart/issues/14/labels{/name}","comments_url":"https://api.github.com/repos/ScriptChart/ScriptChart/issues/14/comments","events_url":"https://api.github.com/repos/ScriptChart/ScriptChart/issues/14/events","html_url":"https://github.com/ScriptChart/ScriptChart/issues/14","id":256789045,"number":14,"title":"Unlock ICANN protection lock","user":{"login":"alparamonov","id":25197861,"avatar_url":"https://avatars3.githubusercontent.com/u/25197861?v=4","gravatar_id":"","url":"https://api.github.com/users/alparamonov","html_url":"https://github.com/alparamonov","followers_url":"https://api.github.com/users/alparamonov/followers","following_url":"https://api.github.com/users/alparamonov/following{/other_user}","gists_url":"https://api.github.com/users/alparamonov/gists{/gist_id}","starred_url":"https://api.github.com/users/alparamonov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alparamonov/subscriptions","organizations_url":"https://api.github.com/users/alparamonov/orgs","repos_url":"https://api.github.com/users/alparamonov/repos","events_url":"https://api.github.com/users/alparamonov/events{/privacy}","received_events_url":"https://api.github.com/users/alparamonov/received_events","type":"User","site_admin":false},"labels":[{"id":689249007,"url":"https://api.github.com/repos/ScriptChart/ScriptChart/labels/enhancement","name":"enhancement","color":"84b6eb","default":true}],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-09-11T17:52:33Z","updated_at":"2017-11-12T23:59:06Z","closed_at":"2017-11-12T23:59:06Z","author_association":"OWNER","body":"When purchasing the domain name, new registrar has implicitly triggered transfer lock for 60 days. The support ticket has been submitted.\r\n\r\nhttps://www.icann.org/resources/pages/locked-2013-05-03-en"},"comment":{"url":"https://api.github.com/repos/ScriptChart/ScriptChart/issues/comments/343779622","html_url":"https://github.com/ScriptChart/ScriptChart/issues/14#issuecomment-343779622","issue_url":"https://api.github.com/repos/ScriptChart/ScriptChart/issues/14","id":343779622,"user":{"login":"alparamonov","id":25197861,"avatar_url":"https://avatars3.githubusercontent.com/u/25197861?v=4","gravatar_id":"","url":"https://api.github.com/users/alparamonov","html_url":"https://github.com/alparamonov","followers_url":"https://api.github.com/users/alparamonov/followers","following_url":"https://api.github.com/users/alparamonov/following{/other_user}","gists_url":"https://api.github.com/users/alparamonov/gists{/gist_id}","starred_url":"https://api.github.com/users/alparamonov/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/alparamonov/subscriptions","organizations_url":"https://api.github.com/users/alparamonov/orgs","repos_url":"https://api.github.com/users/alparamonov/repos","events_url":"https://api.github.com/users/alparamonov/events{/privacy}","received_events_url":"https://api.github.com/users/alparamonov/received_events","type":"User","site_admin":false},"created_at":"2017-11-12T23:59:05Z","updated_at":"2017-11-12T23:59:05Z","author_association":"OWNER","body":"The new DN has been unlocked."}} | {
"id": 103137200,
"name": "ScriptChart/ScriptChart",
"url": "https://api.github.com/repos/ScriptChart/ScriptChart"
} | {
"id": 25197861,
"login": "alparamonov",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/25197861?",
"url": "https://api.github.com/users/alparamonov"
} | {
"id": 31852658,
"login": "ScriptChart",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/31852658?",
"url": "https://api.github.com/orgs/ScriptChart"
} | 2017-11-12T23:59:06 | 6844297392 | {"actor":{"display_login":"alparamonov"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/issues/215","repository_url":"https://api.github.com/repos/Shopkeepers/Shopkeepers","labels_url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/issues/215/labels{/name}","comments_url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/issues/215/comments","events_url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/issues/215/events","html_url":"https://github.com/Shopkeepers/Shopkeepers/issues/215","id":268712927,"number":215,"title":"Cannot buy certain items from some shops","user":{"login":"blablubbabcDEV","id":33092043,"avatar_url":"https://avatars1.githubusercontent.com/u/33092043?v=4","gravatar_id":"","url":"https://api.github.com/users/blablubbabcDEV","html_url":"https://github.com/blablubbabcDEV","followers_url":"https://api.github.com/users/blablubbabcDEV/followers","following_url":"https://api.github.com/users/blablubbabcDEV/following{/other_user}","gists_url":"https://api.github.com/users/blablubbabcDEV/gists{/gist_id}","starred_url":"https://api.github.com/users/blablubbabcDEV/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/blablubbabcDEV/subscriptions","organizations_url":"https://api.github.com/users/blablubbabcDEV/orgs","repos_url":"https://api.github.com/users/blablubbabcDEV/repos","events_url":"https://api.github.com/users/blablubbabcDEV/events{/privacy}","received_events_url":"https://api.github.com/users/blablubbabcDEV/received_events","type":"User","site_admin":false},"labels":[{"id":725646109,"url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/labels/declined","name":"declined","color":"e6e6e6","default":false},{"id":731215139,"url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/labels/Defect","name":"Defect","color":"ededed","default":false},{"id":725647279,"url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/labels/migrated","name":"migrated","color":"d4c5f9","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":9,"created_at":"2017-10-26T10:47:14Z","updated_at":"2017-10-26T10:48:01Z","closed_at":null,"author_association":"COLLABORATOR","body":"**Migrated from:** https://dev.bukkit.org/projects/shopkeepers/issues/208\n\n**Originally posted by CreepahMC (Dec 27, 2013):** \n\nWhat steps will reproduce the problem?\n1. Opening and attempting to buy the item in some shops\n(Not really clear on how to answer this)What is the expected output? What do you see instead?\nIn some of my villager shopkeepers I can buy items with the required item but in other shops, the shopkeeper will not accept the offer which is the correct offer. It just flashes it when I attempt to click the output and it places it back. Using /shopkeeper debug I noticed it said Invalid Offer when attempting to buy an item but the offer was correct. Note: Some the items traded contain lore and a name.What version of the product are you using?\nWell v1.16-beta2 for CB 1.6.4-R2.0 was what I was using before so I downgraded to v1.16-beta for CB 1.6.4-R2.0 to see any change; Nothing happened. The shops broken before are still broken.Do you have an error log of what happened?\nHere is a little of it from my console where I was rapidly clicking the output but it wouldn't give it to me:27.12 13:05:41 [Server] INFO Invalid trade by CreepahPlaysMC with shopkeeper at world,141,74,-292:\n27.12 13:05:41 [Server] INFO SULPHUR:0:§f§lPurified Dust and (nothing) for GOLD_HELMET:0:§4§lAsmire's Corrupted Helmet\n27.12 13:05:41 [Server] INFO Invalid trade by CreepahPlaysMC with shopkeeper at world,141,74,-292:\n27.12 13:05:41 [Server] INFO SULPHUR:0:§f§lPurified Dust and (nothing) for GOLD_HELMET:0:§4§lAsmire's Corrupted Helmet\n27.12 13:05:41 [Server] INFO Invalid trade by CreepahPlaysMC with shopkeeper at world,141,74,-292:\n27.12 13:05:41 [Server] INFO SULPHUR:0:§f§lPurified Dust and (nothing) for GOLD_HELMET:0:§4§lAsmire's Corrupted Helmet\n27.12 13:05:41 [Server] INFO Invalid trade by CreepahPlaysMC with shopkeeper at world,141,74,-292:\n27.12 13:05:40 [Server] INFO SULPHUR:0:§f§lPurified Dust and (nothing) for GOLD_HELMET:0:§4§lAsmire's Corrupted Helmet\n27.12 13:05:40 [Server] INFO Invalid trade by CreepahPlaysMC with shopkeeper at world,141,74,-292:\n27.12 13:05:38 [Server] INFO Trade window opened\n27.12 13:05:38 [Server] INFO Opening trade window...\n27.12 13:05:38 [Server] INFO Player CreepahPlaysMC is interacting with villager atPlease provide any additional information below.\nSome of the broken shops trade a lored item(s) with a name for another lored item(s) with a name. Sometimes after restarts and /shopkeeper reloads, the broken shops either stay the same, fix themselves, or fix themselves then go back to not working again."},"comment":{"url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/issues/comments/339627147","html_url":"https://github.com/Shopkeepers/Shopkeepers/issues/215#issuecomment-339627147","issue_url":"https://api.github.com/repos/Shopkeepers/Shopkeepers/issues/215","id":339627147,"user":{"login":"blablubbabcDEV","id":33092043,"avatar_url":"https://avatars1.githubusercontent.com/u/33092043?v=4","gravatar_id":"","url":"https://api.github.com/users/blablubbabcDEV","html_url":"https://github.com/blablubbabcDEV","followers_url":"https://api.github.com/users/blablubbabcDEV/followers","following_url":"https://api.github.com/users/blablubbabcDEV/following{/other_user}","gists_url":"https://api.github.com/users/blablubbabcDEV/gists{/gist_id}","starred_url":"https://api.github.com/users/blablubbabcDEV/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/blablubbabcDEV/subscriptions","organizations_url":"https://api.github.com/users/blablubbabcDEV/orgs","repos_url":"https://api.github.com/users/blablubbabcDEV/repos","events_url":"https://api.github.com/users/blablubbabcDEV/events{/privacy}","received_events_url":"https://api.github.com/users/blablubbabcDEV/received_events","type":"User","site_admin":false},"created_at":"2017-10-26T10:48:01Z","updated_at":"2017-10-26T10:48:01Z","author_association":"COLLABORATOR","body":"**Originally commented by blablubbabc (Mar 11, 2014):** \n\nI will close this ticket for now. For me attributes are working fine on the latest versions."}} | {
"id": 107657691,
"name": "Shopkeepers/Shopkeepers",
"url": "https://api.github.com/repos/Shopkeepers/Shopkeepers"
} | {
"id": 33092043,
"login": "blablubbabcDEV",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/33092043?",
"url": "https://api.github.com/users/blablubbabcDEV"
} | {
"id": 32820144,
"login": "Shopkeepers",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/32820144?",
"url": "https://api.github.com/orgs/Shopkeepers"
} | 2017-10-26T10:48:01 | 6768983392 | {"actor":{"display_login":"blablubbabcDEV"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/Starcounter/Guidelines/issues/33","repository_url":"https://api.github.com/repos/Starcounter/Guidelines","labels_url":"https://api.github.com/repos/Starcounter/Guidelines/issues/33/labels{/name}","comments_url":"https://api.github.com/repos/Starcounter/Guidelines/issues/33/comments","events_url":"https://api.github.com/repos/Starcounter/Guidelines/issues/33/events","html_url":"https://github.com/Starcounter/Guidelines/issues/33","id":237669215,"number":33,"title":"Pattern for the Settings page","user":{"login":"warpech","id":566463,"avatar_url":"https://avatars0.githubusercontent.com/u/566463?v=4","gravatar_id":"","url":"https://api.github.com/users/warpech","html_url":"https://github.com/warpech","followers_url":"https://api.github.com/users/warpech/followers","following_url":"https://api.github.com/users/warpech/following{/other_user}","gists_url":"https://api.github.com/users/warpech/gists{/gist_id}","starred_url":"https://api.github.com/users/warpech/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/warpech/subscriptions","organizations_url":"https://api.github.com/users/warpech/orgs","repos_url":"https://api.github.com/users/warpech/repos","events_url":"https://api.github.com/users/warpech/events{/privacy}","received_events_url":"https://api.github.com/users/warpech/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2017-06-21T21:25:22Z","updated_at":"2017-08-03T18:57:08Z","closed_at":null,"body":"\"Settings page\" was first presented in https://github.com/StarcounterAppsFreezer/Launcher/issues/177, the later asked for clarifications in https://github.com/Starcounter/RebelsLounge/issues/29, finally dismissed in https://github.com/Starcounter/TechComm/issues/171...\r\n\r\nWe have quite a love/hate relationship with what used to be called a \"Settings page\" in Launcher. Now it may look like we've abandoned the idea, but I think that we still need a common concept of a Settings page.\r\n\r\nConsider systems like Android (\"Settings\" app), Windows (\"Control Panel\" prior to Win 10, \"Settings\" in Win 10), MacOS (\"System Preferences\"), Google (G Suite [Admin Console](https://admin.google.com/), Google.com [My Account](https://myaccount.google.com/))... All these systems have a single place in which you configure the behaviour of your system.\r\n\r\nI think that we need the same! \r\n\r\nIt should be based on few principles:\r\n\r\n- each app has a conventional URI `/<appname>/settings` (not enforced)\r\n- if you want, you can make it appear in the shared Settings page by mapping it to the ~~class `SettingsBlendingPoint` : `Simplified.Ring6.WebSection`~~ token `settings`\r\n- Launchpad has a built-in icon and link to `/launchpad/settings`, which itself is mapped to ~~`SettingsBlendingPoint`~~ `settings`\r\n- ~~if you are not using Simplified data model then you need to have a equivalent of the `SettingsBlendingPoint` class in your data model and map that class to `SettingsBlendingPoint` using the data mapping~~\r\n\r\nThe above would gives you a big merged page of settings coming from all apps. It does not look nice. I believe that some kind of accordion or other UI can be achieved on the client-side by a custom element.\r\n\r\nAny comments?\r\n\r\ncc @Starcounter/sc-apps "},"comment":{"url":"https://api.github.com/repos/Starcounter/Guidelines/issues/comments/320059536","html_url":"https://github.com/Starcounter/Guidelines/issues/33#issuecomment-320059536","issue_url":"https://api.github.com/repos/Starcounter/Guidelines/issues/33","id":320059536,"user":{"login":"warpech","id":566463,"avatar_url":"https://avatars0.githubusercontent.com/u/566463?v=4","gravatar_id":"","url":"https://api.github.com/users/warpech","html_url":"https://github.com/warpech","followers_url":"https://api.github.com/users/warpech/followers","following_url":"https://api.github.com/users/warpech/following{/other_user}","gists_url":"https://api.github.com/users/warpech/gists{/gist_id}","starred_url":"https://api.github.com/users/warpech/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/warpech/subscriptions","organizations_url":"https://api.github.com/users/warpech/orgs","repos_url":"https://api.github.com/users/warpech/repos","events_url":"https://api.github.com/users/warpech/events{/privacy}","received_events_url":"https://api.github.com/users/warpech/received_events","type":"User","site_admin":false},"created_at":"2017-08-03T18:57:08Z","updated_at":"2017-08-03T18:57:08Z","body":"To implement this, there are two parts:\r\n\r\n1. Launchpad link: https://github.com/StarcounterApps/Launchpad/issues/18\r\n2. Explanation of the pattern: https://github.com/Starcounter/Docs/issues/121"}} | {
"id": 55141910,
"name": "Starcounter/Guidelines",
"url": "https://api.github.com/repos/Starcounter/Guidelines"
} | {
"id": 566463,
"login": "warpech",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/566463?",
"url": "https://api.github.com/users/warpech"
} | {
"id": 1219066,
"login": "Starcounter",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1219066?",
"url": "https://api.github.com/orgs/Starcounter"
} | 2017-08-03T18:57:08 | 6389988891 | {"actor":{"display_login":"warpech"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/SublimeText/ExtractSublimePackage/issues/3","repository_url":"https://api.github.com/repos/SublimeText/ExtractSublimePackage","labels_url":"https://api.github.com/repos/SublimeText/ExtractSublimePackage/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/SublimeText/ExtractSublimePackage/issues/3/comments","events_url":"https://api.github.com/repos/SublimeText/ExtractSublimePackage/issues/3/events","html_url":"https://github.com/SublimeText/ExtractSublimePackage/issues/3","id":206970595,"number":3,"title":"Package Control Warning","user":{"login":"patelneal","id":12269792,"avatar_url":"https://avatars3.githubusercontent.com/u/12269792?v=3","gravatar_id":"","url":"https://api.github.com/users/patelneal","html_url":"https://github.com/patelneal","followers_url":"https://api.github.com/users/patelneal/followers","following_url":"https://api.github.com/users/patelneal/following{/other_user}","gists_url":"https://api.github.com/users/patelneal/gists{/gist_id}","starred_url":"https://api.github.com/users/patelneal/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/patelneal/subscriptions","organizations_url":"https://api.github.com/users/patelneal/orgs","repos_url":"https://api.github.com/users/patelneal/repos","events_url":"https://api.github.com/users/patelneal/events{/privacy}","received_events_url":"https://api.github.com/users/patelneal/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2017-02-11T09:50:52Z","updated_at":"2017-03-28T11:07:09Z","closed_at":"2017-03-21T14:13:39Z","body":"It gives you a warning that when extracting a package for you to delete the Package Control folder from /Packages/ but when you initiate Extract Package Control it creates a Package Control folder on its own so the warning will always pop up. This is small, but it keeps asking to restart Sublime Text.\r\n\r\nSublime Text Build 3126\r\nmacOS Sierra 10.12"},"comment":{"url":"https://api.github.com/repos/SublimeText/ExtractSublimePackage/issues/comments/289736468","html_url":"https://github.com/SublimeText/ExtractSublimePackage/issues/3#issuecomment-289736468","issue_url":"https://api.github.com/repos/SublimeText/ExtractSublimePackage/issues/3","id":289736468,"user":{"login":"Kristinita","id":17247677,"avatar_url":"https://avatars1.githubusercontent.com/u/17247677?v=3","gravatar_id":"","url":"https://api.github.com/users/Kristinita","html_url":"https://github.com/Kristinita","followers_url":"https://api.github.com/users/Kristinita/followers","following_url":"https://api.github.com/users/Kristinita/following{/other_user}","gists_url":"https://api.github.com/users/Kristinita/gists{/gist_id}","starred_url":"https://api.github.com/users/Kristinita/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Kristinita/subscriptions","organizations_url":"https://api.github.com/users/Kristinita/orgs","repos_url":"https://api.github.com/users/Kristinita/repos","events_url":"https://api.github.com/users/Kristinita/events{/privacy}","received_events_url":"https://api.github.com/users/Kristinita/received_events","type":"User","site_admin":false},"created_at":"2017-03-28T11:07:09Z","updated_at":"2017-03-28T11:07:09Z","body":"@FichteFoll , I don't think, that close unfixed issue — is the best idea.\r\n\r\nThis is open source: maybe some developer see open issue and fix it.\r\n\r\nThanks."}} | {
"id": 13804586,
"name": "SublimeText/ExtractSublimePackage",
"url": "https://api.github.com/repos/SublimeText/ExtractSublimePackage"
} | {
"id": 17247677,
"login": "Kristinita",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/17247677?",
"url": "https://api.github.com/users/Kristinita"
} | {
"id": 684879,
"login": "SublimeText",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/684879?",
"url": "https://api.github.com/orgs/SublimeText"
} | 2017-03-28T11:07:09 | 5577978285 | {"actor":{"display_login":"Kristinita"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/TrinityCore/TrinityCore/issues/20849","repository_url":"https://api.github.com/repos/TrinityCore/TrinityCore","labels_url":"https://api.github.com/repos/TrinityCore/TrinityCore/issues/20849/labels{/name}","comments_url":"https://api.github.com/repos/TrinityCore/TrinityCore/issues/20849/comments","events_url":"https://api.github.com/repos/TrinityCore/TrinityCore/issues/20849/events","html_url":"https://github.com/TrinityCore/TrinityCore/issues/20849","id":273258044,"number":20849,"title":"Lieutenant Horatio Laine won't give the quest 'Murder Was The Case That They Gave Me' unless Player has the quest 'Hero's Call: Westfall!'","user":{"login":"nubqt","id":33535711,"avatar_url":"https://avatars3.githubusercontent.com/u/33535711?v=4","gravatar_id":"","url":"https://api.github.com/users/nubqt","html_url":"https://github.com/nubqt","followers_url":"https://api.github.com/users/nubqt/followers","following_url":"https://api.github.com/users/nubqt/following{/other_user}","gists_url":"https://api.github.com/users/nubqt/gists{/gist_id}","starred_url":"https://api.github.com/users/nubqt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nubqt/subscriptions","organizations_url":"https://api.github.com/users/nubqt/orgs","repos_url":"https://api.github.com/users/nubqt/repos","events_url":"https://api.github.com/users/nubqt/events{/privacy}","received_events_url":"https://api.github.com/users/nubqt/received_events","type":"User","site_admin":false},"labels":[{"id":137384659,"url":"https://api.github.com/repos/TrinityCore/TrinityCore/labels/Branch-master","name":"Branch-master","color":"188846","default":false},{"id":26232657,"url":"https://api.github.com/repos/TrinityCore/TrinityCore/labels/Comp-Database","name":"Comp-Database","color":"FF6600","default":false},{"id":104790,"url":"https://api.github.com/repos/TrinityCore/TrinityCore/labels/Sub-Quests","name":"Sub-Quests","color":"e10c02","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2017-11-12T19:36:01Z","updated_at":"2017-11-13T19:02:07Z","closed_at":null,"author_association":"NONE","body":"**Description:** Lieutenant Horatio Laine won't give the quest 'Murder Was The Case That They Gave Me' unless Player has the quest 'Hero's Call: Westfall!'\r\n\r\n**Expected behaviour:** the lieutenant must give the quest even when the Player doesn't have the other quest.\r\n\r\n**Steps to reproduce the problem:**\r\n\r\n1. Create a level 10 Alliance character.\r\n2. Travel to Westfall.\r\n3. Talk to the lieutenant.\r\n4. The quest 'Murder Was The Case That They Gave Me' won't appear as an option (but another two will as intended).\r\n5. Travel to one of Stormwind's Hero's Board.\r\n6. Click the board\r\n7. Get the quest 'Hero's Call: Westfall!'\r\n8. Travel back to Westfall to the lieutenant\r\n9. Speak to him\r\n10. The quest 'Murder Was The Case That They Gave Me' will now appear as an option.\r\n\r\n**Branch(es):** master\r\n\r\n**TC rev. hash/commit:** 7334419\r\n\r\n**TDB version:** 720.00_2017_04_18\r\n\r\n**Operating system:** MacOS"},"comment":{"url":"https://api.github.com/repos/TrinityCore/TrinityCore/issues/comments/344022337","html_url":"https://github.com/TrinityCore/TrinityCore/issues/20849#issuecomment-344022337","issue_url":"https://api.github.com/repos/TrinityCore/TrinityCore/issues/20849","id":344022337,"user":{"login":"tkrokli","id":4903600,"avatar_url":"https://avatars2.githubusercontent.com/u/4903600?v=4","gravatar_id":"","url":"https://api.github.com/users/tkrokli","html_url":"https://github.com/tkrokli","followers_url":"https://api.github.com/users/tkrokli/followers","following_url":"https://api.github.com/users/tkrokli/following{/other_user}","gists_url":"https://api.github.com/users/tkrokli/gists{/gist_id}","starred_url":"https://api.github.com/users/tkrokli/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkrokli/subscriptions","organizations_url":"https://api.github.com/users/tkrokli/orgs","repos_url":"https://api.github.com/users/tkrokli/repos","events_url":"https://api.github.com/users/tkrokli/events{/privacy}","received_events_url":"https://api.github.com/users/tkrokli/received_events","type":"User","site_admin":false},"created_at":"2017-11-13T19:02:07Z","updated_at":"2017-11-13T19:02:07Z","author_association":"MEMBER","body":"Looks like a good starting point, will be nice to see feedback from those of you who still have got the 7.2.0 or 7.2.5 game client.\r\n\r\nSQL format details: Please note that TC does not use ' ' (apostrophes) around integers (unless defined in DB as char/varchar/text)."}} | {
"id": 1204412,
"name": "TrinityCore/TrinityCore",
"url": "https://api.github.com/repos/TrinityCore/TrinityCore"
} | {
"id": 4903600,
"login": "tkrokli",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4903600?",
"url": "https://api.github.com/users/tkrokli"
} | {
"id": 539602,
"login": "TrinityCore",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/539602?",
"url": "https://api.github.com/orgs/TrinityCore"
} | 2017-11-13T19:02:08 | 6848586399 | {"actor":{"display_login":"tkrokli"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/issues/587","repository_url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web","labels_url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/issues/587/labels{/name}","comments_url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/issues/587/comments","events_url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/issues/587/events","html_url":"https://github.com/WebliniaERP/webliniaerp-web/issues/587","id":226779203,"number":587,"title":"Problema - Venda Duplicada","user":{"login":"mtrystao","id":13888745,"avatar_url":"https://avatars3.githubusercontent.com/u/13888745?v=4","gravatar_id":"","url":"https://api.github.com/users/mtrystao","html_url":"https://github.com/mtrystao","followers_url":"https://api.github.com/users/mtrystao/followers","following_url":"https://api.github.com/users/mtrystao/following{/other_user}","gists_url":"https://api.github.com/users/mtrystao/gists{/gist_id}","starred_url":"https://api.github.com/users/mtrystao/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mtrystao/subscriptions","organizations_url":"https://api.github.com/users/mtrystao/orgs","repos_url":"https://api.github.com/users/mtrystao/repos","events_url":"https://api.github.com/users/mtrystao/events{/privacy}","received_events_url":"https://api.github.com/users/mtrystao/received_events","type":"User","site_admin":false},"labels":[{"id":250550335,"url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/labels/1-problema","name":"1-problema","color":"f7c6c7","default":false},{"id":250556729,"url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/labels/2-prioridade%20alta","name":"2-prioridade alta","color":"e11d21","default":false},{"id":396269955,"url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/labels/3-HAGE%20SUPLEMENTOS","name":"3-HAGE SUPLEMENTOS","color":"5319e7","default":false},{"id":250550339,"url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/labels/inv%C3%A1lido","name":"inválido","color":"e6e6e6","default":false},{"id":307211615,"url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/labels/nextsprint","name":"nextsprint","color":"e6e6e6","default":false}],"state":"open","locked":false,"assignee":{"login":"matheuscaetano","id":6705711,"avatar_url":"https://avatars2.githubusercontent.com/u/6705711?v=4","gravatar_id":"","url":"https://api.github.com/users/matheuscaetano","html_url":"https://github.com/matheuscaetano","followers_url":"https://api.github.com/users/matheuscaetano/followers","following_url":"https://api.github.com/users/matheuscaetano/following{/other_user}","gists_url":"https://api.github.com/users/matheuscaetano/gists{/gist_id}","starred_url":"https://api.github.com/users/matheuscaetano/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matheuscaetano/subscriptions","organizations_url":"https://api.github.com/users/matheuscaetano/orgs","repos_url":"https://api.github.com/users/matheuscaetano/repos","events_url":"https://api.github.com/users/matheuscaetano/events{/privacy}","received_events_url":"https://api.github.com/users/matheuscaetano/received_events","type":"User","site_admin":false},"assignees":[{"login":"matheuscaetano","id":6705711,"avatar_url":"https://avatars2.githubusercontent.com/u/6705711?v=4","gravatar_id":"","url":"https://api.github.com/users/matheuscaetano","html_url":"https://github.com/matheuscaetano","followers_url":"https://api.github.com/users/matheuscaetano/followers","following_url":"https://api.github.com/users/matheuscaetano/following{/other_user}","gists_url":"https://api.github.com/users/matheuscaetano/gists{/gist_id}","starred_url":"https://api.github.com/users/matheuscaetano/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matheuscaetano/subscriptions","organizations_url":"https://api.github.com/users/matheuscaetano/orgs","repos_url":"https://api.github.com/users/matheuscaetano/repos","events_url":"https://api.github.com/users/matheuscaetano/events{/privacy}","received_events_url":"https://api.github.com/users/matheuscaetano/received_events","type":"User","site_admin":false}],"milestone":null,"comments":1,"created_at":"2017-05-06T15:15:41Z","updated_at":"2017-07-26T13:22:14Z","closed_at":null,"body":"Identificar o motivo pelo qual vendas estao sendo duplicadas na Hage, impactos\nEstoque\nFaturamento da Loja\nComissão do Vendedor"},"comment":{"url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/issues/comments/318051220","html_url":"https://github.com/WebliniaERP/webliniaerp-web/issues/587#issuecomment-318051220","issue_url":"https://api.github.com/repos/WebliniaERP/webliniaerp-web/issues/587","id":318051220,"user":{"login":"matheuscaetano","id":6705711,"avatar_url":"https://avatars2.githubusercontent.com/u/6705711?v=4","gravatar_id":"","url":"https://api.github.com/users/matheuscaetano","html_url":"https://github.com/matheuscaetano","followers_url":"https://api.github.com/users/matheuscaetano/followers","following_url":"https://api.github.com/users/matheuscaetano/following{/other_user}","gists_url":"https://api.github.com/users/matheuscaetano/gists{/gist_id}","starred_url":"https://api.github.com/users/matheuscaetano/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/matheuscaetano/subscriptions","organizations_url":"https://api.github.com/users/matheuscaetano/orgs","repos_url":"https://api.github.com/users/matheuscaetano/repos","events_url":"https://api.github.com/users/matheuscaetano/events{/privacy}","received_events_url":"https://api.github.com/users/matheuscaetano/received_events","type":"User","site_admin":false},"created_at":"2017-07-26T13:22:14Z","updated_at":"2017-07-26T13:22:14Z","body":"Problema ocorria por causa da possibilidade de fechar a aba de opções (Cupom) após finalizar a venda, desta forma volta para a tela de pagamento dando a possibilidade de realizar a mesma venda novamente."}} | {
"id": 41098570,
"name": "WebliniaERP/webliniaerp-web",
"url": "https://api.github.com/repos/WebliniaERP/webliniaerp-web"
} | {
"id": 6705711,
"login": "matheuscaetano",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6705711?",
"url": "https://api.github.com/users/matheuscaetano"
} | {
"id": 22238293,
"login": "WebliniaERP",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/22238293?",
"url": "https://api.github.com/orgs/WebliniaERP"
} | 2017-07-26T13:22:14 | 6332737011 | {"actor":{"display_login":"matheuscaetano"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/WoodstockCS/MyPenguin/issues/1","repository_url":"https://api.github.com/repos/WoodstockCS/MyPenguin","labels_url":"https://api.github.com/repos/WoodstockCS/MyPenguin/issues/1/labels{/name}","comments_url":"https://api.github.com/repos/WoodstockCS/MyPenguin/issues/1/comments","events_url":"https://api.github.com/repos/WoodstockCS/MyPenguin/issues/1/events","html_url":"https://github.com/WoodstockCS/MyPenguin/pull/1","id":202630685,"number":1,"title":"MyPaw","user":{"login":"TessaMaria2","id":25183999,"avatar_url":"https://avatars.githubusercontent.com/u/25183999?v=3","gravatar_id":"","url":"https://api.github.com/users/TessaMaria2","html_url":"https://github.com/TessaMaria2","followers_url":"https://api.github.com/users/TessaMaria2/followers","following_url":"https://api.github.com/users/TessaMaria2/following{/other_user}","gists_url":"https://api.github.com/users/TessaMaria2/gists{/gist_id}","starred_url":"https://api.github.com/users/TessaMaria2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/TessaMaria2/subscriptions","organizations_url":"https://api.github.com/users/TessaMaria2/orgs","repos_url":"https://api.github.com/users/TessaMaria2/repos","events_url":"https://api.github.com/users/TessaMaria2/events{/privacy}","received_events_url":"https://api.github.com/users/TessaMaria2/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-01-23T19:41:42Z","updated_at":"2017-02-26T21:58:18Z","closed_at":"2017-02-26T21:58:18Z","pull_request":{"url":"https://api.github.com/repos/WoodstockCS/MyPenguin/pulls/1","html_url":"https://github.com/WoodstockCS/MyPenguin/pull/1","diff_url":"https://github.com/WoodstockCS/MyPenguin/pull/1.diff","patch_url":"https://github.com/WoodstockCS/MyPenguin/pull/1.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/WoodstockCS/MyPenguin/issues/comments/282591333","html_url":"https://github.com/WoodstockCS/MyPenguin/pull/1#issuecomment-282591333","issue_url":"https://api.github.com/repos/WoodstockCS/MyPenguin/issues/1","id":282591333,"user":{"login":"andytilia","id":7727226,"avatar_url":"https://avatars.githubusercontent.com/u/7727226?v=3","gravatar_id":"","url":"https://api.github.com/users/andytilia","html_url":"https://github.com/andytilia","followers_url":"https://api.github.com/users/andytilia/followers","following_url":"https://api.github.com/users/andytilia/following{/other_user}","gists_url":"https://api.github.com/users/andytilia/gists{/gist_id}","starred_url":"https://api.github.com/users/andytilia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andytilia/subscriptions","organizations_url":"https://api.github.com/users/andytilia/orgs","repos_url":"https://api.github.com/users/andytilia/repos","events_url":"https://api.github.com/users/andytilia/events{/privacy}","received_events_url":"https://api.github.com/users/andytilia/received_events","type":"User","site_admin":false},"created_at":"2017-02-26T21:58:18Z","updated_at":"2017-02-26T21:58:18Z","body":":+1:"}} | {
"id": 79834308,
"name": "WoodstockCS/MyPenguin",
"url": "https://api.github.com/repos/WoodstockCS/MyPenguin"
} | {
"id": 7727226,
"login": "andytilia",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7727226?",
"url": "https://api.github.com/users/andytilia"
} | {
"id": 21131238,
"login": "WoodstockCS",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/21131238?",
"url": "https://api.github.com/orgs/WoodstockCS"
} | 2017-02-26T21:58:18 | 5393704166 | {"actor":{"display_login":"andytilia"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/aporeto-inc/trireme/issues/227","repository_url":"https://api.github.com/repos/aporeto-inc/trireme","labels_url":"https://api.github.com/repos/aporeto-inc/trireme/issues/227/labels{/name}","comments_url":"https://api.github.com/repos/aporeto-inc/trireme/issues/227/comments","events_url":"https://api.github.com/repos/aporeto-inc/trireme/issues/227/events","html_url":"https://github.com/aporeto-inc/trireme/pull/227","id":224625725,"number":227,"title":"Renamed connectiontracker from app-> originator network->destination","user":{"login":"amitlimaye","id":8889471,"avatar_url":"https://avatars1.githubusercontent.com/u/8889471?v=3","gravatar_id":"","url":"https://api.github.com/users/amitlimaye","html_url":"https://github.com/amitlimaye","followers_url":"https://api.github.com/users/amitlimaye/followers","following_url":"https://api.github.com/users/amitlimaye/following{/other_user}","gists_url":"https://api.github.com/users/amitlimaye/gists{/gist_id}","starred_url":"https://api.github.com/users/amitlimaye/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/amitlimaye/subscriptions","organizations_url":"https://api.github.com/users/amitlimaye/orgs","repos_url":"https://api.github.com/users/amitlimaye/repos","events_url":"https://api.github.com/users/amitlimaye/events{/privacy}","received_events_url":"https://api.github.com/users/amitlimaye/received_events","type":"User","site_admin":false},"labels":[{"id":591065086,"url":"https://api.github.com/repos/aporeto-inc/trireme/labels/in%20progress","name":"in progress","color":"ededed","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-04-26T23:14:49Z","updated_at":"2017-04-26T23:14:54Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/aporeto-inc/trireme/pulls/227","html_url":"https://github.com/aporeto-inc/trireme/pull/227","diff_url":"https://github.com/aporeto-inc/trireme/pull/227.diff","patch_url":"https://github.com/aporeto-inc/trireme/pull/227.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/aporeto-inc/trireme/issues/comments/297567523","html_url":"https://github.com/aporeto-inc/trireme/pull/227#issuecomment-297567523","issue_url":"https://api.github.com/repos/aporeto-inc/trireme/issues/227","id":297567523,"user":{"login":"codecov-io","id":8655789,"avatar_url":"https://avatars3.githubusercontent.com/u/8655789?v=3","gravatar_id":"","url":"https://api.github.com/users/codecov-io","html_url":"https://github.com/codecov-io","followers_url":"https://api.github.com/users/codecov-io/followers","following_url":"https://api.github.com/users/codecov-io/following{/other_user}","gists_url":"https://api.github.com/users/codecov-io/gists{/gist_id}","starred_url":"https://api.github.com/users/codecov-io/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/codecov-io/subscriptions","organizations_url":"https://api.github.com/users/codecov-io/orgs","repos_url":"https://api.github.com/users/codecov-io/repos","events_url":"https://api.github.com/users/codecov-io/events{/privacy}","received_events_url":"https://api.github.com/users/codecov-io/received_events","type":"User","site_admin":false},"created_at":"2017-04-26T23:14:54Z","updated_at":"2017-04-26T23:14:54Z","body":"# [Codecov](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=h1) Report\n> Merging [#227](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=desc) into [master](https://codecov.io/gh/aporeto-inc/trireme/commit/1bcf998a6ccca15486b9d0b33aaaa56fcaa1cacd?src=pr&el=desc) will **decrease** coverage by `3.67%`.\n> The diff coverage is `81.81%`.\n\n[](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree)\n\n```diff\n@@ Coverage Diff @@\n## master #227 +/- ##\n========================================\n- Coverage 52.68% 49% -3.68% \n========================================\n Files 33 33 \n Lines 3893 4322 +429 \n========================================\n+ Hits 2051 2118 +67 \n- Misses 1642 2010 +368 \n+ Partials 200 194 -6\n```\n\n\n| [Impacted Files](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree) | Coverage Δ | |\n|---|---|---|\n| [enforcer/datapath.go](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree#diff-ZW5mb3JjZXIvZGF0YXBhdGguZ28=) | `36.92% <100%> (-5.72%)` | :arrow_down: |\n| [enforcer/datapath\\_tcp.go](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree#diff-ZW5mb3JjZXIvZGF0YXBhdGhfdGNwLmdv) | `37.52% <57.14%> (-18.48%)` | :arrow_down: |\n| [cache/cache.go](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree#diff-Y2FjaGUvY2FjaGUuZ28=) | `68.29% <0%> (-11.36%)` | :arrow_down: |\n| [monitor/linuxmonitor/linuxMonitor.go](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree#diff-bW9uaXRvci9saW51eG1vbml0b3IvbGludXhNb25pdG9yLmdv) | `61.76% <0%> (-6.87%)` | :arrow_down: |\n| [trireme.go](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree#diff-dHJpcmVtZS5nbw==) | `49.61% <0%> (-6.64%)` | :arrow_down: |\n| [enforcer/utils/tokens/pkisecrets.go](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree#diff-ZW5mb3JjZXIvdXRpbHMvdG9rZW5zL3BraXNlY3JldHMuZ28=) | `43.85% <0%> (-6.15%)` | :arrow_down: |\n| [supervisor/ipsetctrl/ipsetctrl.go](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree#diff-c3VwZXJ2aXNvci9pcHNldGN0cmwvaXBzZXRjdHJsLmdv) | `63.77% <0%> (-6.05%)` | :arrow_down: |\n| [monitor/linuxmonitor/processor.go](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree#diff-bW9uaXRvci9saW51eG1vbml0b3IvcHJvY2Vzc29yLmdv) | `60.86% <0%> (-5.48%)` | :arrow_down: |\n| ... and [16 more](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=tree-more) | |\n\n------\n\n[Continue to review full report at Codecov](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=continue).\n> **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta)\n> `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data`\n> Powered by [Codecov](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=footer). Last update [1bcf998...6fcf3ab](https://codecov.io/gh/aporeto-inc/trireme/pull/227?src=pr&el=lastupdated). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments).\n"}} | {
"id": 71510166,
"name": "aporeto-inc/trireme",
"url": "https://api.github.com/repos/aporeto-inc/trireme"
} | {
"id": 8655789,
"login": "codecov-io",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8655789?",
"url": "https://api.github.com/users/codecov-io"
} | {
"id": 15617796,
"login": "aporeto-inc",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/15617796?",
"url": "https://api.github.com/orgs/aporeto-inc"
} | 2017-04-26T23:14:54 | 5764696556 | {"actor":{"display_login":"codecov-io"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/issues/270","repository_url":"https://api.github.com/repos/asciidoctor/asciidoctor.org","labels_url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/issues/270/labels{/name}","comments_url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/issues/270/comments","events_url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/issues/270/events","html_url":"https://github.com/asciidoctor/asciidoctor.org/issues/270","id":40110733,"number":270,"title":"Create a “Who's Using Asciidoctor?” page","user":{"login":"graphitefriction","id":1124042,"avatar_url":"https://avatars0.githubusercontent.com/u/1124042?v=3","gravatar_id":"","url":"https://api.github.com/users/graphitefriction","html_url":"https://github.com/graphitefriction","followers_url":"https://api.github.com/users/graphitefriction/followers","following_url":"https://api.github.com/users/graphitefriction/following{/other_user}","gists_url":"https://api.github.com/users/graphitefriction/gists{/gist_id}","starred_url":"https://api.github.com/users/graphitefriction/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/graphitefriction/subscriptions","organizations_url":"https://api.github.com/users/graphitefriction/orgs","repos_url":"https://api.github.com/users/graphitefriction/repos","events_url":"https://api.github.com/users/graphitefriction/events{/privacy}","received_events_url":"https://api.github.com/users/graphitefriction/received_events","type":"User","site_admin":false},"labels":[{"id":50359883,"url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/labels/new-content","name":"new-content","color":"009800","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/milestones/2","html_url":"https://github.com/asciidoctor/asciidoctor.org/milestone/2","labels_url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/milestones/2/labels","id":392607,"number":2,"title":"Iteration 2","description":"","creator":{"login":"graphitefriction","id":1124042,"avatar_url":"https://avatars0.githubusercontent.com/u/1124042?v=3","gravatar_id":"","url":"https://api.github.com/users/graphitefriction","html_url":"https://github.com/graphitefriction","followers_url":"https://api.github.com/users/graphitefriction/followers","following_url":"https://api.github.com/users/graphitefriction/following{/other_user}","gists_url":"https://api.github.com/users/graphitefriction/gists{/gist_id}","starred_url":"https://api.github.com/users/graphitefriction/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/graphitefriction/subscriptions","organizations_url":"https://api.github.com/users/graphitefriction/orgs","repos_url":"https://api.github.com/users/graphitefriction/repos","events_url":"https://api.github.com/users/graphitefriction/events{/privacy}","received_events_url":"https://api.github.com/users/graphitefriction/received_events","type":"User","site_admin":false},"open_issues":5,"closed_issues":5,"state":"open","created_at":"2013-08-02T00:19:53Z","updated_at":"2016-03-11T12:50:36Z","due_on":null,"closed_at":null},"comments":82,"created_at":"2014-08-12T23:44:14Z","updated_at":"2017-03-05T17:45:51Z","closed_at":null,"body":"- O’Reilly and MakerPress\n- Clojure Cookbook\n- GitHub supports AsciiDoc syntax in repositories, wikis and gists (powered by Asciidoctor)\n- NFJS, the Magazine is produced from articles written in AsciiDoc\n- Context and Dependency Injection for the Java EE Platform (CDI)\n - Specification\n - Website\n- Golo Programming Language Guide (AsciiDoc Python, soon to be Asciidoctor!)\n- Neo4j graph database project (AsciiDoc Python, soon to be Asciidoctor!)\n- Phusion Passenger Users Guides (AsciiDoc Python)\n- Git user manual (Asciidoctor when published via git-scm.com)\n- Enterprise Web Development: From Desktop to Mobile\n- Bintray REST API (https://bintray.com/docs/api.html) and User Guide (https://bintray.com/docs/bintrayuserguide.html)\n- Griffon Guide (http://new.griffon-framework.org/guide/latest/)\n- Spring Framework (Core, Data, Security, XD and more) (converted to DocBook using Asciidoctor)\n- Spring's Getting Started Guides http://spring.io/blog/2013/12/13/spring-s-getting-started-guides-migrated-to-asciidoctor\n- OpenShift Docs (https://github.com/openshift/openshift-docs)\n\nAlso Include Issue #236 \n"},"comment":{"url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/issues/comments/284246425","html_url":"https://github.com/asciidoctor/asciidoctor.org/issues/270#issuecomment-284246425","issue_url":"https://api.github.com/repos/asciidoctor/asciidoctor.org/issues/270","id":284246425,"user":{"login":"ciampix","id":372887,"avatar_url":"https://avatars1.githubusercontent.com/u/372887?v=3","gravatar_id":"","url":"https://api.github.com/users/ciampix","html_url":"https://github.com/ciampix","followers_url":"https://api.github.com/users/ciampix/followers","following_url":"https://api.github.com/users/ciampix/following{/other_user}","gists_url":"https://api.github.com/users/ciampix/gists{/gist_id}","starred_url":"https://api.github.com/users/ciampix/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ciampix/subscriptions","organizations_url":"https://api.github.com/users/ciampix/orgs","repos_url":"https://api.github.com/users/ciampix/repos","events_url":"https://api.github.com/users/ciampix/events{/privacy}","received_events_url":"https://api.github.com/users/ciampix/received_events","type":"User","site_admin":false},"created_at":"2017-03-05T17:45:51Z","updated_at":"2017-03-05T17:45:51Z","body":"The Git Book (pro git 2) is written, published and translated using Asciidoc(tor):\r\nhttps://git-scm.com/book/en/v2\r\nhttps://github.com/progit/progit2"}} | {
"id": 7346290,
"name": "asciidoctor/asciidoctor.org",
"url": "https://api.github.com/repos/asciidoctor/asciidoctor.org"
} | {
"id": 372887,
"login": "ciampix",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/372887?",
"url": "https://api.github.com/users/ciampix"
} | {
"id": 3137042,
"login": "asciidoctor",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3137042?",
"url": "https://api.github.com/orgs/asciidoctor"
} | 2017-03-05T17:45:51 | 5435529748 | {"actor":{"display_login":"ciampix"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab/issues/79","repository_url":"https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab","labels_url":"https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab/issues/79/labels{/name}","comments_url":"https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab/issues/79/comments","events_url":"https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab/issues/79/events","html_url":"https://github.com/asciidoctor/asciidoctor-extensions-lab/pull/79","id":259912385,"number":79,"title":"Git metadata preprocessor","user":{"login":"danyill","id":674783,"avatar_url":"https://avatars0.githubusercontent.com/u/674783?v=4","gravatar_id":"","url":"https://api.github.com/users/danyill","html_url":"https://github.com/danyill","followers_url":"https://api.github.com/users/danyill/followers","following_url":"https://api.github.com/users/danyill/following{/other_user}","gists_url":"https://api.github.com/users/danyill/gists{/gist_id}","starred_url":"https://api.github.com/users/danyill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/danyill/subscriptions","organizations_url":"https://api.github.com/users/danyill/orgs","repos_url":"https://api.github.com/users/danyill/repos","events_url":"https://api.github.com/users/danyill/events{/privacy}","received_events_url":"https://api.github.com/users/danyill/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":11,"created_at":"2017-09-22T19:21:15Z","updated_at":"2017-10-06T22:37:49Z","closed_at":"2017-10-04T06:32:57Z","author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab/pulls/79","html_url":"https://github.com/asciidoctor/asciidoctor-extensions-lab/pull/79","diff_url":"https://github.com/asciidoctor/asciidoctor-extensions-lab/pull/79.diff","patch_url":"https://github.com/asciidoctor/asciidoctor-extensions-lab/pull/79.patch"},"body":"Re-did this using rugged as per your fine suggestions. This also solved the problem of locating the repository as rugged allows this to occur from an arbitrary location.\r\n\r\nProbably there is a large number of potential attributes one might want. I chose some of the more immediately obvious ones.\r\n\r\nMany thanks for your help with this."},"comment":{"url":"https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab/issues/comments/334886247","html_url":"https://github.com/asciidoctor/asciidoctor-extensions-lab/pull/79#issuecomment-334886247","issue_url":"https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab/issues/79","id":334886247,"user":{"login":"danyill","id":674783,"avatar_url":"https://avatars0.githubusercontent.com/u/674783?v=4","gravatar_id":"","url":"https://api.github.com/users/danyill","html_url":"https://github.com/danyill","followers_url":"https://api.github.com/users/danyill/followers","following_url":"https://api.github.com/users/danyill/following{/other_user}","gists_url":"https://api.github.com/users/danyill/gists{/gist_id}","starred_url":"https://api.github.com/users/danyill/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/danyill/subscriptions","organizations_url":"https://api.github.com/users/danyill/orgs","repos_url":"https://api.github.com/users/danyill/repos","events_url":"https://api.github.com/users/danyill/events{/privacy}","received_events_url":"https://api.github.com/users/danyill/received_events","type":"User","site_admin":false},"created_at":"2017-10-06T22:37:49Z","updated_at":"2017-10-06T22:37:49Z","author_association":"CONTRIBUTOR","body":"@ilvetz \r\n\r\nIt is a trick installing the `rugged` gem. Although it depends on your approach, my initial approach was poor...\r\n\r\nInitially I tried to do it from `x86` rubyinstaller2 package for Ruby 2.4 with half a day wasted and a lot of messing about with `cmake` and `pkg-config` and `libssh2`. Then I thought \"Why am I using the x86 package?\".\r\n\r\nSo. Installing rugged on a fresh Windows 7 Pro VM is quite easy as I found with the Ruby 2.4 `x64` installer. (BTW These instructions are mainly meant for my staff, not trying to tell you how to suck eggs). We need to install an up-to-date `libgit2` since the bundled version in MSys is too old and we need to build from source.\r\n\r\nBlow-by-blow:\r\n\r\n1. Run the rubyinstaller2 package, `rubyinstaller-2.4.2-2-x64.exe` using the defaults and with the following guidance...\r\n2. Select UTF-8 as the base encoding when prompted as shown below:\r\n3. When prompted by the funny pixellated Ruby Installer 2 for Windows, just press Enter.\r\n4. Don't run Msys (leave unchecked and click Finish).\r\n5. When prompted again by the installer just press Enter and it will exit.\r\n6. Go to `Start` > `Run` and enter `cmd` and then in the command shell:\r\n* `ridk exec pacman -S mingw-w64-x86_64-libgit2`\r\n* `gem install rugged --platform ruby -- --use-system-libraries`\r\n\r\nThis should end saying the gem is installed correctly. \r\n\r\nA few notes:\r\n\r\n1. I read some reports about the Rubyinstaller2 looking in the wrong place during Mingw/MSYS installation if Git was installed (which has an inadequate version of mingw). I suggest you chop anything unnecessary out of your path if these commands don't \"just work\". I haven't tried to independently verify this problem/solution.\r\n2. I doubt these instructions are necessarily valid for Ruby 2.3 or earlier as the installer and dev tools mechanisms have been substantively changed.\r\n3. I suspect the `libgit2` package should be pinned as `rugged` only supports some versions of `libgit2`. But today, at least it works :smile_cat: \r\n\r\nTo test the extension:\r\n\r\n```bash\r\ngit clone https://github.com/asciidoctor/asciidoctor-extensions-lab/\r\ncd asciidoctor-extensions-lab\r\nasciidoctor -r .\\lib\\git-metadata-preprocessor.rb .\\lib\\git-metadata-preprocessor\\sample.adoc\r\n```\r\n\r\nAnd then try opening sample.html in the preprocessor folder.\r\n\r\nLet us know if this helps."}} | {
"id": 16607974,
"name": "asciidoctor/asciidoctor-extensions-lab",
"url": "https://api.github.com/repos/asciidoctor/asciidoctor-extensions-lab"
} | {
"id": 674783,
"login": "danyill",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/674783?",
"url": "https://api.github.com/users/danyill"
} | {
"id": 3137042,
"login": "asciidoctor",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3137042?",
"url": "https://api.github.com/orgs/asciidoctor"
} | 2017-10-06T22:37:49 | 6685531383 | {"actor":{"display_login":"danyill"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/balderdashy/sails/issues/3947","repository_url":"https://api.github.com/repos/balderdashy/sails","labels_url":"https://api.github.com/repos/balderdashy/sails/issues/3947/labels{/name}","comments_url":"https://api.github.com/repos/balderdashy/sails/issues/3947/comments","events_url":"https://api.github.com/repos/balderdashy/sails/issues/3947/events","html_url":"https://github.com/balderdashy/sails/issues/3947","id":198583674,"number":3947,"title":"ERROR: the `registerConnection` method must be renamed to `registerDatastore`","user":{"login":"nikhiljohn10","id":5616249,"avatar_url":"https://avatars.githubusercontent.com/u/5616249?v=3","gravatar_id":"","url":"https://api.github.com/users/nikhiljohn10","html_url":"https://github.com/nikhiljohn10","followers_url":"https://api.github.com/users/nikhiljohn10/followers","following_url":"https://api.github.com/users/nikhiljohn10/following{/other_user}","gists_url":"https://api.github.com/users/nikhiljohn10/gists{/gist_id}","starred_url":"https://api.github.com/users/nikhiljohn10/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikhiljohn10/subscriptions","organizations_url":"https://api.github.com/users/nikhiljohn10/orgs","repos_url":"https://api.github.com/users/nikhiljohn10/repos","events_url":"https://api.github.com/users/nikhiljohn10/events{/privacy}","received_events_url":"https://api.github.com/users/nikhiljohn10/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-01-03T22:17:45Z","updated_at":"2017-01-03T22:49:08Z","closed_at":"2017-01-03T22:49:08Z","body":"<!--\r\n======================================================\r\nHELLO, and welcome to the (experimental) Sailsbot\r\nissue-submission system. If you encounter any\r\nproblems with this system, please contact us directly\r\nat http://sailsjs.com/contact.\r\n\r\nFIRST THINGS FIRST: before posting, please carefully\r\nread the contribution guide (http://bit.ly/sails-issue-guide),\r\nparticularly if this is a security issue or an issue of a\r\nnon-technical nature (Github org issues, code of conduct\r\nissues, etc.). Those should be sent directly at\r\nhttp://sailsjs.com/contact.\r\n\r\nNOW THEN: please fill out the following info\r\n(Don't change text between **)\r\n======================================================\r\n### BEGIN VERSION INFO ###\r\n-->\r\n\r\n**Sails version**: 1.0.0-19\r\n**Node version**: 4.2.6\r\n**NPM version**: 4.0.5\r\n**Operating system**: Ubuntu MATE 16.04 LTS\r\n\r\n<!--\r\n### END VERSION INFO ###\r\n======================================================\r\nGREAT! - Now read carefully\r\n(Sailsbot will know if you don't)!\r\n======================================================\r\n\r\nBefore you submit an issue for Sails, please make sure you have read the issue contribution guide (http://bit.ly/sails-issue-guide) carefully, and then verify the following by typing an X in between each set of [ ] brackets below (don't make any other changes to the text!):\r\n\r\n### BEGIN PLEDGE ###\r\n- [ X ] I am experiencing a concrete technical issue (aka a bug) with Sails (ideas and feature proposals should follow the guide for proposing features and enhancements (http://bit.ly/sails-feature-guide), which involves making a pull request). If you're not 100% certain whether it's a bug or not, that's okay--you may continue. The worst that can happen is that the issue will be closed and we'll point you in the right direction.\r\n\r\n- [ X ] I am not asking a question about how to use Sails or about whether or not Sails has a certain feature (please refer to the documentation(http://sailsjs.com), or post on http://stackoverflow.com, our Google Group (http://bit.ly/sails-google-group) or our live chat (https://gitter.im/balderdashy/sails).\r\n\r\n- [ X ] I have already searched for related issues, and found none open (if you found a related _closed_ issue, please link to it in your post).\r\n\r\n- [ X ] My issue title is concise, on-topic and polite (\"jst.js being removed from layout.ejs on lift\" is good; \"templates dont work\" or \"why is sails dumb\" are not so good).\r\n\r\n- [ X ] I have tried all the following (if relevant) and my issue remains:\r\n - Make sure you have the right app lifted.\r\n - Make sure you've killed the Sails server with CTRL+C and started it again.\r\n - Make sure you closed any open browser tabs pointed at localhost before starting Sails.\r\n - Make sure you do not have any other Sails apps running in other terminal windows.\r\n - Make sure the app you are using to reproduce the issue has a clean node_modules/ directory, meaning:\r\n * no dependencies are linked (e.g. you haven't run npm link foo)\r\n * that you haven't made any inline changes to files in the node_modules/ folder\r\n * that you don't have any weird global dependency loops. The easiest way to double-check any of the above, if you aren't sure, is to run: rm -rf node_modules && npm cache clear && npm install.\r\n\r\nand finally...\r\n- [ X ] **I can provide steps to reproduce this issue that others can follow.**\r\n\r\nIdeally, this involves creating a new repo that demonstrates the problem (see instructions at http://bit.ly/sails-issue-repro). Even though your issue may seem so simple to reproduce that a new repo is unnecessary, you'd be surprised how many solutions present themselves when you start from `sails new` and attempt to recreate your issue from scratch in a new app. This ensures that the real issue isn't in your user code (a forgotten policy file, perhaps?) or in a third-party module. If you're absolutely _convinced_ that a new repo is unnecessary, provide clear, concise and _specific_ steps to reproduce the problem in your post (not \"create a model then do blueprint create\").\r\n### END PLEDGE ###\r\n\r\nOKAY--THANKS FOR READING! Continue posting details of your issue below. -->\r\n<hr/>\r\n\r\n> **Following is the error**\r\n```\r\ndesk1@desk1-All-Series:~/git/LiveList$ sails console\r\ninfo: Starting app in interactive mode...\r\n\r\nerror: A hook (`orm`) failed to load!\r\nerror:\r\nerror: Error: The adapter for datastore `default` is invalid: the `registerConnection` method must be renamed to `registerDatastore`.\r\n at /home/desk1/git/LiveList/node_modules/waterline/lib/waterline.js:196:15\r\n at /home/desk1/git/LiveList/node_modules/async/dist/async.js:3047:20\r\n at eachOfArrayLike (/home/desk1/git/LiveList/node_modules/async/dist/async.js:1002:13)\r\n at eachOf (/home/desk1/git/LiveList/node_modules/async/dist/async.js:1052:9)\r\n at Object.eachLimit (/home/desk1/git/LiveList/node_modules/async/dist/async.js:3111:7)\r\n at Object.initialize (/home/desk1/git/LiveList/node_modules/waterline/lib/waterline.js:190:11)\r\n at buildWaterlineOntology (/home/desk1/git/LiveList/node_modules/sails-hook-orm/lib/build-waterline-ontology.js:46:9)\r\n at async.auto._buildOntology (/home/desk1/git/LiveList/node_modules/sails-hook-orm/lib/initialize.js:572:7)\r\n at runTask (/home/desk1/git/LiveList/node_modules/async/dist/async.js:1660:17)\r\n at /home/desk1/git/LiveList/node_modules/async/dist/async.js:1602:17\r\n at processQueue (/home/desk1/git/LiveList/node_modules/async/dist/async.js:1612:17)\r\n at taskComplete (/home/desk1/git/LiveList/node_modules/async/dist/async.js:1630:13)\r\n at /home/desk1/git/LiveList/node_modules/async/dist/async.js:1653:21\r\n at /home/desk1/git/LiveList/node_modules/async/dist/async.js:339:31\r\n at /home/desk1/git/LiveList/node_modules/async/dist/async.js:847:20\r\n at async.auto._doubleCheckMigration (/home/desk1/git/LiveList/node_modules/sails-hook-orm/lib/initialize.js:488:16)\r\nerror: Could not load Sails app.\r\nerror:\r\nerror: Tips:\r\nerror: ⢠First, take a look at the error message above.\r\nerror: â¢Â Check that you're using the latest stable version of Sails.\r\nerror: ⢠Have a question or need help? (http://sailsjs.com/support)\r\n```\r\n> **Datastores.js**\r\n```\r\nmodule.exports.datastores = {\r\n //myPostgresql: {\r\n default: {\r\n adapter: require('sails-postgresql'),\r\n url: 'postgresql://nikz:[email protected]:5432/nikz'\r\n },\r\n};\r\n```\r\n\r\n> **Models.js**\r\n```\r\nmodule.exports.models = {\r\n //datastore: 'myPostgresql',\r\n migrate: 'alter',\r\n attributes: {\r\n createdAt: {\r\n type: 'number',\r\n autoCreatedAt: true,\r\n },\r\n updatedAt: {\r\n type: 'number',\r\n autoUpdatedAt: true,\r\n },\r\n id: {\r\n type: 'number',\r\n autoIncrement: true,\r\n },\r\n },\r\n};\r\n```\r\n\r\n> **Package.json**\r\n```\r\n{\r\n \"name\": \"LiveList\",\r\n \"private\": true,\r\n \"version\": \"0.0.0\",\r\n \"description\": \"a Sails application\",\r\n \"keywords\": [],\r\n \"dependencies\": {\r\n \"async\": \"2.0.1\",\r\n \"grunt\": \"1.0.1\",\r\n \"lodash\": \"3.10.1\",\r\n \"sails\": \"^1.0.0-19\",\r\n \"sails-hook-grunt\": \"^1.0.4\",\r\n \"sails-hook-orm\": \"^2.0.0-0\",\r\n \"sails-hook-sockets\": \"^1.0.1\",\r\n \"sails-postgresql\": \"^0.11.4\"\r\n },\r\n \"scripts\": {\r\n \"start\": \"NODE_ENV=production node app.js\",\r\n \"test\": \"echo && echo \\\"* * * * * * * * * * * * * * * * * * * * * * * * * * * \\\" && echo \\\"About to run tests...\\\" && echo && if ! node ./node_modules/mocha/bin/mocha --timeout 10000 ; then echo && echo && echo \\\"- - -\\\" && echo \\\"Looks like something went wrong.\\\" && echo \\\"| If you are not sure what to do next, try:\\\" && echo \\\"| npm install mocha --save-dev\\\" && echo \\\"| \\\" && echo \\\"| And then:\\\" && echo \\\"| mkdir test/\\\" && echo ; fi\",\r\n \"debug\": \"node debug app.js\"\r\n },\r\n \"main\": \"app.js\",\r\n \"repository\": {\r\n \"type\": \"git\",\r\n \"url\": \"git://github.com/desk1/LiveList.git\"\r\n },\r\n \"author\": \"desk1\",\r\n \"license\": \"\"\r\n}\r\n```\r\n\r\nI was not able to get any documentation relating datastore or this particular error. My DB is working proper and connections are all good. Also installed sails-postgresql module. Assume this is a bug inside the sails. Otherwise, please help me to fix this issue. Thank you.\r\n\r\n **To reproduce the error, add the adapter and url in datastores.js.**\r\n"},"comment":{"url":"https://api.github.com/repos/balderdashy/sails/issues/comments/270248083","html_url":"https://github.com/balderdashy/sails/issues/3947#issuecomment-270248083","issue_url":"https://api.github.com/repos/balderdashy/sails/issues/3947","id":270248083,"user":{"login":"nikhiljohn10","id":5616249,"avatar_url":"https://avatars.githubusercontent.com/u/5616249?v=3","gravatar_id":"","url":"https://api.github.com/users/nikhiljohn10","html_url":"https://github.com/nikhiljohn10","followers_url":"https://api.github.com/users/nikhiljohn10/followers","following_url":"https://api.github.com/users/nikhiljohn10/following{/other_user}","gists_url":"https://api.github.com/users/nikhiljohn10/gists{/gist_id}","starred_url":"https://api.github.com/users/nikhiljohn10/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nikhiljohn10/subscriptions","organizations_url":"https://api.github.com/users/nikhiljohn10/orgs","repos_url":"https://api.github.com/users/nikhiljohn10/repos","events_url":"https://api.github.com/users/nikhiljohn10/events{/privacy}","received_events_url":"https://api.github.com/users/nikhiljohn10/received_events","type":"User","site_admin":false},"created_at":"2017-01-03T22:49:08Z","updated_at":"2017-01-03T22:49:08Z","body":"# Error solved\r\n1. The version that is installed by `npm install sails-postgresql@latest --save` is v0.11.4. But this version only support Connection.js from sailsjs version below 0.12. To fix this , Install v1.0.0-1. Use the following command,\r\n\r\n `npm install [email protected] --save`\r\n\r\n2. Another issue i found was that I mistakenly deleted the 's' from 'defaults' in datastores.js. The corrected version is as follows:\r\n```\r\nmodule.exports.datastores = {\r\n defaults: {\r\n adapter: require('sails-postgresql'),\r\n url: 'postgresql://nikz:[email protected]:5432/nikz'\r\n },\r\n};\r\n```"}} | {
"id": 3757512,
"name": "balderdashy/sails",
"url": "https://api.github.com/repos/balderdashy/sails"
} | {
"id": 5616249,
"login": "nikhiljohn10",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5616249?",
"url": "https://api.github.com/users/nikhiljohn10"
} | {
"id": 1445252,
"login": "balderdashy",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1445252?",
"url": "https://api.github.com/orgs/balderdashy"
} | 2017-01-03T22:49:09 | 5097829590 | {"actor":{"display_login":"nikhiljohn10"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/balderdashy/waterline/issues/1501","repository_url":"https://api.github.com/repos/balderdashy/waterline","labels_url":"https://api.github.com/repos/balderdashy/waterline/issues/1501/labels{/name}","comments_url":"https://api.github.com/repos/balderdashy/waterline/issues/1501/comments","events_url":"https://api.github.com/repos/balderdashy/waterline/issues/1501/events","html_url":"https://github.com/balderdashy/waterline/issues/1501","id":235610363,"number":1501,"title":"Broken populate after upgrading to sails v1","user":{"login":"Josebaseba","id":1160665,"avatar_url":"https://avatars3.githubusercontent.com/u/1160665?v=3","gravatar_id":"","url":"https://api.github.com/users/Josebaseba","html_url":"https://github.com/Josebaseba","followers_url":"https://api.github.com/users/Josebaseba/followers","following_url":"https://api.github.com/users/Josebaseba/following{/other_user}","gists_url":"https://api.github.com/users/Josebaseba/gists{/gist_id}","starred_url":"https://api.github.com/users/Josebaseba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Josebaseba/subscriptions","organizations_url":"https://api.github.com/users/Josebaseba/orgs","repos_url":"https://api.github.com/users/Josebaseba/repos","events_url":"https://api.github.com/users/Josebaseba/events{/privacy}","received_events_url":"https://api.github.com/users/Josebaseba/received_events","type":"User","site_admin":false},"labels":[{"id":335128297,"url":"https://api.github.com/repos/balderdashy/waterline/labels/Needs%20cleanup","name":"Needs cleanup","color":"ededed","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-06-13T16:18:37Z","updated_at":"2017-06-13T16:18:48Z","closed_at":null,"body":"<!--\r\n======================================================\r\nHELLO, and welcome to the (experimental) Sailsbot\r\nissue-submission system. If you encounter any\r\nproblems with this system, please contact us directly\r\nat http://sailsjs.com/contact\r\n\r\nFIRST THINGS FIRST: please fill out the following info\r\n(Don't change text between **)\r\n======================================================\r\n### BEGIN VERSION INFO ###\r\n-->\r\n\r\n**Waterline version**: 0.13.0-rc11\r\n**Node version**: 4.5\r\n**NPM version**: 2.15.9\r\n**Operating system**: Mac\r\n\r\n<!--\r\n### END VERSION INFO ###\r\n======================================================\r\nGREAT! - Now read carefully\r\n(Sailsbot will know if you don't)!\r\n======================================================\r\n\r\nBefore you submit an issue for Waterline, please make sure you have read the Sails issue contribution guide (http://bit.ly/sails-issue-guide) carefully, and then verify the following by typing an X in between each set of [ ] brackets below (don't make any other changes to the text!):\r\n\r\n### BEGIN PLEDGE ###\r\n- [X] I am experiencing a concrete technical issue with Waterline (ideas and feature proposals should follow the guide for proposing features and enhancements (http://bit.ly/sails-feature-guide), which involves making a pull request). If you're not 100% certain whether it's a bug or not, that's okay--you may continue. The worst that can happen is that the issue will be closed and we'll point you in the right direction.\r\n\r\n- [ ] I am not asking a question about how to use Waterline or about whether or not Waterline has a certain feature (please refer to the documentation(http://sailsjs.org), or post on http://stackoverflow.com, our Google Group (http://bit.ly/sails-google-group) or our live chat (https://gitter.im/balderdashy/sails).\r\n\r\n- [ ] I have already searched for related issues, and found none open (if you found a related _closed_ issue, please link to it in your post).\r\n\r\n- [ ] My issue title is concise, on-topic and polite.\r\n\r\nand finally...\r\n- [X] **I can provide steps to reproduce this issue that others can follow.**\r\n\r\nIdeally, this involves creating a new repo that demonstrates the problem (see instructions at http://bit.ly/waterline-issue-repo). Even though your issue may seem so simple to reproduce that a new repo is unnecessary, you'd be surprised how many solutions present themselves when you start from `sails new` and attempt to recreate your issue from scratch in a new app. This ensures that the real issue isn't in your user code or in a third-party module. If you're absolutely _convinced_ that a new repo is unnecessary, provide clear, concise and _specific_ steps to reproduce the problem in your post (not \"create a model then do blueprint create\").\r\n### END PLEDGE ###\r\n\r\nOKAY--THANKS FOR READING! Continue posting details of your issue below. -->\r\n<hr/>\r\n\r\nUsing latest edge version of sails-mongo.\r\n\r\n```javascript\r\nStudent\r\n .find({where: {classroom: _cls}, sort: \"name ASC\", limit: 50, skip: skip})\r\n .populate(\"parents\")\r\n .exec(function(err, students){\r\n console.log(err, students);\r\n```\r\n\r\nAfter upgrading from sails 0.11 to sails 1.0 this query is crashing with this error:\r\n\r\n```\r\n{ [AdapterError: Unexpected error from database adapter: Cannot read property 'undefined' of undefined]\r\n name: 'AdapterError',\r\n adapterMethodName: 'find',\r\n modelIdentity: 'parents',\r\n raw: [TypeError: Cannot read property 'undefined' of undefined] }\r\n```\r\nIf I don't populate it work without problem. Could be cause some Students don't have a parent attribute? It's not a required field, so in a lot of documents parents attribute don't exist."},"comment":{"url":"https://api.github.com/repos/balderdashy/waterline/issues/comments/308170402","html_url":"https://github.com/balderdashy/waterline/issues/1501#issuecomment-308170402","issue_url":"https://api.github.com/repos/balderdashy/waterline/issues/1501","id":308170402,"user":{"login":"sailsbot","id":14700466,"avatar_url":"https://avatars1.githubusercontent.com/u/14700466?v=3","gravatar_id":"","url":"https://api.github.com/users/sailsbot","html_url":"https://github.com/sailsbot","followers_url":"https://api.github.com/users/sailsbot/followers","following_url":"https://api.github.com/users/sailsbot/following{/other_user}","gists_url":"https://api.github.com/users/sailsbot/gists{/gist_id}","starred_url":"https://api.github.com/users/sailsbot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sailsbot/subscriptions","organizations_url":"https://api.github.com/users/sailsbot/orgs","repos_url":"https://api.github.com/users/sailsbot/repos","events_url":"https://api.github.com/users/sailsbot/events{/privacy}","received_events_url":"https://api.github.com/users/sailsbot/received_events","type":"User","site_admin":false},"created_at":"2017-06-13T16:18:48Z","updated_at":"2017-06-13T16:18:48Z","body":"Hi @Josebaseba! It looks like you missed a step or two when you created your issue. Please edit your comment (use the pencil icon at the top-right corner of the comment box) and fix the following:\n\n* Verify \"I am not asking a question about how to use Waterline or about whether or not Waterline has a certain feature (please refer to the documentation(http://sailsjs.org), or post on http://stackoverflow.com, our Google Group (http://bit.ly/sails-google-group) or our live chat (https://gitter.im/balderdashy/sails).\"\n* Verify \"I have already searched for related issues, and found none open (if you found a related _closed_ issue, please link to it in your post).\"\n* Verify \"My issue title is concise, on-topic and polite.\"\n\nAs soon as those items are rectified, post a new comment (e.g. “Ok, fixed!”) below and we'll take a look. Thanks!\n\n*If you feel this message is in error, or you want to debate the merits of my existence (sniffle), please contact [email protected]"}} | {
"id": 9996255,
"name": "balderdashy/waterline",
"url": "https://api.github.com/repos/balderdashy/waterline"
} | {
"id": 14700466,
"login": "sailsbot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/14700466?",
"url": "https://api.github.com/users/sailsbot"
} | {
"id": 1445252,
"login": "balderdashy",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1445252?",
"url": "https://api.github.com/orgs/balderdashy"
} | 2017-06-13T16:18:48 | 6056900753 | {"actor":{"display_login":"sailsbot"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/bazaarvoice/emodb/issues/118","repository_url":"https://api.github.com/repos/bazaarvoice/emodb","labels_url":"https://api.github.com/repos/bazaarvoice/emodb/issues/118/labels{/name}","comments_url":"https://api.github.com/repos/bazaarvoice/emodb/issues/118/comments","events_url":"https://api.github.com/repos/bazaarvoice/emodb/issues/118/events","html_url":"https://github.com/bazaarvoice/emodb/pull/118","id":241274664,"number":118,"title":"Changed blob store DDL to redirect internally to the system data center","user":{"login":"billkalter","id":1743703,"avatar_url":"https://avatars0.githubusercontent.com/u/1743703?v=3","gravatar_id":"","url":"https://api.github.com/users/billkalter","html_url":"https://github.com/billkalter","followers_url":"https://api.github.com/users/billkalter/followers","following_url":"https://api.github.com/users/billkalter/following{/other_user}","gists_url":"https://api.github.com/users/billkalter/gists{/gist_id}","starred_url":"https://api.github.com/users/billkalter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/billkalter/subscriptions","organizations_url":"https://api.github.com/users/billkalter/orgs","repos_url":"https://api.github.com/users/billkalter/repos","events_url":"https://api.github.com/users/billkalter/events{/privacy}","received_events_url":"https://api.github.com/users/billkalter/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-07-07T14:06:33Z","updated_at":"2017-07-07T14:36:08Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/bazaarvoice/emodb/pulls/118","html_url":"https://github.com/bazaarvoice/emodb/pull/118","diff_url":"https://github.com/bazaarvoice/emodb/pull/118.diff","patch_url":"https://github.com/bazaarvoice/emodb/pull/118.patch"},"body":"## Github Issue #\r\n\r\nNone\r\n\r\n## What Are We Doing Here?\r\n\r\nBlob store DDL changes (creating and dropping tables primarily) must be done in the system data center to avoid potential conflicts where multiple users try to perform like operations on the same table concurrently. Data store has this same requirement. The way data store handles it is to internally forward DDL calls from the non-system data center to the system data center. Blob store works differently; it returns a 301 (moved permanently) response with the URI of the system data center.\r\n\r\nWe recently discovered a flaw in the way blob store's solution works. If the client and blob store service are in separate domains it's possible the redirect URI returned by blob store is inaccessible by the client. A more robust approach would be to use the data store solution; have the blob store internally forward the DDL call to the system data center.\r\n\r\nThis PR does exactly that. Additionally to avoid awkward 500 errors the few DDL calls not implemented in blob store client also had to be implemented. These were originally unimplemented because Emo at the time did not have API keys, so it was a poor-man's solution to prevent clients from making calls they normally shouldn't. Now that API keys are used an prevent unauthorized DDL calls this obfuscation is no longer necessary.\r\n\r\n## How to Test and Verify\r\n\r\n1. Running Emo in two data centers.\r\n2. Create and drop tables from both data centers.\r\n3. Verify that all DDL calls are forwarded to the system data center.\r\n\r\n## Risk\r\n\r\nThis is a low risk change. Core functionality is not being modified, only the forwarding of requests to the system data center which, as previously mentioned, is the approach already taken by data store.\r\n\r\n### Level \r\n\r\n`Low`\r\n\r\n### Required Testing\r\n\r\n`Regression`\r\n\r\n### Risk Summary\r\n\r\nThere is one design decision which should be mentioned. The system blob store client used in the non-system data center always authenticates as an admin. This opens the potential for privilege escalation for DDL calls in the non-system data center which are forwarded to the system data center. This should be addressed at some point, but my justification for the approach taken in this PR are:\r\n\r\n- The caller is already authenticated in the non-system data center, so the call will only be forwarded if the caller had permission to perform the operation.\r\n- There are only three calls which are forwarded -- create table, drop table, and set table attributes -- and all of these operations have no side effects which require additional permissions beyond those already checked by the non-system data center.\r\n- Data store already takes the approach used here, so it would make sense to refactor both at the same time to use authenticators.\r\n\r\n## Code Review Checklist\r\n\r\n- [ ] Tests are included. If not, make sure you leave us a line or two for the reason.\r\n\r\n- [ ] Pulled down the PR and performed verification of at least being able to\r\nbuild and run.\r\n\r\n- [ ] Well documented, including updates to any necessary markdown files. When\r\nwe inevitably come back to this code it will only take hours to figure out, not\r\ndays.\r\n\r\n- [ ] Consistent/Clear/Thoughtful? We are better with this code. We also aren't\r\na victim of rampaging consistency, and should be using this course of action. \r\nWe don't have coding standards out yet for this project, so please make sure to address any feedback regarding STYLE so the codebase remains consistent.\r\n\r\n- [ ] PR has a valid summary, and a good description.\r\n"},"comment":{"url":"https://api.github.com/repos/bazaarvoice/emodb/issues/comments/313699949","html_url":"https://github.com/bazaarvoice/emodb/pull/118#issuecomment-313699949","issue_url":"https://api.github.com/repos/bazaarvoice/emodb/issues/118","id":313699949,"user":{"login":"bv-jenkins","id":4751868,"avatar_url":"https://avatars1.githubusercontent.com/u/4751868?v=3","gravatar_id":"","url":"https://api.github.com/users/bv-jenkins","html_url":"https://github.com/bv-jenkins","followers_url":"https://api.github.com/users/bv-jenkins/followers","following_url":"https://api.github.com/users/bv-jenkins/following{/other_user}","gists_url":"https://api.github.com/users/bv-jenkins/gists{/gist_id}","starred_url":"https://api.github.com/users/bv-jenkins/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bv-jenkins/subscriptions","organizations_url":"https://api.github.com/users/bv-jenkins/orgs","repos_url":"https://api.github.com/users/bv-jenkins/repos","events_url":"https://api.github.com/users/bv-jenkins/events{/privacy}","received_events_url":"https://api.github.com/users/bv-jenkins/received_events","type":"User","site_admin":false},"created_at":"2017-07-07T14:36:08Z","updated_at":"2017-07-07T14:36:08Z","body":"This PR was tested by [custom branch build on jenkins](https://jenkins.nexus.bazaarvoice.com/job/emodb/job/qa/job/emodb-gatekeeper-emo-custom-branches/34/)"}} | {
"id": 66303306,
"name": "bazaarvoice/emodb",
"url": "https://api.github.com/repos/bazaarvoice/emodb"
} | {
"id": 4751868,
"login": "bv-jenkins",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4751868?",
"url": "https://api.github.com/users/bv-jenkins"
} | {
"id": 152469,
"login": "bazaarvoice",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/152469?",
"url": "https://api.github.com/orgs/bazaarvoice"
} | 2017-07-07T14:36:08 | 6212632472 | {"actor":{"display_login":"bv-jenkins"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/beagleboard/pocketbeagle/issues/3","repository_url":"https://api.github.com/repos/beagleboard/pocketbeagle","labels_url":"https://api.github.com/repos/beagleboard/pocketbeagle/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/beagleboard/pocketbeagle/issues/3/comments","events_url":"https://api.github.com/repos/beagleboard/pocketbeagle/issues/3/events","html_url":"https://github.com/beagleboard/pocketbeagle/issues/3","id":260112318,"number":3,"title":"Boot debugging","user":{"login":"yuvadm","id":315080,"avatar_url":"https://avatars2.githubusercontent.com/u/315080?v=4","gravatar_id":"","url":"https://api.github.com/users/yuvadm","html_url":"https://github.com/yuvadm","followers_url":"https://api.github.com/users/yuvadm/followers","following_url":"https://api.github.com/users/yuvadm/following{/other_user}","gists_url":"https://api.github.com/users/yuvadm/gists{/gist_id}","starred_url":"https://api.github.com/users/yuvadm/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yuvadm/subscriptions","organizations_url":"https://api.github.com/users/yuvadm/orgs","repos_url":"https://api.github.com/users/yuvadm/repos","events_url":"https://api.github.com/users/yuvadm/events{/privacy}","received_events_url":"https://api.github.com/users/yuvadm/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":13,"created_at":"2017-09-24T20:11:13Z","updated_at":"2017-10-13T12:50:04Z","closed_at":"2017-09-25T17:27:29Z","author_association":"NONE","body":"I'm attempting to boot an existing BeagleBone image I have on an SD card (and then debug to see if there are any require changes for the new board), however I'm not getting any signs of life from the board other than a steady blue LED.\r\n\r\nAre there any hardware pins I can use to get serial UART output from the bootloader to debug the boot sequence? Is there any official flow I can follow to get the board to boot from a well-known image?"},"comment":{"url":"https://api.github.com/repos/beagleboard/pocketbeagle/issues/comments/336443373","html_url":"https://github.com/beagleboard/pocketbeagle/issues/3#issuecomment-336443373","issue_url":"https://api.github.com/repos/beagleboard/pocketbeagle/issues/3","id":336443373,"user":{"login":"wcontello","id":1572428,"avatar_url":"https://avatars2.githubusercontent.com/u/1572428?v=4","gravatar_id":"","url":"https://api.github.com/users/wcontello","html_url":"https://github.com/wcontello","followers_url":"https://api.github.com/users/wcontello/followers","following_url":"https://api.github.com/users/wcontello/following{/other_user}","gists_url":"https://api.github.com/users/wcontello/gists{/gist_id}","starred_url":"https://api.github.com/users/wcontello/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wcontello/subscriptions","organizations_url":"https://api.github.com/users/wcontello/orgs","repos_url":"https://api.github.com/users/wcontello/repos","events_url":"https://api.github.com/users/wcontello/events{/privacy}","received_events_url":"https://api.github.com/users/wcontello/received_events","type":"User","site_admin":false},"created_at":"2017-10-13T12:50:04Z","updated_at":"2017-10-13T12:50:04Z","author_association":"NONE","body":"Should I expect the image \"bone-debian-9.2-iot-armhf-2017-10-10-4gb.img.xz\" to boot a Pocket Beagle when flashed to an SD card using Etcher?\r\n\r\nAnd what should I expect when connected to a host system running macOS X?"}} | {
"id": 104362729,
"name": "beagleboard/pocketbeagle",
"url": "https://api.github.com/repos/beagleboard/pocketbeagle"
} | {
"id": 1572428,
"login": "wcontello",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1572428?",
"url": "https://api.github.com/users/wcontello"
} | {
"id": 1074039,
"login": "beagleboard",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1074039?",
"url": "https://api.github.com/orgs/beagleboard"
} | 2017-10-13T12:50:04 | 6713262115 | {"actor":{"display_login":"wcontello"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/bitcoinbook/bitcoinbook/issues/284","repository_url":"https://api.github.com/repos/bitcoinbook/bitcoinbook","labels_url":"https://api.github.com/repos/bitcoinbook/bitcoinbook/issues/284/labels{/name}","comments_url":"https://api.github.com/repos/bitcoinbook/bitcoinbook/issues/284/comments","events_url":"https://api.github.com/repos/bitcoinbook/bitcoinbook/issues/284/events","html_url":"https://github.com/bitcoinbook/bitcoinbook/pull/284","id":215274850,"number":284,"title":"Typo in appdx-future-segwit.asciidoc","user":{"login":"dimitris-t","id":8949706,"avatar_url":"https://avatars2.githubusercontent.com/u/8949706?v=3","gravatar_id":"","url":"https://api.github.com/users/dimitris-t","html_url":"https://github.com/dimitris-t","followers_url":"https://api.github.com/users/dimitris-t/followers","following_url":"https://api.github.com/users/dimitris-t/following{/other_user}","gists_url":"https://api.github.com/users/dimitris-t/gists{/gist_id}","starred_url":"https://api.github.com/users/dimitris-t/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dimitris-t/subscriptions","organizations_url":"https://api.github.com/users/dimitris-t/orgs","repos_url":"https://api.github.com/users/dimitris-t/repos","events_url":"https://api.github.com/users/dimitris-t/events{/privacy}","received_events_url":"https://api.github.com/users/dimitris-t/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-19T16:18:03Z","updated_at":"2017-03-20T17:00:54Z","closed_at":"2017-03-20T17:00:51Z","pull_request":{"url":"https://api.github.com/repos/bitcoinbook/bitcoinbook/pulls/284","html_url":"https://github.com/bitcoinbook/bitcoinbook/pull/284","diff_url":"https://github.com/bitcoinbook/bitcoinbook/pull/284.diff","patch_url":"https://github.com/bitcoinbook/bitcoinbook/pull/284.patch"},"body":"All headings in this appendix have the the first letter for each word capitalized. Except for this heading. \r\n\r\n\"Transaction malleability\" -> \"Transaction Malleability\""},"comment":{"url":"https://api.github.com/repos/bitcoinbook/bitcoinbook/issues/comments/287825996","html_url":"https://github.com/bitcoinbook/bitcoinbook/pull/284#issuecomment-287825996","issue_url":"https://api.github.com/repos/bitcoinbook/bitcoinbook/issues/284","id":287825996,"user":{"login":"wbnns","id":1130872,"avatar_url":"https://avatars0.githubusercontent.com/u/1130872?v=3","gravatar_id":"","url":"https://api.github.com/users/wbnns","html_url":"https://github.com/wbnns","followers_url":"https://api.github.com/users/wbnns/followers","following_url":"https://api.github.com/users/wbnns/following{/other_user}","gists_url":"https://api.github.com/users/wbnns/gists{/gist_id}","starred_url":"https://api.github.com/users/wbnns/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wbnns/subscriptions","organizations_url":"https://api.github.com/users/wbnns/orgs","repos_url":"https://api.github.com/users/wbnns/repos","events_url":"https://api.github.com/users/wbnns/events{/privacy}","received_events_url":"https://api.github.com/users/wbnns/received_events","type":"User","site_admin":false},"created_at":"2017-03-20T17:00:54Z","updated_at":"2017-03-20T17:00:54Z","body":"@dimitris-t Thanks! Updated. 👍"}} | {
"id": 12044132,
"name": "bitcoinbook/bitcoinbook",
"url": "https://api.github.com/repos/bitcoinbook/bitcoinbook"
} | {
"id": 1130872,
"login": "wbnns",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1130872?",
"url": "https://api.github.com/users/wbnns"
} | {
"id": 5091621,
"login": "bitcoinbook",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5091621?",
"url": "https://api.github.com/orgs/bitcoinbook"
} | 2017-03-20T17:00:54 | 5527099466 | {"actor":{"display_login":"wbnns"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/chapel-lang/chapel/issues/8038","repository_url":"https://api.github.com/repos/chapel-lang/chapel","labels_url":"https://api.github.com/repos/chapel-lang/chapel/issues/8038/labels{/name}","comments_url":"https://api.github.com/repos/chapel-lang/chapel/issues/8038/comments","events_url":"https://api.github.com/repos/chapel-lang/chapel/issues/8038/events","html_url":"https://github.com/chapel-lang/chapel/pull/8038","id":282253956,"number":8038,"title":"Permit copy initializer to take 'other' argument by ref","user":{"login":"bradcray","id":7536222,"avatar_url":"https://avatars0.githubusercontent.com/u/7536222?v=4","gravatar_id":"","url":"https://api.github.com/users/bradcray","html_url":"https://github.com/bradcray","followers_url":"https://api.github.com/users/bradcray/followers","following_url":"https://api.github.com/users/bradcray/following{/other_user}","gists_url":"https://api.github.com/users/bradcray/gists{/gist_id}","starred_url":"https://api.github.com/users/bradcray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bradcray/subscriptions","organizations_url":"https://api.github.com/users/bradcray/orgs","repos_url":"https://api.github.com/users/bradcray/repos","events_url":"https://api.github.com/users/bradcray/events{/privacy}","received_events_url":"https://api.github.com/users/bradcray/received_events","type":"User","site_admin":false},"labels":[{"id":514878968,"url":"https://api.github.com/repos/chapel-lang/chapel/labels/stat:%20Needs%20Code%20Review","name":"stat: Needs Code Review","color":"c5def5","default":false},{"id":514879053,"url":"https://api.github.com/repos/chapel-lang/chapel/labels/stat:%20Needs%20Testing","name":"stat: Needs Testing","color":"c5def5","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-12-14T22:04:08Z","updated_at":"2017-12-14T22:25:46Z","closed_at":null,"author_association":"OWNER","pull_request":{"url":"https://api.github.com/repos/chapel-lang/chapel/pulls/8038","html_url":"https://github.com/chapel-lang/chapel/pull/8038","diff_url":"https://github.com/chapel-lang/chapel/pull/8038.diff","patch_url":"https://github.com/chapel-lang/chapel/pull/8038.patch"},"body":"This is a modest change to the compiler's current logic to find copy initializers which\r\npermits the 'other' argument to be taken in by 'ref'. In converting the BigInteger and\r\nGMP modules over to use initializers rather than constructors, this was required in order\r\nto have the current bigint copy constructor/initializer be recognized as such since it\r\ntakes its 'bigint' argument by 'const ref' intent. My guess is that this will probably not\r\nbreak any existing tests but am still running testing on this mod.\r\n\r\nAdded a simple test which works with this mod yet didn't previously.\r\n\r\nThis mod also makes it obvious to me why copy initializers with additional arguments are\r\nnot recognized as such as noted in issue #7932. Our current logic for identifying\r\ncopy initializers is to simply look for any expected signature rather than trying to\r\nmake a call that would dispatch to such a signature. I did not undertake anything more\r\nsignificant that would address that issue here (and don't currently intend to)."},"comment":{"url":"https://api.github.com/repos/chapel-lang/chapel/issues/comments/351855055","html_url":"https://github.com/chapel-lang/chapel/pull/8038#issuecomment-351855055","issue_url":"https://api.github.com/repos/chapel-lang/chapel/issues/8038","id":351855055,"user":{"login":"bradcray","id":7536222,"avatar_url":"https://avatars0.githubusercontent.com/u/7536222?v=4","gravatar_id":"","url":"https://api.github.com/users/bradcray","html_url":"https://github.com/bradcray","followers_url":"https://api.github.com/users/bradcray/followers","following_url":"https://api.github.com/users/bradcray/following{/other_user}","gists_url":"https://api.github.com/users/bradcray/gists{/gist_id}","starred_url":"https://api.github.com/users/bradcray/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bradcray/subscriptions","organizations_url":"https://api.github.com/users/bradcray/orgs","repos_url":"https://api.github.com/users/bradcray/repos","events_url":"https://api.github.com/users/bradcray/events{/privacy}","received_events_url":"https://api.github.com/users/bradcray/received_events","type":"User","site_admin":false},"created_at":"2017-12-14T22:25:46Z","updated_at":"2017-12-14T22:25:46Z","author_association":"OWNER","body":"linux64 testing came back clean\r\n"}} | {
"id": 21663285,
"name": "chapel-lang/chapel",
"url": "https://api.github.com/repos/chapel-lang/chapel"
} | {
"id": 7536222,
"login": "bradcray",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7536222?",
"url": "https://api.github.com/users/bradcray"
} | {
"id": 7597261,
"login": "chapel-lang",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7597261?",
"url": "https://api.github.com/orgs/chapel-lang"
} | 2017-12-14T22:25:47 | 6991138773 | {"actor":{"display_login":"bradcray"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20432","repository_url":"https://api.github.com/repos/cockroachdb/cockroach","labels_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20432/labels{/name}","comments_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20432/comments","events_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20432/events","html_url":"https://github.com/cockroachdb/cockroach/pull/20432","id":278811926,"number":20432,"title":"storage: Include command timestamps in command queue debug string","user":{"login":"a-robinson","id":7085343,"avatar_url":"https://avatars3.githubusercontent.com/u/7085343?v=4","gravatar_id":"","url":"https://api.github.com/users/a-robinson","html_url":"https://github.com/a-robinson","followers_url":"https://api.github.com/users/a-robinson/followers","following_url":"https://api.github.com/users/a-robinson/following{/other_user}","gists_url":"https://api.github.com/users/a-robinson/gists{/gist_id}","starred_url":"https://api.github.com/users/a-robinson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/a-robinson/subscriptions","organizations_url":"https://api.github.com/users/a-robinson/orgs","repos_url":"https://api.github.com/users/a-robinson/repos","events_url":"https://api.github.com/users/a-robinson/events{/privacy}","received_events_url":"https://api.github.com/users/a-robinson/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-12-03T19:32:13Z","updated_at":"2017-12-03T19:32:17Z","closed_at":null,"author_association":"OWNER","pull_request":{"url":"https://api.github.com/repos/cockroachdb/cockroach/pulls/20432","html_url":"https://github.com/cockroachdb/cockroach/pull/20432","diff_url":"https://github.com/cockroachdb/cockroach/pull/20432.diff","patch_url":"https://github.com/cockroachdb/cockroach/pull/20432.patch"},"body":"Would have been nice when looking into #20114 to get a sense of whether progress was being made and whether new requests were coming in."},"comment":{"url":"https://api.github.com/repos/cockroachdb/cockroach/issues/comments/348807828","html_url":"https://github.com/cockroachdb/cockroach/pull/20432#issuecomment-348807828","issue_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20432","id":348807828,"user":{"login":"cockroach-teamcity","id":20559710,"avatar_url":"https://avatars0.githubusercontent.com/u/20559710?v=4","gravatar_id":"","url":"https://api.github.com/users/cockroach-teamcity","html_url":"https://github.com/cockroach-teamcity","followers_url":"https://api.github.com/users/cockroach-teamcity/followers","following_url":"https://api.github.com/users/cockroach-teamcity/following{/other_user}","gists_url":"https://api.github.com/users/cockroach-teamcity/gists{/gist_id}","starred_url":"https://api.github.com/users/cockroach-teamcity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cockroach-teamcity/subscriptions","organizations_url":"https://api.github.com/users/cockroach-teamcity/orgs","repos_url":"https://api.github.com/users/cockroach-teamcity/repos","events_url":"https://api.github.com/users/cockroach-teamcity/events{/privacy}","received_events_url":"https://api.github.com/users/cockroach-teamcity/received_events","type":"User","site_admin":false},"created_at":"2017-12-03T19:32:17Z","updated_at":"2017-12-03T19:32:17Z","author_association":"MEMBER","body":"\n\n<!-- Reviewable:start -->\nThis change is [<img src=\"https://reviewable.io/review_button.png\" height=\"34\" align=\"absmiddle\" alt=\"Reviewable\"/>](https://reviewable.io/reviews/cockroachdb/cockroach/20432)\n<!-- Reviewable:end -->\n"}} | {
"id": 16563587,
"name": "cockroachdb/cockroach",
"url": "https://api.github.com/repos/cockroachdb/cockroach"
} | {
"id": 20559710,
"login": "cockroach-teamcity",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/20559710?",
"url": "https://api.github.com/users/cockroach-teamcity"
} | {
"id": 6748139,
"login": "cockroachdb",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6748139?",
"url": "https://api.github.com/orgs/cockroachdb"
} | 2017-12-03T19:32:18 | 6936374227 | {"actor":{"display_login":"cockroach-teamcity"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/cockroachdb/cockroach/issues/17449","repository_url":"https://api.github.com/repos/cockroachdb/cockroach","labels_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/17449/labels{/name}","comments_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/17449/comments","events_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/17449/events","html_url":"https://github.com/cockroachdb/cockroach/issues/17449","id":248072197,"number":17449,"title":"teamcity: failed tests on master: acceptance/TestGossipRestart, testrace/TestRangeTransferLease, testrace/TestRangeTransferLease/TransferWithExtension","user":{"login":"cockroach-teamcity","id":20559710,"avatar_url":"https://avatars0.githubusercontent.com/u/20559710?v=4","gravatar_id":"","url":"https://api.github.com/users/cockroach-teamcity","html_url":"https://github.com/cockroach-teamcity","followers_url":"https://api.github.com/users/cockroach-teamcity/followers","following_url":"https://api.github.com/users/cockroach-teamcity/following{/other_user}","gists_url":"https://api.github.com/users/cockroach-teamcity/gists{/gist_id}","starred_url":"https://api.github.com/users/cockroach-teamcity/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cockroach-teamcity/subscriptions","organizations_url":"https://api.github.com/users/cockroach-teamcity/orgs","repos_url":"https://api.github.com/users/cockroach-teamcity/repos","events_url":"https://api.github.com/users/cockroach-teamcity/events{/privacy}","received_events_url":"https://api.github.com/users/cockroach-teamcity/received_events","type":"User","site_admin":false},"labels":[{"id":335217860,"url":"https://api.github.com/repos/cockroachdb/cockroach/labels/Robot","name":"Robot","color":"5319e7","default":false},{"id":191587409,"url":"https://api.github.com/repos/cockroachdb/cockroach/labels/test-failure","name":"test-failure","color":"e11d21","default":false}],"state":"closed","locked":false,"assignee":{"login":"asubiotto","id":10560359,"avatar_url":"https://avatars2.githubusercontent.com/u/10560359?v=4","gravatar_id":"","url":"https://api.github.com/users/asubiotto","html_url":"https://github.com/asubiotto","followers_url":"https://api.github.com/users/asubiotto/followers","following_url":"https://api.github.com/users/asubiotto/following{/other_user}","gists_url":"https://api.github.com/users/asubiotto/gists{/gist_id}","starred_url":"https://api.github.com/users/asubiotto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asubiotto/subscriptions","organizations_url":"https://api.github.com/users/asubiotto/orgs","repos_url":"https://api.github.com/users/asubiotto/repos","events_url":"https://api.github.com/users/asubiotto/events{/privacy}","received_events_url":"https://api.github.com/users/asubiotto/received_events","type":"User","site_admin":false},"assignees":[{"login":"andreimatei","id":377201,"avatar_url":"https://avatars1.githubusercontent.com/u/377201?v=4","gravatar_id":"","url":"https://api.github.com/users/andreimatei","html_url":"https://github.com/andreimatei","followers_url":"https://api.github.com/users/andreimatei/followers","following_url":"https://api.github.com/users/andreimatei/following{/other_user}","gists_url":"https://api.github.com/users/andreimatei/gists{/gist_id}","starred_url":"https://api.github.com/users/andreimatei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/andreimatei/subscriptions","organizations_url":"https://api.github.com/users/andreimatei/orgs","repos_url":"https://api.github.com/users/andreimatei/repos","events_url":"https://api.github.com/users/andreimatei/events{/privacy}","received_events_url":"https://api.github.com/users/andreimatei/received_events","type":"User","site_admin":false},{"login":"asubiotto","id":10560359,"avatar_url":"https://avatars2.githubusercontent.com/u/10560359?v=4","gravatar_id":"","url":"https://api.github.com/users/asubiotto","html_url":"https://github.com/asubiotto","followers_url":"https://api.github.com/users/asubiotto/followers","following_url":"https://api.github.com/users/asubiotto/following{/other_user}","gists_url":"https://api.github.com/users/asubiotto/gists{/gist_id}","starred_url":"https://api.github.com/users/asubiotto/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/asubiotto/subscriptions","organizations_url":"https://api.github.com/users/asubiotto/orgs","repos_url":"https://api.github.com/users/asubiotto/repos","events_url":"https://api.github.com/users/asubiotto/events{/privacy}","received_events_url":"https://api.github.com/users/asubiotto/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2017-08-04T17:43:29Z","updated_at":"2017-08-08T18:32:31Z","closed_at":"2017-08-08T18:32:31Z","body":"The following tests appear to have failed:\n\n[#315225](https://teamcity.cockroachdb.com/viewLog.html?buildId=315225):\n\n```\n--- FAIL: acceptance/TestGossipRestart (17.760s)\ntest_log_scope.go:78: test logs captured to: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/acceptance/logTestGossipRestart281264783\ntest_log_scope.go:61: use -show-logs to present logs inline\nlocalcluster.go:727: expected event &{3 restart}, got &{0 restart} (after [{0 die} {1 die} {2 die} {3 die}])\n------- Stdout: -------\nxenial-20170214: Pulling from library/ubuntu\r\nDigest: sha256:dd7808d8792c9841d0b460122f1acf0a2dd1f56404f8d1e56298048885e45535\r\nStatus: Image is up to date for ubuntu:xenial-20170214\r\nxenial-20170214: Pulling from library/ubuntu\r\nDigest: sha256:dd7808d8792c9841d0b460122f1acf0a2dd1f56404f8d1e56298048885e45535\r\nStatus: Image is up to date for ubuntu:xenial-20170214\r\ntest logs left over in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/acceptance/logTestGossipRestart281264783\n--- FAIL: testrace/TestRangeTransferLease (0.760s)\n\n------- Stdout: -------\nI170804 17:36:42.025449 70134 gossip/gossip.go:295 [n1] NodeDescriptor set to node_id:1 address:<network_field:\"tcp\" address_field:\"127.0.0.1:42748\" > attrs:<> locality:<> \r\nW170804 17:36:42.044906 70134 gossip/gossip.go:1204 [n2] no incoming or outgoing connections\r\nI170804 17:36:42.050501 70214 gossip/client.go:129 [n2] started gossip client to 127.0.0.1:42748\r\nI170804 17:36:42.065238 70134 gossip/gossip.go:295 [n2] NodeDescriptor set to node_id:2 address:<network_field:\"tcp\" address_field:\"127.0.0.1:39263\" > attrs:<> locality:<> \r\nI170804 17:36:42.105865 70134 storage/client_test.go:411 gossip network initialized\r\nI170804 17:36:42.120719 70237 storage/replica_raftstorage.go:509 [s1,r1/1:/M{in-ax}] generated preemptive snapshot 9a729c1e at index 15\r\nI170804 17:36:42.126360 70355 storage/replica_raftstorage.go:718 [s2,r1/?:{-}] applying preemptive snapshot at index 15 (id=9a729c1e, encoded size=6302, 1 rocksdb batches, 5 log entries)\r\nI170804 17:36:42.128014 70355 storage/replica_raftstorage.go:726 [s2,r1/?:/M{in-ax}] applied preemptive snapshot in 1ms [clear=0ms batch=0ms entries=0ms commit=0ms]\r\nI170804 17:36:42.131957 70237 storage/store.go:3519 [s1,r1/1:/M{in-ax}] streamed snapshot to (n2,s2):?: kv pairs: 33, log entries: 5, rate-limit: 2.0 MiB/sec, 6ms\r\nI170804 17:36:42.134297 70237 storage/replica_command.go:3600 [s1,r1/1:/M{in-ax}] change replicas (ADD_REPLICA (n2,s2):2): read existing descriptor r1:/M{in-ax} [(n1,s1):1, next=2]\r\nI170804 17:36:42.141263 70334 storage/replica.go:3007 [s1,r1/1:/M{in-ax}] proposing ADD_REPLICA((n2,s2):2): updated=[(n1,s1):1 (n2,s2):2] next=3\r\nI170804 17:36:42.273564 70373 storage/raft_transport.go:451 raft transport stream to node 1 established\n--- FAIL: testrace/TestRangeTransferLease/TransferWithExtension (0.100s)\nclient_replica_test.go:675: unexpected error from lease transfer: [NotLeaseHolderError] stale proposal: command was proposed under lease repl=(n2,s2):2 start=0.000000123,124 exp=1.800000123,3 pro=0.900000123,4 but is being applied under lease: repl=(n1,s1):1 start=0.900000123,125 exp=1.800000123,127 pro=0.900000123,128\n\n```\nPlease assign, take a look and update the issue accordingly."},"comment":{"url":"https://api.github.com/repos/cockroachdb/cockroach/issues/comments/321043090","html_url":"https://github.com/cockroachdb/cockroach/issues/17449#issuecomment-321043090","issue_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/17449","id":321043090,"user":{"login":"tamird","id":1535036,"avatar_url":"https://avatars0.githubusercontent.com/u/1535036?v=4","gravatar_id":"","url":"https://api.github.com/users/tamird","html_url":"https://github.com/tamird","followers_url":"https://api.github.com/users/tamird/followers","following_url":"https://api.github.com/users/tamird/following{/other_user}","gists_url":"https://api.github.com/users/tamird/gists{/gist_id}","starred_url":"https://api.github.com/users/tamird/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tamird/subscriptions","organizations_url":"https://api.github.com/users/tamird/orgs","repos_url":"https://api.github.com/users/tamird/repos","events_url":"https://api.github.com/users/tamird/events{/privacy}","received_events_url":"https://api.github.com/users/tamird/received_events","type":"User","site_admin":false},"created_at":"2017-08-08T18:32:31Z","updated_at":"2017-08-08T18:32:31Z","body":"#17459 and #17365"}} | {
"id": 16563587,
"name": "cockroachdb/cockroach",
"url": "https://api.github.com/repos/cockroachdb/cockroach"
} | {
"id": 1535036,
"login": "tamird",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1535036?",
"url": "https://api.github.com/users/tamird"
} | {
"id": 6748139,
"login": "cockroachdb",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6748139?",
"url": "https://api.github.com/orgs/cockroachdb"
} | 2017-08-08T18:32:31 | 6418255436 | {"actor":{"display_login":"tamird"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20065","repository_url":"https://api.github.com/repos/cockroachdb/cockroach","labels_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20065/labels{/name}","comments_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20065/comments","events_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20065/events","html_url":"https://github.com/cockroachdb/cockroach/issues/20065","id":273960219,"number":20065,"title":"cloud: Secure Kubernetes certificate manager doesn't work on clusters with RBAC enabled","user":{"login":"a-robinson","id":7085343,"avatar_url":"https://avatars3.githubusercontent.com/u/7085343?v=4","gravatar_id":"","url":"https://api.github.com/users/a-robinson","html_url":"https://github.com/a-robinson","followers_url":"https://api.github.com/users/a-robinson/followers","following_url":"https://api.github.com/users/a-robinson/following{/other_user}","gists_url":"https://api.github.com/users/a-robinson/gists{/gist_id}","starred_url":"https://api.github.com/users/a-robinson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/a-robinson/subscriptions","organizations_url":"https://api.github.com/users/a-robinson/orgs","repos_url":"https://api.github.com/users/a-robinson/repos","events_url":"https://api.github.com/users/a-robinson/events{/privacy}","received_events_url":"https://api.github.com/users/a-robinson/received_events","type":"User","site_admin":false},"labels":[{"id":724812533,"url":"https://api.github.com/repos/cockroachdb/cockroach/labels/good%20first%20issue","name":"good first issue","color":"e5d877","default":true},{"id":126659197,"url":"https://api.github.com/repos/cockroachdb/cockroach/labels/help%20wanted","name":"help wanted","color":"44c0e2","default":true}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/cockroachdb/cockroach/milestones/11","html_url":"https://github.com/cockroachdb/cockroach/milestone/11","labels_url":"https://api.github.com/repos/cockroachdb/cockroach/milestones/11/labels","id":2543483,"number":11,"title":"1.2","description":"","creator":{"login":"dianasaur323","id":5768024,"avatar_url":"https://avatars0.githubusercontent.com/u/5768024?v=4","gravatar_id":"","url":"https://api.github.com/users/dianasaur323","html_url":"https://github.com/dianasaur323","followers_url":"https://api.github.com/users/dianasaur323/followers","following_url":"https://api.github.com/users/dianasaur323/following{/other_user}","gists_url":"https://api.github.com/users/dianasaur323/gists{/gist_id}","starred_url":"https://api.github.com/users/dianasaur323/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dianasaur323/subscriptions","organizations_url":"https://api.github.com/users/dianasaur323/orgs","repos_url":"https://api.github.com/users/dianasaur323/repos","events_url":"https://api.github.com/users/dianasaur323/events{/privacy}","received_events_url":"https://api.github.com/users/dianasaur323/received_events","type":"User","site_admin":false},"open_issues":478,"closed_issues":120,"state":"open","created_at":"2017-05-25T18:08:15Z","updated_at":"2017-11-14T22:13:17Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2017-11-14T22:05:40Z","updated_at":"2017-11-15T04:33:46Z","closed_at":null,"author_association":"OWNER","body":"Our Kubernetes certificate manager (https://github.com/cockroachdb/k8s/tree/master/request-cert) relies on being able to read and write secrets via the Kubernetes API, which isn't allowed by default when [RBAC](https://kubernetes.io/docs/admin/authorization/rbac/) is enabled. This leads to the init container failing with the error:\r\n\r\n```\r\n2017/11/14 21:55:38 failed to read from secrets: secrets \"default.node.cockroachdb-0\" is forbidden: User \"system:se\r\nrviceaccount:default:default\" cannot get secrets in the namespace \"default\"\r\n```\r\n\r\nWe don't have this problem on GKE because for backwards compatibility reasons they let use cases like ours keep working, but [their docs](https://cloud.google.com/kubernetes-engine/docs/role-based-access-control) make it sound like on 1.8+ clusters (which will become the default very soon) we'll have the same problem, so this is something we do need to get working."},"comment":{"url":"https://api.github.com/repos/cockroachdb/cockroach/issues/comments/344483176","html_url":"https://github.com/cockroachdb/cockroach/issues/20065#issuecomment-344483176","issue_url":"https://api.github.com/repos/cockroachdb/cockroach/issues/20065","id":344483176,"user":{"login":"a-robinson","id":7085343,"avatar_url":"https://avatars3.githubusercontent.com/u/7085343?v=4","gravatar_id":"","url":"https://api.github.com/users/a-robinson","html_url":"https://github.com/a-robinson","followers_url":"https://api.github.com/users/a-robinson/followers","following_url":"https://api.github.com/users/a-robinson/following{/other_user}","gists_url":"https://api.github.com/users/a-robinson/gists{/gist_id}","starred_url":"https://api.github.com/users/a-robinson/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/a-robinson/subscriptions","organizations_url":"https://api.github.com/users/a-robinson/orgs","repos_url":"https://api.github.com/users/a-robinson/repos","events_url":"https://api.github.com/users/a-robinson/events{/privacy}","received_events_url":"https://api.github.com/users/a-robinson/received_events","type":"User","site_admin":false},"created_at":"2017-11-15T04:33:46Z","updated_at":"2017-11-15T04:33:46Z","author_association":"OWNER","body":"Absolutely! I don't have much guidance other than to check the Kubernetes RBAC docs, but let me know if you run into any issues :)"}} | {
"id": 16563587,
"name": "cockroachdb/cockroach",
"url": "https://api.github.com/repos/cockroachdb/cockroach"
} | {
"id": 7085343,
"login": "a-robinson",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7085343?",
"url": "https://api.github.com/users/a-robinson"
} | {
"id": 6748139,
"login": "cockroachdb",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6748139?",
"url": "https://api.github.com/orgs/cockroachdb"
} | 2017-11-15T04:33:47 | 6856537571 | {"actor":{"display_login":"a-robinson"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/codedellemc/rexray/issues/748","repository_url":"https://api.github.com/repos/codedellemc/rexray","labels_url":"https://api.github.com/repos/codedellemc/rexray/issues/748/labels{/name}","comments_url":"https://api.github.com/repos/codedellemc/rexray/issues/748/comments","events_url":"https://api.github.com/repos/codedellemc/rexray/issues/748/events","html_url":"https://github.com/codedellemc/rexray/pull/748","id":209867494,"number":748,"title":"Update Project README: New Drivers, Docker Plugins","user":{"login":"cduchesne","id":7872650,"avatar_url":"https://avatars.githubusercontent.com/u/7872650?v=3","gravatar_id":"","url":"https://api.github.com/users/cduchesne","html_url":"https://github.com/cduchesne","followers_url":"https://api.github.com/users/cduchesne/followers","following_url":"https://api.github.com/users/cduchesne/following{/other_user}","gists_url":"https://api.github.com/users/cduchesne/gists{/gist_id}","starred_url":"https://api.github.com/users/cduchesne/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cduchesne/subscriptions","organizations_url":"https://api.github.com/users/cduchesne/orgs","repos_url":"https://api.github.com/users/cduchesne/repos","events_url":"https://api.github.com/users/cduchesne/events{/privacy}","received_events_url":"https://api.github.com/users/cduchesne/received_events","type":"User","site_admin":false},"labels":[{"id":259041306,"url":"https://api.github.com/repos/codedellemc/rexray/labels/documentation","name":"documentation","color":"d4c5f9","default":false}],"state":"open","locked":false,"assignee":{"login":"cduchesne","id":7872650,"avatar_url":"https://avatars.githubusercontent.com/u/7872650?v=3","gravatar_id":"","url":"https://api.github.com/users/cduchesne","html_url":"https://github.com/cduchesne","followers_url":"https://api.github.com/users/cduchesne/followers","following_url":"https://api.github.com/users/cduchesne/following{/other_user}","gists_url":"https://api.github.com/users/cduchesne/gists{/gist_id}","starred_url":"https://api.github.com/users/cduchesne/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cduchesne/subscriptions","organizations_url":"https://api.github.com/users/cduchesne/orgs","repos_url":"https://api.github.com/users/cduchesne/repos","events_url":"https://api.github.com/users/cduchesne/events{/privacy}","received_events_url":"https://api.github.com/users/cduchesne/received_events","type":"User","site_admin":false},"assignees":[{"login":"cduchesne","id":7872650,"avatar_url":"https://avatars.githubusercontent.com/u/7872650?v=3","gravatar_id":"","url":"https://api.github.com/users/cduchesne","html_url":"https://github.com/cduchesne","followers_url":"https://api.github.com/users/cduchesne/followers","following_url":"https://api.github.com/users/cduchesne/following{/other_user}","gists_url":"https://api.github.com/users/cduchesne/gists{/gist_id}","starred_url":"https://api.github.com/users/cduchesne/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cduchesne/subscriptions","organizations_url":"https://api.github.com/users/cduchesne/orgs","repos_url":"https://api.github.com/users/cduchesne/repos","events_url":"https://api.github.com/users/cduchesne/events{/privacy}","received_events_url":"https://api.github.com/users/cduchesne/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/codedellemc/rexray/milestones/13","html_url":"https://github.com/codedellemc/rexray/milestone/13","labels_url":"https://api.github.com/repos/codedellemc/rexray/milestones/13/labels","id":1946150,"number":13,"title":"0.8.0","description":"","creator":{"login":"cduchesne","id":7872650,"avatar_url":"https://avatars.githubusercontent.com/u/7872650?v=3","gravatar_id":"","url":"https://api.github.com/users/cduchesne","html_url":"https://github.com/cduchesne","followers_url":"https://api.github.com/users/cduchesne/followers","following_url":"https://api.github.com/users/cduchesne/following{/other_user}","gists_url":"https://api.github.com/users/cduchesne/gists{/gist_id}","starred_url":"https://api.github.com/users/cduchesne/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cduchesne/subscriptions","organizations_url":"https://api.github.com/users/cduchesne/orgs","repos_url":"https://api.github.com/users/cduchesne/repos","events_url":"https://api.github.com/users/cduchesne/events{/privacy}","received_events_url":"https://api.github.com/users/cduchesne/received_events","type":"User","site_admin":false},"open_issues":8,"closed_issues":17,"state":"open","created_at":"2016-08-16T23:34:09Z","updated_at":"2017-02-23T19:59:50Z","due_on":"2017-02-24T08:00:00Z","closed_at":null},"comments":0,"created_at":"2017-02-23T19:59:50Z","updated_at":"2017-02-23T20:11:58Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/codedellemc/rexray/pulls/748","html_url":"https://github.com/codedellemc/rexray/pull/748","diff_url":"https://github.com/codedellemc/rexray/pull/748.diff","patch_url":"https://github.com/codedellemc/rexray/pull/748.patch"},"body":"This PR updates the project README to include new drivers, reference Docker Plugins, plus general cleanup."},"comment":{"url":"https://api.github.com/repos/codedellemc/rexray/issues/comments/282106938","html_url":"https://github.com/codedellemc/rexray/pull/748#issuecomment-282106938","issue_url":"https://api.github.com/repos/codedellemc/rexray/issues/748","id":282106938,"user":{"login":"codecov-io","id":8655789,"avatar_url":"https://avatars.githubusercontent.com/u/8655789?v=3","gravatar_id":"","url":"https://api.github.com/users/codecov-io","html_url":"https://github.com/codecov-io","followers_url":"https://api.github.com/users/codecov-io/followers","following_url":"https://api.github.com/users/codecov-io/following{/other_user}","gists_url":"https://api.github.com/users/codecov-io/gists{/gist_id}","starred_url":"https://api.github.com/users/codecov-io/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/codecov-io/subscriptions","organizations_url":"https://api.github.com/users/codecov-io/orgs","repos_url":"https://api.github.com/users/codecov-io/repos","events_url":"https://api.github.com/users/codecov-io/events{/privacy}","received_events_url":"https://api.github.com/users/codecov-io/received_events","type":"User","site_admin":false},"created_at":"2017-02-23T20:11:58Z","updated_at":"2017-02-23T20:11:58Z","body":"# [Codecov](https://codecov.io/gh/codedellemc/rexray/pull/748?src=pr&el=h1) Report\n> Merging [#748](https://codecov.io/gh/codedellemc/rexray/pull/748?src=pr&el=desc) into [release/0.8.0](https://codecov.io/gh/codedellemc/rexray/commit/55d2106c4bdd5675a55bc00c89e772e2b398a7b9?src=pr&el=desc) will **not change** coverage.\n> The diff coverage is `n/a`.\n\n\n```diff\n@@ Coverage Diff @@\n## release/0.8.0 #748 +/- ##\n=============================================\n Coverage 7.43% 7.43% \n=============================================\n Files 21 21 \n Lines 2581 2581 \n=============================================\n Hits 192 192 \n Misses 2372 2372 \n Partials 17 17\n```\n\n\n\n------\n\n[Continue to review full report at Codecov](https://codecov.io/gh/codedellemc/rexray/pull/748?src=pr&el=continue).\n> **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta)\n> `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data`\n> Powered by [Codecov](https://codecov.io/gh/codedellemc/rexray/pull/748?src=pr&el=footer). Last update [55d2106...b578142](https://codecov.io/gh/codedellemc/rexray/compare/55d2106c4bdd5675a55bc00c89e772e2b398a7b9...b578142b9c3eb979a2eb11910f5056716869a3fa?el=footer&src=pr&el=lastupdated). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments)."}} | {
"id": 33909634,
"name": "codedellemc/rexray",
"url": "https://api.github.com/repos/codedellemc/rexray"
} | {
"id": 8655789,
"login": "codecov-io",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8655789?",
"url": "https://api.github.com/users/codecov-io"
} | {
"id": 20977737,
"login": "codedellemc",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/20977737?",
"url": "https://api.github.com/orgs/codedellemc"
} | 2017-02-23T20:11:58 | 5380673820 | {"actor":{"display_login":"codecov-io"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/commoncrawl/commoncrawl/issues/11","repository_url":"https://api.github.com/repos/commoncrawl/commoncrawl","labels_url":"https://api.github.com/repos/commoncrawl/commoncrawl/issues/11/labels{/name}","comments_url":"https://api.github.com/repos/commoncrawl/commoncrawl/issues/11/comments","events_url":"https://api.github.com/repos/commoncrawl/commoncrawl/issues/11/events","html_url":"https://github.com/commoncrawl/commoncrawl/issues/11","id":158768064,"number":11,"title":"Index for WET files?","user":{"login":"azzurolilc","id":12493169,"avatar_url":"https://avatars.githubusercontent.com/u/12493169?v=3","gravatar_id":"","url":"https://api.github.com/users/azzurolilc","html_url":"https://github.com/azzurolilc","followers_url":"https://api.github.com/users/azzurolilc/followers","following_url":"https://api.github.com/users/azzurolilc/following{/other_user}","gists_url":"https://api.github.com/users/azzurolilc/gists{/gist_id}","starred_url":"https://api.github.com/users/azzurolilc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/azzurolilc/subscriptions","organizations_url":"https://api.github.com/users/azzurolilc/orgs","repos_url":"https://api.github.com/users/azzurolilc/repos","events_url":"https://api.github.com/users/azzurolilc/events{/privacy}","received_events_url":"https://api.github.com/users/azzurolilc/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2016-06-06T20:32:26Z","updated_at":"2017-02-24T14:28:42Z","closed_at":"2017-02-24T14:28:42Z","body":"Hi, hope I am posting this questions in the right place... \n\nI found .WARC format domain index at http://index.commoncrawl.org/CC-MAIN-2016-18//\nI wonder if there is any indexing for .WET format files? \n\nIf not, is there anyway I could convert the WARC object address to WET object address?\nFor example, if I have:\ns3://commoncrawl/crawl-data/CC-MAIN-2016-18/segments/1461860125175.9/warc/CC-MAIN-20160428161525-00221-ip-10-239-7-51.ec2.internal.warc.gz \nWhat would be the corresponding .WET file?\n\nThx...\n"},"comment":{"url":"https://api.github.com/repos/commoncrawl/commoncrawl/issues/comments/282304103","html_url":"https://github.com/commoncrawl/commoncrawl/issues/11#issuecomment-282304103","issue_url":"https://api.github.com/repos/commoncrawl/commoncrawl/issues/11","id":282304103,"user":{"login":"sebastian-nagel","id":1630582,"avatar_url":"https://avatars.githubusercontent.com/u/1630582?v=3","gravatar_id":"","url":"https://api.github.com/users/sebastian-nagel","html_url":"https://github.com/sebastian-nagel","followers_url":"https://api.github.com/users/sebastian-nagel/followers","following_url":"https://api.github.com/users/sebastian-nagel/following{/other_user}","gists_url":"https://api.github.com/users/sebastian-nagel/gists{/gist_id}","starred_url":"https://api.github.com/users/sebastian-nagel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sebastian-nagel/subscriptions","organizations_url":"https://api.github.com/users/sebastian-nagel/orgs","repos_url":"https://api.github.com/users/sebastian-nagel/repos","events_url":"https://api.github.com/users/sebastian-nagel/events{/privacy}","received_events_url":"https://api.github.com/users/sebastian-nagel/received_events","type":"User","site_admin":false},"created_at":"2017-02-24T14:28:42Z","updated_at":"2017-02-24T14:28:42Z","body":"Closing this issue as it does not belong to this repository. Thanks!"}} | {
"id": 2775763,
"name": "commoncrawl/commoncrawl",
"url": "https://api.github.com/repos/commoncrawl/commoncrawl"
} | {
"id": 1630582,
"login": "sebastian-nagel",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1630582?",
"url": "https://api.github.com/users/sebastian-nagel"
} | {
"id": 1194841,
"login": "commoncrawl",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1194841?",
"url": "https://api.github.com/orgs/commoncrawl"
} | 2017-02-24T14:28:43 | 5385624919 | {"actor":{"display_login":"sebastian-nagel"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/conda-forge/loghub-feedstock/issues/6","repository_url":"https://api.github.com/repos/conda-forge/loghub-feedstock","labels_url":"https://api.github.com/repos/conda-forge/loghub-feedstock/issues/6/labels{/name}","comments_url":"https://api.github.com/repos/conda-forge/loghub-feedstock/issues/6/comments","events_url":"https://api.github.com/repos/conda-forge/loghub-feedstock/issues/6/events","html_url":"https://github.com/conda-forge/loghub-feedstock/pull/6","id":264299171,"number":6,"title":"PR: Update recipe for 0.2.1","user":{"login":"goanpeca","id":3627835,"avatar_url":"https://avatars3.githubusercontent.com/u/3627835?v=4","gravatar_id":"","url":"https://api.github.com/users/goanpeca","html_url":"https://github.com/goanpeca","followers_url":"https://api.github.com/users/goanpeca/followers","following_url":"https://api.github.com/users/goanpeca/following{/other_user}","gists_url":"https://api.github.com/users/goanpeca/gists{/gist_id}","starred_url":"https://api.github.com/users/goanpeca/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goanpeca/subscriptions","organizations_url":"https://api.github.com/users/goanpeca/orgs","repos_url":"https://api.github.com/users/goanpeca/repos","events_url":"https://api.github.com/users/goanpeca/events{/privacy}","received_events_url":"https://api.github.com/users/goanpeca/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2017-10-10T16:46:27Z","updated_at":"2017-10-10T23:04:00Z","closed_at":null,"author_association":"MEMBER","pull_request":{"url":"https://api.github.com/repos/conda-forge/loghub-feedstock/pulls/6","html_url":"https://github.com/conda-forge/loghub-feedstock/pull/6","diff_url":"https://github.com/conda-forge/loghub-feedstock/pull/6.diff","patch_url":"https://github.com/conda-forge/loghub-feedstock/pull/6.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/conda-forge/loghub-feedstock/issues/comments/335633321","html_url":"https://github.com/conda-forge/loghub-feedstock/pull/6#issuecomment-335633321","issue_url":"https://api.github.com/repos/conda-forge/loghub-feedstock/issues/6","id":335633321,"user":{"login":"isuruf","id":5234427,"avatar_url":"https://avatars3.githubusercontent.com/u/5234427?v=4","gravatar_id":"","url":"https://api.github.com/users/isuruf","html_url":"https://github.com/isuruf","followers_url":"https://api.github.com/users/isuruf/followers","following_url":"https://api.github.com/users/isuruf/following{/other_user}","gists_url":"https://api.github.com/users/isuruf/gists{/gist_id}","starred_url":"https://api.github.com/users/isuruf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/isuruf/subscriptions","organizations_url":"https://api.github.com/users/isuruf/orgs","repos_url":"https://api.github.com/users/isuruf/repos","events_url":"https://api.github.com/users/isuruf/events{/privacy}","received_events_url":"https://api.github.com/users/isuruf/received_events","type":"User","site_admin":false},"created_at":"2017-10-10T23:04:00Z","updated_at":"2017-10-10T23:04:00Z","author_association":"MEMBER","body":"Please use PRs from your fork. See https://github.com/conda-forge/loghub-feedstock#updating-loghub-feedstock"}} | {
"id": 72861280,
"name": "conda-forge/loghub-feedstock",
"url": "https://api.github.com/repos/conda-forge/loghub-feedstock"
} | {
"id": 5234427,
"login": "isuruf",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5234427?",
"url": "https://api.github.com/users/isuruf"
} | {
"id": 11897326,
"login": "conda-forge",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11897326?",
"url": "https://api.github.com/orgs/conda-forge"
} | 2017-10-10T23:04:00 | 6699601488 | {"actor":{"display_login":"isuruf"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/conda-forge/qt-feedstock/issues/53","repository_url":"https://api.github.com/repos/conda-forge/qt-feedstock","labels_url":"https://api.github.com/repos/conda-forge/qt-feedstock/issues/53/labels{/name}","comments_url":"https://api.github.com/repos/conda-forge/qt-feedstock/issues/53/comments","events_url":"https://api.github.com/repos/conda-forge/qt-feedstock/issues/53/events","html_url":"https://github.com/conda-forge/qt-feedstock/issues/53","id":253066980,"number":53,"title":"Qt 5.9?","user":{"login":"polarathene","id":5098581,"avatar_url":"https://avatars1.githubusercontent.com/u/5098581?v=4","gravatar_id":"","url":"https://api.github.com/users/polarathene","html_url":"https://github.com/polarathene","followers_url":"https://api.github.com/users/polarathene/followers","following_url":"https://api.github.com/users/polarathene/following{/other_user}","gists_url":"https://api.github.com/users/polarathene/gists{/gist_id}","starred_url":"https://api.github.com/users/polarathene/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/polarathene/subscriptions","organizations_url":"https://api.github.com/users/polarathene/orgs","repos_url":"https://api.github.com/users/polarathene/repos","events_url":"https://api.github.com/users/polarathene/events{/privacy}","received_events_url":"https://api.github.com/users/polarathene/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":14,"created_at":"2017-08-26T06:20:18Z","updated_at":"2017-10-02T16:39:36Z","closed_at":null,"author_association":"NONE","body":"Hi, new to python ecosystem. Is there a reason that Qt 5.6.2 is the only supported version? PyQt5 and Pyside2 seem to mention support for Qt 5.9, QtQuick2 Controls(known as 2.7) seem to have a significant update in Qt 5.7. \r\n\r\nI'd like to build these UIs with QtCreator and integrate with Python code, but for some reason conda and some pip wheels I came across are only offering Qt 5.6?\r\n\r\nWill conda support multiple versions of Qt in future or update the current Qt version supported to 5.9(seems to also be an LTS release like 5.6)?"},"comment":{"url":"https://api.github.com/repos/conda-forge/qt-feedstock/issues/comments/333591061","html_url":"https://github.com/conda-forge/qt-feedstock/issues/53#issuecomment-333591061","issue_url":"https://api.github.com/repos/conda-forge/qt-feedstock/issues/53","id":333591061,"user":{"login":"justlurking","id":11887492,"avatar_url":"https://avatars1.githubusercontent.com/u/11887492?v=4","gravatar_id":"","url":"https://api.github.com/users/justlurking","html_url":"https://github.com/justlurking","followers_url":"https://api.github.com/users/justlurking/followers","following_url":"https://api.github.com/users/justlurking/following{/other_user}","gists_url":"https://api.github.com/users/justlurking/gists{/gist_id}","starred_url":"https://api.github.com/users/justlurking/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/justlurking/subscriptions","organizations_url":"https://api.github.com/users/justlurking/orgs","repos_url":"https://api.github.com/users/justlurking/repos","events_url":"https://api.github.com/users/justlurking/events{/privacy}","received_events_url":"https://api.github.com/users/justlurking/received_events","type":"User","site_admin":false},"created_at":"2017-10-02T16:39:36Z","updated_at":"2017-10-02T16:39:36Z","author_association":"NONE","body":"@stuarteberg Were you able to get qt 5.9 built for mac? I tried your username but wasn't able to find your conda channel with a brief search.\r\n\r\nI'm running into problems with 5.6.2 which (supposedly) have been fixed in more recent versions. Would be great to get qt 5.9 before the estimated 1H of next year (which, as we all know, is probably optimistic the way fires pop up and resource availability changes)."}} | {
"id": 63541545,
"name": "conda-forge/qt-feedstock",
"url": "https://api.github.com/repos/conda-forge/qt-feedstock"
} | {
"id": 11887492,
"login": "justlurking",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11887492?",
"url": "https://api.github.com/users/justlurking"
} | {
"id": 11897326,
"login": "conda-forge",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11897326?",
"url": "https://api.github.com/orgs/conda-forge"
} | 2017-10-02T16:39:36 | 6663509626 | {"actor":{"display_login":"justlurking"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/conda-forge/pynco-feedstock/issues/5","repository_url":"https://api.github.com/repos/conda-forge/pynco-feedstock","labels_url":"https://api.github.com/repos/conda-forge/pynco-feedstock/issues/5/labels{/name}","comments_url":"https://api.github.com/repos/conda-forge/pynco-feedstock/issues/5/comments","events_url":"https://api.github.com/repos/conda-forge/pynco-feedstock/issues/5/events","html_url":"https://github.com/conda-forge/pynco-feedstock/pull/5","id":211264331,"number":5,"title":"MNT: Re-render the feedstock [ci skip]","user":{"login":"conda-forge-admin","id":16698198,"avatar_url":"https://avatars3.githubusercontent.com/u/16698198?v=3","gravatar_id":"","url":"https://api.github.com/users/conda-forge-admin","html_url":"https://github.com/conda-forge-admin","followers_url":"https://api.github.com/users/conda-forge-admin/followers","following_url":"https://api.github.com/users/conda-forge-admin/following{/other_user}","gists_url":"https://api.github.com/users/conda-forge-admin/gists{/gist_id}","starred_url":"https://api.github.com/users/conda-forge-admin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/conda-forge-admin/subscriptions","organizations_url":"https://api.github.com/users/conda-forge-admin/orgs","repos_url":"https://api.github.com/users/conda-forge-admin/repos","events_url":"https://api.github.com/users/conda-forge-admin/events{/privacy}","received_events_url":"https://api.github.com/users/conda-forge-admin/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-03-02T01:43:33Z","updated_at":"2017-03-02T01:43:36Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/conda-forge/pynco-feedstock/pulls/5","html_url":"https://github.com/conda-forge/pynco-feedstock/pull/5","diff_url":"https://github.com/conda-forge/pynco-feedstock/pull/5.diff","patch_url":"https://github.com/conda-forge/pynco-feedstock/pull/5.patch"},"body":"\nHi! This is the friendly conda-forge-admin automated user.\n\nI've re-rendered this feedstock with the latest version of conda-smithy (2.1.1) and noticed some changes.\nIf the changes look good, then please go ahead and merge this PR.\nIf you have any questions about the changes though, please feel free to ping the 'conda-forge/core' team (using the @ notation in a comment). \n\nRemember, for any changes to the recipe you would normally need to increment the version or the build number of the package.\nSince this is an infrastructural change, we don't actually need/want a new version to be uploaded to anaconda.org/conda-forge, so the version and build/number are left unchanged and the CI has been skipped.\n\nThanks!\n\n"},"comment":{"url":"https://api.github.com/repos/conda-forge/pynco-feedstock/issues/comments/283530023","html_url":"https://github.com/conda-forge/pynco-feedstock/pull/5#issuecomment-283530023","issue_url":"https://api.github.com/repos/conda-forge/pynco-feedstock/issues/5","id":283530023,"user":{"login":"conda-forge-linter","id":18567580,"avatar_url":"https://avatars0.githubusercontent.com/u/18567580?v=3","gravatar_id":"","url":"https://api.github.com/users/conda-forge-linter","html_url":"https://github.com/conda-forge-linter","followers_url":"https://api.github.com/users/conda-forge-linter/followers","following_url":"https://api.github.com/users/conda-forge-linter/following{/other_user}","gists_url":"https://api.github.com/users/conda-forge-linter/gists{/gist_id}","starred_url":"https://api.github.com/users/conda-forge-linter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/conda-forge-linter/subscriptions","organizations_url":"https://api.github.com/users/conda-forge-linter/orgs","repos_url":"https://api.github.com/users/conda-forge-linter/repos","events_url":"https://api.github.com/users/conda-forge-linter/events{/privacy}","received_events_url":"https://api.github.com/users/conda-forge-linter/received_events","type":"User","site_admin":false},"created_at":"2017-03-02T01:43:36Z","updated_at":"2017-03-02T01:43:36Z","body":"\nHi! This is the friendly automated conda-forge-linting service.\n\nI just wanted to let you know that I linted all conda-recipes in your PR (```recipe```) and found it was in an excellent condition.\n\n"}} | {
"id": 54291954,
"name": "conda-forge/pynco-feedstock",
"url": "https://api.github.com/repos/conda-forge/pynco-feedstock"
} | {
"id": 18567580,
"login": "conda-forge-linter",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/18567580?",
"url": "https://api.github.com/users/conda-forge-linter"
} | {
"id": 11897326,
"login": "conda-forge",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11897326?",
"url": "https://api.github.com/orgs/conda-forge"
} | 2017-03-02T01:43:36 | 5416757217 | {"actor":{"display_login":"conda-forge-linter"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4224","repository_url":"https://api.github.com/repos/conda-forge/staged-recipes","labels_url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4224/labels{/name}","comments_url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4224/comments","events_url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4224/events","html_url":"https://github.com/conda-forge/staged-recipes/pull/4224","id":267687092,"number":4224,"title":"ENH added recipe for MySQL server","user":{"login":"beckermr","id":5296416,"avatar_url":"https://avatars2.githubusercontent.com/u/5296416?v=4","gravatar_id":"","url":"https://api.github.com/users/beckermr","html_url":"https://github.com/beckermr","followers_url":"https://api.github.com/users/beckermr/followers","following_url":"https://api.github.com/users/beckermr/following{/other_user}","gists_url":"https://api.github.com/users/beckermr/gists{/gist_id}","starred_url":"https://api.github.com/users/beckermr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/beckermr/subscriptions","organizations_url":"https://api.github.com/users/beckermr/orgs","repos_url":"https://api.github.com/users/beckermr/repos","events_url":"https://api.github.com/users/beckermr/events{/privacy}","received_events_url":"https://api.github.com/users/beckermr/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":9,"created_at":"2017-10-23T14:20:49Z","updated_at":"2017-10-25T17:45:20Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/conda-forge/staged-recipes/pulls/4224","html_url":"https://github.com/conda-forge/staged-recipes/pull/4224","diff_url":"https://github.com/conda-forge/staged-recipes/pull/4224.diff","patch_url":"https://github.com/conda-forge/staged-recipes/pull/4224.patch"},"body":"This is a recipe for a full MySQL server installation. It is based on the homebrew package of the same name.\r\n\r\nSome notes:\r\n- I went ahead and used the cmake options to use bundled SSL, readline, editline and boost. This makes the packaging easier and more reliable. \r\n- I am running the shipped tests during the build. They are a lot of data and so running them right away means we can delete the directories.\r\n\r\nPossible To Do:\r\n- [x] ~~start server upon activation (following the toolchain package)~~\r\n\r\n@druvus for viz"},"comment":{"url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/comments/339412822","html_url":"https://github.com/conda-forge/staged-recipes/pull/4224#issuecomment-339412822","issue_url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4224","id":339412822,"user":{"login":"beckermr","id":5296416,"avatar_url":"https://avatars2.githubusercontent.com/u/5296416?v=4","gravatar_id":"","url":"https://api.github.com/users/beckermr","html_url":"https://github.com/beckermr","followers_url":"https://api.github.com/users/beckermr/followers","following_url":"https://api.github.com/users/beckermr/following{/other_user}","gists_url":"https://api.github.com/users/beckermr/gists{/gist_id}","starred_url":"https://api.github.com/users/beckermr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/beckermr/subscriptions","organizations_url":"https://api.github.com/users/beckermr/orgs","repos_url":"https://api.github.com/users/beckermr/repos","events_url":"https://api.github.com/users/beckermr/events{/privacy}","received_events_url":"https://api.github.com/users/beckermr/received_events","type":"User","site_admin":false},"created_at":"2017-10-25T17:45:20Z","updated_at":"2017-10-25T17:45:20Z","author_association":"CONTRIBUTOR","body":"@jakirkham which files?"}} | {
"id": 41829476,
"name": "conda-forge/staged-recipes",
"url": "https://api.github.com/repos/conda-forge/staged-recipes"
} | {
"id": 5296416,
"login": "beckermr",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5296416?",
"url": "https://api.github.com/users/beckermr"
} | {
"id": 11897326,
"login": "conda-forge",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11897326?",
"url": "https://api.github.com/orgs/conda-forge"
} | 2017-10-25T17:45:21 | 6765387554 | {"actor":{"display_login":"beckermr"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4046","repository_url":"https://api.github.com/repos/conda-forge/staged-recipes","labels_url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4046/labels{/name}","comments_url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4046/comments","events_url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4046/events","html_url":"https://github.com/conda-forge/staged-recipes/pull/4046","id":260314853,"number":4046,"title":"Add bootstrap","user":{"login":"sannykr","id":7585761,"avatar_url":"https://avatars3.githubusercontent.com/u/7585761?v=4","gravatar_id":"","url":"https://api.github.com/users/sannykr","html_url":"https://github.com/sannykr","followers_url":"https://api.github.com/users/sannykr/followers","following_url":"https://api.github.com/users/sannykr/following{/other_user}","gists_url":"https://api.github.com/users/sannykr/gists{/gist_id}","starred_url":"https://api.github.com/users/sannykr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sannykr/subscriptions","organizations_url":"https://api.github.com/users/sannykr/orgs","repos_url":"https://api.github.com/users/sannykr/repos","events_url":"https://api.github.com/users/sannykr/events{/privacy}","received_events_url":"https://api.github.com/users/sannykr/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2017-09-25T15:17:30Z","updated_at":"2017-10-18T22:51:53Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/conda-forge/staged-recipes/pulls/4046","html_url":"https://github.com/conda-forge/staged-recipes/pull/4046","diff_url":"https://github.com/conda-forge/staged-recipes/pull/4046.diff","patch_url":"https://github.com/conda-forge/staged-recipes/pull/4046.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/comments/337750588","html_url":"https://github.com/conda-forge/staged-recipes/pull/4046#issuecomment-337750588","issue_url":"https://api.github.com/repos/conda-forge/staged-recipes/issues/4046","id":337750588,"user":{"login":"sannykr","id":7585761,"avatar_url":"https://avatars3.githubusercontent.com/u/7585761?v=4","gravatar_id":"","url":"https://api.github.com/users/sannykr","html_url":"https://github.com/sannykr","followers_url":"https://api.github.com/users/sannykr/followers","following_url":"https://api.github.com/users/sannykr/following{/other_user}","gists_url":"https://api.github.com/users/sannykr/gists{/gist_id}","starred_url":"https://api.github.com/users/sannykr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sannykr/subscriptions","organizations_url":"https://api.github.com/users/sannykr/orgs","repos_url":"https://api.github.com/users/sannykr/repos","events_url":"https://api.github.com/users/sannykr/events{/privacy}","received_events_url":"https://api.github.com/users/sannykr/received_events","type":"User","site_admin":false},"created_at":"2017-10-18T22:51:52Z","updated_at":"2017-10-18T22:51:52Z","author_association":"CONTRIBUTOR","body":"@conda-forge/staged-recipes : Could you please review and merge."}} | {
"id": 41829476,
"name": "conda-forge/staged-recipes",
"url": "https://api.github.com/repos/conda-forge/staged-recipes"
} | {
"id": 7585761,
"login": "sannykr",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7585761?",
"url": "https://api.github.com/users/sannykr"
} | {
"id": 11897326,
"login": "conda-forge",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11897326?",
"url": "https://api.github.com/orgs/conda-forge"
} | 2017-10-18T22:51:53 | 6735662269 | {"actor":{"display_login":"sannykr"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/coursera-dl/edx-dl/issues/412","repository_url":"https://api.github.com/repos/coursera-dl/edx-dl","labels_url":"https://api.github.com/repos/coursera-dl/edx-dl/issues/412/labels{/name}","comments_url":"https://api.github.com/repos/coursera-dl/edx-dl/issues/412/comments","events_url":"https://api.github.com/repos/coursera-dl/edx-dl/issues/412/events","html_url":"https://github.com/coursera-dl/edx-dl/pull/412","id":201368488,"number":412,"title":"Add support for xuetangx.com","user":{"login":"mcfloundinho","id":3724995,"avatar_url":"https://avatars.githubusercontent.com/u/3724995?v=3","gravatar_id":"","url":"https://api.github.com/users/mcfloundinho","html_url":"https://github.com/mcfloundinho","followers_url":"https://api.github.com/users/mcfloundinho/followers","following_url":"https://api.github.com/users/mcfloundinho/following{/other_user}","gists_url":"https://api.github.com/users/mcfloundinho/gists{/gist_id}","starred_url":"https://api.github.com/users/mcfloundinho/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mcfloundinho/subscriptions","organizations_url":"https://api.github.com/users/mcfloundinho/orgs","repos_url":"https://api.github.com/users/mcfloundinho/repos","events_url":"https://api.github.com/users/mcfloundinho/events{/privacy}","received_events_url":"https://api.github.com/users/mcfloundinho/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":6,"created_at":"2017-01-17T18:30:40Z","updated_at":"2017-01-22T21:53:13Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/coursera-dl/edx-dl/pulls/412","html_url":"https://github.com/coursera-dl/edx-dl/pull/412","diff_url":"https://github.com/coursera-dl/edx-dl/pull/412.diff","patch_url":"https://github.com/coursera-dl/edx-dl/pull/412.patch"},"body":"🚨Please review the [guidelines for contributing](CONTRIBUTING.md) to this repository.\r\n\r\n## Proposed changes\r\n\r\nXuetangx (http://www.xuetangx.com/), based on OpenEdX, is the most popular MOOC platform in China. It would be fine to support it :-)\r\n\r\n## Types of changes\r\n\r\nWhat types of changes does your code introduce?\r\n_Put an `x` in the boxes that apply_\r\n\r\n- [ ] Bugfix (non-breaking change which fixes an issue)\r\n- [x] New feature (non-breaking change which adds functionality)\r\n- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)\r\n\r\n## Checklist\r\n\r\n_Put an `x` in the boxes that apply. You can also fill these out after creating\r\nthe PR. If you're unsure about any of them, don't hesitate to ask. We're here\r\nto help! This is simply a reminder of what we are going to look for before\r\nmerging your code._\r\n\r\n- [x] I have read the [CONTRIBUTING](/CONTRIBUTING.md) doc\r\n- [x] I agree to contribute my changes under the project's [LICENSE](/LICENSE)\r\n- [x] I have checked that the unit tests pass locally with my changes\r\n- [x] I have checked the style of the new code (lint/pep).\r\n- [ ] I have added tests that prove my fix is effective or that my feature works\r\n- [ ] I have added necessary documentation (if appropriate)\r\n\r\n## Further comments\r\n\r\nIf this is a relatively large or complex change, please explain why you chose\r\nthe solution you did and what alternatives you considered, etc.\r\n\r\n### Reviewers\r\nIf you know the person who can review your code please add a @mention.\r\n"},"comment":{"url":"https://api.github.com/repos/coursera-dl/edx-dl/issues/comments/274362742","html_url":"https://github.com/coursera-dl/edx-dl/pull/412#issuecomment-274362742","issue_url":"https://api.github.com/repos/coursera-dl/edx-dl/issues/412","id":274362742,"user":{"login":"iemejia","id":79476,"avatar_url":"https://avatars.githubusercontent.com/u/79476?v=3","gravatar_id":"","url":"https://api.github.com/users/iemejia","html_url":"https://github.com/iemejia","followers_url":"https://api.github.com/users/iemejia/followers","following_url":"https://api.github.com/users/iemejia/following{/other_user}","gists_url":"https://api.github.com/users/iemejia/gists{/gist_id}","starred_url":"https://api.github.com/users/iemejia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iemejia/subscriptions","organizations_url":"https://api.github.com/users/iemejia/orgs","repos_url":"https://api.github.com/users/iemejia/repos","events_url":"https://api.github.com/users/iemejia/events{/privacy}","received_events_url":"https://api.github.com/users/iemejia/received_events","type":"User","site_admin":false},"created_at":"2017-01-22T21:53:13Z","updated_at":"2017-01-22T21:53:13Z","body":"One extra question have you tried your code on windows? We use to have tons of problems with chinese characters in windows, that's the reason why we ultra simplified everything to be ASCII. Anyway I think this solution is not future proof and maybe we must fix it as part of your PR (or I will do it in a future one)."}} | {
"id": 6018162,
"name": "coursera-dl/edx-dl",
"url": "https://api.github.com/repos/coursera-dl/edx-dl"
} | {
"id": 79476,
"login": "iemejia",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/79476?",
"url": "https://api.github.com/users/iemejia"
} | {
"id": 5588942,
"login": "coursera-dl",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5588942?",
"url": "https://api.github.com/orgs/coursera-dl"
} | 2017-01-22T21:53:13 | 5193727775 | {"actor":{"display_login":"iemejia"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/dailymotion/hls.js/issues/939","repository_url":"https://api.github.com/repos/dailymotion/hls.js","labels_url":"https://api.github.com/repos/dailymotion/hls.js/issues/939/labels{/name}","comments_url":"https://api.github.com/repos/dailymotion/hls.js/issues/939/comments","events_url":"https://api.github.com/repos/dailymotion/hls.js/issues/939/events","html_url":"https://github.com/dailymotion/hls.js/issues/939","id":201900646,"number":939,"title":"Memory leak in 0.6.14+?","user":{"login":"kfeinUI","id":5054750,"avatar_url":"https://avatars.githubusercontent.com/u/5054750?v=3","gravatar_id":"","url":"https://api.github.com/users/kfeinUI","html_url":"https://github.com/kfeinUI","followers_url":"https://api.github.com/users/kfeinUI/followers","following_url":"https://api.github.com/users/kfeinUI/following{/other_user}","gists_url":"https://api.github.com/users/kfeinUI/gists{/gist_id}","starred_url":"https://api.github.com/users/kfeinUI/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kfeinUI/subscriptions","organizations_url":"https://api.github.com/users/kfeinUI/orgs","repos_url":"https://api.github.com/users/kfeinUI/repos","events_url":"https://api.github.com/users/kfeinUI/events{/privacy}","received_events_url":"https://api.github.com/users/kfeinUI/received_events","type":"User","site_admin":false},"labels":[{"id":340116248,"url":"https://api.github.com/repos/dailymotion/hls.js/labels/need%20info","name":"need info","color":"fbca04","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":30,"created_at":"2017-01-19T16:01:14Z","updated_at":"2017-01-24T23:37:22Z","closed_at":null,"body":"<!-- If you are raising a bug playing a stream, you must fill out the following or your issue may not be responded to. For features or improvements, you may delete this. -->\r\n##### Environment\r\n<!-- Replace [ ] with [x] to check off the list -->\r\n- [x] The stream has correct Access-Control-Allow-Origin headers (CORS)\r\n- [x] There are no network errors such as 404s in the browser console when trying to play the stream\r\n- [x] The issue observed is not already reported by searching on Github under https://github.com/dailymotion/hls.js/issues\r\n- [x] The issue occurs in the latest reference client on http://dailymotion.github.io/hls.js/demo and not just on my page\r\n* Link to playable M3U8 file: \r\n* Hls.js version: 0.6.17 after having upgraded from 0.6.13 which does not have this issue.\r\n* Browser name/version: Seems to be an issue across browsers. Firefox 50.1.0, Chrome 56 beta, Edge 38.\r\n* OS name/version: Windows 10\r\n\r\n##### Steps to reproduce\r\n1. Play back a video for a while. My case has been live DVR playlists, but that may not matter.\r\n2. Let it play and watch your memory usage continue to grow. It may even get to the point of crashing the browser after a while.\r\n\r\n##### Expected behavior\r\nStable memory usage.\r\n\r\n##### Actual behavior\r\nMemory usage continues to grow over time, frequently even to the point of crashing the browser. It's consistent and noticeably different from prior behavior.\r\n\r\nI've been doing some testing by incrementing the hls.js version from where I was at on 0.6.13. It looks to have been introduced in 0.6.14.\r\n"},"comment":{"url":"https://api.github.com/repos/dailymotion/hls.js/issues/comments/274974544","html_url":"https://github.com/dailymotion/hls.js/issues/939#issuecomment-274974544","issue_url":"https://api.github.com/repos/dailymotion/hls.js/issues/939","id":274974544,"user":{"login":"mangui","id":1798553,"avatar_url":"https://avatars.githubusercontent.com/u/1798553?v=3","gravatar_id":"","url":"https://api.github.com/users/mangui","html_url":"https://github.com/mangui","followers_url":"https://api.github.com/users/mangui/followers","following_url":"https://api.github.com/users/mangui/following{/other_user}","gists_url":"https://api.github.com/users/mangui/gists{/gist_id}","starred_url":"https://api.github.com/users/mangui/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mangui/subscriptions","organizations_url":"https://api.github.com/users/mangui/orgs","repos_url":"https://api.github.com/users/mangui/repos","events_url":"https://api.github.com/users/mangui/events{/privacy}","received_events_url":"https://api.github.com/users/mangui/received_events","type":"User","site_admin":false},"created_at":"2017-01-24T23:37:22Z","updated_at":"2017-01-24T23:37:22Z","body":"from 12:42:27s to 13:34:03s ( more than 50mn) heap size moved from 14.2 MB to 14.4 MB\r\n\r\n\r\nI don't see any glaring leak in this snapshot.\r\nWhat do you mean by it ran out of mem ? did you get a specific message in Chrome ?\r\n\r\nmaybe the out of mem comes from the web worker instead ? in that case it would make sense to dump worker heap\r\n\r\n\r\n\r\n"}} | {
"id": 30064588,
"name": "dailymotion/hls.js",
"url": "https://api.github.com/repos/dailymotion/hls.js"
} | {
"id": 1798553,
"login": "mangui",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1798553?",
"url": "https://api.github.com/users/mangui"
} | {
"id": 115313,
"login": "dailymotion",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/115313?",
"url": "https://api.github.com/orgs/dailymotion"
} | 2017-01-24T23:37:23 | 5207457388 | {"actor":{"display_login":"mangui"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/dolphin-emu/dolphin/issues/5070","repository_url":"https://api.github.com/repos/dolphin-emu/dolphin","labels_url":"https://api.github.com/repos/dolphin-emu/dolphin/issues/5070/labels{/name}","comments_url":"https://api.github.com/repos/dolphin-emu/dolphin/issues/5070/comments","events_url":"https://api.github.com/repos/dolphin-emu/dolphin/issues/5070/events","html_url":"https://github.com/dolphin-emu/dolphin/pull/5070","id":213604806,"number":5070,"title":"IOS/ES: Fix GetStoredContentsFromTMD","user":{"login":"leoetlino","id":4209061,"avatar_url":"https://avatars1.githubusercontent.com/u/4209061?v=3","gravatar_id":"","url":"https://api.github.com/users/leoetlino","html_url":"https://github.com/leoetlino","followers_url":"https://api.github.com/users/leoetlino/followers","following_url":"https://api.github.com/users/leoetlino/following{/other_user}","gists_url":"https://api.github.com/users/leoetlino/gists{/gist_id}","starred_url":"https://api.github.com/users/leoetlino/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/leoetlino/subscriptions","organizations_url":"https://api.github.com/users/leoetlino/orgs","repos_url":"https://api.github.com/users/leoetlino/repos","events_url":"https://api.github.com/users/leoetlino/events{/privacy}","received_events_url":"https://api.github.com/users/leoetlino/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2017-03-12T13:33:30Z","updated_at":"2017-03-12T23:08:35Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/dolphin-emu/dolphin/pulls/5070","html_url":"https://github.com/dolphin-emu/dolphin/pull/5070","diff_url":"https://github.com/dolphin-emu/dolphin/pull/5070.diff","patch_url":"https://github.com/dolphin-emu/dolphin/pull/5070.patch"},"body":"We were checking for the wrong files (title content directory instead of checking whether the content files themselves exist)... Whoops!"},"comment":{"url":"https://api.github.com/repos/dolphin-emu/dolphin/issues/comments/285985316","html_url":"https://github.com/dolphin-emu/dolphin/pull/5070#issuecomment-285985316","issue_url":"https://api.github.com/repos/dolphin-emu/dolphin/issues/5070","id":285985316,"user":{"login":"mbc07","id":8005966,"avatar_url":"https://avatars3.githubusercontent.com/u/8005966?v=3","gravatar_id":"","url":"https://api.github.com/users/mbc07","html_url":"https://github.com/mbc07","followers_url":"https://api.github.com/users/mbc07/followers","following_url":"https://api.github.com/users/mbc07/following{/other_user}","gists_url":"https://api.github.com/users/mbc07/gists{/gist_id}","starred_url":"https://api.github.com/users/mbc07/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbc07/subscriptions","organizations_url":"https://api.github.com/users/mbc07/orgs","repos_url":"https://api.github.com/users/mbc07/repos","events_url":"https://api.github.com/users/mbc07/events{/privacy}","received_events_url":"https://api.github.com/users/mbc07/received_events","type":"User","site_admin":false},"created_at":"2017-03-12T23:08:35Z","updated_at":"2017-03-12T23:08:35Z","body":"Um, I would like to request the merge of this PR. I'm doing some clean-up on the Wiki, mostly on Wii Channel pages, and this PR fixes some issues which would make my cleaning job at the wiki easier. Thanks beforehand..."}} | {
"id": 11577304,
"name": "dolphin-emu/dolphin",
"url": "https://api.github.com/repos/dolphin-emu/dolphin"
} | {
"id": 8005966,
"login": "mbc07",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8005966?",
"url": "https://api.github.com/users/mbc07"
} | {
"id": 5050316,
"login": "dolphin-emu",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5050316?",
"url": "https://api.github.com/orgs/dolphin-emu"
} | 2017-03-12T23:08:35 | 5479057628 | {"actor":{"display_login":"mbc07"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/electricimp/LIS3DH/issues/12","repository_url":"https://api.github.com/repos/electricimp/LIS3DH","labels_url":"https://api.github.com/repos/electricimp/LIS3DH/issues/12/labels{/name}","comments_url":"https://api.github.com/repos/electricimp/LIS3DH/issues/12/comments","events_url":"https://api.github.com/repos/electricimp/LIS3DH/issues/12/events","html_url":"https://github.com/electricimp/LIS3DH/pull/12","id":238003962,"number":12,"title":"Develop","user":{"login":"zappysquirrel","id":29240212,"avatar_url":"https://avatars3.githubusercontent.com/u/29240212?v=4","gravatar_id":"","url":"https://api.github.com/users/zappysquirrel","html_url":"https://github.com/zappysquirrel","followers_url":"https://api.github.com/users/zappysquirrel/followers","following_url":"https://api.github.com/users/zappysquirrel/following{/other_user}","gists_url":"https://api.github.com/users/zappysquirrel/gists{/gist_id}","starred_url":"https://api.github.com/users/zappysquirrel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zappysquirrel/subscriptions","organizations_url":"https://api.github.com/users/zappysquirrel/orgs","repos_url":"https://api.github.com/users/zappysquirrel/repos","events_url":"https://api.github.com/users/zappysquirrel/events{/privacy}","received_events_url":"https://api.github.com/users/zappysquirrel/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"zappysquirrel","id":29240212,"avatar_url":"https://avatars3.githubusercontent.com/u/29240212?v=4","gravatar_id":"","url":"https://api.github.com/users/zappysquirrel","html_url":"https://github.com/zappysquirrel","followers_url":"https://api.github.com/users/zappysquirrel/followers","following_url":"https://api.github.com/users/zappysquirrel/following{/other_user}","gists_url":"https://api.github.com/users/zappysquirrel/gists{/gist_id}","starred_url":"https://api.github.com/users/zappysquirrel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zappysquirrel/subscriptions","organizations_url":"https://api.github.com/users/zappysquirrel/orgs","repos_url":"https://api.github.com/users/zappysquirrel/repos","events_url":"https://api.github.com/users/zappysquirrel/events{/privacy}","received_events_url":"https://api.github.com/users/zappysquirrel/received_events","type":"User","site_admin":false},"assignees":[{"login":"zappysquirrel","id":29240212,"avatar_url":"https://avatars3.githubusercontent.com/u/29240212?v=4","gravatar_id":"","url":"https://api.github.com/users/zappysquirrel","html_url":"https://github.com/zappysquirrel","followers_url":"https://api.github.com/users/zappysquirrel/followers","following_url":"https://api.github.com/users/zappysquirrel/following{/other_user}","gists_url":"https://api.github.com/users/zappysquirrel/gists{/gist_id}","starred_url":"https://api.github.com/users/zappysquirrel/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/zappysquirrel/subscriptions","organizations_url":"https://api.github.com/users/zappysquirrel/orgs","repos_url":"https://api.github.com/users/zappysquirrel/repos","events_url":"https://api.github.com/users/zappysquirrel/events{/privacy}","received_events_url":"https://api.github.com/users/zappysquirrel/received_events","type":"User","site_admin":false}],"milestone":null,"comments":3,"created_at":"2017-06-22T23:47:49Z","updated_at":"2017-08-05T00:32:01Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/electricimp/LIS3DH/pulls/12","html_url":"https://github.com/electricimp/LIS3DH/pull/12","diff_url":"https://github.com/electricimp/LIS3DH/pull/12.diff","patch_url":"https://github.com/electricimp/LIS3DH/pull/12.patch"},"body":"For click interrupts, to latch the interrupt you must set the 7th bit in the click_ths register\r\nso, I added a line in configureInterruptLatching(state) to do this. I also added ADC and methods for setting low power, normal, and high resolution modes"},"comment":{"url":"https://api.github.com/repos/electricimp/LIS3DH/issues/comments/320379743","html_url":"https://github.com/electricimp/LIS3DH/pull/12#issuecomment-320379743","issue_url":"https://api.github.com/repos/electricimp/LIS3DH/issues/12","id":320379743,"user":{"login":"betzrhodes","id":10034302,"avatar_url":"https://avatars1.githubusercontent.com/u/10034302?v=4","gravatar_id":"","url":"https://api.github.com/users/betzrhodes","html_url":"https://github.com/betzrhodes","followers_url":"https://api.github.com/users/betzrhodes/followers","following_url":"https://api.github.com/users/betzrhodes/following{/other_user}","gists_url":"https://api.github.com/users/betzrhodes/gists{/gist_id}","starred_url":"https://api.github.com/users/betzrhodes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/betzrhodes/subscriptions","organizations_url":"https://api.github.com/users/betzrhodes/orgs","repos_url":"https://api.github.com/users/betzrhodes/repos","events_url":"https://api.github.com/users/betzrhodes/events{/privacy}","received_events_url":"https://api.github.com/users/betzrhodes/received_events","type":"User","site_admin":false},"created_at":"2017-08-05T00:32:01Z","updated_at":"2017-08-05T00:32:01Z","body":"Looks good to me."}} | {
"id": 38386512,
"name": "electricimp/LIS3DH",
"url": "https://api.github.com/repos/electricimp/LIS3DH"
} | {
"id": 10034302,
"login": "betzrhodes",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10034302?",
"url": "https://api.github.com/users/betzrhodes"
} | {
"id": 3960327,
"login": "electricimp",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3960327?",
"url": "https://api.github.com/orgs/electricimp"
} | 2017-08-05T00:32:02 | 6399467296 | {"actor":{"display_login":"betzrhodes"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/elixir-ecto/ecto/issues/2021","repository_url":"https://api.github.com/repos/elixir-ecto/ecto","labels_url":"https://api.github.com/repos/elixir-ecto/ecto/issues/2021/labels{/name}","comments_url":"https://api.github.com/repos/elixir-ecto/ecto/issues/2021/comments","events_url":"https://api.github.com/repos/elixir-ecto/ecto/issues/2021/events","html_url":"https://github.com/elixir-ecto/ecto/issues/2021","id":219874331,"number":2021,"title":"Column 'a_column' in field list is ambiguous when using update_all","user":{"login":"gjaldon","id":1457730,"avatar_url":"https://avatars0.githubusercontent.com/u/1457730?v=3","gravatar_id":"","url":"https://api.github.com/users/gjaldon","html_url":"https://github.com/gjaldon","followers_url":"https://api.github.com/users/gjaldon/followers","following_url":"https://api.github.com/users/gjaldon/following{/other_user}","gists_url":"https://api.github.com/users/gjaldon/gists{/gist_id}","starred_url":"https://api.github.com/users/gjaldon/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/gjaldon/subscriptions","organizations_url":"https://api.github.com/users/gjaldon/orgs","repos_url":"https://api.github.com/users/gjaldon/repos","events_url":"https://api.github.com/users/gjaldon/events{/privacy}","received_events_url":"https://api.github.com/users/gjaldon/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-04-06T11:55:18Z","updated_at":"2017-04-06T11:58:13Z","closed_at":null,"body":"### Environment\r\n\r\n* Elixir version (elixir -v): 1.4.2\r\n* Database and version (PostgreSQL 9.4, MongoDB 3.2, etc.): Ver 15.1 Distrib 10.1.22-MariaDB\r\n* Ecto version (mix deps): 2.1.4\r\n* Database adapter and version (mix deps): mariaex 0.8.2\r\n* Operating system: Arch Linux\r\n\r\n### Current behavior\r\nI have the following code:\r\n```elixir\r\nReport\r\n|> Report.by_content_type(params[\"type\"])\r\n|> Report.by_content_item(params[\"id\"])\r\n|> Repo.update_all(set: [archived_at: ^Timex.now()])\r\n```\r\n\r\nRunning that returns the error `1052: Column 'archived_at' in field list is ambiguous`.\r\nI checked the output query and it looks like below:\r\n``` \r\n\"UPDATE `reports` AS r0 INNER JOIN `contents` AS c1 ON c1.`id` = r0.`content_id` INNER JOIN `contents` AS c2 ON c2.`id` = r0.`content_id` SET `archived_at` = ? WHERE (c1.`type` = ?) AND (c2.`id` = ?)\"\r\n```\r\n\r\n### Expected behavior\r\nThe problem is that `SET 'archived_at' =?` above doesn't specify the table. The fix is to change it to `SET r0.'archived_at' =?`. `update_all` should specify the table for the column.\r\n"},"comment":{"url":"https://api.github.com/repos/elixir-ecto/ecto/issues/comments/292151617","html_url":"https://github.com/elixir-ecto/ecto/issues/2021#issuecomment-292151617","issue_url":"https://api.github.com/repos/elixir-ecto/ecto/issues/2021","id":292151617,"user":{"login":"josevalim","id":9582,"avatar_url":"https://avatars3.githubusercontent.com/u/9582?v=3","gravatar_id":"","url":"https://api.github.com/users/josevalim","html_url":"https://github.com/josevalim","followers_url":"https://api.github.com/users/josevalim/followers","following_url":"https://api.github.com/users/josevalim/following{/other_user}","gists_url":"https://api.github.com/users/josevalim/gists{/gist_id}","starred_url":"https://api.github.com/users/josevalim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/josevalim/subscriptions","organizations_url":"https://api.github.com/users/josevalim/orgs","repos_url":"https://api.github.com/users/josevalim/repos","events_url":"https://api.github.com/users/josevalim/events{/privacy}","received_events_url":"https://api.github.com/users/josevalim/received_events","type":"User","site_admin":false},"created_at":"2017-04-06T11:58:13Z","updated_at":"2017-04-06T11:58:13Z","body":"I was going to say it should not be ambiguous because you can only update the current table... then I realized it is MySQL/MariaDB. :(\r\n\r\nCan you please send a PR? It should be fixed in ecto/adapters/mysql/connection.ex. Thank you."}} | {
"id": 10649374,
"name": "elixir-ecto/ecto",
"url": "https://api.github.com/repos/elixir-ecto/ecto"
} | {
"id": 9582,
"login": "josevalim",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9582?",
"url": "https://api.github.com/users/josevalim"
} | {
"id": 19973437,
"login": "elixir-ecto",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/19973437?",
"url": "https://api.github.com/orgs/elixir-ecto"
} | 2017-04-06T11:58:13 | 5638437975 | {"actor":{"display_login":"josevalim"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/ember-learn/ember-api-docs/issues/160","repository_url":"https://api.github.com/repos/ember-learn/ember-api-docs","labels_url":"https://api.github.com/repos/ember-learn/ember-api-docs/issues/160/labels{/name}","comments_url":"https://api.github.com/repos/ember-learn/ember-api-docs/issues/160/comments","events_url":"https://api.github.com/repos/ember-learn/ember-api-docs/issues/160/events","html_url":"https://github.com/ember-learn/ember-api-docs/pull/160","id":215120110,"number":160,"title":"add css tooltip to github link","user":{"login":"MartinMalinda","id":9468793,"avatar_url":"https://avatars2.githubusercontent.com/u/9468793?v=3","gravatar_id":"","url":"https://api.github.com/users/MartinMalinda","html_url":"https://github.com/MartinMalinda","followers_url":"https://api.github.com/users/MartinMalinda/followers","following_url":"https://api.github.com/users/MartinMalinda/following{/other_user}","gists_url":"https://api.github.com/users/MartinMalinda/gists{/gist_id}","starred_url":"https://api.github.com/users/MartinMalinda/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MartinMalinda/subscriptions","organizations_url":"https://api.github.com/users/MartinMalinda/orgs","repos_url":"https://api.github.com/users/MartinMalinda/repos","events_url":"https://api.github.com/users/MartinMalinda/events{/privacy}","received_events_url":"https://api.github.com/users/MartinMalinda/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2017-03-17T20:56:08Z","updated_at":"2017-03-18T15:42:51Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/ember-learn/ember-api-docs/pulls/160","html_url":"https://github.com/ember-learn/ember-api-docs/pull/160","diff_url":"https://github.com/ember-learn/ember-api-docs/pull/160.diff","patch_url":"https://github.com/ember-learn/ember-api-docs/pull/160.patch"},"body":"Adds a tooltip via CSS that shows up on hover. Since it's hover, it's a solution for desktop only.\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/ember-learn/ember-api-docs/issues/comments/287554220","html_url":"https://github.com/ember-learn/ember-api-docs/pull/160#issuecomment-287554220","issue_url":"https://api.github.com/repos/ember-learn/ember-api-docs/issues/160","id":287554220,"user":{"login":"toddjordan","id":3609063,"avatar_url":"https://avatars0.githubusercontent.com/u/3609063?v=3","gravatar_id":"","url":"https://api.github.com/users/toddjordan","html_url":"https://github.com/toddjordan","followers_url":"https://api.github.com/users/toddjordan/followers","following_url":"https://api.github.com/users/toddjordan/following{/other_user}","gists_url":"https://api.github.com/users/toddjordan/gists{/gist_id}","starred_url":"https://api.github.com/users/toddjordan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/toddjordan/subscriptions","organizations_url":"https://api.github.com/users/toddjordan/orgs","repos_url":"https://api.github.com/users/toddjordan/repos","events_url":"https://api.github.com/users/toddjordan/events{/privacy}","received_events_url":"https://api.github.com/users/toddjordan/received_events","type":"User","site_admin":false},"created_at":"2017-03-18T15:42:51Z","updated_at":"2017-03-18T15:42:51Z","body":"@sivakumar-kailasam true. I'll add an issue\r\n"}} | {
"id": 47560189,
"name": "ember-learn/ember-api-docs",
"url": "https://api.github.com/repos/ember-learn/ember-api-docs"
} | {
"id": 3609063,
"login": "toddjordan",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3609063?",
"url": "https://api.github.com/users/toddjordan"
} | {
"id": 18540472,
"login": "ember-learn",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/18540472?",
"url": "https://api.github.com/orgs/ember-learn"
} | 2017-03-18T15:42:51 | 5519112090 | {"actor":{"display_login":"toddjordan"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/excaliburjs/Excalibur/issues/872","repository_url":"https://api.github.com/repos/excaliburjs/Excalibur","labels_url":"https://api.github.com/repos/excaliburjs/Excalibur/issues/872/labels{/name}","comments_url":"https://api.github.com/repos/excaliburjs/Excalibur/issues/872/comments","events_url":"https://api.github.com/repos/excaliburjs/Excalibur/issues/872/events","html_url":"https://github.com/excaliburjs/Excalibur/issues/872","id":249896680,"number":872,"title":"Loading text resources fails","user":{"login":"jordanroher","id":1208600,"avatar_url":"https://avatars1.githubusercontent.com/u/1208600?v=4","gravatar_id":"","url":"https://api.github.com/users/jordanroher","html_url":"https://github.com/jordanroher","followers_url":"https://api.github.com/users/jordanroher/followers","following_url":"https://api.github.com/users/jordanroher/following{/other_user}","gists_url":"https://api.github.com/users/jordanroher/gists{/gist_id}","starred_url":"https://api.github.com/users/jordanroher/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jordanroher/subscriptions","organizations_url":"https://api.github.com/users/jordanroher/orgs","repos_url":"https://api.github.com/users/jordanroher/repos","events_url":"https://api.github.com/users/jordanroher/events{/privacy}","received_events_url":"https://api.github.com/users/jordanroher/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-08-13T20:24:43Z","updated_at":"2017-08-14T15:27:23Z","closed_at":null,"body":"### Steps to Reproduce\r\n\r\n1. Have a resource that references a text file, e.g. `MainData: new ex.Resource(\"/play/res/fonts/main.txt\", \"text\")`\r\n2. Add this resource to the loader\r\n3. Load the resource\r\n\r\n### Expected Result\r\n\r\n- The **public load(): Promise<T>** function inside **Resource.ts** sets `this.data` to the contents of the text file\r\n\r\n### Actual Result\r\n\r\n- Receive this error from **public processData(data: T): any** inside **Resource.ts**\r\n `TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided.`\r\n- The signature (data) is the content of the text file. **URL.createObjectURL** doesn't like arbitrary strings.\r\n\r\n### Environment\r\n- browsers and versions: Google Chrome 60.0.3112.90 (Official Build) (64-bit)\r\n- operating system: Windows 10 Pro 64-bit v1703 Build 15063.540\r\n- Excalibur versions: 0.11\r\n\r\n### Workaround discovered\r\n\r\n**Resource.ts** lines 83-90\r\n\r\n switch(this.responseType) {\r\n case \"text\":\r\n this.data = request.response;\r\n break;\r\n default:\r\n this.data = this.processData(request.response);\r\n break;\r\n }"},"comment":{"url":"https://api.github.com/repos/excaliburjs/Excalibur/issues/comments/322221965","html_url":"https://github.com/excaliburjs/Excalibur/issues/872#issuecomment-322221965","issue_url":"https://api.github.com/repos/excaliburjs/Excalibur/issues/872","id":322221965,"user":{"login":"kamranayub","id":563819,"avatar_url":"https://avatars1.githubusercontent.com/u/563819?v=4","gravatar_id":"","url":"https://api.github.com/users/kamranayub","html_url":"https://github.com/kamranayub","followers_url":"https://api.github.com/users/kamranayub/followers","following_url":"https://api.github.com/users/kamranayub/following{/other_user}","gists_url":"https://api.github.com/users/kamranayub/gists{/gist_id}","starred_url":"https://api.github.com/users/kamranayub/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kamranayub/subscriptions","organizations_url":"https://api.github.com/users/kamranayub/orgs","repos_url":"https://api.github.com/users/kamranayub/repos","events_url":"https://api.github.com/users/kamranayub/events{/privacy}","received_events_url":"https://api.github.com/users/kamranayub/received_events","type":"User","site_admin":false},"created_at":"2017-08-14T15:27:23Z","updated_at":"2017-08-14T15:27:23Z","body":"The proper way to address this I think is to inspect whether the return response is a byte stream or plaintext and act accordingly, that way it'll work for other plain text MIME types."}} | {
"id": 7457728,
"name": "excaliburjs/Excalibur",
"url": "https://api.github.com/repos/excaliburjs/Excalibur"
} | {
"id": 563819,
"login": "kamranayub",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/563819?",
"url": "https://api.github.com/users/kamranayub"
} | {
"id": 6165683,
"login": "excaliburjs",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6165683?",
"url": "https://api.github.com/orgs/excaliburjs"
} | 2017-08-14T15:27:23 | 6449265826 | {"actor":{"display_login":"kamranayub"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/freerouting/freerouting/issues/8","repository_url":"https://api.github.com/repos/freerouting/freerouting","labels_url":"https://api.github.com/repos/freerouting/freerouting/issues/8/labels{/name}","comments_url":"https://api.github.com/repos/freerouting/freerouting/issues/8/comments","events_url":"https://api.github.com/repos/freerouting/freerouting/issues/8/events","html_url":"https://github.com/freerouting/freerouting/issues/8","id":202694007,"number":8,"title":"Use Oracle JDK","user":{"login":"qume","id":312180,"avatar_url":"https://avatars.githubusercontent.com/u/312180?v=3","gravatar_id":"","url":"https://api.github.com/users/qume","html_url":"https://github.com/qume","followers_url":"https://api.github.com/users/qume/followers","following_url":"https://api.github.com/users/qume/following{/other_user}","gists_url":"https://api.github.com/users/qume/gists{/gist_id}","starred_url":"https://api.github.com/users/qume/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/qume/subscriptions","organizations_url":"https://api.github.com/users/qume/orgs","repos_url":"https://api.github.com/users/qume/repos","events_url":"https://api.github.com/users/qume/events{/privacy}","received_events_url":"https://api.github.com/users/qume/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-01-24T00:45:07Z","updated_at":"2017-02-03T17:46:03Z","closed_at":null,"body":"Buids and runs fine with Oracle JDK, but had problems under Ubuntu using openjdk (both 8 and 9)"},"comment":{"url":"https://api.github.com/repos/freerouting/freerouting/issues/comments/277313750","html_url":"https://github.com/freerouting/freerouting/issues/8#issuecomment-277313750","issue_url":"https://api.github.com/repos/freerouting/freerouting/issues/8","id":277313750,"user":{"login":"felipesanches","id":213676,"avatar_url":"https://avatars.githubusercontent.com/u/213676?v=3","gravatar_id":"","url":"https://api.github.com/users/felipesanches","html_url":"https://github.com/felipesanches","followers_url":"https://api.github.com/users/felipesanches/followers","following_url":"https://api.github.com/users/felipesanches/following{/other_user}","gists_url":"https://api.github.com/users/felipesanches/gists{/gist_id}","starred_url":"https://api.github.com/users/felipesanches/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/felipesanches/subscriptions","organizations_url":"https://api.github.com/users/felipesanches/orgs","repos_url":"https://api.github.com/users/felipesanches/repos","events_url":"https://api.github.com/users/felipesanches/events{/privacy}","received_events_url":"https://api.github.com/users/felipesanches/received_events","type":"User","site_admin":false},"created_at":"2017-02-03T17:46:03Z","updated_at":"2017-02-03T17:46:03Z","body":"Or better: bugfix openjdk based on the aforementioned problems. By the way... \"had problems\" is far from guiding us towards a solution. If possible, please provide a more detailed description of the problems at hand so that someone can do something about it."}} | {
"id": 21307203,
"name": "freerouting/freerouting",
"url": "https://api.github.com/repos/freerouting/freerouting"
} | {
"id": 213676,
"login": "felipesanches",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/213676?",
"url": "https://api.github.com/users/felipesanches"
} | {
"id": 8014205,
"login": "freerouting",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8014205?",
"url": "https://api.github.com/orgs/freerouting"
} | 2017-02-03T17:46:03 | 5263203824 | {"actor":{"display_login":"felipesanches"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/fulcrologic/fulcro/issues/10","repository_url":"https://api.github.com/repos/fulcrologic/fulcro","labels_url":"https://api.github.com/repos/fulcrologic/fulcro/issues/10/labels{/name}","comments_url":"https://api.github.com/repos/fulcrologic/fulcro/issues/10/comments","events_url":"https://api.github.com/repos/fulcrologic/fulcro/issues/10/events","html_url":"https://github.com/fulcrologic/fulcro/pull/10","id":244495630,"number":10,"title":"Added doc for Emacs + Cider to GettingStarted.adoc below the doc for IntelliJ","user":{"login":"markusalbertgraf","id":24669860,"avatar_url":"https://avatars1.githubusercontent.com/u/24669860?v=4","gravatar_id":"","url":"https://api.github.com/users/markusalbertgraf","html_url":"https://github.com/markusalbertgraf","followers_url":"https://api.github.com/users/markusalbertgraf/followers","following_url":"https://api.github.com/users/markusalbertgraf/following{/other_user}","gists_url":"https://api.github.com/users/markusalbertgraf/gists{/gist_id}","starred_url":"https://api.github.com/users/markusalbertgraf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/markusalbertgraf/subscriptions","organizations_url":"https://api.github.com/users/markusalbertgraf/orgs","repos_url":"https://api.github.com/users/markusalbertgraf/repos","events_url":"https://api.github.com/users/markusalbertgraf/events{/privacy}","received_events_url":"https://api.github.com/users/markusalbertgraf/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-07-20T21:01:17Z","updated_at":"2017-07-21T14:55:41Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/fulcrologic/fulcro/pulls/10","html_url":"https://github.com/fulcrologic/fulcro/pull/10","diff_url":"https://github.com/fulcrologic/fulcro/pull/10.diff","patch_url":"https://github.com/fulcrologic/fulcro/pull/10.patch"},"body":"I tried to follow the formatting."},"comment":{"url":"https://api.github.com/repos/fulcrologic/fulcro/issues/comments/317023501","html_url":"https://github.com/fulcrologic/fulcro/pull/10#issuecomment-317023501","issue_url":"https://api.github.com/repos/fulcrologic/fulcro/issues/10","id":317023501,"user":{"login":"claudiuapetrei","id":603089,"avatar_url":"https://avatars3.githubusercontent.com/u/603089?v=4","gravatar_id":"","url":"https://api.github.com/users/claudiuapetrei","html_url":"https://github.com/claudiuapetrei","followers_url":"https://api.github.com/users/claudiuapetrei/followers","following_url":"https://api.github.com/users/claudiuapetrei/following{/other_user}","gists_url":"https://api.github.com/users/claudiuapetrei/gists{/gist_id}","starred_url":"https://api.github.com/users/claudiuapetrei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/claudiuapetrei/subscriptions","organizations_url":"https://api.github.com/users/claudiuapetrei/orgs","repos_url":"https://api.github.com/users/claudiuapetrei/repos","events_url":"https://api.github.com/users/claudiuapetrei/events{/privacy}","received_events_url":"https://api.github.com/users/claudiuapetrei/received_events","type":"User","site_admin":false},"created_at":"2017-07-21T14:55:41Z","updated_at":"2017-07-21T14:55:41Z","body":"@markusalbertgraf there's a typo `src/def/user.clj`"}} | {
"id": 97032158,
"name": "fulcrologic/fulcro",
"url": "https://api.github.com/repos/fulcrologic/fulcro"
} | {
"id": 603089,
"login": "claudiuapetrei",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/603089?",
"url": "https://api.github.com/users/claudiuapetrei"
} | {
"id": 30102823,
"login": "fulcrologic",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/30102823?",
"url": "https://api.github.com/orgs/fulcrologic"
} | 2017-07-21T14:55:41 | 6303983167 | {"actor":{"display_login":"claudiuapetrei"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/geodynamics/aspect/issues/1518","repository_url":"https://api.github.com/repos/geodynamics/aspect","labels_url":"https://api.github.com/repos/geodynamics/aspect/issues/1518/labels{/name}","comments_url":"https://api.github.com/repos/geodynamics/aspect/issues/1518/comments","events_url":"https://api.github.com/repos/geodynamics/aspect/issues/1518/events","html_url":"https://github.com/geodynamics/aspect/pull/1518","id":227133179,"number":1518,"title":"Avoid a warning about an unused argument.","user":{"login":"bangerth","id":7504421,"avatar_url":"https://avatars1.githubusercontent.com/u/7504421?v=3","gravatar_id":"","url":"https://api.github.com/users/bangerth","html_url":"https://github.com/bangerth","followers_url":"https://api.github.com/users/bangerth/followers","following_url":"https://api.github.com/users/bangerth/following{/other_user}","gists_url":"https://api.github.com/users/bangerth/gists{/gist_id}","starred_url":"https://api.github.com/users/bangerth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bangerth/subscriptions","organizations_url":"https://api.github.com/users/bangerth/orgs","repos_url":"https://api.github.com/users/bangerth/repos","events_url":"https://api.github.com/users/bangerth/events{/privacy}","received_events_url":"https://api.github.com/users/bangerth/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-05-08T18:29:24Z","updated_at":"2017-05-09T00:24:14Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/geodynamics/aspect/pulls/1518","html_url":"https://github.com/geodynamics/aspect/pull/1518","diff_url":"https://github.com/geodynamics/aspect/pull/1518.diff","patch_url":"https://github.com/geodynamics/aspect/pull/1518.patch"},"body":"Fixes a problem reported in #1491 by @ian-r-rose."},"comment":{"url":"https://api.github.com/repos/geodynamics/aspect/issues/comments/300027108","html_url":"https://github.com/geodynamics/aspect/pull/1518#issuecomment-300027108","issue_url":"https://api.github.com/repos/geodynamics/aspect/issues/1518","id":300027108,"user":{"login":"tjhei","id":1531285,"avatar_url":"https://avatars3.githubusercontent.com/u/1531285?v=3","gravatar_id":"","url":"https://api.github.com/users/tjhei","html_url":"https://github.com/tjhei","followers_url":"https://api.github.com/users/tjhei/followers","following_url":"https://api.github.com/users/tjhei/following{/other_user}","gists_url":"https://api.github.com/users/tjhei/gists{/gist_id}","starred_url":"https://api.github.com/users/tjhei/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tjhei/subscriptions","organizations_url":"https://api.github.com/users/tjhei/orgs","repos_url":"https://api.github.com/users/tjhei/repos","events_url":"https://api.github.com/users/tjhei/events{/privacy}","received_events_url":"https://api.github.com/users/tjhei/received_events","type":"User","site_admin":false},"created_at":"2017-05-09T00:24:14Z","updated_at":"2017-05-09T00:24:14Z","body":"rebase after #1523 is mergeed"}} | {
"id": 19502452,
"name": "geodynamics/aspect",
"url": "https://api.github.com/repos/geodynamics/aspect"
} | {
"id": 1531285,
"login": "tjhei",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1531285?",
"url": "https://api.github.com/users/tjhei"
} | {
"id": 4052461,
"login": "geodynamics",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4052461?",
"url": "https://api.github.com/orgs/geodynamics"
} | 2017-05-09T00:24:14 | 5833177123 | {"actor":{"display_login":"tjhei"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/georchestra/georchestra/issues/1671","repository_url":"https://api.github.com/repos/georchestra/georchestra","labels_url":"https://api.github.com/repos/georchestra/georchestra/issues/1671/labels{/name}","comments_url":"https://api.github.com/repos/georchestra/georchestra/issues/1671/comments","events_url":"https://api.github.com/repos/georchestra/georchestra/issues/1671/events","html_url":"https://github.com/georchestra/georchestra/pull/1671","id":208168761,"number":1671,"title":"console - Try to fix travis build by adding missing lib","user":{"login":"Vampouille","id":7067560,"avatar_url":"https://avatars.githubusercontent.com/u/7067560?v=3","gravatar_id":"","url":"https://api.github.com/users/Vampouille","html_url":"https://github.com/Vampouille","followers_url":"https://api.github.com/users/Vampouille/followers","following_url":"https://api.github.com/users/Vampouille/following{/other_user}","gists_url":"https://api.github.com/users/Vampouille/gists{/gist_id}","starred_url":"https://api.github.com/users/Vampouille/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Vampouille/subscriptions","organizations_url":"https://api.github.com/users/Vampouille/orgs","repos_url":"https://api.github.com/users/Vampouille/repos","events_url":"https://api.github.com/users/Vampouille/events{/privacy}","received_events_url":"https://api.github.com/users/Vampouille/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-02-16T16:14:52Z","updated_at":"2017-02-16T16:55:43Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/georchestra/georchestra/pulls/1671","html_url":"https://github.com/georchestra/georchestra/pull/1671","diff_url":"https://github.com/georchestra/georchestra/pull/1671.diff","patch_url":"https://github.com/georchestra/georchestra/pull/1671.patch"},"body":""},"comment":{"url":"https://api.github.com/repos/georchestra/georchestra/issues/comments/280389909","html_url":"https://github.com/georchestra/georchestra/pull/1671#issuecomment-280389909","issue_url":"https://api.github.com/repos/georchestra/georchestra/issues/1671","id":280389909,"user":{"login":"fvanderbiest","id":265319,"avatar_url":"https://avatars.githubusercontent.com/u/265319?v=3","gravatar_id":"","url":"https://api.github.com/users/fvanderbiest","html_url":"https://github.com/fvanderbiest","followers_url":"https://api.github.com/users/fvanderbiest/followers","following_url":"https://api.github.com/users/fvanderbiest/following{/other_user}","gists_url":"https://api.github.com/users/fvanderbiest/gists{/gist_id}","starred_url":"https://api.github.com/users/fvanderbiest/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fvanderbiest/subscriptions","organizations_url":"https://api.github.com/users/fvanderbiest/orgs","repos_url":"https://api.github.com/users/fvanderbiest/repos","events_url":"https://api.github.com/users/fvanderbiest/events{/privacy}","received_events_url":"https://api.github.com/users/fvanderbiest/received_events","type":"User","site_admin":false},"created_at":"2017-02-16T16:55:43Z","updated_at":"2017-02-16T16:55:43Z","body":"Travis being happy, let's merge !\r\nThanks :-)"}} | {
"id": 6066709,
"name": "georchestra/georchestra",
"url": "https://api.github.com/repos/georchestra/georchestra"
} | {
"id": 265319,
"login": "fvanderbiest",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/265319?",
"url": "https://api.github.com/users/fvanderbiest"
} | {
"id": 773831,
"login": "georchestra",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/773831?",
"url": "https://api.github.com/orgs/georchestra"
} | 2017-02-16T16:55:43 | 5338073143 | {"actor":{"display_login":"fvanderbiest"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/godotengine/godot/issues/8599","repository_url":"https://api.github.com/repos/godotengine/godot","labels_url":"https://api.github.com/repos/godotengine/godot/issues/8599/labels{/name}","comments_url":"https://api.github.com/repos/godotengine/godot/issues/8599/comments","events_url":"https://api.github.com/repos/godotengine/godot/issues/8599/events","html_url":"https://github.com/godotengine/godot/issues/8599","id":225358113,"number":8599,"title":"[Suggestion] giflib for animated gif viewing and proccessing","user":{"login":"Ahmed0425","id":25909799,"avatar_url":"https://avatars0.githubusercontent.com/u/25909799?v=3","gravatar_id":"","url":"https://api.github.com/users/Ahmed0425","html_url":"https://github.com/Ahmed0425","followers_url":"https://api.github.com/users/Ahmed0425/followers","following_url":"https://api.github.com/users/Ahmed0425/following{/other_user}","gists_url":"https://api.github.com/users/Ahmed0425/gists{/gist_id}","starred_url":"https://api.github.com/users/Ahmed0425/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Ahmed0425/subscriptions","organizations_url":"https://api.github.com/users/Ahmed0425/orgs","repos_url":"https://api.github.com/users/Ahmed0425/repos","events_url":"https://api.github.com/users/Ahmed0425/events{/privacy}","received_events_url":"https://api.github.com/users/Ahmed0425/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":4,"created_at":"2017-04-30T22:11:42Z","updated_at":"2017-05-01T16:49:15Z","closed_at":null,"body":"will be very useful for my next game and for 2d games in general\r\nhttp://giflib.sourceforge.net/"},"comment":{"url":"https://api.github.com/repos/godotengine/godot/issues/comments/298371824","html_url":"https://github.com/godotengine/godot/issues/8599#issuecomment-298371824","issue_url":"https://api.github.com/repos/godotengine/godot/issues/8599","id":298371824,"user":{"login":"eon-s","id":10215987,"avatar_url":"https://avatars0.githubusercontent.com/u/10215987?v=3","gravatar_id":"","url":"https://api.github.com/users/eon-s","html_url":"https://github.com/eon-s","followers_url":"https://api.github.com/users/eon-s/followers","following_url":"https://api.github.com/users/eon-s/following{/other_user}","gists_url":"https://api.github.com/users/eon-s/gists{/gist_id}","starred_url":"https://api.github.com/users/eon-s/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/eon-s/subscriptions","organizations_url":"https://api.github.com/users/eon-s/orgs","repos_url":"https://api.github.com/users/eon-s/repos","events_url":"https://api.github.com/users/eon-s/events{/privacy}","received_events_url":"https://api.github.com/users/eon-s/received_events","type":"User","site_admin":false},"created_at":"2017-05-01T16:49:15Z","updated_at":"2017-05-01T16:49:15Z","body":"I'm not sure if gif performance will be good, loading a video (like webp if supported) apart and using ViewportTexture may be better and easier to set up and control.\r\n\r\n"}} | {
"id": 15634981,
"name": "godotengine/godot",
"url": "https://api.github.com/repos/godotengine/godot"
} | {
"id": 10215987,
"login": "eon-s",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10215987?",
"url": "https://api.github.com/users/eon-s"
} | {
"id": 6318500,
"login": "godotengine",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6318500?",
"url": "https://api.github.com/orgs/godotengine"
} | 2017-05-01T16:49:16 | 5787870127 | {"actor":{"display_login":"eon-s"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/godotengine/godot/issues/9537","repository_url":"https://api.github.com/repos/godotengine/godot","labels_url":"https://api.github.com/repos/godotengine/godot/issues/9537/labels{/name}","comments_url":"https://api.github.com/repos/godotengine/godot/issues/9537/comments","events_url":"https://api.github.com/repos/godotengine/godot/issues/9537/events","html_url":"https://github.com/godotengine/godot/issues/9537","id":241242575,"number":9537,"title":"PhysicState.get_contact_collider_velocity_at_pos is unusuable in 3D","user":{"login":"kubecz3k","id":6129594,"avatar_url":"https://avatars0.githubusercontent.com/u/6129594?v=4","gravatar_id":"","url":"https://api.github.com/users/kubecz3k","html_url":"https://github.com/kubecz3k","followers_url":"https://api.github.com/users/kubecz3k/followers","following_url":"https://api.github.com/users/kubecz3k/following{/other_user}","gists_url":"https://api.github.com/users/kubecz3k/gists{/gist_id}","starred_url":"https://api.github.com/users/kubecz3k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kubecz3k/subscriptions","organizations_url":"https://api.github.com/users/kubecz3k/orgs","repos_url":"https://api.github.com/users/kubecz3k/repos","events_url":"https://api.github.com/users/kubecz3k/events{/privacy}","received_events_url":"https://api.github.com/users/kubecz3k/received_events","type":"User","site_admin":false},"labels":[{"id":73330064,"url":"https://api.github.com/repos/godotengine/godot/labels/bug","name":"bug","color":"ff2222","default":true},{"id":370471880,"url":"https://api.github.com/repos/godotengine/godot/labels/topic:physics","name":"topic:physics","color":"ffdd44","default":false},{"id":283518733,"url":"https://api.github.com/repos/godotengine/godot/labels/usability","name":"usability","color":"007700","default":false}],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":22,"created_at":"2017-07-07T11:57:54Z","updated_at":"2017-11-05T09:40:33Z","closed_at":"2017-11-05T09:40:33Z","author_association":"MEMBER","body":"**Operating system or device - Godot version:**\r\nLinux, Godot 2.1.4 (but I assume this behavior is probably much much older)\r\nupdate: it's present in 7fc3c51169957f0907a13dd07d4004496e6ebd56 (3.0) as well\r\n\r\n**Issue description:**\r\nRecently I was looking at platformer 2d demo, and I saw very neat feature of PhysicState that allows to easily program following after movement floor parts like horizontal platforms in couple lines: (https://github.com/godotengine/godot-demo-projects/blob/2.1/2d/platformer/player.gd#L221). \r\n\r\n```\r\nif (found_floor):\r\n\tfloor_h_velocity = s.get_contact_collider_velocity_at_pos(floor_index).x\r\n\tlv.x += floor_h_velocity\r\n```\r\n\r\n\r\n\r\n\r\nImmediately wanted to apply this to my 3d project where player movement is realized in quite similar fashion (also rigidbody), but it turns out it's not working so well in 3D.\r\nThis probably is somewhat know issue to @reduz since I looked at Platformer 3D demo, and very similar code is there... but it's turned off (commented): https://github.com/godotengine/godot-demo-projects/blob/2.1/3d/platformer/player.gd#L169\r\n\r\n\r\nWould be cool if we could have something similar in 3d, since at current moment this method is returning big forces even if terrain is perfectly static. \r\n\r\n**UPDATE 1:** For sample and more info check https://github.com/godotengine/godot/issues/9537#issuecomment-332870576\r\n\r\n**Steps to reproduce:**\r\nDownload Platformer demo 3d and uncomment line 171 of Player script.\r\n\r\n**Link to minimal example project:**\r\n**Edit1:** For sample and more info check https://github.com/godotengine/godot/issues/9537#issuecomment-332870576\r\n"},"comment":{"url":"https://api.github.com/repos/godotengine/godot/issues/comments/341960584","html_url":"https://github.com/godotengine/godot/issues/9537#issuecomment-341960584","issue_url":"https://api.github.com/repos/godotengine/godot/issues/9537","id":341960584,"user":{"login":"kubecz3k","id":6129594,"avatar_url":"https://avatars0.githubusercontent.com/u/6129594?v=4","gravatar_id":"","url":"https://api.github.com/users/kubecz3k","html_url":"https://github.com/kubecz3k","followers_url":"https://api.github.com/users/kubecz3k/followers","following_url":"https://api.github.com/users/kubecz3k/following{/other_user}","gists_url":"https://api.github.com/users/kubecz3k/gists{/gist_id}","starred_url":"https://api.github.com/users/kubecz3k/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kubecz3k/subscriptions","organizations_url":"https://api.github.com/users/kubecz3k/orgs","repos_url":"https://api.github.com/users/kubecz3k/repos","events_url":"https://api.github.com/users/kubecz3k/events{/privacy}","received_events_url":"https://api.github.com/users/kubecz3k/received_events","type":"User","site_admin":false},"created_at":"2017-11-05T09:40:33Z","updated_at":"2017-11-05T09:40:33Z","author_association":"MEMBER","body":"solved by #12641 :smile: "}} | {
"id": 15634981,
"name": "godotengine/godot",
"url": "https://api.github.com/repos/godotengine/godot"
} | {
"id": 6129594,
"login": "kubecz3k",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6129594?",
"url": "https://api.github.com/users/kubecz3k"
} | {
"id": 6318500,
"login": "godotengine",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6318500?",
"url": "https://api.github.com/orgs/godotengine"
} | 2017-11-05T09:40:34 | 6810690920 | {"actor":{"display_login":"kubecz3k"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/godotengine/godot/issues/9633","repository_url":"https://api.github.com/repos/godotengine/godot","labels_url":"https://api.github.com/repos/godotengine/godot/issues/9633/labels{/name}","comments_url":"https://api.github.com/repos/godotengine/godot/issues/9633/comments","events_url":"https://api.github.com/repos/godotengine/godot/issues/9633/events","html_url":"https://github.com/godotengine/godot/pull/9633","id":242778306,"number":9633,"title":"[GDNative] Implement String API.","user":{"login":"ducdetronquito","id":9960268,"avatar_url":"https://avatars3.githubusercontent.com/u/9960268?v=4","gravatar_id":"","url":"https://api.github.com/users/ducdetronquito","html_url":"https://github.com/ducdetronquito","followers_url":"https://api.github.com/users/ducdetronquito/followers","following_url":"https://api.github.com/users/ducdetronquito/following{/other_user}","gists_url":"https://api.github.com/users/ducdetronquito/gists{/gist_id}","starred_url":"https://api.github.com/users/ducdetronquito/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ducdetronquito/subscriptions","organizations_url":"https://api.github.com/users/ducdetronquito/orgs","repos_url":"https://api.github.com/users/ducdetronquito/repos","events_url":"https://api.github.com/users/ducdetronquito/events{/privacy}","received_events_url":"https://api.github.com/users/ducdetronquito/received_events","type":"User","site_admin":false},"labels":[{"id":73330066,"url":"https://api.github.com/repos/godotengine/godot/labels/enhancement","name":"enhancement","color":"44bbff","default":true},{"id":580537003,"url":"https://api.github.com/repos/godotengine/godot/labels/topic:gdnative","name":"topic:gdnative","color":"ffdd44","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/godotengine/godot/milestones/4","html_url":"https://github.com/godotengine/godot/milestone/4","labels_url":"https://api.github.com/repos/godotengine/godot/milestones/4/labels","id":1449702,"number":4,"title":"3.0","description":"","creator":{"login":"akien-mga","id":4701338,"avatar_url":"https://avatars0.githubusercontent.com/u/4701338?v=4","gravatar_id":"","url":"https://api.github.com/users/akien-mga","html_url":"https://github.com/akien-mga","followers_url":"https://api.github.com/users/akien-mga/followers","following_url":"https://api.github.com/users/akien-mga/following{/other_user}","gists_url":"https://api.github.com/users/akien-mga/gists{/gist_id}","starred_url":"https://api.github.com/users/akien-mga/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/akien-mga/subscriptions","organizations_url":"https://api.github.com/users/akien-mga/orgs","repos_url":"https://api.github.com/users/akien-mga/repos","events_url":"https://api.github.com/users/akien-mga/events{/privacy}","received_events_url":"https://api.github.com/users/akien-mga/received_events","type":"User","site_admin":false},"open_issues":403,"closed_issues":1297,"state":"open","created_at":"2015-12-08T11:42:08Z","updated_at":"2017-07-17T13:24:39Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2017-07-13T17:42:40Z","updated_at":"2017-07-17T17:14:54Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/godotengine/godot/pulls/9633","html_url":"https://github.com/godotengine/godot/pull/9633","diff_url":"https://github.com/godotengine/godot/pull/9633.diff","patch_url":"https://github.com/godotengine/godot/pull/9633.patch"},"body":"I am starting to work on #8300 ᕕ( ᐛ )ᕗ\r\n\r\n@karroffel , I haven't done much for now, as the String API is quiet huge, but could you have a look on what I have already done, just to let me know if I made early mistakes ?\r\n\r\nThanks in advance 😃\r\n\r\nEDIT:\r\nDo I have to implement only the [methods](http://docs.godotengine.org/en/latest/classes/class_string.html) accessible via GDScript, or all the methods in `core/ustring.h` ?"},"comment":{"url":"https://api.github.com/repos/godotengine/godot/issues/comments/315819408","html_url":"https://github.com/godotengine/godot/pull/9633#issuecomment-315819408","issue_url":"https://api.github.com/repos/godotengine/godot/issues/9633","id":315819408,"user":{"login":"ducdetronquito","id":9960268,"avatar_url":"https://avatars3.githubusercontent.com/u/9960268?v=4","gravatar_id":"","url":"https://api.github.com/users/ducdetronquito","html_url":"https://github.com/ducdetronquito","followers_url":"https://api.github.com/users/ducdetronquito/followers","following_url":"https://api.github.com/users/ducdetronquito/following{/other_user}","gists_url":"https://api.github.com/users/ducdetronquito/gists{/gist_id}","starred_url":"https://api.github.com/users/ducdetronquito/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ducdetronquito/subscriptions","organizations_url":"https://api.github.com/users/ducdetronquito/orgs","repos_url":"https://api.github.com/users/ducdetronquito/repos","events_url":"https://api.github.com/users/ducdetronquito/events{/privacy}","received_events_url":"https://api.github.com/users/ducdetronquito/received_events","type":"User","site_admin":false},"created_at":"2017-07-17T17:14:54Z","updated_at":"2017-07-17T17:14:54Z","body":"Hey @karroffel ,\r\n\r\nI've just implemented the String helpers API following you last advice.\r\n\r\nI'm will continue tomorrow :)"}} | {
"id": 15634981,
"name": "godotengine/godot",
"url": "https://api.github.com/repos/godotengine/godot"
} | {
"id": 9960268,
"login": "ducdetronquito",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9960268?",
"url": "https://api.github.com/users/ducdetronquito"
} | {
"id": 6318500,
"login": "godotengine",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6318500?",
"url": "https://api.github.com/orgs/godotengine"
} | 2017-07-17T17:14:55 | 6271250305 | {"actor":{"display_login":"ducdetronquito"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/godotengine/godot/issues/10767","repository_url":"https://api.github.com/repos/godotengine/godot","labels_url":"https://api.github.com/repos/godotengine/godot/issues/10767/labels{/name}","comments_url":"https://api.github.com/repos/godotengine/godot/issues/10767/comments","events_url":"https://api.github.com/repos/godotengine/godot/issues/10767/events","html_url":"https://github.com/godotengine/godot/issues/10767","id":253775698,"number":10767,"title":"IK chain doesn't work any more","user":{"login":"razvanc-r","id":1177508,"avatar_url":"https://avatars3.githubusercontent.com/u/1177508?v=4","gravatar_id":"","url":"https://api.github.com/users/razvanc-r","html_url":"https://github.com/razvanc-r","followers_url":"https://api.github.com/users/razvanc-r/followers","following_url":"https://api.github.com/users/razvanc-r/following{/other_user}","gists_url":"https://api.github.com/users/razvanc-r/gists{/gist_id}","starred_url":"https://api.github.com/users/razvanc-r/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/razvanc-r/subscriptions","organizations_url":"https://api.github.com/users/razvanc-r/orgs","repos_url":"https://api.github.com/users/razvanc-r/repos","events_url":"https://api.github.com/users/razvanc-r/events{/privacy}","received_events_url":"https://api.github.com/users/razvanc-r/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":5,"created_at":"2017-08-29T19:24:48Z","updated_at":"2017-08-29T21:48:03Z","closed_at":"2017-08-29T21:02:15Z","author_association":"CONTRIBUTOR","body":"**Operating system or device, Godot version, GPU Model and driver (if graphics related):**\r\nUbuntu 17.04 - Godot v3.0.alpha.custom_build.3ae1cff\r\n\r\nIK chains seem not to function any longer. Check project\r\n\r\n[godot-dbg.zip](https://github.com/godotengine/godot/files/1261483/godot-dbg.zip)\r\n"},"comment":{"url":"https://api.github.com/repos/godotengine/godot/issues/comments/325814285","html_url":"https://github.com/godotengine/godot/issues/10767#issuecomment-325814285","issue_url":"https://api.github.com/repos/godotengine/godot/issues/10767","id":325814285,"user":{"login":"reduz","id":6265307,"avatar_url":"https://avatars2.githubusercontent.com/u/6265307?v=4","gravatar_id":"","url":"https://api.github.com/users/reduz","html_url":"https://github.com/reduz","followers_url":"https://api.github.com/users/reduz/followers","following_url":"https://api.github.com/users/reduz/following{/other_user}","gists_url":"https://api.github.com/users/reduz/gists{/gist_id}","starred_url":"https://api.github.com/users/reduz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/reduz/subscriptions","organizations_url":"https://api.github.com/users/reduz/orgs","repos_url":"https://api.github.com/users/reduz/repos","events_url":"https://api.github.com/users/reduz/events{/privacy}","received_events_url":"https://api.github.com/users/reduz/received_events","type":"User","site_admin":false},"created_at":"2017-08-29T21:48:03Z","updated_at":"2017-08-29T21:48:03Z","author_association":"OWNER","body":"No, that was for 3d. If this is not working it's a bug..\n\nOn Aug 29, 2017 6:34 PM, \"Gilles Roudiere\" <[email protected]> wrote:\n\n> Oh ok, I probably did not break anything then ^^\n>\n> —\n> You are receiving this because you were mentioned.\n> Reply to this email directly, view it on GitHub\n> <https://github.com/godotengine/godot/issues/10767#issuecomment-325811048>,\n> or mute the thread\n> <https://github.com/notifications/unsubscribe-auth/AF-Z2_NUab3UWp8K5Ro7ECNDyrg0exxaks5sdIPVgaJpZM4PGbX0>\n> .\n>\n"}} | {
"id": 15634981,
"name": "godotengine/godot",
"url": "https://api.github.com/repos/godotengine/godot"
} | {
"id": 6265307,
"login": "reduz",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6265307?",
"url": "https://api.github.com/users/reduz"
} | {
"id": 6318500,
"login": "godotengine",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6318500?",
"url": "https://api.github.com/orgs/godotengine"
} | 2017-08-29T21:48:04 | 6526956334 | {"actor":{"display_login":"reduz"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/godotengine/godot/issues/13432","repository_url":"https://api.github.com/repos/godotengine/godot","labels_url":"https://api.github.com/repos/godotengine/godot/issues/13432/labels{/name}","comments_url":"https://api.github.com/repos/godotengine/godot/issues/13432/comments","events_url":"https://api.github.com/repos/godotengine/godot/issues/13432/events","html_url":"https://github.com/godotengine/godot/issues/13432","id":278341193,"number":13432,"title":"Editor crash when duplicating node","user":{"login":"endragor","id":2417849,"avatar_url":"https://avatars2.githubusercontent.com/u/2417849?v=4","gravatar_id":"","url":"https://api.github.com/users/endragor","html_url":"https://github.com/endragor","followers_url":"https://api.github.com/users/endragor/followers","following_url":"https://api.github.com/users/endragor/following{/other_user}","gists_url":"https://api.github.com/users/endragor/gists{/gist_id}","starred_url":"https://api.github.com/users/endragor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/endragor/subscriptions","organizations_url":"https://api.github.com/users/endragor/orgs","repos_url":"https://api.github.com/users/endragor/repos","events_url":"https://api.github.com/users/endragor/events{/privacy}","received_events_url":"https://api.github.com/users/endragor/received_events","type":"User","site_admin":false},"labels":[{"id":73330064,"url":"https://api.github.com/repos/godotengine/godot/labels/bug","name":"bug","color":"ff2222","default":true},{"id":279098219,"url":"https://api.github.com/repos/godotengine/godot/labels/topic:editor","name":"topic:editor","color":"ffdd44","default":false},{"id":283518733,"url":"https://api.github.com/repos/godotengine/godot/labels/usability","name":"usability","color":"007700","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":{"url":"https://api.github.com/repos/godotengine/godot/milestones/4","html_url":"https://github.com/godotengine/godot/milestone/4","labels_url":"https://api.github.com/repos/godotengine/godot/milestones/4/labels","id":1449702,"number":4,"title":"3.0","description":"","creator":{"login":"akien-mga","id":4701338,"avatar_url":"https://avatars0.githubusercontent.com/u/4701338?v=4","gravatar_id":"","url":"https://api.github.com/users/akien-mga","html_url":"https://github.com/akien-mga","followers_url":"https://api.github.com/users/akien-mga/followers","following_url":"https://api.github.com/users/akien-mga/following{/other_user}","gists_url":"https://api.github.com/users/akien-mga/gists{/gist_id}","starred_url":"https://api.github.com/users/akien-mga/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/akien-mga/subscriptions","organizations_url":"https://api.github.com/users/akien-mga/orgs","repos_url":"https://api.github.com/users/akien-mga/repos","events_url":"https://api.github.com/users/akien-mga/events{/privacy}","received_events_url":"https://api.github.com/users/akien-mga/received_events","type":"User","site_admin":false},"open_issues":333,"closed_issues":3961,"state":"open","created_at":"2015-12-08T11:42:08Z","updated_at":"2017-12-01T10:15:26Z","due_on":null,"closed_at":null},"comments":1,"created_at":"2017-12-01T02:50:07Z","updated_at":"2017-12-01T10:52:18Z","closed_at":null,"author_association":"CONTRIBUTOR","body":"**Operating system or device, Godot version, GPU Model and driver (if graphics related):**\r\nmacOS 10.12.6, Godot 9678231b109c333a5273325c8758241310cd27f4\r\n\r\n**Issue description:**\r\n\r\nEditor may crash when duplicating node (stack trace below). This happens stably for some nodes, not sure which \"special\" properties those nodes posses though.\r\n\r\n```\r\nERROR: get_child: Index p_index=2 out of size (data.children.size()=2)\r\n At: scene/main/node.cpp:1434.\r\nhandle_crash: Program crashed with signal 11\r\nDumping the backtrace. Please include this when reporting the bug on https://github.com/godotengine/godot/issues\r\n[1] 1 libsystem_platform.dylib 0x00007fffc71b7b3a _sigtramp + 26\r\n[2] 2 ??? 0x00007fff5639dbf8 0x0 + 140734640020472\r\n[3] Node::duplicate_from_editor(Map<Node const*, Node*, Comparator<Node const*>, DefaultAllocator>&) const (in godot.osx.tools.64) (node.cpp:2223)\r\n[4] SceneTreeDock::_tool_selected(int, bool) (in godot.osx.tools.64) (scene_tree_dock.cpp:448)\r\n[5] SceneTreeDock::_unhandled_key_input(Ref<InputEvent>) (in godot.osx.tools.64) (scene_tree_dock.cpp:80)\r\n[6] MethodBind1<Ref<InputEvent> >::call(Object*, Variant const**, int, Variant::CallError&) (in godot.osx.tools.64) (method_bind.gen.inc:729)\r\n[7] Object::call_multilevel(StringName const&, Variant const**, int) (in godot.osx.tools.64) (object.cpp:747)\r\n[8] SceneTree::_call_input_pause(StringName const&, StringName const&, Ref<InputEvent> const&) (in godot.osx.tools.64) (scene_tree.cpp:878)\r\n[9] Viewport::unhandled_input(Ref<InputEvent> const&) (in godot.osx.tools.64) (viewport.cpp:2423)\r\n[10] Viewport::_vp_unhandled_input(Ref<InputEvent> const&) (in godot.osx.tools.64) (viewport.cpp:1331)\r\n[11] MethodBind1<Ref<InputEvent> const&>::call(Object*, Variant const**, int, Variant::CallError&) (in godot.osx.tools.64) (method_bind.gen.inc:729)\r\n[12] Object::call(StringName const&, Variant const**, int, Variant::CallError&) (in godot.osx.tools.64) (object.cpp:913)\r\n[13] Object::call(StringName const&, Variant const&, Variant const&, Variant const&, Variant const&, Variant const&) (in godot.osx.tools.64) (object.cpp:838)\r\n[14] SceneTree::call_group_flags(unsigned int, StringName const&, StringName const&, Variant const&, Variant const&, Variant const&, Variant const&, Variant const&) (in godot.osx.tools.64) (scene_tree.cpp:246)\r\n[15] SceneTree::input_event(Ref<InputEvent> const&) (in godot.osx.tools.64) (scene_tree.cpp:420)\r\n[16] InputDefault::parse_input_event(Ref<InputEvent> const&) (in godot.osx.tools.64) (input_default.cpp:345)\r\n[17] OS_OSX::push_input(Ref<InputEvent> const&) (in godot.osx.tools.64) (os_osx.mm:1969)\r\n[18] -[GodotContentView keyDown:] (in godot.osx.tools.64) (os_osx.mm:775)\r\n[19] 19 AppKit 0x00007fffafc102cc -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 4086\r\n[20] 20 AppKit 0x00007fffafc0ef0a -[NSWindow(NSEventRouting) sendEvent:] + 541\r\n[21] 21 AppKit 0x00007fffafa944a8 -[NSApplication(NSEvent) sendEvent:] + 4768\r\n[22] -[GodotApplication sendEvent:] (in godot.osx.tools.64) (os_osx.mm:110)\r\n[23] OS_OSX::process_events() (in godot.osx.tools.64) (os_osx.mm:1949)\r\n[24] OS_OSX::run() (in godot.osx.tools.64) (os_osx.mm:1994)\r\n[25] main (in godot.osx.tools.64) (godot_main_osx.mm:90)\r\n[26] 26 libdyld.dylib 0x00007fffc6fa8235 start + 1\r\n-- END OF BACKTRACE --\r\n```\r\n"},"comment":{"url":"https://api.github.com/repos/godotengine/godot/issues/comments/348464680","html_url":"https://github.com/godotengine/godot/issues/13432#issuecomment-348464680","issue_url":"https://api.github.com/repos/godotengine/godot/issues/13432","id":348464680,"user":{"login":"endragor","id":2417849,"avatar_url":"https://avatars2.githubusercontent.com/u/2417849?v=4","gravatar_id":"","url":"https://api.github.com/users/endragor","html_url":"https://github.com/endragor","followers_url":"https://api.github.com/users/endragor/followers","following_url":"https://api.github.com/users/endragor/following{/other_user}","gists_url":"https://api.github.com/users/endragor/gists{/gist_id}","starred_url":"https://api.github.com/users/endragor/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/endragor/subscriptions","organizations_url":"https://api.github.com/users/endragor/orgs","repos_url":"https://api.github.com/users/endragor/repos","events_url":"https://api.github.com/users/endragor/events{/privacy}","received_events_url":"https://api.github.com/users/endragor/received_events","type":"User","site_admin":false},"created_at":"2017-12-01T10:52:18Z","updated_at":"2017-12-01T10:52:18Z","author_association":"CONTRIBUTOR","body":"Also happens when duplicating nodes via scripting API (since the issue is in `duplicate` method). @kosz78 is preparing a fix."}} | {
"id": 15634981,
"name": "godotengine/godot",
"url": "https://api.github.com/repos/godotengine/godot"
} | {
"id": 2417849,
"login": "endragor",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2417849?",
"url": "https://api.github.com/users/endragor"
} | {
"id": 6318500,
"login": "godotengine",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6318500?",
"url": "https://api.github.com/orgs/godotengine"
} | 2017-12-01T10:52:19 | 6929617382 | {"actor":{"display_login":"endragor"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey/issues/488","repository_url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey","labels_url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey/issues/488/labels{/name}","comments_url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey/issues/488/comments","events_url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey/issues/488/events","html_url":"https://github.com/goodjoblife/WorkTimeSurvey/issues/488","id":225442225,"number":488,"title":"填寫薪水時的輔助字","user":{"login":"barry800414","id":3805975,"avatar_url":"https://avatars2.githubusercontent.com/u/3805975?v=3","gravatar_id":"","url":"https://api.github.com/users/barry800414","html_url":"https://github.com/barry800414","followers_url":"https://api.github.com/users/barry800414/followers","following_url":"https://api.github.com/users/barry800414/following{/other_user}","gists_url":"https://api.github.com/users/barry800414/gists{/gist_id}","starred_url":"https://api.github.com/users/barry800414/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/barry800414/subscriptions","organizations_url":"https://api.github.com/users/barry800414/orgs","repos_url":"https://api.github.com/users/barry800414/repos","events_url":"https://api.github.com/users/barry800414/events{/privacy}","received_events_url":"https://api.github.com/users/barry800414/received_events","type":"User","site_admin":false},"labels":[{"id":402289162,"url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey/labels/discussing","name":"discussing","color":"fbca04","default":false},{"id":398544105,"url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey/labels/enhancement","name":"enhancement","color":"84b6eb","default":true}],"state":"open","locked":false,"assignee":{"login":"mark86092","id":1908007,"avatar_url":"https://avatars3.githubusercontent.com/u/1908007?v=3","gravatar_id":"","url":"https://api.github.com/users/mark86092","html_url":"https://github.com/mark86092","followers_url":"https://api.github.com/users/mark86092/followers","following_url":"https://api.github.com/users/mark86092/following{/other_user}","gists_url":"https://api.github.com/users/mark86092/gists{/gist_id}","starred_url":"https://api.github.com/users/mark86092/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mark86092/subscriptions","organizations_url":"https://api.github.com/users/mark86092/orgs","repos_url":"https://api.github.com/users/mark86092/repos","events_url":"https://api.github.com/users/mark86092/events{/privacy}","received_events_url":"https://api.github.com/users/mark86092/received_events","type":"User","site_admin":false},"assignees":[{"login":"mark86092","id":1908007,"avatar_url":"https://avatars3.githubusercontent.com/u/1908007?v=3","gravatar_id":"","url":"https://api.github.com/users/mark86092","html_url":"https://github.com/mark86092","followers_url":"https://api.github.com/users/mark86092/followers","following_url":"https://api.github.com/users/mark86092/following{/other_user}","gists_url":"https://api.github.com/users/mark86092/gists{/gist_id}","starred_url":"https://api.github.com/users/mark86092/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mark86092/subscriptions","organizations_url":"https://api.github.com/users/mark86092/orgs","repos_url":"https://api.github.com/users/mark86092/repos","events_url":"https://api.github.com/users/mark86092/events{/privacy}","received_events_url":"https://api.github.com/users/mark86092/received_events","type":"User","site_admin":false},{"login":"wutingy","id":8353239,"avatar_url":"https://avatars0.githubusercontent.com/u/8353239?v=3","gravatar_id":"","url":"https://api.github.com/users/wutingy","html_url":"https://github.com/wutingy","followers_url":"https://api.github.com/users/wutingy/followers","following_url":"https://api.github.com/users/wutingy/following{/other_user}","gists_url":"https://api.github.com/users/wutingy/gists{/gist_id}","starred_url":"https://api.github.com/users/wutingy/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wutingy/subscriptions","organizations_url":"https://api.github.com/users/wutingy/orgs","repos_url":"https://api.github.com/users/wutingy/repos","events_url":"https://api.github.com/users/wutingy/events{/privacy}","received_events_url":"https://api.github.com/users/wutingy/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2017-05-01T14:19:02Z","updated_at":"2017-05-07T07:21:59Z","closed_at":null,"body":"目前想的是放在這個區塊,不過還是由 @wutingy 決定!\r\n\r\n\r\n輔助字有兩個部分:\r\n1. 輸入薪水時,自動顯示國字的提醒,提醒的單位包含:千、萬、千萬的千。\r\n例如:\r\n`時薪`+ `2015` -> `時薪 2千15元`\r\n`月薪`+ `22000` -> `月薪 2萬2千元`\r\n`年薪`+ `1150000` -> `115萬元`\r\n`年薪`+ `11110000` -> `1千111萬元`\r\n\r\n基本想法是阿拉伯數字的部分不要超過三位,然後因為台灣人習慣用萬,所以還是顯示萬會比較好理解。\r\n\r\n2.\r\n當使用者選擇 `時薪`,且薪資大於等於 2,000的時候,輔助字變為紅色,並且後綴 “,確定嗎?”\r\n當使用者選擇 `日薪`,且薪資大於等於 20,000的時候,輔助字變為紅色,並且後綴 “,確定嗎?”\r\n當使用者選擇 `月薪`,且薪資大於等於 200,000的時候,輔助字變為紅色,並且後綴 “,確定嗎?”\r\n當使用者選擇 `年薪`,且薪資大於等於 2,000,000的時候,輔助字變為紅色,並且後綴 “,確定嗎?”\r\n\r\ne.g. `時薪`+ `2015` -> `時薪 2千15元,確定嗎?` (紅色字)\r\n\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey/issues/comments/299687642","html_url":"https://github.com/goodjoblife/WorkTimeSurvey/issues/488#issuecomment-299687642","issue_url":"https://api.github.com/repos/goodjoblife/WorkTimeSurvey/issues/488","id":299687642,"user":{"login":"barry800414","id":3805975,"avatar_url":"https://avatars2.githubusercontent.com/u/3805975?v=3","gravatar_id":"","url":"https://api.github.com/users/barry800414","html_url":"https://github.com/barry800414","followers_url":"https://api.github.com/users/barry800414/followers","following_url":"https://api.github.com/users/barry800414/following{/other_user}","gists_url":"https://api.github.com/users/barry800414/gists{/gist_id}","starred_url":"https://api.github.com/users/barry800414/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/barry800414/subscriptions","organizations_url":"https://api.github.com/users/barry800414/orgs","repos_url":"https://api.github.com/users/barry800414/repos","events_url":"https://api.github.com/users/barry800414/events{/privacy}","received_events_url":"https://api.github.com/users/barry800414/received_events","type":"User","site_admin":false},"created_at":"2017-05-07T07:21:59Z","updated_at":"2017-05-07T07:21:59Z","body":"目前這是我的提案, @mark86092 @wutingy 麻煩你們看看,有沒有什麼問題或要修改的部分。這個部分我可以寫。"}} | {
"id": 61972170,
"name": "goodjoblife/WorkTimeSurvey",
"url": "https://api.github.com/repos/goodjoblife/WorkTimeSurvey"
} | {
"id": 3805975,
"login": "barry800414",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3805975?",
"url": "https://api.github.com/users/barry800414"
} | {
"id": 20009568,
"login": "goodjoblife",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/20009568?",
"url": "https://api.github.com/orgs/goodjoblife"
} | 2017-05-07T07:21:59 | 5823901682 | {"actor":{"display_login":"barry800414"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/28677","repository_url":"https://api.github.com/repos/google-test/signcla-probe-repo","labels_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/28677/labels{/name}","comments_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/28677/comments","events_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/28677/events","html_url":"https://github.com/google-test/signcla-probe-repo/pull/28677","id":272363740,"number":28677,"title":"New PR to test SignCLA at 2017-11-08 13:55:27.838440206 -0800 PST m=+65.510904359","user":{"login":"signcla-test-signed-indiv","id":30536864,"avatar_url":"https://avatars0.githubusercontent.com/u/30536864?v=4","gravatar_id":"","url":"https://api.github.com/users/signcla-test-signed-indiv","html_url":"https://github.com/signcla-test-signed-indiv","followers_url":"https://api.github.com/users/signcla-test-signed-indiv/followers","following_url":"https://api.github.com/users/signcla-test-signed-indiv/following{/other_user}","gists_url":"https://api.github.com/users/signcla-test-signed-indiv/gists{/gist_id}","starred_url":"https://api.github.com/users/signcla-test-signed-indiv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/signcla-test-signed-indiv/subscriptions","organizations_url":"https://api.github.com/users/signcla-test-signed-indiv/orgs","repos_url":"https://api.github.com/users/signcla-test-signed-indiv/repos","events_url":"https://api.github.com/users/signcla-test-signed-indiv/events{/privacy}","received_events_url":"https://api.github.com/users/signcla-test-signed-indiv/received_events","type":"User","site_admin":false},"labels":[{"id":671832460,"url":"https://api.github.com/repos/google-test/signcla-probe-repo/labels/cla:%20yes","name":"cla: yes","color":"0e8a16","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-11-08T21:55:28Z","updated_at":"2017-11-08T21:55:31Z","closed_at":null,"author_association":"COLLABORATOR","pull_request":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/pulls/28677","html_url":"https://github.com/google-test/signcla-probe-repo/pull/28677","diff_url":"https://github.com/google-test/signcla-probe-repo/pull/28677.diff","patch_url":"https://github.com/google-test/signcla-probe-repo/pull/28677.patch"},"body":"Body of PR"},"comment":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/comments/342973551","html_url":"https://github.com/google-test/signcla-probe-repo/pull/28677#issuecomment-342973551","issue_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/28677","id":342973551,"user":{"login":"signcla-test-signed-indiv","id":30536864,"avatar_url":"https://avatars0.githubusercontent.com/u/30536864?v=4","gravatar_id":"","url":"https://api.github.com/users/signcla-test-signed-indiv","html_url":"https://github.com/signcla-test-signed-indiv","followers_url":"https://api.github.com/users/signcla-test-signed-indiv/followers","following_url":"https://api.github.com/users/signcla-test-signed-indiv/following{/other_user}","gists_url":"https://api.github.com/users/signcla-test-signed-indiv/gists{/gist_id}","starred_url":"https://api.github.com/users/signcla-test-signed-indiv/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/signcla-test-signed-indiv/subscriptions","organizations_url":"https://api.github.com/users/signcla-test-signed-indiv/orgs","repos_url":"https://api.github.com/users/signcla-test-signed-indiv/repos","events_url":"https://api.github.com/users/signcla-test-signed-indiv/events{/privacy}","received_events_url":"https://api.github.com/users/signcla-test-signed-indiv/received_events","type":"User","site_admin":false},"created_at":"2017-11-08T21:55:31Z","updated_at":"2017-11-08T21:55:31Z","author_association":"COLLABORATOR","body":"indiv-pass: test succeeded"}} | {
"id": 98467418,
"name": "google-test/signcla-probe-repo",
"url": "https://api.github.com/repos/google-test/signcla-probe-repo"
} | {
"id": 30536864,
"login": "signcla-test-signed-indiv",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/30536864?",
"url": "https://api.github.com/users/signcla-test-signed-indiv"
} | {
"id": 9579481,
"login": "google-test",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9579481?",
"url": "https://api.github.com/orgs/google-test"
} | 2017-11-08T21:55:31 | 6828863201 | {"actor":{"display_login":"signcla-test-signed-indiv"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/5396","repository_url":"https://api.github.com/repos/google-test/signcla-probe-repo","labels_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/5396/labels{/name}","comments_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/5396/comments","events_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/5396/events","html_url":"https://github.com/google-test/signcla-probe-repo/pull/5396","id":251387651,"number":5396,"title":"New PR to test SignCLA at 2017-08-18 17:33:51.542101795 -0700 PDT m=+2.552640780","user":{"login":"signcla-test-unsigned","id":30538765,"avatar_url":"https://avatars3.githubusercontent.com/u/30538765?v=4","gravatar_id":"","url":"https://api.github.com/users/signcla-test-unsigned","html_url":"https://github.com/signcla-test-unsigned","followers_url":"https://api.github.com/users/signcla-test-unsigned/followers","following_url":"https://api.github.com/users/signcla-test-unsigned/following{/other_user}","gists_url":"https://api.github.com/users/signcla-test-unsigned/gists{/gist_id}","starred_url":"https://api.github.com/users/signcla-test-unsigned/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/signcla-test-unsigned/subscriptions","organizations_url":"https://api.github.com/users/signcla-test-unsigned/orgs","repos_url":"https://api.github.com/users/signcla-test-unsigned/repos","events_url":"https://api.github.com/users/signcla-test-unsigned/events{/privacy}","received_events_url":"https://api.github.com/users/signcla-test-unsigned/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-08-19T00:33:51Z","updated_at":"2017-08-19T00:33:53Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/pulls/5396","html_url":"https://github.com/google-test/signcla-probe-repo/pull/5396","diff_url":"https://github.com/google-test/signcla-probe-repo/pull/5396.diff","patch_url":"https://github.com/google-test/signcla-probe-repo/pull/5396.patch"},"body":"Body of PR"},"comment":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/comments/323488165","html_url":"https://github.com/google-test/signcla-probe-repo/pull/5396#issuecomment-323488165","issue_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/5396","id":323488165,"user":{"login":"googlebot","id":5384588,"avatar_url":"https://avatars3.githubusercontent.com/u/5384588?v=4","gravatar_id":"","url":"https://api.github.com/users/googlebot","html_url":"https://github.com/googlebot","followers_url":"https://api.github.com/users/googlebot/followers","following_url":"https://api.github.com/users/googlebot/following{/other_user}","gists_url":"https://api.github.com/users/googlebot/gists{/gist_id}","starred_url":"https://api.github.com/users/googlebot/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/googlebot/subscriptions","organizations_url":"https://api.github.com/users/googlebot/orgs","repos_url":"https://api.github.com/users/googlebot/repos","events_url":"https://api.github.com/users/googlebot/events{/privacy}","received_events_url":"https://api.github.com/users/googlebot/received_events","type":"User","site_admin":false},"created_at":"2017-08-19T00:33:53Z","updated_at":"2017-08-19T00:33:53Z","body":"Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).\n\n:memo: **Please visit <https://cla.developers.google.com/> to sign.**\n\nOnce you've signed, please reply here (e.g. `I signed it!`) and we'll verify. Thanks.\n\n---\n\n- If you've already signed a CLA, it's possible we don't have your GitHub username or you're using a different email address. Check [your existing CLA data](https://cla.developers.google.com/clas) and verify that your [email is set on your git commits](https://help.github.com/articles/setting-your-email-in-git/).\n- If your company signed a CLA, they designated a Point of Contact who decides which employees are authorized to participate. You may need to contact the Point of Contact for your company and ask to be added to the group of authorized contributors. If you don't know who your Point of Contact is, direct the project maintainer to go/cla#troubleshoot.\n- In order to pass this check, please resolve this problem and have the pull request author add another comment and the bot will run again.\n\n<!-- need_sender_cla -->"}} | {
"id": 98467418,
"name": "google-test/signcla-probe-repo",
"url": "https://api.github.com/repos/google-test/signcla-probe-repo"
} | {
"id": 5384588,
"login": "googlebot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5384588?",
"url": "https://api.github.com/users/googlebot"
} | {
"id": 9579481,
"login": "google-test",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9579481?",
"url": "https://api.github.com/orgs/google-test"
} | 2017-08-19T00:33:53 | 6484485738 | {"actor":{"display_login":"googlebot"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/15936","repository_url":"https://api.github.com/repos/google-test/signcla-probe-repo","labels_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/15936/labels{/name}","comments_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/15936/comments","events_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/15936/events","html_url":"https://github.com/google-test/signcla-probe-repo/pull/15936","id":260109058,"number":15936,"title":"New PR to test SignCLA at 2017-09-24 12:27:09.177672892 -0700 PDT m=+3.189220452","user":{"login":"signcla-test-unsigned","id":30538765,"avatar_url":"https://avatars3.githubusercontent.com/u/30538765?v=4","gravatar_id":"","url":"https://api.github.com/users/signcla-test-unsigned","html_url":"https://github.com/signcla-test-unsigned","followers_url":"https://api.github.com/users/signcla-test-unsigned/followers","following_url":"https://api.github.com/users/signcla-test-unsigned/following{/other_user}","gists_url":"https://api.github.com/users/signcla-test-unsigned/gists{/gist_id}","starred_url":"https://api.github.com/users/signcla-test-unsigned/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/signcla-test-unsigned/subscriptions","organizations_url":"https://api.github.com/users/signcla-test-unsigned/orgs","repos_url":"https://api.github.com/users/signcla-test-unsigned/repos","events_url":"https://api.github.com/users/signcla-test-unsigned/events{/privacy}","received_events_url":"https://api.github.com/users/signcla-test-unsigned/received_events","type":"User","site_admin":false},"labels":[{"id":671833561,"url":"https://api.github.com/repos/google-test/signcla-probe-repo/labels/cla:%20no","name":"cla: no","color":"0e8a16","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-09-24T19:27:09Z","updated_at":"2017-09-24T19:27:12Z","closed_at":null,"author_association":"COLLABORATOR","pull_request":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/pulls/15936","html_url":"https://github.com/google-test/signcla-probe-repo/pull/15936","diff_url":"https://github.com/google-test/signcla-probe-repo/pull/15936.diff","patch_url":"https://github.com/google-test/signcla-probe-repo/pull/15936.patch"},"body":"Body of PR"},"comment":{"url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/comments/331733203","html_url":"https://github.com/google-test/signcla-probe-repo/pull/15936#issuecomment-331733203","issue_url":"https://api.github.com/repos/google-test/signcla-probe-repo/issues/15936","id":331733203,"user":{"login":"signcla-test-unsigned","id":30538765,"avatar_url":"https://avatars3.githubusercontent.com/u/30538765?v=4","gravatar_id":"","url":"https://api.github.com/users/signcla-test-unsigned","html_url":"https://github.com/signcla-test-unsigned","followers_url":"https://api.github.com/users/signcla-test-unsigned/followers","following_url":"https://api.github.com/users/signcla-test-unsigned/following{/other_user}","gists_url":"https://api.github.com/users/signcla-test-unsigned/gists{/gist_id}","starred_url":"https://api.github.com/users/signcla-test-unsigned/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/signcla-test-unsigned/subscriptions","organizations_url":"https://api.github.com/users/signcla-test-unsigned/orgs","repos_url":"https://api.github.com/users/signcla-test-unsigned/repos","events_url":"https://api.github.com/users/signcla-test-unsigned/events{/privacy}","received_events_url":"https://api.github.com/users/signcla-test-unsigned/received_events","type":"User","site_admin":false},"created_at":"2017-09-24T19:27:12Z","updated_at":"2017-09-24T19:27:12Z","author_association":"COLLABORATOR","body":"unsigned-fail: test succeeded"}} | {
"id": 98467418,
"name": "google-test/signcla-probe-repo",
"url": "https://api.github.com/repos/google-test/signcla-probe-repo"
} | {
"id": 30538765,
"login": "signcla-test-unsigned",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/30538765?",
"url": "https://api.github.com/users/signcla-test-unsigned"
} | {
"id": 9579481,
"login": "google-test",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9579481?",
"url": "https://api.github.com/orgs/google-test"
} | 2017-09-24T19:27:12 | 6630186617 | {"actor":{"display_login":"signcla-test-unsigned"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/googlefonts/fontbakery/issues/1402","repository_url":"https://api.github.com/repos/googlefonts/fontbakery","labels_url":"https://api.github.com/repos/googlefonts/fontbakery/issues/1402/labels{/name}","comments_url":"https://api.github.com/repos/googlefonts/fontbakery/issues/1402/comments","events_url":"https://api.github.com/repos/googlefonts/fontbakery/issues/1402/events","html_url":"https://github.com/googlefonts/fontbakery/pull/1402","id":238916004,"number":1402,"title":"[reporters/terminal] Report value of iterargs. Fixes #1399","user":{"login":"graphicore","id":393132,"avatar_url":"https://avatars1.githubusercontent.com/u/393132?v=3","gravatar_id":"","url":"https://api.github.com/users/graphicore","html_url":"https://github.com/graphicore","followers_url":"https://api.github.com/users/graphicore/followers","following_url":"https://api.github.com/users/graphicore/following{/other_user}","gists_url":"https://api.github.com/users/graphicore/gists{/gist_id}","starred_url":"https://api.github.com/users/graphicore/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/graphicore/subscriptions","organizations_url":"https://api.github.com/users/graphicore/orgs","repos_url":"https://api.github.com/users/graphicore/repos","events_url":"https://api.github.com/users/graphicore/events{/privacy}","received_events_url":"https://api.github.com/users/graphicore/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-06-27T16:51:21Z","updated_at":"2017-06-27T17:41:00Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/googlefonts/fontbakery/pulls/1402","html_url":"https://github.com/googlefonts/fontbakery/pull/1402","diff_url":"https://github.com/googlefonts/fontbakery/pull/1402.diff","patch_url":"https://github.com/googlefonts/fontbakery/pull/1402.patch"},"body":"This pull request addresses the problems described at issue #1399\r\n"},"comment":{"url":"https://api.github.com/repos/googlefonts/fontbakery/issues/comments/311431988","html_url":"https://github.com/googlefonts/fontbakery/pull/1402#issuecomment-311431988","issue_url":"https://api.github.com/repos/googlefonts/fontbakery/issues/1402","id":311431988,"user":{"login":"felipesanches","id":213676,"avatar_url":"https://avatars3.githubusercontent.com/u/213676?v=3","gravatar_id":"","url":"https://api.github.com/users/felipesanches","html_url":"https://github.com/felipesanches","followers_url":"https://api.github.com/users/felipesanches/followers","following_url":"https://api.github.com/users/felipesanches/following{/other_user}","gists_url":"https://api.github.com/users/felipesanches/gists{/gist_id}","starred_url":"https://api.github.com/users/felipesanches/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/felipesanches/subscriptions","organizations_url":"https://api.github.com/users/felipesanches/orgs","repos_url":"https://api.github.com/users/felipesanches/repos","events_url":"https://api.github.com/users/felipesanches/events{/privacy}","received_events_url":"https://api.github.com/users/felipesanches/received_events","type":"User","site_admin":false},"created_at":"2017-06-27T17:41:00Z","updated_at":"2017-06-27T17:41:00Z","body":"Thanks, Lasse!"}} | {
"id": 8233105,
"name": "googlefonts/fontbakery",
"url": "https://api.github.com/repos/googlefonts/fontbakery"
} | {
"id": 213676,
"login": "felipesanches",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/213676?",
"url": "https://api.github.com/users/felipesanches"
} | {
"id": 6466306,
"login": "googlefonts",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6466306?",
"url": "https://api.github.com/orgs/googlefonts"
} | 2017-06-27T17:41:00 | 6148369124 | {"actor":{"display_login":"felipesanches"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/gopherconsg/website/issues/17","repository_url":"https://api.github.com/repos/gopherconsg/website","labels_url":"https://api.github.com/repos/gopherconsg/website/issues/17/labels{/name}","comments_url":"https://api.github.com/repos/gopherconsg/website/issues/17/comments","events_url":"https://api.github.com/repos/gopherconsg/website/issues/17/events","html_url":"https://github.com/gopherconsg/website/pull/17","id":205042424,"number":17,"title":"Do not highlight 'Tickets' when page is scrolled down","user":{"login":"fonglh","id":1902527,"avatar_url":"https://avatars.githubusercontent.com/u/1902527?v=3","gravatar_id":"","url":"https://api.github.com/users/fonglh","html_url":"https://github.com/fonglh","followers_url":"https://api.github.com/users/fonglh/followers","following_url":"https://api.github.com/users/fonglh/following{/other_user}","gists_url":"https://api.github.com/users/fonglh/gists{/gist_id}","starred_url":"https://api.github.com/users/fonglh/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/fonglh/subscriptions","organizations_url":"https://api.github.com/users/fonglh/orgs","repos_url":"https://api.github.com/users/fonglh/repos","events_url":"https://api.github.com/users/fonglh/events{/privacy}","received_events_url":"https://api.github.com/users/fonglh/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-02-03T00:50:23Z","updated_at":"2017-02-04T07:55:39Z","closed_at":"2017-02-04T07:55:38Z","pull_request":{"url":"https://api.github.com/repos/gopherconsg/website/pulls/17","html_url":"https://github.com/gopherconsg/website/pull/17","diff_url":"https://github.com/gopherconsg/website/pull/17.diff","patch_url":"https://github.com/gopherconsg/website/pull/17.patch"},"body":"This supersedes #16.\r\n\r\nAs the website is now multipage, there is no need to specifically highlight 'Tickets' when the page is scrolled all the way to the bottom.\r\n\r\n"},"comment":{"url":"https://api.github.com/repos/gopherconsg/website/issues/comments/277427077","html_url":"https://github.com/gopherconsg/website/pull/17#issuecomment-277427077","issue_url":"https://api.github.com/repos/gopherconsg/website/issues/17","id":277427077,"user":{"login":"audreylim","id":4488777,"avatar_url":"https://avatars.githubusercontent.com/u/4488777?v=3","gravatar_id":"","url":"https://api.github.com/users/audreylim","html_url":"https://github.com/audreylim","followers_url":"https://api.github.com/users/audreylim/followers","following_url":"https://api.github.com/users/audreylim/following{/other_user}","gists_url":"https://api.github.com/users/audreylim/gists{/gist_id}","starred_url":"https://api.github.com/users/audreylim/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/audreylim/subscriptions","organizations_url":"https://api.github.com/users/audreylim/orgs","repos_url":"https://api.github.com/users/audreylim/repos","events_url":"https://api.github.com/users/audreylim/events{/privacy}","received_events_url":"https://api.github.com/users/audreylim/received_events","type":"User","site_admin":false},"created_at":"2017-02-04T07:55:39Z","updated_at":"2017-02-04T07:55:39Z","body":"Thanks!"}} | {
"id": 74291807,
"name": "gopherconsg/website",
"url": "https://api.github.com/repos/gopherconsg/website"
} | {
"id": 4488777,
"login": "audreylim",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4488777?",
"url": "https://api.github.com/users/audreylim"
} | {
"id": 23528801,
"login": "gopherconsg",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/23528801?",
"url": "https://api.github.com/orgs/gopherconsg"
} | 2017-02-04T07:55:40 | 5266052139 | {"actor":{"display_login":"audreylim"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/gothinkster/realworld/issues/66","repository_url":"https://api.github.com/repos/gothinkster/realworld","labels_url":"https://api.github.com/repos/gothinkster/realworld/issues/66/labels{/name}","comments_url":"https://api.github.com/repos/gothinkster/realworld/issues/66/comments","events_url":"https://api.github.com/repos/gothinkster/realworld/issues/66/events","html_url":"https://github.com/gothinkster/realworld/issues/66","id":224890718,"number":66,"title":"🗄🔧 Symfony","user":{"login":"dakenf","id":7466130,"avatar_url":"https://avatars1.githubusercontent.com/u/7466130?v=4","gravatar_id":"","url":"https://api.github.com/users/dakenf","html_url":"https://github.com/dakenf","followers_url":"https://api.github.com/users/dakenf/followers","following_url":"https://api.github.com/users/dakenf/following{/other_user}","gists_url":"https://api.github.com/users/dakenf/gists{/gist_id}","starred_url":"https://api.github.com/users/dakenf/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dakenf/subscriptions","organizations_url":"https://api.github.com/users/dakenf/orgs","repos_url":"https://api.github.com/users/dakenf/repos","events_url":"https://api.github.com/users/dakenf/events{/privacy}","received_events_url":"https://api.github.com/users/dakenf/received_events","type":"User","site_admin":false},"labels":[{"id":591084137,"url":"https://api.github.com/repos/gothinkster/realworld/labels/backend","name":"backend","color":"c5def5","default":false},{"id":587558257,"url":"https://api.github.com/repos/gothinkster/realworld/labels/seeking%20engineers","name":"seeking engineers","color":"0e8a16","default":false},{"id":405671713,"url":"https://api.github.com/repos/gothinkster/realworld/labels/wip","name":"wip","color":"fbca04","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":6,"created_at":"2017-04-27T19:36:42Z","updated_at":"2017-08-28T17:59:32Z","closed_at":null,"body":"# Current Status\r\n\r\n- ### Codebase in progress:<br /> [dakenf/realword-symfony](https://github.com/dakenf/realword-symfony)\r\n- ### Interested in helping out? Say hello! 🎉 <br />**[gitter.im/realworld-dev/symfony](https://gitter.im/realworld-dev/symfony)**\r\n\r\n### Todo:\r\n\r\n- [x] 🏁 Fork the [starter repo](https://github.com/gothinkster/realworld-starter-kit) & post the link in this issue\r\n- [x] 🎨 Create logo for repo & update issue status (@ericsimons) \r\n- [ ] 🔨 Implement all of Conduit's functionality per the [spec & API](https://github.com/gothinkster/realworld/tree/master/spec)\r\n- [ ] 👀 Move repo to main org & Peer review final codebase by admins/community (RFC)\r\n- [ ] 🎉 Tag v1 release and officially list it on the README!\r\n\r\n-----\r\n\r\nHi! I'd like to implement the backend with Symfony 3 framework. I've created a repo here https://github.com/dakenf/realword-symfony"},"comment":{"url":"https://api.github.com/repos/gothinkster/realworld/issues/comments/325428559","html_url":"https://github.com/gothinkster/realworld/issues/66#issuecomment-325428559","issue_url":"https://api.github.com/repos/gothinkster/realworld/issues/66","id":325428559,"user":{"login":"EricSimons","id":556934,"avatar_url":"https://avatars2.githubusercontent.com/u/556934?v=4","gravatar_id":"","url":"https://api.github.com/users/EricSimons","html_url":"https://github.com/EricSimons","followers_url":"https://api.github.com/users/EricSimons/followers","following_url":"https://api.github.com/users/EricSimons/following{/other_user}","gists_url":"https://api.github.com/users/EricSimons/gists{/gist_id}","starred_url":"https://api.github.com/users/EricSimons/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/EricSimons/subscriptions","organizations_url":"https://api.github.com/users/EricSimons/orgs","repos_url":"https://api.github.com/users/EricSimons/repos","events_url":"https://api.github.com/users/EricSimons/events{/privacy}","received_events_url":"https://api.github.com/users/EricSimons/received_events","type":"User","site_admin":false},"created_at":"2017-08-28T17:59:32Z","updated_at":"2017-08-28T17:59:32Z","body":"@matigda sorry about my delay here! Would you want to take over this project? I think the other folks ended up not having enough time :("}} | {
"id": 52631841,
"name": "gothinkster/realworld",
"url": "https://api.github.com/repos/gothinkster/realworld"
} | {
"id": 556934,
"login": "EricSimons",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/556934?",
"url": "https://api.github.com/users/EricSimons"
} | {
"id": 8601733,
"login": "gothinkster",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8601733?",
"url": "https://api.github.com/orgs/gothinkster"
} | 2017-08-28T17:59:33 | 6520800208 | {"actor":{"display_login":"EricSimons"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/grimoirelab/perceval/issues/199","repository_url":"https://api.github.com/repos/grimoirelab/perceval","labels_url":"https://api.github.com/repos/grimoirelab/perceval/issues/199/labels{/name}","comments_url":"https://api.github.com/repos/grimoirelab/perceval/issues/199/comments","events_url":"https://api.github.com/repos/grimoirelab/perceval/issues/199/events","html_url":"https://github.com/grimoirelab/perceval/pull/199","id":271818090,"number":199,"title":"[meetup] Fix too many requests error","user":{"login":"valeriocos","id":6515067,"avatar_url":"https://avatars2.githubusercontent.com/u/6515067?v=4","gravatar_id":"","url":"https://api.github.com/users/valeriocos","html_url":"https://github.com/valeriocos","followers_url":"https://api.github.com/users/valeriocos/followers","following_url":"https://api.github.com/users/valeriocos/following{/other_user}","gists_url":"https://api.github.com/users/valeriocos/gists{/gist_id}","starred_url":"https://api.github.com/users/valeriocos/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/valeriocos/subscriptions","organizations_url":"https://api.github.com/users/valeriocos/orgs","repos_url":"https://api.github.com/users/valeriocos/repos","events_url":"https://api.github.com/users/valeriocos/events{/privacy}","received_events_url":"https://api.github.com/users/valeriocos/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":3,"created_at":"2017-11-07T12:42:49Z","updated_at":"2017-11-08T17:49:55Z","closed_at":null,"author_association":"CONTRIBUTOR","pull_request":{"url":"https://api.github.com/repos/grimoirelab/perceval/pulls/199","html_url":"https://github.com/grimoirelab/perceval/pull/199","diff_url":"https://github.com/grimoirelab/perceval/pull/199.diff","patch_url":"https://github.com/grimoirelab/perceval/pull/199.patch"},"body":"This PR fixes #183 \r\n\r\nThe error appears when fetching data from multiple meetup backends with the same token.\r\nThe patch introduces a new parameter **throttle_time** which allows the backend to sleep for some time\r\nin case the API returned a _too many requests exception_. This process is executed at most 5 times before returning an error.\r\n\r\nBy default **throttle_time** is set to 30. \r\n\r\nFind below some code to replicate the issue (the code should be copied in the [test_meetup.py](https://github.com/grimoirelab/perceval/blob/master/tests/test_meetup.py))\r\n\r\n```python\r\n\r\nimport multiprocessing\r\n\r\ndef test_fetch_live_parallel(self):\r\n\r\n MEETUPS = [\"Babel-Fish-meetup\",\r\n \"Belgium-Rust-user-group\",\r\n \"Blockchain-Meetup-Freiburg\",\r\n \"Boston-Embedded-Systems-Meetup\",\r\n \"BostonRust\",\r\n \"C-C-Bangalore-Meetup\",\r\n \"Cambridge-Rust-Meetup\"]\r\n\r\n processes = 3\r\n token = 'xxx-xxx-xxx'\r\n queue_meetups = multiprocessing.JoinableQueue()\r\n results = multiprocessing.Queue()\r\n\r\n consumers = [Consumer(queue_meetups, results) for i in range(processes)]\r\n for w in consumers:\r\n w.start()\r\n\r\n for meetup in MEETUPS:\r\n t = TaskUnit(meetup, token)\r\n queue_meetups.put(t)\r\n\r\n #add poison pills\r\n for i in range(processes):\r\n queue_meetups.put(None)\r\n\r\n #wait\r\n queue_meetups.join()\r\n\r\nclass TaskUnit(object):\r\n\r\n def __init__(self, name, token):\r\n self.meetup = Meetup(name, token, sleep_for_rate=True)\r\n\r\n def __call__(self):\r\n\r\n for event in self.meetup.fetch():\r\n does_nothing = \"la-la-la\"\r\n\r\n\r\nclass Consumer(multiprocessing.Process):\r\n\r\n def __init__(self, task_queue, result_queue):\r\n \"\"\"\r\n :type task_queue: Object\r\n :param task_queue: the queue of the tasks\r\n :type result_queue: Object\r\n :param result_queue: the queue of the results\r\n \"\"\"\r\n multiprocessing.Process.__init__(self)\r\n self.task_queue = task_queue\r\n self.result_queue = result_queue\r\n\r\n def run(self):\r\n \"\"\"\r\n runs the consumer's task\r\n \"\"\"\r\n while True:\r\n next_task = self.task_queue.get()\r\n if next_task is None:\r\n self.task_queue.task_done()\r\n break\r\n\r\n answer = next_task()\r\n self.task_queue.task_done()\r\n\r\n return\r\n```"},"comment":{"url":"https://api.github.com/repos/grimoirelab/perceval/issues/comments/342898816","html_url":"https://github.com/grimoirelab/perceval/pull/199#issuecomment-342898816","issue_url":"https://api.github.com/repos/grimoirelab/perceval/issues/199","id":342898816,"user":{"login":"coveralls","id":2354108,"avatar_url":"https://avatars1.githubusercontent.com/u/2354108?v=4","gravatar_id":"","url":"https://api.github.com/users/coveralls","html_url":"https://github.com/coveralls","followers_url":"https://api.github.com/users/coveralls/followers","following_url":"https://api.github.com/users/coveralls/following{/other_user}","gists_url":"https://api.github.com/users/coveralls/gists{/gist_id}","starred_url":"https://api.github.com/users/coveralls/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/coveralls/subscriptions","organizations_url":"https://api.github.com/users/coveralls/orgs","repos_url":"https://api.github.com/users/coveralls/repos","events_url":"https://api.github.com/users/coveralls/events{/privacy}","received_events_url":"https://api.github.com/users/coveralls/received_events","type":"User","site_admin":false},"created_at":"2017-11-08T17:49:55Z","updated_at":"2017-11-08T17:49:55Z","author_association":"NONE","body":"\n[](https://coveralls.io/builds/14102753)\n\nCoverage increased (+0.01%) to 96.047% when pulling **a6bdbbf44f716a060d9355b5c5120979c673d852 on valeriocos:fix-meetup** into **30aa4cbd3848f22afdcbcde522fdd3d07e88d22a on grimoirelab:master**.\n"}} | {
"id": 47415120,
"name": "grimoirelab/perceval",
"url": "https://api.github.com/repos/grimoirelab/perceval"
} | {
"id": 2354108,
"login": "coveralls",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2354108?",
"url": "https://api.github.com/users/coveralls"
} | {
"id": 16151805,
"login": "grimoirelab",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16151805?",
"url": "https://api.github.com/orgs/grimoirelab"
} | 2017-11-08T17:49:55 | 6827684959 | {"actor":{"display_login":"coveralls"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/hortonworks/streamline/issues/707","repository_url":"https://api.github.com/repos/hortonworks/streamline","labels_url":"https://api.github.com/repos/hortonworks/streamline/issues/707/labels{/name}","comments_url":"https://api.github.com/repos/hortonworks/streamline/issues/707/comments","events_url":"https://api.github.com/repos/hortonworks/streamline/issues/707/events","html_url":"https://github.com/hortonworks/streamline/issues/707","id":232526602,"number":707,"title":"Keys should be optional in aggregate processor","user":{"login":"arunmahadevan","id":6792890,"avatar_url":"https://avatars3.githubusercontent.com/u/6792890?v=3","gravatar_id":"","url":"https://api.github.com/users/arunmahadevan","html_url":"https://github.com/arunmahadevan","followers_url":"https://api.github.com/users/arunmahadevan/followers","following_url":"https://api.github.com/users/arunmahadevan/following{/other_user}","gists_url":"https://api.github.com/users/arunmahadevan/gists{/gist_id}","starred_url":"https://api.github.com/users/arunmahadevan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/arunmahadevan/subscriptions","organizations_url":"https://api.github.com/users/arunmahadevan/orgs","repos_url":"https://api.github.com/users/arunmahadevan/repos","events_url":"https://api.github.com/users/arunmahadevan/events{/privacy}","received_events_url":"https://api.github.com/users/arunmahadevan/received_events","type":"User","site_admin":false},"labels":[{"id":611732633,"url":"https://api.github.com/repos/hortonworks/streamline/labels/UI","name":"UI","color":"0052cc","default":false}],"state":"closed","locked":false,"assignee":{"login":"shahsank3t","id":6761317,"avatar_url":"https://avatars2.githubusercontent.com/u/6761317?v=3","gravatar_id":"","url":"https://api.github.com/users/shahsank3t","html_url":"https://github.com/shahsank3t","followers_url":"https://api.github.com/users/shahsank3t/followers","following_url":"https://api.github.com/users/shahsank3t/following{/other_user}","gists_url":"https://api.github.com/users/shahsank3t/gists{/gist_id}","starred_url":"https://api.github.com/users/shahsank3t/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shahsank3t/subscriptions","organizations_url":"https://api.github.com/users/shahsank3t/orgs","repos_url":"https://api.github.com/users/shahsank3t/repos","events_url":"https://api.github.com/users/shahsank3t/events{/privacy}","received_events_url":"https://api.github.com/users/shahsank3t/received_events","type":"User","site_admin":false},"assignees":[{"login":"shahsank3t","id":6761317,"avatar_url":"https://avatars2.githubusercontent.com/u/6761317?v=3","gravatar_id":"","url":"https://api.github.com/users/shahsank3t","html_url":"https://github.com/shahsank3t","followers_url":"https://api.github.com/users/shahsank3t/followers","following_url":"https://api.github.com/users/shahsank3t/following{/other_user}","gists_url":"https://api.github.com/users/shahsank3t/gists{/gist_id}","starred_url":"https://api.github.com/users/shahsank3t/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shahsank3t/subscriptions","organizations_url":"https://api.github.com/users/shahsank3t/orgs","repos_url":"https://api.github.com/users/shahsank3t/repos","events_url":"https://api.github.com/users/shahsank3t/events{/privacy}","received_events_url":"https://api.github.com/users/shahsank3t/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/hortonworks/streamline/milestones/2","html_url":"https://github.com/hortonworks/streamline/milestone/2","labels_url":"https://api.github.com/repos/hortonworks/streamline/milestones/2/labels","id":2539419,"number":2,"title":"0.6.0","description":"","creator":{"login":"harshach","id":38649,"avatar_url":"https://avatars0.githubusercontent.com/u/38649?v=3","gravatar_id":"","url":"https://api.github.com/users/harshach","html_url":"https://github.com/harshach","followers_url":"https://api.github.com/users/harshach/followers","following_url":"https://api.github.com/users/harshach/following{/other_user}","gists_url":"https://api.github.com/users/harshach/gists{/gist_id}","starred_url":"https://api.github.com/users/harshach/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/harshach/subscriptions","organizations_url":"https://api.github.com/users/harshach/orgs","repos_url":"https://api.github.com/users/harshach/repos","events_url":"https://api.github.com/users/harshach/events{/privacy}","received_events_url":"https://api.github.com/users/harshach/received_events","type":"User","site_admin":false},"open_issues":24,"closed_issues":7,"state":"open","created_at":"2017-05-23T22:17:52Z","updated_at":"2017-06-29T17:58:44Z","due_on":"2017-07-21T07:00:00Z","closed_at":null},"comments":3,"created_at":"2017-05-31T10:40:06Z","updated_at":"2017-06-29T17:58:44Z","closed_at":"2017-06-29T17:58:44Z","body":"Right now one always needs to select one or more keys in the aggregate processor.\r\n\r\nThis should be optional so that aggregate per window can be computed.\r\n\r\nE.g. count of events in the last 5 mins\r\nmean age of users for events in the last 1 hr and so on"},"comment":{"url":"https://api.github.com/repos/hortonworks/streamline/issues/comments/312046839","html_url":"https://github.com/hortonworks/streamline/issues/707#issuecomment-312046839","issue_url":"https://api.github.com/repos/hortonworks/streamline/issues/707","id":312046839,"user":{"login":"shahsank3t","id":6761317,"avatar_url":"https://avatars2.githubusercontent.com/u/6761317?v=3","gravatar_id":"","url":"https://api.github.com/users/shahsank3t","html_url":"https://github.com/shahsank3t","followers_url":"https://api.github.com/users/shahsank3t/followers","following_url":"https://api.github.com/users/shahsank3t/following{/other_user}","gists_url":"https://api.github.com/users/shahsank3t/gists{/gist_id}","starred_url":"https://api.github.com/users/shahsank3t/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/shahsank3t/subscriptions","organizations_url":"https://api.github.com/users/shahsank3t/orgs","repos_url":"https://api.github.com/users/shahsank3t/repos","events_url":"https://api.github.com/users/shahsank3t/events{/privacy}","received_events_url":"https://api.github.com/users/shahsank3t/received_events","type":"User","site_admin":false},"created_at":"2017-06-29T17:58:44Z","updated_at":"2017-06-29T17:58:44Z","body":"Fixed in commit: b701447d79d0015f00a05cb072d2bfe324b250bf"}} | {
"id": 35627039,
"name": "hortonworks/streamline",
"url": "https://api.github.com/repos/hortonworks/streamline"
} | {
"id": 6761317,
"login": "shahsank3t",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6761317?",
"url": "https://api.github.com/users/shahsank3t"
} | {
"id": 898785,
"login": "hortonworks",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/898785?",
"url": "https://api.github.com/orgs/hortonworks"
} | 2017-06-29T17:58:44 | 6165475768 | {"actor":{"display_login":"shahsank3t"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/hyperledger/sawtooth-core/issues/471","repository_url":"https://api.github.com/repos/hyperledger/sawtooth-core","labels_url":"https://api.github.com/repos/hyperledger/sawtooth-core/issues/471/labels{/name}","comments_url":"https://api.github.com/repos/hyperledger/sawtooth-core/issues/471/comments","events_url":"https://api.github.com/repos/hyperledger/sawtooth-core/issues/471/events","html_url":"https://github.com/hyperledger/sawtooth-core/pull/471","id":229084964,"number":471,"title":"Add REST API Architecture doc","user":{"login":"delventhalz","id":8889580,"avatar_url":"https://avatars0.githubusercontent.com/u/8889580?v=3","gravatar_id":"","url":"https://api.github.com/users/delventhalz","html_url":"https://github.com/delventhalz","followers_url":"https://api.github.com/users/delventhalz/followers","following_url":"https://api.github.com/users/delventhalz/following{/other_user}","gists_url":"https://api.github.com/users/delventhalz/gists{/gist_id}","starred_url":"https://api.github.com/users/delventhalz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/delventhalz/subscriptions","organizations_url":"https://api.github.com/users/delventhalz/orgs","repos_url":"https://api.github.com/users/delventhalz/repos","events_url":"https://api.github.com/users/delventhalz/events{/privacy}","received_events_url":"https://api.github.com/users/delventhalz/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"delventhalz","id":8889580,"avatar_url":"https://avatars0.githubusercontent.com/u/8889580?v=3","gravatar_id":"","url":"https://api.github.com/users/delventhalz","html_url":"https://github.com/delventhalz","followers_url":"https://api.github.com/users/delventhalz/followers","following_url":"https://api.github.com/users/delventhalz/following{/other_user}","gists_url":"https://api.github.com/users/delventhalz/gists{/gist_id}","starred_url":"https://api.github.com/users/delventhalz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/delventhalz/subscriptions","organizations_url":"https://api.github.com/users/delventhalz/orgs","repos_url":"https://api.github.com/users/delventhalz/repos","events_url":"https://api.github.com/users/delventhalz/events{/privacy}","received_events_url":"https://api.github.com/users/delventhalz/received_events","type":"User","site_admin":false},"assignees":[{"login":"delventhalz","id":8889580,"avatar_url":"https://avatars0.githubusercontent.com/u/8889580?v=3","gravatar_id":"","url":"https://api.github.com/users/delventhalz","html_url":"https://github.com/delventhalz","followers_url":"https://api.github.com/users/delventhalz/followers","following_url":"https://api.github.com/users/delventhalz/following{/other_user}","gists_url":"https://api.github.com/users/delventhalz/gists{/gist_id}","starred_url":"https://api.github.com/users/delventhalz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/delventhalz/subscriptions","organizations_url":"https://api.github.com/users/delventhalz/orgs","repos_url":"https://api.github.com/users/delventhalz/repos","events_url":"https://api.github.com/users/delventhalz/events{/privacy}","received_events_url":"https://api.github.com/users/delventhalz/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2017-05-16T15:59:16Z","updated_at":"2017-05-16T20:42:27Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/hyperledger/sawtooth-core/pulls/471","html_url":"https://github.com/hyperledger/sawtooth-core/pull/471","diff_url":"https://github.com/hyperledger/sawtooth-core/pull/471.diff","patch_url":"https://github.com/hyperledger/sawtooth-core/pull/471.patch"},"body":"Includes tweaks to the REST API and spec:\r\n- POSTs no longer return `200` statuses\r\n- `openapi.yaml` now documents only currently implemented aspects of the API"},"comment":{"url":"https://api.github.com/repos/hyperledger/sawtooth-core/issues/comments/301909389","html_url":"https://github.com/hyperledger/sawtooth-core/pull/471#issuecomment-301909389","issue_url":"https://api.github.com/repos/hyperledger/sawtooth-core/issues/471","id":301909389,"user":{"login":"delventhalz","id":8889580,"avatar_url":"https://avatars0.githubusercontent.com/u/8889580?v=3","gravatar_id":"","url":"https://api.github.com/users/delventhalz","html_url":"https://github.com/delventhalz","followers_url":"https://api.github.com/users/delventhalz/followers","following_url":"https://api.github.com/users/delventhalz/following{/other_user}","gists_url":"https://api.github.com/users/delventhalz/gists{/gist_id}","starred_url":"https://api.github.com/users/delventhalz/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/delventhalz/subscriptions","organizations_url":"https://api.github.com/users/delventhalz/orgs","repos_url":"https://api.github.com/users/delventhalz/repos","events_url":"https://api.github.com/users/delventhalz/events{/privacy}","received_events_url":"https://api.github.com/users/delventhalz/received_events","type":"User","site_admin":false},"created_at":"2017-05-16T20:42:27Z","updated_at":"2017-05-16T20:42:27Z","body":"Updated architecture document to remove all planned features which are not implemented (i.e. stats endpoints and some query parameters)."}} | {
"id": 57901437,
"name": "hyperledger/sawtooth-core",
"url": "https://api.github.com/repos/hyperledger/sawtooth-core"
} | {
"id": 8889580,
"login": "delventhalz",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8889580?",
"url": "https://api.github.com/users/delventhalz"
} | {
"id": 7657900,
"login": "hyperledger",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7657900?",
"url": "https://api.github.com/orgs/hyperledger"
} | 2017-05-16T20:42:27 | 5884742138 | {"actor":{"display_login":"delventhalz"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/hyperledger/composer/issues/987","repository_url":"https://api.github.com/repos/hyperledger/composer","labels_url":"https://api.github.com/repos/hyperledger/composer/issues/987/labels{/name}","comments_url":"https://api.github.com/repos/hyperledger/composer/issues/987/comments","events_url":"https://api.github.com/repos/hyperledger/composer/issues/987/events","html_url":"https://github.com/hyperledger/composer/issues/987","id":228644871,"number":987,"title":"As a user i can get all the transactions through the REST API as a historian","user":{"login":"caroline-church","id":23044145,"avatar_url":"https://avatars2.githubusercontent.com/u/23044145?v=4","gravatar_id":"","url":"https://api.github.com/users/caroline-church","html_url":"https://github.com/caroline-church","followers_url":"https://api.github.com/users/caroline-church/followers","following_url":"https://api.github.com/users/caroline-church/following{/other_user}","gists_url":"https://api.github.com/users/caroline-church/gists{/gist_id}","starred_url":"https://api.github.com/users/caroline-church/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/caroline-church/subscriptions","organizations_url":"https://api.github.com/users/caroline-church/orgs","repos_url":"https://api.github.com/users/caroline-church/repos","events_url":"https://api.github.com/users/caroline-church/events{/privacy}","received_events_url":"https://api.github.com/users/caroline-church/received_events","type":"User","site_admin":false},"labels":[{"id":601098241,"url":"https://api.github.com/repos/hyperledger/composer/labels/historian","name":"historian","color":"5319e7","default":false},{"id":589384849,"url":"https://api.github.com/repos/hyperledger/composer/labels/rest","name":"rest","color":"c5def5","default":false},{"id":529865523,"url":"https://api.github.com/repos/hyperledger/composer/labels/user%20story","name":"user story","color":"fbca04","default":false}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-05-15T08:45:45Z","updated_at":"2017-08-16T12:26:29Z","closed_at":null,"body":""},"comment":{"url":"https://api.github.com/repos/hyperledger/composer/issues/comments/322754407","html_url":"https://github.com/hyperledger/composer/issues/987#issuecomment-322754407","issue_url":"https://api.github.com/repos/hyperledger/composer/issues/987","id":322754407,"user":{"login":"caroline-church","id":23044145,"avatar_url":"https://avatars2.githubusercontent.com/u/23044145?v=4","gravatar_id":"","url":"https://api.github.com/users/caroline-church","html_url":"https://github.com/caroline-church","followers_url":"https://api.github.com/users/caroline-church/followers","following_url":"https://api.github.com/users/caroline-church/following{/other_user}","gists_url":"https://api.github.com/users/caroline-church/gists{/gist_id}","starred_url":"https://api.github.com/users/caroline-church/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/caroline-church/subscriptions","organizations_url":"https://api.github.com/users/caroline-church/orgs","repos_url":"https://api.github.com/users/caroline-church/repos","events_url":"https://api.github.com/users/caroline-church/events{/privacy}","received_events_url":"https://api.github.com/users/caroline-church/received_events","type":"User","site_admin":false},"created_at":"2017-08-16T12:26:29Z","updated_at":"2017-08-16T12:26:29Z","body":"reopening as don't think this has been done"}} | {
"id": 80234065,
"name": "hyperledger/composer",
"url": "https://api.github.com/repos/hyperledger/composer"
} | {
"id": 23044145,
"login": "caroline-church",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/23044145?",
"url": "https://api.github.com/users/caroline-church"
} | {
"id": 7657900,
"login": "hyperledger",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7657900?",
"url": "https://api.github.com/orgs/hyperledger"
} | 2017-08-16T12:26:29 | 6463086881 | {"actor":{"display_login":"caroline-church"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/iOS-Goodies/iOS-Goodies/issues/894","repository_url":"https://api.github.com/repos/iOS-Goodies/iOS-Goodies","labels_url":"https://api.github.com/repos/iOS-Goodies/iOS-Goodies/issues/894/labels{/name}","comments_url":"https://api.github.com/repos/iOS-Goodies/iOS-Goodies/issues/894/comments","events_url":"https://api.github.com/repos/iOS-Goodies/iOS-Goodies/issues/894/events","html_url":"https://github.com/iOS-Goodies/iOS-Goodies/pull/894","id":241095049,"number":894,"title":"Add Article","user":{"login":"LisaDziuba","id":23191656,"avatar_url":"https://avatars3.githubusercontent.com/u/23191656?v=3","gravatar_id":"","url":"https://api.github.com/users/LisaDziuba","html_url":"https://github.com/LisaDziuba","followers_url":"https://api.github.com/users/LisaDziuba/followers","following_url":"https://api.github.com/users/LisaDziuba/following{/other_user}","gists_url":"https://api.github.com/users/LisaDziuba/gists{/gist_id}","starred_url":"https://api.github.com/users/LisaDziuba/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/LisaDziuba/subscriptions","organizations_url":"https://api.github.com/users/LisaDziuba/orgs","repos_url":"https://api.github.com/users/LisaDziuba/repos","events_url":"https://api.github.com/users/LisaDziuba/events{/privacy}","received_events_url":"https://api.github.com/users/LisaDziuba/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-07-06T21:43:19Z","updated_at":"2017-07-06T21:44:27Z","closed_at":"2017-07-06T21:44:24Z","pull_request":{"url":"https://api.github.com/repos/iOS-Goodies/iOS-Goodies/pulls/894","html_url":"https://github.com/iOS-Goodies/iOS-Goodies/pull/894","diff_url":"https://github.com/iOS-Goodies/iOS-Goodies/pull/894.diff","patch_url":"https://github.com/iOS-Goodies/iOS-Goodies/pull/894.patch"},"body":"Error handling with Swift on the server."},"comment":{"url":"https://api.github.com/repos/iOS-Goodies/iOS-Goodies/issues/comments/313527959","html_url":"https://github.com/iOS-Goodies/iOS-Goodies/pull/894#issuecomment-313527959","issue_url":"https://api.github.com/repos/iOS-Goodies/iOS-Goodies/issues/894","id":313527959,"user":{"login":"dkhamsing","id":4723115,"avatar_url":"https://avatars3.githubusercontent.com/u/4723115?v=3","gravatar_id":"","url":"https://api.github.com/users/dkhamsing","html_url":"https://github.com/dkhamsing","followers_url":"https://api.github.com/users/dkhamsing/followers","following_url":"https://api.github.com/users/dkhamsing/following{/other_user}","gists_url":"https://api.github.com/users/dkhamsing/gists{/gist_id}","starred_url":"https://api.github.com/users/dkhamsing/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dkhamsing/subscriptions","organizations_url":"https://api.github.com/users/dkhamsing/orgs","repos_url":"https://api.github.com/users/dkhamsing/repos","events_url":"https://api.github.com/users/dkhamsing/events{/privacy}","received_events_url":"https://api.github.com/users/dkhamsing/received_events","type":"User","site_admin":false},"created_at":"2017-07-06T21:44:27Z","updated_at":"2017-07-06T21:44:27Z","body":"thx"}} | {
"id": 31210625,
"name": "iOS-Goodies/iOS-Goodies",
"url": "https://api.github.com/repos/iOS-Goodies/iOS-Goodies"
} | {
"id": 4723115,
"login": "dkhamsing",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4723115?",
"url": "https://api.github.com/users/dkhamsing"
} | {
"id": 11159512,
"login": "iOS-Goodies",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/11159512?",
"url": "https://api.github.com/orgs/iOS-Goodies"
} | 2017-07-06T21:44:27 | 6207818203 | {"actor":{"display_login":"dkhamsing"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/iron-meteor/iron-router/issues/1561","repository_url":"https://api.github.com/repos/iron-meteor/iron-router","labels_url":"https://api.github.com/repos/iron-meteor/iron-router/issues/1561/labels{/name}","comments_url":"https://api.github.com/repos/iron-meteor/iron-router/issues/1561/comments","events_url":"https://api.github.com/repos/iron-meteor/iron-router/issues/1561/events","html_url":"https://github.com/iron-meteor/iron-router/issues/1561","id":200847501,"number":1561,"title":"multiple template name error although there isn't.","user":{"login":"ayazhussein","id":16168367,"avatar_url":"https://avatars.githubusercontent.com/u/16168367?v=3","gravatar_id":"","url":"https://api.github.com/users/ayazhussein","html_url":"https://github.com/ayazhussein","followers_url":"https://api.github.com/users/ayazhussein/followers","following_url":"https://api.github.com/users/ayazhussein/following{/other_user}","gists_url":"https://api.github.com/users/ayazhussein/gists{/gist_id}","starred_url":"https://api.github.com/users/ayazhussein/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ayazhussein/subscriptions","organizations_url":"https://api.github.com/users/ayazhussein/orgs","repos_url":"https://api.github.com/users/ayazhussein/repos","events_url":"https://api.github.com/users/ayazhussein/events{/privacy}","received_events_url":"https://api.github.com/users/ayazhussein/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":8,"created_at":"2017-01-15T04:18:55Z","updated_at":"2017-01-16T17:58:50Z","closed_at":null,"body":"everything was working before I updated to meteor 1.4.2.3 and updated iron router.\r\nI have only one 'Home' template but I keep getting this error.\r\ntried removing it and adding it again.. same error with the splash screen of \"no route definition found\", I tried changing my template name and edit the controller, I still get this error even though I don't have Home template anymore.\r\n```Uncaught Error: There are multiple templates named 'Home'. Each template needs a unique name.\r\n at Function.Template.__checkName (templating-runtime.js?hash=c18de19…:55)\r\n at iron_router.js?hash=cb1b108…:2069\r\n at iron_router.js?hash=cb1b108…:2085\r\n at iron_router.js?hash=cb1b108…:2540```"},"comment":{"url":"https://api.github.com/repos/iron-meteor/iron-router/issues/comments/272927416","html_url":"https://github.com/iron-meteor/iron-router/issues/1561#issuecomment-272927416","issue_url":"https://api.github.com/repos/iron-meteor/iron-router/issues/1561","id":272927416,"user":{"login":"chrisbutler","id":112371,"avatar_url":"https://avatars.githubusercontent.com/u/112371?v=3","gravatar_id":"","url":"https://api.github.com/users/chrisbutler","html_url":"https://github.com/chrisbutler","followers_url":"https://api.github.com/users/chrisbutler/followers","following_url":"https://api.github.com/users/chrisbutler/following{/other_user}","gists_url":"https://api.github.com/users/chrisbutler/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisbutler/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisbutler/subscriptions","organizations_url":"https://api.github.com/users/chrisbutler/orgs","repos_url":"https://api.github.com/users/chrisbutler/repos","events_url":"https://api.github.com/users/chrisbutler/events{/privacy}","received_events_url":"https://api.github.com/users/chrisbutler/received_events","type":"User","site_admin":false},"created_at":"2017-01-16T17:58:49Z","updated_at":"2017-01-16T17:58:49Z","body":"@ayazhussein @zimme @kax0 @marcoschwartz @JackAdams can you guys try 1.1.1 from atmosphere?"}} | {
"id": 10755256,
"name": "iron-meteor/iron-router",
"url": "https://api.github.com/repos/iron-meteor/iron-router"
} | {
"id": 112371,
"login": "chrisbutler",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/112371?",
"url": "https://api.github.com/users/chrisbutler"
} | {
"id": 10947061,
"login": "iron-meteor",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10947061?",
"url": "https://api.github.com/orgs/iron-meteor"
} | 2017-01-16T17:58:50 | 5160797642 | {"actor":{"display_login":"chrisbutler"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/jrl-umi3218/SpaceVecAlg/issues/16","repository_url":"https://api.github.com/repos/jrl-umi3218/SpaceVecAlg","labels_url":"https://api.github.com/repos/jrl-umi3218/SpaceVecAlg/issues/16/labels{/name}","comments_url":"https://api.github.com/repos/jrl-umi3218/SpaceVecAlg/issues/16/comments","events_url":"https://api.github.com/repos/jrl-umi3218/SpaceVecAlg/issues/16/events","html_url":"https://github.com/jrl-umi3218/SpaceVecAlg/issues/16","id":266332202,"number":16,"title":"python bindings install fails on OS X","user":{"login":"ahundt","id":55744,"avatar_url":"https://avatars1.githubusercontent.com/u/55744?v=4","gravatar_id":"","url":"https://api.github.com/users/ahundt","html_url":"https://github.com/ahundt","followers_url":"https://api.github.com/users/ahundt/followers","following_url":"https://api.github.com/users/ahundt/following{/other_user}","gists_url":"https://api.github.com/users/ahundt/gists{/gist_id}","starred_url":"https://api.github.com/users/ahundt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ahundt/subscriptions","organizations_url":"https://api.github.com/users/ahundt/orgs","repos_url":"https://api.github.com/users/ahundt/repos","events_url":"https://api.github.com/users/ahundt/events{/privacy}","received_events_url":"https://api.github.com/users/ahundt/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":6,"created_at":"2017-10-18T01:31:18Z","updated_at":"2017-12-08T04:24:40Z","closed_at":"2017-12-08T02:19:20Z","author_association":"NONE","body":"I'm trying to install the SpaceVecAlg python bindings on OS X, but it seems to pass the `-framework` parameter to clang incorrectly in this case:\r\n\r\n```\r\n[100%] Generating local SpaceVecAlg Python bindings\r\ncd /Users/athundt/src/jrl-umi3218/SpaceVecAlg/binding/python && python setup.py build_ext --inplace\r\n/usr/local/lib/python2.7/site-packages/setuptools/dist.py:360: UserWarning: The version specified ('1.0.0-b18e913') is an invalid version, this may not work as expected with newer versions of setuptools, pip, and PyPI. Please see PEP 440 for more details.\r\n \"details.\" % self.metadata.version\r\nrunning build_ext\r\nbuilding 'sva.sva' extension\r\nclang -fno-strict-aliasing -fno-common -dynamic -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/athundt/src/jrl-umi3218/SpaceVecAlg/build -I/Users/athundt/src/jrl-umi3218/SpaceVecAlg/build/include -I/Users/athundt/src/jrl-umi3218/SpaceVecAlg/include -I/usr/local/Cellar/eigen/3.3.4/include/eigen3 -I/Users/athundt/src/jrl-umi3218/SpaceVecAlg/src -I/Users/athundt/source/jrl-umi3218/SpaceVecAlg/binding/python/include -I/usr/local/lib/python2.7/site-packages/numpy/core/include -I/usr/local/include -I/usr/local/opt/openssl/include -I/usr/local/opt/sqlite/include -I/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c sva/sva.cpp -o build/temp.macosx-10.11-x86_64-2.7/sva/sva.o -std=c++11 -framework\r\nclang: error: argument to '-framework' is missing (expected 1 value)\r\nerror: command 'clang' failed with exit status 1\r\nmake[2]: *** [binding/python/CMakeFiles/sva-python-bindings] Error 1\r\nmake[1]: *** [binding/python/CMakeFiles/sva-python-bindings.dir/all] Error 2\r\nmake: *** [all] Error 2\r\n\r\n```\r\n\r\nI'm using the homebrew installed python:\r\n```\r\nathundt at Andrews-2013-MacBook-Pro-2 in ~/src/jrl-umi3218/SpaceVecAlg/build on master!\r\n± python --version\r\nPython 2.7.13\r\n\r\nathundt at Andrews-2013-MacBook-Pro-2 in ~/src/jrl-umi3218/SpaceVecAlg/build on master!\r\n± which python\r\n/usr/local/bin/python\r\n```\r\n\r\nHere is the complete install script I use:\r\nhttps://github.com/ahundt/robotics_setup/blob/master/robotics_tasks.sh"},"comment":{"url":"https://api.github.com/repos/jrl-umi3218/SpaceVecAlg/issues/comments/350168805","html_url":"https://github.com/jrl-umi3218/SpaceVecAlg/issues/16#issuecomment-350168805","issue_url":"https://api.github.com/repos/jrl-umi3218/SpaceVecAlg/issues/16","id":350168805,"user":{"login":"ahundt","id":55744,"avatar_url":"https://avatars1.githubusercontent.com/u/55744?v=4","gravatar_id":"","url":"https://api.github.com/users/ahundt","html_url":"https://github.com/ahundt","followers_url":"https://api.github.com/users/ahundt/followers","following_url":"https://api.github.com/users/ahundt/following{/other_user}","gists_url":"https://api.github.com/users/ahundt/gists{/gist_id}","starred_url":"https://api.github.com/users/ahundt/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ahundt/subscriptions","organizations_url":"https://api.github.com/users/ahundt/orgs","repos_url":"https://api.github.com/users/ahundt/repos","events_url":"https://api.github.com/users/ahundt/events{/privacy}","received_events_url":"https://api.github.com/users/ahundt/received_events","type":"User","site_admin":false},"created_at":"2017-12-08T04:24:40Z","updated_at":"2017-12-08T04:24:40Z","author_association":"NONE","body":"@gergondet Thanks for the fixes! 3 more to go :-)"}} | {
"id": 3283244,
"name": "jrl-umi3218/SpaceVecAlg",
"url": "https://api.github.com/repos/jrl-umi3218/SpaceVecAlg"
} | {
"id": 55744,
"login": "ahundt",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/55744?",
"url": "https://api.github.com/users/ahundt"
} | {
"id": 410812,
"login": "jrl-umi3218",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/410812?",
"url": "https://api.github.com/orgs/jrl-umi3218"
} | 2017-12-08T04:24:40 | 6960564666 | {"actor":{"display_login":"ahundt"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/justarrived/just-match-web/issues/311","repository_url":"https://api.github.com/repos/justarrived/just-match-web","labels_url":"https://api.github.com/repos/justarrived/just-match-web/issues/311/labels{/name}","comments_url":"https://api.github.com/repos/justarrived/just-match-web/issues/311/comments","events_url":"https://api.github.com/repos/justarrived/just-match-web/issues/311/events","html_url":"https://github.com/justarrived/just-match-web/issues/311","id":208110964,"number":311,"title":"[Spike] Test Angular Material","user":{"login":"buren","id":922411,"avatar_url":"https://avatars.githubusercontent.com/u/922411?v=3","gravatar_id":"","url":"https://api.github.com/users/buren","html_url":"https://github.com/buren","followers_url":"https://api.github.com/users/buren/followers","following_url":"https://api.github.com/users/buren/following{/other_user}","gists_url":"https://api.github.com/users/buren/gists{/gist_id}","starred_url":"https://api.github.com/users/buren/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/buren/subscriptions","organizations_url":"https://api.github.com/users/buren/orgs","repos_url":"https://api.github.com/users/buren/repos","events_url":"https://api.github.com/users/buren/events{/privacy}","received_events_url":"https://api.github.com/users/buren/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"bex1","id":3455771,"avatar_url":"https://avatars.githubusercontent.com/u/3455771?v=3","gravatar_id":"","url":"https://api.github.com/users/bex1","html_url":"https://github.com/bex1","followers_url":"https://api.github.com/users/bex1/followers","following_url":"https://api.github.com/users/bex1/following{/other_user}","gists_url":"https://api.github.com/users/bex1/gists{/gist_id}","starred_url":"https://api.github.com/users/bex1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bex1/subscriptions","organizations_url":"https://api.github.com/users/bex1/orgs","repos_url":"https://api.github.com/users/bex1/repos","events_url":"https://api.github.com/users/bex1/events{/privacy}","received_events_url":"https://api.github.com/users/bex1/received_events","type":"User","site_admin":false},"assignees":[{"login":"bex1","id":3455771,"avatar_url":"https://avatars.githubusercontent.com/u/3455771?v=3","gravatar_id":"","url":"https://api.github.com/users/bex1","html_url":"https://github.com/bex1","followers_url":"https://api.github.com/users/bex1/followers","following_url":"https://api.github.com/users/bex1/following{/other_user}","gists_url":"https://api.github.com/users/bex1/gists{/gist_id}","starred_url":"https://api.github.com/users/bex1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bex1/subscriptions","organizations_url":"https://api.github.com/users/bex1/orgs","repos_url":"https://api.github.com/users/bex1/repos","events_url":"https://api.github.com/users/bex1/events{/privacy}","received_events_url":"https://api.github.com/users/bex1/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2017-02-16T12:43:43Z","updated_at":"2017-02-16T16:43:39Z","closed_at":null,"body":"Before we make any final descisions whether to go with Angular Material we need to try/test a few things.\r\n\r\n1. Firstly we need to check so that the total bundle doesn't get too large (we're already at ~1MB!).\r\n2. Secondly try to gain some understanding of how much time it would take to implement.\r\n3. Thirdly we need to decide on what to do with bootstrap, we're mainly using bootstraps grid (and some alerts). Should we completely 🔪 Bootstrap, phase it out, or just keep the grid parts.\r\n"},"comment":{"url":"https://api.github.com/repos/justarrived/just-match-web/issues/comments/280386076","html_url":"https://github.com/justarrived/just-match-web/issues/311#issuecomment-280386076","issue_url":"https://api.github.com/repos/justarrived/just-match-web/issues/311","id":280386076,"user":{"login":"bex1","id":3455771,"avatar_url":"https://avatars.githubusercontent.com/u/3455771?v=3","gravatar_id":"","url":"https://api.github.com/users/bex1","html_url":"https://github.com/bex1","followers_url":"https://api.github.com/users/bex1/followers","following_url":"https://api.github.com/users/bex1/following{/other_user}","gists_url":"https://api.github.com/users/bex1/gists{/gist_id}","starred_url":"https://api.github.com/users/bex1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bex1/subscriptions","organizations_url":"https://api.github.com/users/bex1/orgs","repos_url":"https://api.github.com/users/bex1/repos","events_url":"https://api.github.com/users/bex1/events{/privacy}","received_events_url":"https://api.github.com/users/bex1/received_events","type":"User","site_admin":false},"created_at":"2017-02-16T16:43:39Z","updated_at":"2017-02-16T16:43:39Z","body":"1. I will look into this.\r\n2. I will look into this.\r\n3. Im all for 🔪 bootstrap completely. Already begun phasing out most bootstrap classes throughout the html and replacing with proper scss. This gives us more control.\r\n\r\nAdditionally since there are only a few components available that we might want from Angular 2 Material, Im not yet sure that it is worth it. We could make our own components, which also would give us more control and fewer dependencies. "}} | {
"id": 69023956,
"name": "justarrived/just-match-web",
"url": "https://api.github.com/repos/justarrived/just-match-web"
} | {
"id": 3455771,
"login": "bex1",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3455771?",
"url": "https://api.github.com/users/bex1"
} | {
"id": 16261728,
"login": "justarrived",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16261728?",
"url": "https://api.github.com/orgs/justarrived"
} | 2017-02-16T16:43:39 | 5337980656 | {"actor":{"display_login":"bex1"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/karpenoktem/kninfra/issues/474","repository_url":"https://api.github.com/repos/karpenoktem/kninfra","labels_url":"https://api.github.com/repos/karpenoktem/kninfra/issues/474/labels{/name}","comments_url":"https://api.github.com/repos/karpenoktem/kninfra/issues/474/comments","events_url":"https://api.github.com/repos/karpenoktem/kninfra/issues/474/events","html_url":"https://github.com/karpenoktem/kninfra/pull/474","id":267255088,"number":474,"title":"Systemd ready notification","user":{"login":"yorickvP","id":647076,"avatar_url":"https://avatars1.githubusercontent.com/u/647076?v=4","gravatar_id":"","url":"https://api.github.com/users/yorickvP","html_url":"https://github.com/yorickvP","followers_url":"https://api.github.com/users/yorickvP/followers","following_url":"https://api.github.com/users/yorickvP/following{/other_user}","gists_url":"https://api.github.com/users/yorickvP/gists{/gist_id}","starred_url":"https://api.github.com/users/yorickvP/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/yorickvP/subscriptions","organizations_url":"https://api.github.com/users/yorickvP/orgs","repos_url":"https://api.github.com/users/yorickvP/repos","events_url":"https://api.github.com/users/yorickvP/events{/privacy}","received_events_url":"https://api.github.com/users/yorickvP/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2017-10-20T17:54:38Z","updated_at":"2017-10-22T21:19:13Z","closed_at":null,"author_association":"NONE","pull_request":{"url":"https://api.github.com/repos/karpenoktem/kninfra/pulls/474","html_url":"https://github.com/karpenoktem/kninfra/pull/474","diff_url":"https://github.com/karpenoktem/kninfra/pull/474.diff","patch_url":"https://github.com/karpenoktem/kninfra/pull/474.patch"},"body":"Uit [systemd documentatie](https://www.freedesktop.org/software/systemd/man/systemd.service.html#Type=):\r\n```\r\nIn this mode, if the process offers functionality to other processes on the system,\r\nits communication channels should be installed before the daemon is started up\r\n(e.g. sockets set up by systemd, via socket activation), as systemd will immediately\r\nproceed starting follow-up units.\r\n```\r\nDit is niet het geval bij onze processen, dus verander ik het type naar `notify`. Systemd wacht met starten van de dependencies tot het proces daadwerkelijk luistert.\r\n\r\nVoorbeeld dat nu kan: `systemctl start giedo && giedo-sync`\r\n"},"comment":{"url":"https://api.github.com/repos/karpenoktem/kninfra/issues/comments/338509967","html_url":"https://github.com/karpenoktem/kninfra/pull/474#issuecomment-338509967","issue_url":"https://api.github.com/repos/karpenoktem/kninfra/issues/474","id":338509967,"user":{"login":"bwesterb","id":9975,"avatar_url":"https://avatars1.githubusercontent.com/u/9975?v=4","gravatar_id":"","url":"https://api.github.com/users/bwesterb","html_url":"https://github.com/bwesterb","followers_url":"https://api.github.com/users/bwesterb/followers","following_url":"https://api.github.com/users/bwesterb/following{/other_user}","gists_url":"https://api.github.com/users/bwesterb/gists{/gist_id}","starred_url":"https://api.github.com/users/bwesterb/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bwesterb/subscriptions","organizations_url":"https://api.github.com/users/bwesterb/orgs","repos_url":"https://api.github.com/users/bwesterb/repos","events_url":"https://api.github.com/users/bwesterb/events{/privacy}","received_events_url":"https://api.github.com/users/bwesterb/received_events","type":"User","site_admin":false},"created_at":"2017-10-22T21:19:13Z","updated_at":"2017-10-22T21:19:13Z","author_association":"OWNER","body":"Het is onverwachts dat *WhimDaemon* systemd aanroept. Ik stel voor om het de Giedo, Hans, etc. classes te laten doen. Zie mijn voorstel hier: https://github.com/yorickvP/kninfra/pull/1\r\n"}} | {
"id": 1037232,
"name": "karpenoktem/kninfra",
"url": "https://api.github.com/repos/karpenoktem/kninfra"
} | {
"id": 9975,
"login": "bwesterb",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9975?",
"url": "https://api.github.com/users/bwesterb"
} | {
"id": 460625,
"login": "karpenoktem",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/460625?",
"url": "https://api.github.com/orgs/karpenoktem"
} | 2017-10-22T21:19:13 | 6749675960 | {"actor":{"display_login":"bwesterb"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/libwww-perl/libwww-perl/issues/263","repository_url":"https://api.github.com/repos/libwww-perl/libwww-perl","labels_url":"https://api.github.com/repos/libwww-perl/libwww-perl/issues/263/labels{/name}","comments_url":"https://api.github.com/repos/libwww-perl/libwww-perl/issues/263/comments","events_url":"https://api.github.com/repos/libwww-perl/libwww-perl/issues/263/events","html_url":"https://github.com/libwww-perl/libwww-perl/pull/263","id":251511108,"number":263,"title":"Improve lwp-download --help","user":{"login":"xenu","id":352038,"avatar_url":"https://avatars1.githubusercontent.com/u/352038?v=4","gravatar_id":"","url":"https://api.github.com/users/xenu","html_url":"https://github.com/xenu","followers_url":"https://api.github.com/users/xenu/followers","following_url":"https://api.github.com/users/xenu/following{/other_user}","gists_url":"https://api.github.com/users/xenu/gists{/gist_id}","starred_url":"https://api.github.com/users/xenu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xenu/subscriptions","organizations_url":"https://api.github.com/users/xenu/orgs","repos_url":"https://api.github.com/users/xenu/repos","events_url":"https://api.github.com/users/xenu/events{/privacy}","received_events_url":"https://api.github.com/users/xenu/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":1,"created_at":"2017-08-20T20:04:29Z","updated_at":"2017-08-23T12:50:26Z","closed_at":null,"pull_request":{"url":"https://api.github.com/repos/libwww-perl/libwww-perl/pulls/263","html_url":"https://github.com/libwww-perl/libwww-perl/pull/263","diff_url":"https://github.com/libwww-perl/libwww-perl/pull/263.diff","patch_url":"https://github.com/libwww-perl/libwww-perl/pull/263.patch"},"body":"See #262 for more details"},"comment":{"url":"https://api.github.com/repos/libwww-perl/libwww-perl/issues/comments/324319363","html_url":"https://github.com/libwww-perl/libwww-perl/pull/263#issuecomment-324319363","issue_url":"https://api.github.com/repos/libwww-perl/libwww-perl/issues/263","id":324319363,"user":{"login":"oalders","id":96205,"avatar_url":"https://avatars3.githubusercontent.com/u/96205?v=4","gravatar_id":"","url":"https://api.github.com/users/oalders","html_url":"https://github.com/oalders","followers_url":"https://api.github.com/users/oalders/followers","following_url":"https://api.github.com/users/oalders/following{/other_user}","gists_url":"https://api.github.com/users/oalders/gists{/gist_id}","starred_url":"https://api.github.com/users/oalders/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/oalders/subscriptions","organizations_url":"https://api.github.com/users/oalders/orgs","repos_url":"https://api.github.com/users/oalders/repos","events_url":"https://api.github.com/users/oalders/events{/privacy}","received_events_url":"https://api.github.com/users/oalders/received_events","type":"User","site_admin":false},"created_at":"2017-08-23T12:50:26Z","updated_at":"2017-08-23T12:50:26Z","body":"LGTM\r\n\r\n```\r\n$ ./bin/lwp-download --help\r\nUsage:\r\n lwp-download [-a] [-s] <url> [<local path>]\r\n\r\n Options:\r\n\r\n -a save the file in ASCII mode\r\n -s use HTTP headers to guess output filename\r\n```"}} | {
"id": 110422,
"name": "libwww-perl/libwww-perl",
"url": "https://api.github.com/repos/libwww-perl/libwww-perl"
} | {
"id": 96205,
"login": "oalders",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/96205?",
"url": "https://api.github.com/users/oalders"
} | {
"id": 1450911,
"login": "libwww-perl",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1450911?",
"url": "https://api.github.com/orgs/libwww-perl"
} | 2017-08-23T12:50:26 | 6502198705 | {"actor":{"display_login":"oalders"}} |
IssueCommentEvent | true | {"action":"created","issue":{"url":"https://api.github.com/repos/linux-audit/audit-userspace/issues/15","repository_url":"https://api.github.com/repos/linux-audit/audit-userspace","labels_url":"https://api.github.com/repos/linux-audit/audit-userspace/issues/15/labels{/name}","comments_url":"https://api.github.com/repos/linux-audit/audit-userspace/issues/15/comments","events_url":"https://api.github.com/repos/linux-audit/audit-userspace/issues/15/events","html_url":"https://github.com/linux-audit/audit-userspace/issues/15","id":219200654,"number":15,"title":"RFE: Add filter for path to ignore filesystem types","user":{"login":"rgbriggs","id":2224635,"avatar_url":"https://avatars0.githubusercontent.com/u/2224635?v=3","gravatar_id":"","url":"https://api.github.com/users/rgbriggs","html_url":"https://github.com/rgbriggs","followers_url":"https://api.github.com/users/rgbriggs/followers","following_url":"https://api.github.com/users/rgbriggs/following{/other_user}","gists_url":"https://api.github.com/users/rgbriggs/gists{/gist_id}","starred_url":"https://api.github.com/users/rgbriggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rgbriggs/subscriptions","organizations_url":"https://api.github.com/users/rgbriggs/orgs","repos_url":"https://api.github.com/users/rgbriggs/repos","events_url":"https://api.github.com/users/rgbriggs/events{/privacy}","received_events_url":"https://api.github.com/users/rgbriggs/received_events","type":"User","site_admin":false},"labels":[{"id":331412562,"url":"https://api.github.com/repos/linux-audit/audit-userspace/labels/enhancement","name":"enhancement","color":"84b6eb","default":true},{"id":450851916,"url":"https://api.github.com/repos/linux-audit/audit-userspace/labels/priority/medium","name":"priority/medium","color":"fbda53","default":false}],"state":"open","locked":false,"assignee":{"login":"rgbriggs","id":2224635,"avatar_url":"https://avatars0.githubusercontent.com/u/2224635?v=3","gravatar_id":"","url":"https://api.github.com/users/rgbriggs","html_url":"https://github.com/rgbriggs","followers_url":"https://api.github.com/users/rgbriggs/followers","following_url":"https://api.github.com/users/rgbriggs/following{/other_user}","gists_url":"https://api.github.com/users/rgbriggs/gists{/gist_id}","starred_url":"https://api.github.com/users/rgbriggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rgbriggs/subscriptions","organizations_url":"https://api.github.com/users/rgbriggs/orgs","repos_url":"https://api.github.com/users/rgbriggs/repos","events_url":"https://api.github.com/users/rgbriggs/events{/privacy}","received_events_url":"https://api.github.com/users/rgbriggs/received_events","type":"User","site_admin":false},"assignees":[{"login":"rgbriggs","id":2224635,"avatar_url":"https://avatars0.githubusercontent.com/u/2224635?v=3","gravatar_id":"","url":"https://api.github.com/users/rgbriggs","html_url":"https://github.com/rgbriggs","followers_url":"https://api.github.com/users/rgbriggs/followers","following_url":"https://api.github.com/users/rgbriggs/following{/other_user}","gists_url":"https://api.github.com/users/rgbriggs/gists{/gist_id}","starred_url":"https://api.github.com/users/rgbriggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rgbriggs/subscriptions","organizations_url":"https://api.github.com/users/rgbriggs/orgs","repos_url":"https://api.github.com/users/rgbriggs/repos","events_url":"https://api.github.com/users/rgbriggs/events{/privacy}","received_events_url":"https://api.github.com/users/rgbriggs/received_events","type":"User","site_admin":false}],"milestone":{"url":"https://api.github.com/repos/linux-audit/audit-userspace/milestones/1","html_url":"https://github.com/linux-audit/audit-userspace/milestone/1","labels_url":"https://api.github.com/repos/linux-audit/audit-userspace/milestones/1/labels","id":2051074,"number":1,"title":"audit-2.7","description":null,"creator":{"login":"rgbriggs","id":2224635,"avatar_url":"https://avatars0.githubusercontent.com/u/2224635?v=3","gravatar_id":"","url":"https://api.github.com/users/rgbriggs","html_url":"https://github.com/rgbriggs","followers_url":"https://api.github.com/users/rgbriggs/followers","following_url":"https://api.github.com/users/rgbriggs/following{/other_user}","gists_url":"https://api.github.com/users/rgbriggs/gists{/gist_id}","starred_url":"https://api.github.com/users/rgbriggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rgbriggs/subscriptions","organizations_url":"https://api.github.com/users/rgbriggs/orgs","repos_url":"https://api.github.com/users/rgbriggs/repos","events_url":"https://api.github.com/users/rgbriggs/events{/privacy}","received_events_url":"https://api.github.com/users/rgbriggs/received_events","type":"User","site_admin":false},"open_issues":3,"closed_issues":6,"state":"open","created_at":"2016-10-06T02:13:53Z","updated_at":"2017-06-14T17:20:58Z","due_on":null,"closed_at":null},"comments":2,"created_at":"2017-04-04T10:07:01Z","updated_at":"2017-06-27T18:51:00Z","closed_at":null,"body":"Tracefs or debugfs were causing hundreds to thousands of PATH records to\r\nbe associated with the init_module and finit_module SYSCALL records on a few modules when the following rule was in place for startup:\r\n -a always,exit -F arch=x86_64 -S init_module -F key=mod-load\r\n \r\nAdd the new \"path\" filter list anchored in __audit_inode_child() to\r\nfilter out PATH records from uninteresting filesystem types, \"fstype\",\r\nkeying on their kernel hexadecimal 4-octet magic identifier.\r\n\r\nAn example rule would look like:\r\n -a never,path -F fstype=0x74726163 -F key=ignore_tracefs\r\n -a never,path -F fstype=0x64626720 -F key=ignore_debugfs\r\n\r\nSee: https://github.com/linux-audit/audit-kernel/issues/8\r\nTest case: https://github.com/linux-audit/audit-testsuite/issues/42\r\n"},"comment":{"url":"https://api.github.com/repos/linux-audit/audit-userspace/issues/comments/311450824","html_url":"https://github.com/linux-audit/audit-userspace/issues/15#issuecomment-311450824","issue_url":"https://api.github.com/repos/linux-audit/audit-userspace/issues/15","id":311450824,"user":{"login":"rgbriggs","id":2224635,"avatar_url":"https://avatars0.githubusercontent.com/u/2224635?v=3","gravatar_id":"","url":"https://api.github.com/users/rgbriggs","html_url":"https://github.com/rgbriggs","followers_url":"https://api.github.com/users/rgbriggs/followers","following_url":"https://api.github.com/users/rgbriggs/following{/other_user}","gists_url":"https://api.github.com/users/rgbriggs/gists{/gist_id}","starred_url":"https://api.github.com/users/rgbriggs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rgbriggs/subscriptions","organizations_url":"https://api.github.com/users/rgbriggs/orgs","repos_url":"https://api.github.com/users/rgbriggs/repos","events_url":"https://api.github.com/users/rgbriggs/events{/privacy}","received_events_url":"https://api.github.com/users/rgbriggs/received_events","type":"User","site_admin":false},"created_at":"2017-06-27T18:51:00Z","updated_at":"2017-06-27T18:51:00Z","body":"Userspace patch v3 posted upstream:\r\nhttps://www.redhat.com/archives/linux-audit/2017-June/msg00071.html\r\nUpdate feature bitmap macro to reflect the filter name change.\r\nhttps://www.redhat.com/archives/linux-audit/2017-June/msg00072.html"}} | {
"id": 52464964,
"name": "linux-audit/audit-userspace",
"url": "https://api.github.com/repos/linux-audit/audit-userspace"
} | {
"id": 2224635,
"login": "rgbriggs",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2224635?",
"url": "https://api.github.com/users/rgbriggs"
} | {
"id": 13963637,
"login": "linux-audit",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/13963637?",
"url": "https://api.github.com/orgs/linux-audit"
} | 2017-06-27T18:51:00 | 6148895750 | {"actor":{"display_login":"rgbriggs"}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.