From ae5bd6f6496fde6d0c3a5a6d3f7b113e16447cb0 Mon Sep 17 00:00:00 2001 From: "@RubenKelevra" Date: Wed, 1 Apr 2020 23:13:08 +0200 Subject: [PATCH 1/9] files.go: fix typos / wording --- core/commands/files.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/core/commands/files.go b/core/commands/files.go index 132598428..4300b5a90 100644 --- a/core/commands/files.go +++ b/core/commands/files.go @@ -36,11 +36,11 @@ var FilesCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Interact with unixfs files.", ShortDescription: ` -Files is an API for manipulating IPFS objects as if they were a unix +Files is an API for manipulating IPFS objects as if they were a Unix filesystem. The files facility interacts with MFS (Mutable File System). MFS acts as a -single, dynamic filesystem mount. MFS has a root CID which is transparently +single, dynamic filesystem mount. MFS has a root CID that is transparently updated when a change happens (and can be checked with "ipfs files stat /"). All files and folders within MFS are respected and will not be cleaned up @@ -61,7 +61,7 @@ to true. Use caution when setting this flag to false. It will improve performance for large numbers of file operations, but it does so at the cost of consistency guarantees. If the daemon is unexpectedly killed before running 'ipfs files flush' on the files in question, then data may be lost. This also -applies to running 'ipfs repo gc' concurrently with '--flush=false' +applies to run 'ipfs repo gc' concurrently with '--flush=false' operations. `, }, @@ -552,10 +552,10 @@ const ( var filesReadCmd = &cmds.Command{ Helptext: cmds.HelpText{ - Tagline: "Read a file in a given mfs.", + Tagline: "Read a file in a given MFS.", ShortDescription: ` Read a specified number of bytes from a file at a given offset. By default, -will read the entire file similar to unix cat. +it will read the entire file similar to the Unix cat. Examples: @@ -647,7 +647,7 @@ var filesMvCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Move files.", ShortDescription: ` -Move files around. Just like traditional unix mv. +Move files around. Just like the traditional Unix mv. Example: @@ -702,7 +702,7 @@ a beginning offset to write to. The entire length of the input will be written. If the '--create' option is specified, the file will be created if it does not -exist. Nonexistant intermediate directories will not be created unless the +exist. Nonexistent intermediate directories will not be created unless the '--parents' option is specified. Newly created files will have the same CID version and hash function of the @@ -712,7 +712,7 @@ Newly created leaves will be in the legacy format (Protobuf) if the CID version is 0, or raw if the CID version is non-zero. Use of the '--raw-leaves' option will override this behavior. -If the '--flush' option is set to false, changes will not be propogated to the +If the '--flush' option is set to false, changes will not be propagated to the merkledag root. This can make operations much faster when doing a large number of writes to a deeper directory structure. @@ -895,7 +895,7 @@ var filesFlushCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Flush a given path's data to disk.", ShortDescription: ` -Flush a given path to disk. This is only useful when other commands +Flush a given path to the disk. This is only useful when other commands are run with the '--flush=false'. `, }, From afcba4f67c6b3735297e217817c396f93d8e12b3 Mon Sep 17 00:00:00 2001 From: "@RubenKelevra" Date: Mon, 6 Apr 2020 01:28:05 +0200 Subject: [PATCH 2/9] doc.md: fix typo --- .github/ISSUE_TEMPLATE/doc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/doc.md b/.github/ISSUE_TEMPLATE/doc.md index 5a0d19821..caa35a984 100644 --- a/.github/ISSUE_TEMPLATE/doc.md +++ b/.github/ISSUE_TEMPLATE/doc.md @@ -6,7 +6,7 @@ labels: documentation #### Location - + #### Description From 3612f5a7eb01343fc3816de492dd0f7414ef7a67 Mon Sep 17 00:00:00 2001 From: "@RubenKelevra" Date: Sun, 5 Apr 2020 23:09:33 +0200 Subject: [PATCH 3/9] init-doc: fix typo --- assets/init-doc/about | Bin 1677 -> 1681 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/assets/init-doc/about b/assets/init-doc/about index eaa644b24b329c57010b7ed439f38cf9ebf75e89..f33d6de15516f91d95285f971813168ce52c8e65 100644 GIT binary patch delta 49 zcmeC>oyfbvjge7zvpeH0M&^=?)X56Wn^~MPOF}kZXZB}gc6RZbtjSsl7MZ+^^*I20 CoDbsw delta 45 ycmbQp+snJbjge7dvpeH0#>uM8n^=-EOG-B1X7*=fPEN_2tjk&n7MZ+?^*I1dgb#uM From 2b3cbceaadd819df5326d06725c387f41954ca80 Mon Sep 17 00:00:00 2001 From: "@RubenKelevra" Date: Mon, 6 Apr 2020 03:02:35 +0200 Subject: [PATCH 4/9] question.md: fix typo --- .github/ISSUE_TEMPLATE/question.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index a76e5de10..cb55e8e2a 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -1,11 +1,11 @@ --- name: 'Question/Support' -about: 'DO NOT SELECT THIS OPTION: Ask questions on discuss.ipfs.io, IRC (#ipfs on freenode), or Matrix (#ipfs:matrix.org)' +about: 'DO NOT SELECT THIS OPTION: Ask questions on discuss.ipfs.io, IRC (#ipfs on Freenode), or Matrix (#ipfs:matrix.org)' labels: question --- DO NOT ASK QUESTIONS HERE -This bug tracker is only for actionable bug reports and feature requests. Please direct any questions to https://discuss.ipfs.io or to our Matrix (#ipfs:matrix.org) or IRC (#ipfs on freenode) channels. +This bug tracker is only for actionable bug reports and feature requests. Please direct any questions to https://discuss.ipfs.io or our Matrix (#ipfs:matrix.org) or IRC (#ipfs on Freenode) channels. If you don't get an immediate response, please keep trying. From 5201f11a543fac58c3c44adad5c6fa89b81f7228 Mon Sep 17 00:00:00 2001 From: "@RubenKelevra" Date: Mon, 6 Apr 2020 03:06:24 +0200 Subject: [PATCH 5/9] help: fix typo --- assets/init-doc/help | Bin 311 -> 311 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/assets/init-doc/help b/assets/init-doc/help index d069d6ba7627eae646bbd5543efc092233eef040..5794ed642c45d7fa0360c61e5a0beb58ea36e1f3 100644 GIT binary patch delta 20 bcmdnaw4G^#HY1N`kh4N^Mq*xGY7Q3wLW%}F delta 20 bcmdnaw4G^#HX~1FQL;jEMq*xGY7Q3wMydv! From 613cd78ee956092437beb95e7032eb410caaeb89 Mon Sep 17 00:00:00 2001 From: "@RubenKelevra" Date: Mon, 6 Apr 2020 03:15:45 +0200 Subject: [PATCH 6/9] quick-start: fix typo --- assets/init-doc/quick-start | Bin 1681 -> 1681 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/assets/init-doc/quick-start b/assets/init-doc/quick-start index 9de98357f84ba94994f080fca733ee85cccbbb67..04c5ca9d2877c9033b495e09303a30a563818005 100644 GIT binary patch delta 18 ZcmbQpJCSz-7b|OcYEr1@W`5QtMgTHo1qT2C delta 18 ZcmbQpJCSz-7b|OdYEo(DW`5QtMgTQL1!n*N From 8136f022e19538571e421c277ce45f027a608928 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Mon, 20 Apr 2020 10:55:26 -0700 Subject: [PATCH 7/9] chore: re-generate compiled initial docs assets --- assets/bindata.go | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/assets/bindata.go b/assets/bindata.go index ad00a51de..854031aa9 100644 --- a/assets/bindata.go +++ b/assets/bindata.go @@ -1,4 +1,4 @@ -// Package assets Code generated by go-bindata. (@generated) DO NOT EDIT. +// Code generated for package assets by go-bindata DO NOT EDIT. (@generated) // sources: // init-doc/about // init-doc/contact @@ -85,7 +85,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _initDocAbout = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x94\x41\x6f\xe4\x36\x0c\x85\xef\xfe\x15\xef\xd6\x6c\x32\x9e\x01\x7a\x0c\x8a\x1e\x8a\x6d\xba\xc1\x02\x8b\x00\x49\x51\xf4\x16\x5a\xe2\xd8\x6c\x64\xca\x90\xe8\x99\x75\x7f\x7d\x21\xd9\x93\x4c\xb1\xb9\x24\x70\x48\x8a\xef\x23\xf9\x1a\xfc\xf0\xf3\xf8\xf4\xf0\x8c\xb6\xc5\xa3\x1a\xa7\xf6\x29\x90\xb2\x51\x5a\xf0\x20\x81\x91\x97\x6c\x3c\x36\x4d\x0d\x92\x0c\x42\x1f\x62\x47\x61\x87\x13\xa7\x2c\x51\xd9\xef\x30\x31\xa7\xd6\x62\x5b\x7e\xe3\x28\x81\xd7\xac\x3d\x1e\x0d\x2e\x8e\x9d\x28\x67\xf4\x31\x7a\x88\x67\xca\xcd\x31\xc5\x11\x7f\x88\xed\xf0\x9b\xd8\x4b\x4c\x89\xd5\x76\xf8\x4a\x9e\xc7\x20\xb4\xc3\xf3\xc3\xf3\x0e\xa4\x1e\x36\x30\xfe\xe2\xae\x16\x92\x8c\x20\x6f\x0c\x42\x16\xed\x03\xa3\x13\x6b\x1b\x5b\xb3\x91\xcf\x94\xc6\x1d\xf8\xbb\x1b\x48\x7b\xd1\x1e\xbd\x18\x62\xf7\x0f\x3b\xcb\xfb\x55\xe3\x94\xe2\x49\x3c\x67\x90\x42\x8a\xd8\x23\x39\x06\x65\x64\x19\xa7\xc0\x0d\xe5\xfa\xe0\x97\x97\x97\x27\x9c\xb9\xdb\xa1\x9b\x0d\x67\xb1\x01\x13\xa7\x91\x94\xd5\x31\xba\x59\x82\x41\x74\x8f\xbf\xe3\x0c\x47\x0a\x0a\x39\x62\x8c\xb3\x5a\x4d\x3f\xc7\x14\x7c\x43\x86\x83\x4c\xc7\xbc\xbf\x46\x37\xa5\x68\xd1\xc5\x70\xdf\xb4\xf0\x7c\xac\x58\x08\x2e\xaa\xb1\x5a\x4b\xde\x27\xce\x99\x7d\x45\x78\x21\xdf\xc2\xc5\x98\xbc\x28\x19\xe7\x4b\x2c\x3c\x07\x39\x71\x5a\xea\xbf\x37\xc0\x17\x7e\xb8\xbb\xc2\x8a\xbb\x02\xfa\xba\x89\x8f\xf9\x94\x36\x06\xca\xf0\x92\xd8\x59\x4c\x52\xd1\xac\xcf\xe7\xa6\x5d\x35\x51\x17\xf8\x2a\x07\x37\x27\x21\x3c\xfc\xf9\xfc\xfb\xa7\xeb\xa2\x67\xee\x4a\xb5\x82\xa3\x63\xcc\x45\x84\x45\x9c\x84\xcf\xf0\xd1\xcd\x23\xab\x6d\xe3\xab\x88\xb8\x6b\xda\xb5\x28\xc8\x39\xce\x59\xca\x2b\xa5\x72\x85\x4f\x86\xd7\xc1\x6c\xba\x3f\xac\x0c\x25\x1e\x7e\x99\xc8\x86\x5f\x5f\x9b\x16\x5d\x8a\xe7\xcc\x29\x23\x26\xf0\x77\x63\x2d\x5b\x98\xeb\xd3\x81\x29\x69\x79\x78\xce\x8c\xd7\x92\x7a\x7f\x38\xbc\x6e\xfa\xc2\xb2\xca\x1d\xae\x40\x5f\x70\xf6\x33\x25\x52\xe3\xd2\xcf\x6c\x03\xab\x89\x13\x5b\x3e\x14\x8e\xd1\xcf\x81\x52\xd5\x18\x55\xd9\x99\x44\x45\xa0\x85\x13\xe2\x89\x13\x48\x17\x28\xdb\x39\xa6\xb7\xf7\x31\x37\x2d\x52\x9c\xad\x2c\x63\x8d\x6c\xda\xd2\x58\xc1\xf5\xbf\xcf\xf8\xfc\xe5\x05\x37\x6f\xdb\xf4\x0e\x2e\x26\x0a\x9f\x3e\x62\x8b\xf0\xb6\xa3\xd2\xae\xd2\x58\xb2\x32\xa7\x93\x38\xbe\x84\x74\x62\xdb\x15\xb4\xa2\x79\x92\xc4\x1e\x5d\x88\xee\xed\x72\x0d\xbc\xe9\xa8\xd1\x2e\x2d\x93\xc5\x2a\xa4\xfe\xd5\x27\x9a\x06\x71\x6d\x21\xf3\xce\x63\x23\x24\xda\x17\xe0\xa5\x56\x1b\xf8\xc4\x01\x9e\xfd\x3c\x05\x71\x54\xf4\x6f\x33\xac\xb7\xd4\x27\xb1\x05\x77\x17\x57\x58\x33\x3f\xd6\x66\x4b\x67\xad\x8f\x16\x76\x77\xc8\xd2\x6b\x95\x33\x4f\x53\x4c\x57\x3b\x3a\xfd\x3c\x95\xfe\xea\x21\x9d\xc5\xf3\x8f\xfe\x02\x4b\xa4\xf9\xc8\x29\xaf\x07\x30\x05\x36\x0e\x0b\x3c\x3b\x56\x4b\x14\xe4\x5f\xf6\xa0\xe4\x06\x31\x76\x36\xa7\x02\xeb\xf6\x56\xe3\xed\x2d\xb6\x08\x4c\x51\xd4\x10\x8f\x38\x92\x84\x12\x71\xb5\xce\xce\x6b\xe9\x80\xbc\xdf\x0e\xa6\x2c\x55\xd9\xdc\xab\x43\x08\xd1\x51\x08\xcb\x6a\x54\x62\x3f\x65\x68\x3c\x83\x4e\x24\xa1\xde\xcc\x96\xb1\xda\x41\x39\x0d\x37\x88\xf6\xed\x31\x09\xab\x0f\x0b\x6e\x2e\x77\x5f\xc9\xaf\xa3\x2d\x63\xbf\x1a\xe7\x3a\xf5\x8e\xb4\x60\xb0\x01\x5e\xb2\x25\xe9\xe6\x0a\x7f\x6d\xb7\xdc\x2f\x95\x6c\xbe\xac\x45\x69\xfc\xf1\xe9\x5b\x75\xd0\xe2\xa4\x78\x5f\x8a\x35\xea\x62\x2b\xab\x8f\xd7\x8f\x79\x2a\x46\xb8\xbe\x16\x15\x4f\x5f\x1f\x9b\xb6\x96\xe3\x5c\x64\x14\xcb\xf3\xb0\x34\x67\x83\x1b\x48\xf4\x42\x9d\xac\xde\x6d\xb5\xc8\x68\x03\x27\x7c\x7b\xae\xce\x51\x8e\x71\xa4\x09\x9f\x4b\x1b\xfb\xa8\x12\x75\x87\x7d\x57\x1c\x9f\xcd\x95\x9a\xa5\xc3\xe6\xbf\x00\x00\x00\xff\xff\x27\xf1\x1f\xbc\x8d\x06\x00\x00") +var _initDocAbout = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x94\x41\x6f\xe4\xb6\x0f\xc5\xef\xfe\x14\xef\xf6\xdf\x4d\xc6\x33\xc0\xff\xb8\x28\x7a\x68\xd3\x74\x83\x05\x82\x00\x49\x51\xf4\x16\x5a\xe2\xd8\x6c\x64\xd1\x90\xe8\x99\x75\x3f\x7d\x21\x79\x9c\x4c\xb1\xb9\x24\x70\x48\x8a\xfc\x91\xef\x35\xf8\xe1\xe7\xe1\xe9\xfe\x19\x6d\x8b\x87\x68\x9c\xda\xa7\x40\x91\x8d\xd2\x82\x7b\x09\x8c\xbc\x64\xe3\xb1\x69\x6a\x90\x64\x10\xfa\xa0\x1d\x85\x1d\x4e\x9c\xb2\x68\x64\xbf\xc3\xc4\x9c\x5a\xd3\xb6\xfc\xc6\x51\x02\xaf\x59\x7b\x3c\x18\x9c\x8e\x9d\x44\xce\xe8\x55\x3d\xc4\x33\xe5\xe6\x98\x74\xc4\xef\x62\x3b\xfc\x22\xf6\xa2\x29\x71\xb4\x1d\xbe\x91\xe7\x31\x08\xed\xf0\x7c\xff\xbc\x03\x45\x0f\x1b\x18\x7f\x72\x57\x0b\x49\x46\x90\x37\x06\x21\x4b\xec\x03\xa3\x13\x6b\x1b\x5b\xb3\x91\xcf\x94\xc6\x1d\xf8\xbb\x1b\x28\xf6\x12\x7b\xf4\x62\xd0\xee\x6f\x76\x96\xf7\xeb\x8c\x53\xd2\x93\x78\xce\xa0\x08\x29\xc3\x1e\xc9\x31\x28\x23\xcb\x38\x05\x6e\x28\xd7\x07\xbf\xbe\xbc\x3c\xe1\xcc\xdd\x0e\xdd\x6c\x38\x8b\x0d\x98\x38\x8d\x14\x39\x3a\x46\x37\x4b\xb0\x56\xe2\x1e\x7f\xe9\x0c\x47\x11\x14\xb2\x62\xd4\x39\x5a\x4d\x3f\x6b\x0a\xbe\x21\xc3\x41\xa6\x63\xde\x5f\xa3\x9b\x92\x9a\x3a\x0d\x5f\x9a\x16\x9e\x8f\x15\x0b\xc1\x69\x34\x8e\xd6\x92\xf7\x89\x73\x66\x5f\x11\x6e\xe4\x5b\x38\xd5\xe4\x25\x92\x71\xde\x62\xe1\x39\xc8\x89\xd3\x52\xff\x7d\x01\xbc\xf1\xc3\xed\x15\x56\xdc\x16\xd0\xd7\x4d\x7c\xec\xa7\xb4\x31\x50\x86\x97\xc4\xce\x34\x49\x45\xb3\x3e\x9f\x9b\x76\x9d\x89\xba\xc0\x57\x39\xf8\x74\x12\xc2\xfd\x1f\xcf\xbf\x7d\xbe\x2e\x7a\xe6\xae\x54\x2b\x38\x3a\xc6\x5c\x86\x30\xc5\x49\xf8\x0c\xaf\x6e\x1e\x39\xda\x65\x7d\x15\x11\x77\x4d\xbb\x16\x05\x39\xc7\x39\x4b\x79\xa5\x54\xae\xf0\xc9\xf0\x3a\x98\x4d\x5f\x0e\x2b\x43\xd1\xc3\x4f\x13\xd9\xf0\xf3\x6b\xd3\xa2\x4b\x7a\xce\x9c\x32\x34\x81\xbf\x1b\xc7\x72\x85\xb9\x3e\x1d\x98\x52\x2c\x0f\xcf\x99\xf1\x5a\x52\xbf\x1c\x0e\xaf\x97\xf9\xc2\xb2\x8e\x3b\x5c\x81\xde\x70\xf6\x33\x25\x8a\xc6\xbc\x5e\x00\xcd\x36\x70\x34\x71\x62\xcb\xc7\x94\xa3\xfa\x39\x50\xaa\x73\x6a\x8c\xec\x4c\x34\x22\xd0\xc2\x09\x7a\xe2\x04\x8a\x0b\x22\xdb\x59\xd3\xdb\xfb\xaa\x9b\x16\x49\x67\x2b\x07\x59\x23\x9b\xb6\x34\x57\x90\xfd\xe7\x33\xee\xbe\xbe\xe0\xd3\xdb\x65\x83\x07\xa7\x89\xc2\xe7\x8f\xd8\x32\x7c\xdb\x51\x69\x39\xd2\x58\xb2\x32\xa7\x93\x38\xde\x42\x3e\x16\xde\x4a\xcc\x93\x24\xf6\xe8\x82\xba\xb7\x4d\x11\x7c\x99\xa3\x46\xbb\xb4\x4c\xa6\x75\x90\xfa\x57\x9f\x68\x1a\xc4\xb5\x85\xce\x3b\x93\x0b\x25\x89\x7d\x81\x5e\x6a\xb5\x81\x4f\x1c\xe0\xd9\xcf\x53\x10\x47\x65\xfe\xcb\x1e\xab\x9e\xfa\x24\xb6\xe0\x76\x73\x86\x35\xf3\xe3\x74\x2e\xe9\x1c\xeb\xa3\x85\xdd\x2d\xb2\xf4\xb1\x8e\x33\x4f\x93\xa6\xab\x3b\x9d\xfe\x3f\x95\xfe\xaa\x98\xce\xe2\xf9\x47\x8f\x81\x25\x8a\xf9\xc8\x29\xaf\x22\x98\x02\x1b\x87\x05\x9e\x1d\x47\x4b\x14\xe4\x1f\xf6\xa0\xe4\x06\x31\x76\x36\xa7\x02\xeb\xe6\x26\xea\xcd\x0d\x2e\x11\x98\x54\xa2\x41\x8f\x38\x92\x84\x12\x71\x75\xd2\xbf\xde\x3d\x96\x0e\xc8\xfb\x8b\x68\xca\x61\x95\xeb\xb8\x12\x43\x50\x47\x21\x2c\xab\x59\x89\xfd\x2f\x23\xea\x19\x74\x22\x09\x55\x37\x97\x8c\xd5\x12\x8a\x3c\xdc\x20\xb1\x6f\x8f\x49\x38\xfa\xb0\xe0\xd3\xa6\xfd\x4a\x7e\x5d\x6d\x59\xfb\xd5\x3a\xd7\xad\x77\x14\x0b\x06\x1b\xe0\x25\x5b\x92\x6e\xae\xf0\xd7\x76\x8b\x86\xa9\x64\xf3\x76\x16\xa5\xf1\x87\xa7\xc7\xea\xa2\xc5\x4d\xf1\x7e\x14\x6b\xd4\x66\x2d\xab\x97\xd7\x8f\x79\x2a\x66\xb8\xbe\xa6\x11\x4f\xdf\x1e\x9a\xb6\x96\x2b\x9a\xd0\x6a\x7b\x1e\x96\xe6\x6c\x70\x03\x49\xdc\xa8\x93\x55\xed\x56\x9b\x54\x1b\x38\xe1\xf1\xb9\xba\x47\x11\xe4\x48\x13\xee\x4a\x1b\x7b\x8d\xa2\x71\x87\x7d\x57\x5c\x9f\xcd\x95\x9a\xa5\xc3\xe6\xdf\x00\x00\x00\xff\xff\x6d\xaa\xeb\xd6\x91\x06\x00\x00") func initDocAboutBytes() ([]byte, error) { return bindataRead( @@ -100,7 +100,7 @@ func initDocAbout() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "init-doc/about", size: 1677, mode: os.FileMode(384), modTime: time.Unix(1539187719, 0)} + info := bindataFileInfo{name: "init-doc/about", size: 1681, mode: os.FileMode(420), modTime: time.Unix(1587405272, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -120,12 +120,12 @@ func initDocContact() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "init-doc/contact", size: 189, mode: os.FileMode(384), modTime: time.Unix(1539187719, 0)} + info := bindataFileInfo{name: "init-doc/contact", size: 189, mode: os.FileMode(384), modTime: time.Unix(1568932423, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _initDocHelp = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8e\x41\x72\xec\x20\x0c\x44\xf7\x3e\x45\x57\xfd\x35\xf6\xde\xd7\xf8\x27\x60\xb0\x30\xaa\x60\xe4\x48\x62\xa6\x7c\xfb\x14\x33\x71\x96\x74\xbf\xd7\xe8\xbf\x1c\x84\x42\xf5\xcc\xbd\x42\xc9\xa4\x6b\x22\x43\x16\x45\xe6\xb6\x71\xdb\x71\x49\x57\xbc\xe2\x85\xa8\xd2\xdb\x06\x3e\xb3\xad\xd3\x14\xf0\xdd\x39\x7d\x05\xf3\xa8\xbe\x22\x7e\x9e\xb0\x22\x2f\x48\xc6\x33\x2a\x4b\xb7\x37\x8d\x4c\xd1\xbb\x92\xcd\x53\xf8\x04\x49\x8e\x23\xb6\xcd\x86\x57\xd9\x7c\x18\xb1\xd6\xbf\xfc\xe6\x42\x18\xb7\xad\xa0\x27\xe9\x75\xb7\xd8\xc8\x92\xf2\x83\x0c\xec\x46\x35\x4f\x01\xc5\xfd\xb4\x75\x59\x76\xf6\xd2\x1f\x73\x92\x63\x19\x03\xcb\x2e\xe1\x77\x08\x5e\x08\xa6\x09\x4a\xa7\x18\xbb\xe8\x35\x05\xfc\x7b\xb7\xd2\xc0\x9a\xe6\xac\x44\x4d\x36\x9a\x45\xf7\xdb\x18\x7f\xf6\xc6\x7e\x0d\x02\xa9\xc4\xd6\xa8\x4e\x3f\x01\x00\x00\xff\xff\x2c\xe0\x8e\xed\x37\x01\x00\x00") +var _initDocHelp = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8e\xb1\x72\x84\x30\x0c\x44\x7b\xbe\x62\x67\x52\x1b\x7a\xda\x54\x69\x93\x2f\xf0\x19\x19\x6b\x62\x2c\x22\xc9\x77\xc3\xdf\x67\xb8\x0b\x29\xb5\xbb\x6f\xb5\x5f\xb2\x11\x0a\xd5\x3d\xf7\x0a\x25\x93\xae\x89\x0c\x59\x14\x99\xdb\xc2\x6d\xc5\x21\x5d\xf1\x88\x07\xa2\x4a\x6f\x0b\x78\xcf\x36\x0f\x43\xc0\x4f\xe7\xf4\x1d\xcc\xa3\xfa\x8c\xf8\x3a\x61\x45\x1e\x90\x8c\x7b\x54\x96\x6e\xcf\x34\x32\x45\xef\x4a\x36\x0e\xe1\x25\x24\xd9\xb6\xd8\x16\x3b\xb9\xca\xe6\x27\x11\x6b\xfd\xd7\xaf\x5c\x08\xe7\xb6\x19\x74\x27\x3d\x2e\x17\x0b\x59\x52\xbe\x91\x81\xdd\xa8\xe6\x21\xa0\xb8\xef\x36\x4f\xd3\xca\x5e\xfa\x6d\x4c\xb2\x4d\x67\xc1\xb4\x4a\xf8\x2b\x82\x17\x82\x69\x82\xd2\x2e\xc6\x2e\x7a\x0c\x01\x6f\x4f\x57\x1a\x58\xd3\x98\x95\xa8\xc9\x42\xa3\xe8\x7a\x11\xe7\xcf\xde\xd8\x0f\x7c\x7c\xbe\x23\x95\xd8\x1a\xd5\xe1\x37\x00\x00\xff\xff\xd3\xb7\x7e\x3c\x37\x01\x00\x00") func initDocHelpBytes() ([]byte, error) { return bindataRead( @@ -140,7 +140,7 @@ func initDocHelp() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "init-doc/help", size: 311, mode: os.FileMode(384), modTime: time.Unix(1539187719, 0)} + info := bindataFileInfo{name: "init-doc/help", size: 311, mode: os.FileMode(420), modTime: time.Unix(1587405272, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -160,12 +160,12 @@ func initDocPing() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "init-doc/ping", size: 4, mode: os.FileMode(384), modTime: time.Unix(1555022883, 0)} + info := bindataFileInfo{name: "init-doc/ping", size: 4, mode: os.FileMode(384), modTime: time.Unix(1575854776, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _initDocQuickStart = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x5d\x53\xdb\x3a\x10\x7d\xd7\xaf\xd8\x9b\xbe\x70\xe7\x8e\x71\x68\x1a\x1a\x98\x3b\xcc\xd0\x50\x92\x9b\x42\x2e\x29\x94\x02\x6f\x8a\xb5\xb2\x95\x58\x1f\x95\xe4\x18\xe7\xd7\x77\xac\x7c\x79\xa6\x40\x78\xd3\xee\x9e\xdd\x73\x8e\xd6\xf2\x07\x68\x1f\x1e\x41\x04\x93\x42\x24\x73\xb8\xf5\xd4\x7a\x42\xee\x32\xe1\x40\x38\xa0\xe0\xd0\x83\xe6\xe0\x32\x6d\x3d\xe0\x33\x95\x26\x47\x07\xa5\xf0\x19\x48\xa1\x84\xa4\x39\xe0\xb3\xc9\xa9\xa2\x5e\x68\x75\x08\xff\xf9\xba\x4f\x22\x55\x1e\xa8\x23\x14\x5a\xbf\xc2\x60\x57\x0f\x6e\x1d\x12\x42\xce\x19\x03\x0a\x5c\xe4\x08\x5e\x83\x30\xdc\x9d\x12\x02\x80\x49\xa6\xa1\x95\x61\x9e\x6b\x28\xb5\xcd\x59\x0b\xce\x42\x44\x20\x80\x80\x32\x06\xab\x04\x21\xf7\x02\x4b\x10\x3e\x34\x86\x62\x42\x3d\xfc\xeb\x33\x8c\x32\xea\xb2\xa8\xd2\x45\x94\x6a\x1f\x65\x68\xf1\x8c\x10\x72\x67\x2b\xa0\xc0\x84\xc5\xc4\x6b\x5b\x85\x36\x39\x67\xc2\x02\xd7\xba\x79\x8e\xa7\xd4\x6e\xb5\x4c\xe9\xb2\x05\x67\xeb\xf4\xf2\xe5\xb4\x5d\x97\xb6\x0a\xa3\xd5\xcc\xb5\x44\x9f\x09\x95\xba\x9d\xcc\xdc\x35\x54\xae\xd4\xbd\x5a\x59\x6b\x79\xc1\xde\xa6\xbc\x7c\xbb\x6c\xdf\x01\x79\x93\x7e\x49\x08\xf9\x8e\x1c\x2d\xaa\x04\x1b\x2e\x2c\xf2\x57\x7d\x84\x5a\x64\xdf\x2e\x47\x19\xe6\x86\x10\x32\xc0\xc6\x0a\x53\xfc\x43\x21\x44\xba\xbe\xcd\x8f\x04\x80\x09\xce\xeb\xf3\x2a\x26\xe4\xff\xe9\x0c\x13\xdf\x10\xa5\x43\xe2\xa5\x29\xfb\x11\xf1\x9a\xa4\x09\xdb\x8a\xbc\x11\x0a\xfe\x81\x41\x7f\x47\x65\x84\x0a\xbb\x7e\xd5\xa3\xd1\x90\x26\xfb\x77\x5e\xcf\xb1\x72\xdf\x18\x42\x2e\x28\x4a\xad\x76\xfc\x2c\xc4\x00\x07\xb5\x0e\xa5\x7d\x86\x16\x3c\x5a\x29\x14\xcd\xff\xde\x80\x04\x23\x84\x8c\xd1\x97\xda\xce\x43\xeb\x81\x2c\x9c\x87\x29\x82\x56\xb9\x50\xb8\x05\xba\x92\x5a\x09\x06\xd1\xba\x46\x6f\xf3\xb3\x09\xda\x34\x8f\x2c\x4a\xed\x31\x5a\x5d\x50\xfd\xae\xae\x75\xa1\x56\x1b\x3c\x28\xa9\x55\x42\xa5\xa7\xc0\x0b\x87\xf5\x2f\x80\x0b\x25\x92\x79\xf5\xd7\x96\x47\xd6\x60\x02\x90\x30\x88\xeb\x44\xfc\xa7\xef\xdc\xd5\x8f\x55\xeb\x7c\xe7\x75\x81\xd6\x09\xad\x36\x61\x61\x18\xf5\xb8\x55\xa7\xa5\xa4\x8a\xb9\x5d\xac\xb8\x48\x37\xab\x03\xd0\x06\x15\x64\xde\x9b\xd3\x38\xce\x75\x42\xf3\x4c\x3b\x7f\xda\x6d\xb7\x8f\xe2\x12\xa7\x85\x20\x84\x7c\xb1\xba\x74\x18\xf8\x42\x2a\x9c\xe0\xed\x26\x80\x85\x60\xa8\x5f\x83\xf6\xda\xbd\xf6\xca\xe1\x44\xde\x27\xc7\xcb\xe2\x5c\xe1\xb7\xd1\x52\x24\x6a\x64\xb8\xfd\xd5\x1f\x9e\xa4\xb7\xd5\xf1\x74\xd9\xfd\x34\xca\x92\xca\xf0\xd1\x63\x36\xf8\x71\x39\x29\x62\x93\xd3\xea\xc3\xa6\xf3\xee\xdb\x53\xfa\x7d\x5c\x5e\x8c\x9f\xca\xa1\x1f\xdd\xce\xfa\xe6\xd8\x76\x2f\x1f\x91\x2f\xcd\x8f\x2b\x5e\x75\x3e\x8f\x16\xd7\xfe\xe4\xa2\x5c\x3c\x38\x0c\xb7\x25\x69\xba\x7e\xa4\x7b\x34\x3d\x99\xa4\x33\x5c\xf0\xd9\xd7\x87\xc5\xd5\xcf\xc1\xe4\xe6\xe7\x74\x38\xef\x9c\xcf\x2e\xba\xb3\xde\xf8\xeb\xf8\x53\x2a\x2f\xc7\xbd\x91\xb4\xac\x9b\xf6\x3a\x71\xe2\xc2\xcf\x92\xda\x39\xd3\xa5\x02\x8b\x8a\xa1\x45\x0b\xd4\x98\xf7\x70\x3d\x7c\xbe\x3e\xe9\x8b\xc7\x87\xd9\x3d\x5e\xaa\x39\xbf\x1f\xf0\x4e\xd5\x15\xcf\x77\x4f\x1f\xcf\xfb\x78\x3b\xa8\xae\x8e\x16\x5f\x46\x8f\x47\xc3\xc5\xe4\xc6\xc4\xb2\xa6\x20\xbf\x03\x00\x00\xff\xff\xec\x47\xf9\x07\x91\x06\x00\x00") +var _initDocQuickStart = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xdb\x72\xdb\x38\x0c\x7d\xc7\x57\x60\xdd\x97\xec\xec\x28\x72\xea\x3a\x75\x32\x3b\x99\x49\x9d\xc6\xae\x9b\x78\xe3\xe6\x9e\x37\x5a\x04\x25\xda\xe2\xa5\x24\x6d\x45\xfe\xfa\x1d\xc9\xd7\x99\xe6\xf6\x46\x00\x07\x38\xe7\x10\xa2\x3e\x61\x73\xff\x00\x23\x1c\xcd\x64\x32\xc5\xeb\xc0\x5c\x00\xb8\xc9\xa4\x47\xe9\x91\xa1\xa7\x80\x46\xa0\xcf\x8c\x0b\x48\xcf\x4c\xd9\x9c\x3c\x16\x32\x64\xa8\xa4\x96\x8a\xe5\x48\xcf\x36\x67\x9a\x05\x69\xf4\x3e\xfe\x08\x55\x9f\x22\xa6\x03\x32\x0f\x0c\x1b\xbf\xeb\xc1\xbe\x1a\xdc\xd8\x07\x80\x53\xce\x91\xa1\x90\x39\x61\x30\x28\xad\xf0\xc7\x00\x88\x94\x64\x06\x1b\x19\xe5\xb9\xc1\xc2\xb8\x9c\x37\xf0\xa4\x8e\x00\x6b\x10\x32\xce\x71\x99\x00\xb8\x93\x54\xa0\x0c\x75\x63\x5d\x4c\x58\xc0\x7f\x43\x46\x51\xc6\x7c\x16\x95\x66\x16\xa5\x26\x44\x19\x39\x3a\x01\x80\x1b\x57\x22\x43\x2e\x1d\x25\xc1\xb8\xb2\x6e\x53\x53\x2e\x1d\x0a\x63\x76\xcf\xf1\x98\xb9\x8d\x96\x31\x5b\x34\xf0\x64\x95\x5e\xbc\x9c\x76\xab\xd2\x46\x61\xb4\x9c\xb9\x92\x18\x32\xa9\x53\xbf\x95\x99\xfb\x1d\x95\x4b\x75\xaf\x56\x56\x5a\x5e\xb0\xb7\x2e\x2f\xde\x2e\xbb\x0f\x40\xde\xa4\x5f\x00\xc0\x2f\x12\xe4\x48\x27\xb4\xe3\xc2\x91\x78\xd5\x47\x5d\x8b\xdc\xdb\xe5\x28\xa3\xdc\x02\x40\x8f\x76\x56\x98\xd2\x1f\x0a\x31\x32\xd5\x6d\x7e\x06\x44\x2e\x85\xa8\xce\xcb\x18\xe0\xbf\xf1\x84\x92\xb0\x23\xca\xd4\x89\x97\xa6\xbc\x8f\x88\x57\x24\xbb\xb0\x8d\xc8\x2b\xa9\xf1\x1f\xec\x75\xb7\x54\x56\xea\x7a\xd7\xaf\x7a\xb4\x06\xd3\xe4\xfd\x9d\x57\x73\x9c\x7a\x6f\x0c\xc0\x19\x23\x65\xf4\x96\x9f\xd7\x31\xe2\x5e\xa5\x43\x9b\x90\x91\xc3\x40\x4e\x49\xcd\xf2\xbf\xd7\x20\xc9\x01\x60\x48\xa1\x30\x6e\x5a\xb7\xee\xa9\x99\x0f\x38\x26\x34\x3a\x97\x9a\x36\x40\x5f\x30\xa7\xd0\x12\x39\xbf\xd3\xbb\xfb\xd9\xd4\xda\x8c\x88\x1c\x29\x13\x28\x5a\x5e\x50\xf5\xae\x2e\xcd\x4c\x2f\x37\xb8\x57\x30\xa7\xa5\x4e\x8f\x51\xcc\x3c\x55\xbf\x00\x21\xb5\x4c\xa6\xe5\x5f\x1b\x1e\x55\x81\x01\x31\xe1\x18\x57\x89\xf8\x4f\xdf\xb9\xaf\x1e\xab\x31\xf9\xd6\xeb\x9c\x9c\x97\x46\xaf\xc3\x99\xe5\x2c\xd0\x46\x9d\x51\x8a\x69\xee\xb7\xb1\x16\x32\x5d\xaf\x0e\xd1\x58\xd2\x98\x85\x60\x8f\xe3\x38\x37\x09\xcb\x33\xe3\xc3\x71\xbb\xd9\x3c\x88\x0b\x1a\xcf\x24\x00\x7c\x73\xa6\xf0\x54\xf3\xdd\xd3\xf8\xf6\x47\x7d\xc2\xb7\x9b\x10\xe7\x92\x93\x79\x0d\xda\x69\x76\x9a\x4b\x87\x23\x75\x97\x1c\x2e\x66\xa7\x9a\x7e\x0e\x16\x32\xd1\x03\x2b\xdc\xef\x6e\xff\x28\xbd\x2e\x0f\xc7\x8b\xf6\x97\x41\x96\x94\x56\x0c\x1e\xb3\xde\xed\xf9\x68\x16\xdb\x9c\x95\x9f\xd6\x9d\x37\x3f\x9f\xd2\x5f\xc3\xe2\x6c\xf8\x54\xf4\xc3\xe0\x7a\xd2\xb5\x87\xae\x7d\xfe\x48\x62\x61\x6f\x2f\x44\xd9\xfa\x3a\x98\x5f\x86\xa3\xb3\x62\xfe\xe0\xa9\xbe\x2d\xc5\xd2\xd5\x23\x7d\x47\xd3\x93\x4d\x5a\xfd\xb9\x98\x7c\x7f\x98\x5f\xdc\xf7\x46\x57\xf7\xe3\xfe\xb4\x75\x3a\x39\x6b\x4f\x3a\xc3\xef\xc3\x2f\xa9\x3a\x1f\x76\x06\xca\xf1\x76\xda\x69\xc5\x89\xaf\x7f\x96\xcc\x4d\xb9\x29\x34\x3a\xd2\x9c\x1c\x39\x64\xd6\x7e\x84\xeb\xe1\xeb\xe5\x51\x57\x3e\x3e\x4c\xee\xe8\x5c\x4f\xc5\x5d\x4f\xb4\xca\xb6\x7c\xbe\x79\xfa\x7c\xda\xa5\xeb\x5e\x79\x71\x30\xff\x36\x78\x3c\xe8\xcf\x47\x57\x36\x56\x15\x05\xfc\x1f\x00\x00\xff\xff\x18\xa0\x78\x77\x91\x06\x00\x00") func initDocQuickStartBytes() ([]byte, error) { return bindataRead( @@ -180,7 +180,7 @@ func initDocQuickStart() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "init-doc/quick-start", size: 1681, mode: os.FileMode(384), modTime: time.Unix(1555022883, 0)} + info := bindataFileInfo{name: "init-doc/quick-start", size: 1681, mode: os.FileMode(420), modTime: time.Unix(1587405272, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -200,7 +200,7 @@ func initDocReadme() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "init-doc/readme", size: 1091, mode: os.FileMode(384), modTime: time.Unix(1555022883, 0)} + info := bindataFileInfo{name: "init-doc/readme", size: 1091, mode: os.FileMode(384), modTime: time.Unix(1568932423, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -220,7 +220,7 @@ func initDocSecurityNotes() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "init-doc/security-notes", size: 1162, mode: os.FileMode(384), modTime: time.Unix(1555022883, 0)} + info := bindataFileInfo{name: "init-doc/security-notes", size: 1162, mode: os.FileMode(384), modTime: time.Unix(1575854776, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -240,7 +240,7 @@ func dirIndexHtmlDirIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "dir-index-html/dir-index.html", size: 106086, mode: os.FileMode(384), modTime: time.Unix(1559787449, 0)} + info := bindataFileInfo{name: "dir-index-html/dir-index.html", size: 106086, mode: os.FileMode(420), modTime: time.Unix(1587092650, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -260,7 +260,7 @@ func dirIndexHtmlKnowniconsTxt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "dir-index-html/knownIcons.txt", size: 311, mode: os.FileMode(384), modTime: time.Unix(1559787449, 0)} + info := bindataFileInfo{name: "dir-index-html/knownIcons.txt", size: 311, mode: os.FileMode(420), modTime: time.Unix(1587092650, 0)} a := &asset{bytes: bytes, info: info} return a, nil } From bd27cc80f8a953026aad43cd844481c73fc6f8df Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Mon, 20 Apr 2020 10:58:10 -0700 Subject: [PATCH 8/9] ci: use master interop tests --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aa46ebca8..93ef8a70e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -174,7 +174,6 @@ jobs: name: Cloning command: | git clone https://github.com/ipfs/interop.git - git -C interop checkout "fix/disable-repo-interop-test" git -C interop log -1 - restore_cache: keys: From 5f529ce0a6eb8ac7eb1a92875c7ff54be25c8bf4 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Mon, 20 Apr 2020 11:23:30 -0700 Subject: [PATCH 9/9] test: fix sharness tests for welcome docs changes --- test/sharness/lib/test-lib-hashes.sh | 2 +- test/sharness/t0054-dag-car-import-export.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sharness/lib/test-lib-hashes.sh b/test/sharness/lib/test-lib-hashes.sh index a8a3631e4..dbe8491ce 100644 --- a/test/sharness/lib/test-lib-hashes.sh +++ b/test/sharness/lib/test-lib-hashes.sh @@ -1,5 +1,5 @@ # this file defines several useful hashes used across the test codebase. # thus they can be defined + changed in one place -HASH_WELCOME_DOCS="QmS4ustL54uo8FzR9455qaxZwuMiUhyvMcX9Ba8nUH4uVv" +HASH_WELCOME_DOCS="QmQPeNsJPyVWPFDVHb77w8G42Fvo15z4bG2X8D2GhfbSXc" HASH_EMPTY_DIR="QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn" diff --git a/test/sharness/t0054-dag-car-import-export.sh b/test/sharness/t0054-dag-car-import-export.sh index 51151dd87..c5194c2f2 100755 --- a/test/sharness/t0054-dag-car-import-export.sh +++ b/test/sharness/t0054-dag-car-import-export.sh @@ -149,7 +149,7 @@ test_init_ipfs test_expect_success "basic offline export of 'getting started' dag works" ' - ipfs dag export QmS4ustL54uo8FzR9455qaxZwuMiUhyvMcX9Ba8nUH4uVv >/dev/null + ipfs dag export "$HASH_WELCOME_DOCS" >/dev/null '