René's URL Explorer Experiment


Title: update for node 0.5.9 · Issue #29 · nodegit/nodegit · GitHub

Open Graph Title: update for node 0.5.9 · Issue #29 · nodegit/nodegit

X Title: update for node 0.5.9 · Issue #29 · nodegit/nodegit

Description: Hello, I propose to update to the node 0.5.9 version. The patch is attached: Author: Ion Lupascu 2011-10-12 21:56:56 Committer: Parent: b958260e1ba703ce98cebf8fe39fe7f266d59560 (updated stress test) Branch: Follows...

Open Graph Description: Hello, I propose to update to the node 0.5.9 version. The patch is attached: Author: Ion Lupascu 2011-10-12 21:56:56 Committer: Parent: b958260e1ba703ce98cebf8fe39fe7f266d595...

X Description: Hello, I propose to update to the node 0.5.9 version. The patch is attached: Author: Ion Lupascu <ionlupascu@gmail.com> 2011-10-12 21:56:56 Committer: Parent: b958260e1ba703ce98cebf8fe39fe7f2...

Opengraph URL: https://github.com/nodegit/nodegit/issues/29

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"update for node 0.5.9","articleBody":"Hello,\n\nI propose to update to the node 0.5.9 version.\n\nThe patch is attached:\n\n```\nAuthor: Ion Lupascu \u003cionlupascu@gmail.com\u003e 2011-10-12 21:56:56   \nCommitter:   \nParent: b958260e1ba703ce98cebf8fe39fe7f266d59560 (updated stress test)\nBranch: \nFollows: \nPrecedes: \n\nCorrected code with node 0.5.9\n\nSigned-off-by: Ion Lupascu \u003cionlupascu@gmail.com\u003e\n\n-------------------------------- include/blob.h --------------------------------\nindex 5e7243c..34ed78b 100755\n@@ -137,7 +137,7 @@ class GitBlob : public ObjectWrap {\n      * Returns:\n      *   completion code integer\n      */\n-    static int EIO_Lookup(eio_req* req);\n+    static void EIO_Lookup(eio_req* req);\n     /**\n      * Function: EIO_AfterLookup\n      *\n\n------------------------------- include/commit.h -------------------------------\nindex e11c2cf..5fff9cf 100755\n@@ -59,7 +59,7 @@ class GitCommit : public EventEmitter {\n     static Handle\u003cValue\u003e New(const Arguments\u0026 args);\n\n     static Handle\u003cValue\u003e Lookup(const Arguments\u0026 args);\n-    static int EIO_Lookup(eio_req *req);\n+    static void EIO_Lookup(eio_req *req);\n     static int EIO_AfterLookup(eio_req *req);\n\n     static Handle\u003cValue\u003e Close(const Arguments\u0026 args);\n\n----------------------------- include/reference.h -----------------------------\nindex ea47c13..b669b95 100755\n@@ -33,7 +33,7 @@ class GitReference : public EventEmitter {\n     static Handle\u003cValue\u003e New(const Arguments\u0026 args);\n\n     static Handle\u003cValue\u003e Lookup(const Arguments\u0026 args);\n-    static int EIO_Lookup(eio_req* req);\n+    static void EIO_Lookup(eio_req* req);\n     static int EIO_AfterLookup(eio_req* req);\n\n     static Handle\u003cValue\u003e Oid(const Arguments\u0026 args);\n\n-------------------------------- include/repo.h --------------------------------\nindex 620877a..b153f60 100755\n@@ -43,7 +43,7 @@ class GitRepo : public EventEmitter {\n     static Handle\u003cValue\u003e New(const Arguments\u0026 args);\n\n     static Handle\u003cValue\u003e Open(const Arguments\u0026 args);\n-    static int EIO_Open(eio_req* req);\n+    static void EIO_Open(eio_req* req);\n     static int EIO_AfterOpen(eio_req* req);\n\n     static Handle\u003cValue\u003e Lookup(const Arguments\u0026 args);\n@@ -53,7 +53,7 @@ class GitRepo : public EventEmitter {\n     static Handle\u003cValue\u003e Free(const Arguments\u0026 args);\n\n     static Handle\u003cValue\u003e Init(const Arguments\u0026 args);\n-    static int EIO_Init(eio_req* req);\n+    static void EIO_Init(eio_req* req);\n     static int EIO_AfterInit(eio_req* req);\n\n   private:\n\n------------------------------ include/revwalk.h ------------------------------\nindex 0a86ae2..ca0cbfb 100755\n@@ -42,7 +42,7 @@ class GitRevWalk : public EventEmitter {\n     static Handle\u003cValue\u003e Hide(const Arguments\u0026 args);\n\n     static Handle\u003cValue\u003e Next(const Arguments\u0026 args);\n-    static int EIO_Next(eio_req* req);\n+    static void EIO_Next(eio_req* req);\n     static int EIO_AfterNext(eio_req* req);\n\n     static Handle\u003cValue\u003e Sorting(const Arguments\u0026 args);\n\n-------------------------------- include/tree.h --------------------------------\nindex 696d463..59df855 100755\n@@ -98,10 +98,10 @@ class GitTree : public EventEmitter {\n     static int EIO_AfterLookup(eio_req *req);\n     static Handle\u003cValue\u003e EntryCount(const Arguments\u0026 args);\n     static Handle\u003cValue\u003e EntryByIndex(const Arguments\u0026 args);\n-    static int EIO_EntryByIndex(eio_req *req);\n+    static void EIO_EntryByIndex(eio_req *req);\n     static int EIO_AfterEntryByIndex(eio_req *req);\n     static Handle\u003cValue\u003e EntryByName(const Arguments\u0026 args);\n-    static int EIO_EntryByName(eio_req *req);\n+    static void EIO_EntryByName(eio_req *req);\n     static int EIO_AfterEntryByName(eio_req *req);\n     static Handle\u003cValue\u003e SortEntries(const Arguments\u0026 args);\n     static Handle\u003cValue\u003e ClearEntries(const Arguments\u0026 args);\n\n--------------------------------- src/blob.cc ---------------------------------\nindex 4b58f17..6ff8069 100755\n@@ -111,13 +111,13 @@ Handle\u003cValue\u003e GitBlob::Lookup(const Arguments\u0026 args) {\n   return scope.Close( Undefined() );\n }\n\n-int GitBlob::EIO_Lookup(eio_req* req) {\n+void GitBlob::EIO_Lookup(eio_req* req) {\n   lookup_request* ar = static_cast\u003clookup_request* \u003e(req-\u003edata);\n\n   git_oid oid = ar-\u003eoid-\u003eGetValue();\n   ar-\u003eerr = ar-\u003eblob-\u003eLookup(ar-\u003erepo-\u003eGetValue(), \u0026oid);\n\n-  return 0;\n+  return;\n }\n\n int GitBlob::EIO_AfterLookup(eio_req* req) {\n\n-------------------------------- src/commit.cc --------------------------------\nindex d7ec943..3e2a9db 100755\n@@ -146,13 +146,13 @@ Handle\u003cValue\u003e GitCommit::Lookup(const Arguments\u0026 args) {\n   return scope.Close( Undefined() );\n }\n\n-int GitCommit::EIO_Lookup(eio_req *req) {\n+void GitCommit::EIO_Lookup(eio_req *req) {\n   lookup_request *ar = static_cast\u003clookup_request *\u003e(req-\u003edata);\n\n   git_oid oid = ar-\u003eoid-\u003eGetValue();\n   ar-\u003eerr = ar-\u003ecommit-\u003eLookup(ar-\u003erepo-\u003eGetValue(), \u0026oid);\n\n-  return 0;\n+  return;\n }\n\n int GitCommit::EIO_AfterLookup(eio_req *req) {\n\n------------------------------- src/reference.cc -------------------------------\nindex ab37f87..b1d2784 100755\n@@ -94,14 +94,14 @@ Handle\u003cValue\u003e GitReference::Lookup(const Arguments\u0026 args) {\n   return scope.Close( Undefined() );\n }\n\n-int GitReference::EIO_Lookup(eio_req *req) {\n+void GitReference::EIO_Lookup(eio_req *req) {\n   lookup_request *ar = static_cast\u003clookup_request *\u003e(req-\u003edata);\n\n   git_repository* repo = ar-\u003erepo-\u003eGetValue();\n\n   ar-\u003eerr = ar-\u003eref-\u003eLookup(repo, ar-\u003ename.c_str());\n\n-  return 0;\n+  return;\n }\n\n int GitReference::EIO_AfterLookup(eio_req *req) {\n\n--------------------------------- src/repo.cc ---------------------------------\nindex d288ef6..13e0dc1 100755\n@@ -101,12 +101,12 @@ Handle\u003cValue\u003e GitRepo::Open(const Arguments\u0026 args) {\n   return scope.Close( Undefined() );\n }\n\n-int GitRepo::EIO_Open(eio_req *req) {\n+void GitRepo::EIO_Open(eio_req *req) {\n   open_request *ar = static_cast\u003copen_request *\u003e(req-\u003edata);\n\n   ar-\u003eerr = ar-\u003erepo-\u003eOpen(ar-\u003epath.c_str());\n\n-  return 0;\n+  return;\n }\n\n int GitRepo::EIO_AfterOpen(eio_req *req) {\n@@ -258,12 +258,12 @@ Handle\u003cValue\u003e GitRepo::Init(const Arguments\u0026 args) {\n   return scope.Close( Undefined() );\n }\n\n-int GitRepo::EIO_Init(eio_req *req) {\n+void GitRepo::EIO_Init(eio_req *req) {\n   init_request *ar = static_cast\u003cinit_request *\u003e(req-\u003edata);\n\n   ar-\u003eerr = ar-\u003erepo-\u003eInit(ar-\u003epath.c_str(), ar-\u003eis_bare);\n\n-  return 0;\n+  return;\n }\n\n int GitRepo::EIO_AfterInit(eio_req *req) {\n\n-------------------------------- src/revwalk.cc --------------------------------\nindex 3cc8f47..f7a73c0 100755\n@@ -156,14 +156,14 @@ Handle\u003cValue\u003e GitRevWalk::Next(const Arguments\u0026 args) {\n   return scope.Close( Undefined() );\n }\n\n-int GitRevWalk::EIO_Next(eio_req *req) {\n+void GitRevWalk::EIO_Next(eio_req *req) {\n   next_request *ar = static_cast\u003cnext_request *\u003e(req-\u003edata);\n   git_oid oid = ar-\u003eoid-\u003eGetValue();\n\n   ar-\u003eerr = ar-\u003erevwalk-\u003eNext(\u0026oid);\n   ar-\u003eoid-\u003eSetValue(oid);\n\n-  return 0;\n+  return;\n }\n\n int GitRevWalk::EIO_AfterNext(eio_req *req) {\n\n--------------------------------- src/tree.cc ---------------------------------\nindex be10471..5311f8f 100755\n@@ -190,12 +190,12 @@ Handle\u003cValue\u003e GitTree::EntryByIndex(const Arguments\u0026 args) {\n   return scope.Close( Undefined() );\n }\n\n-int GitTree::EIO_EntryByIndex(eio_req *req) {\n+void GitTree::EIO_EntryByIndex(eio_req *req) {\n   entryindex_request *er = static_cast\u003centryindex_request *\u003e(req-\u003edata);\n\n   er-\u003eentry-\u003eSetValue(er-\u003etree-\u003eEntryByIndex(er-\u003eidx));\n\n-  return 0;\n+  return;\n }\n\n int GitTree::EIO_AfterEntryByIndex(eio_req *req) {\n@@ -256,12 +256,12 @@ Handle\u003cValue\u003e GitTree::EntryByName(const Arguments\u0026 args) {\n   return scope.Close( Undefined() );\n }\n\n-int GitTree::EIO_EntryByName(eio_req *req) {\n+void GitTree::EIO_EntryByName(eio_req *req) {\n   entryname_request *er = static_cast\u003centryname_request *\u003e(req-\u003edata);\n\n   er-\u003eentry-\u003eSetValue(er-\u003etree-\u003eEntryByName(er-\u003ename.c_str()));\n\n-  return 0;\n+  return;\n }\n\n int GitTree::EIO_AfterEntryByName(eio_req *req) {\n\n\n```\n","author":{"url":"https://github.com/tojocky","@type":"Person","name":"tojocky"},"datePublished":"2011-10-12T20:16:00.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/29/nodegit/issues/29"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:b8a05fbb-9caf-a53b-57e8-4af853ccd7a0
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9ABC:2A60AD:37A2E34:498CEAA:6A5D2622
html-safe-nonced57e4f7ca0ac9313c24f7ebb56aa7f299cd440841142f0453e37b14187b3ea0a
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5QUJDOjJBNjBBRDozN0EyRTM0OjQ5OENFQUE6NkE1RDI2MjIiLCJ2aXNpdG9yX2lkIjoiODgzNTYyNDA1MzMwODcyODg2NiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac68648160a957761c1f8dcb3bf3e5c9c20bd320fc2697f0ceb4b33ec2b42d4cb3
hovercard-subject-tagissue:1892358
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nodegit/nodegit/29/issue_layout
twitter:imagehttps://opengraph.githubassets.com/b7b14a648c20e76ea5b1fb4e9a9dc143f1d35b716698e1f51862a6a4d663ff56/nodegit/nodegit/issues/29
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/b7b14a648c20e76ea5b1fb4e9a9dc143f1d35b716698e1f51862a6a4d663ff56/nodegit/nodegit/issues/29
og:image:altHello, I propose to update to the node 0.5.9 version. The patch is attached: Author: Ion Lupascu 2011-10-12 21:56:56 Committer: Parent: b958260e1ba703ce98cebf8fe39fe7f266d595...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernametojocky
hostnamegithub.com
expected-hostnamegithub.com
None5290d7e14309ad1e76106a9c4237bd1041517e83ea182c8ab756752cb0c6940b
turbo-cache-controlno-preview
go-importgithub.com/nodegit/nodegit git https://github.com/nodegit/nodegit.git
octolytics-dimension-user_id657068
octolytics-dimension-user_loginnodegit
octolytics-dimension-repository_id1383170
octolytics-dimension-repository_nwonodegit/nodegit
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1383170
octolytics-dimension-repository_network_root_nwonodegit/nodegit
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release9c975978430e9ad293956f2bbdaf153b1bd84a99
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/nodegit/nodegit/issues/29#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodegit%2Fnodegit%2Fissues%2F29
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodegit%2Fnodegit%2Fissues%2F29
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=nodegit%2Fnodegit
Reloadhttps://github.com/nodegit/nodegit/issues/29
Reloadhttps://github.com/nodegit/nodegit/issues/29
Reloadhttps://github.com/nodegit/nodegit/issues/29
Please reload this pagehttps://github.com/nodegit/nodegit/issues/29
nodegit https://github.com/nodegit
nodegithttps://github.com/nodegit/nodegit
Notifications https://github.com/login?return_to=%2Fnodegit%2Fnodegit
Fork 698 https://github.com/login?return_to=%2Fnodegit%2Fnodegit
Star 5.8k https://github.com/login?return_to=%2Fnodegit%2Fnodegit
Code https://github.com/nodegit/nodegit
Issues 343 https://github.com/nodegit/nodegit/issues
Pull requests 20 https://github.com/nodegit/nodegit/pulls
Actions https://github.com/nodegit/nodegit/actions
Projects https://github.com/nodegit/nodegit/projects
Security and quality 0 https://github.com/nodegit/nodegit/security
Insights https://github.com/nodegit/nodegit/pulse
Code https://github.com/nodegit/nodegit
Issues https://github.com/nodegit/nodegit/issues
Pull requests https://github.com/nodegit/nodegit/pulls
Actions https://github.com/nodegit/nodegit/actions
Projects https://github.com/nodegit/nodegit/projects
Security and quality https://github.com/nodegit/nodegit/security
Insights https://github.com/nodegit/nodegit/pulse
update for node 0.5.9https://github.com/nodegit/nodegit/issues/29#top
https://github.com/tojocky
tojockyhttps://github.com/tojocky
on Oct 12, 2011https://github.com/nodegit/nodegit/issues/29#issue-1892358
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.