-
Notifications
You must be signed in to change notification settings - Fork 37.8k
Replace hidden service
with onion service
#19638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Could it be done with a scripted diff? |
Beyond the question of whether this is a change worth making and worth the review time it is requesting, it looks like this PR is a drive-by search and replace that touches a number of files that are auto-generated or not usually changed. |
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. ConflictsReviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first. |
thx @RiccardoMasutti , for pointing this out and I somewhat like this kind of compliance on paper since disguise is the sister of hidden, tor source code;
names it, what it should be ? So imho facts become not that different by wording. The moment even |
src/qt/locale/bitcoin_en.ts
Outdated
@@ -1438,7 +1438,7 @@ | |||
</message> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not make manual changes to this file. It's automatically updated with translation updates.
@@ -689,7 +689,7 @@ and git merge commit are mentioned. | |||
- #8567 `85d4e21` Add default port numbers to REST doc (djpnewton) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't touch historical release notes.
Concept ACK. I think 'onion service' describes more concretely than 'hidden service' what is being talked about.
Yes. And please squash this into one commit when done. |
doc/man/bitcoin-qt.1
Outdated
@@ -193,7 +193,7 @@ Accept connections from outside (default: 1 if no \fB\-proxy\fR or \fB\-connect\ | |||
.HP | |||
\fB\-listenonion\fR | |||
.IP | |||
Automatically create Tor hidden service (default: 1) | |||
Automatically create Tor onion service (default: 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The first line of each of the man
files states: DO NOT MODIFY THIS FILE! It was generated by...
Concept ACK assuming @laanwj's feedback is addressed Welcome as a contributor @RiccardoMasutti! :) |
You need to squash your changes into a single commit, and use a proper commit message. i.e: doc: replace hidden service with onion service
For a couple of years, Tor documentation has made
the term hidden service obsolete, in favor of onion
service.
This PR updates all the references in the code base. |
ea28d69
to
6beb0d3
Compare
42667f9
to
f2cd7a4
Compare
ACK f2cd7a4 -- patch looks correct |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change here:
bitcoin/src/qt/forms/optionsdialog.ui
Lines 460 to 467 in 19f812c
<widget class="QCheckBox" name="connectSocksTor"> | |
<property name="toolTip"> | |
<string>Connect to the Bitcoin network through a separate SOCKS5 proxy for Tor hidden services.</string> | |
</property> | |
<property name="text"> | |
<string>Use separate SOCKS&5 proxy to reach peers via Tor hidden services:</string> | |
</property> | |
</widget> |
Yes and thanks for sticking with this, most admit that it's not really documented anywhere which files you are and are not allowed to change. |
For a couple of years, Tor documentation has made the term hidden service obsolete, in favor of onion service. This PR updates all the references in the code base.
985b14b
to
1e72b68
Compare
@laanwj ready to merge |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code review ACK 1e72b68 |
1e72b68 Replace `hidden service` with `onion service` (Riccardo Masutti) Pull request description: For a couple of years, Tor has made the term `hidden service` obsolete, in favor of `onion service`: [Tor Project | Onion Services](https://community.torproject.org/onion-services/) This PR updates all the references. ACKs for top commit: laanwj: Code review ACK 1e72b68 hebasto: ACK 1e72b68, tested on Linux Mint 20 (x86_64). Tree-SHA512: 6a29e828e1c5e1ec934b5666f67326dbd84d77c8b2641f6740abac6d3d5923b7729763b9ff2230390b0bb23359a5f3731ccd9a30011ca69004f7c820aed17262
32045bb [doc] Tidy up Tor doc (more stringent) (wodry) Pull request description: This is a follow up to bitcoin/bitcoin#19638 that left two deprecated "hidden service/server" naming occurences. It also shall make the chapter titles regarding creation of onion services stringent and easy to read and distinguish. It removes the one and only reference to the testnet (here the testnet onion service port), as it is not explained that it references to the testnet and I do not know why it is mentioned there. It is only confusing. Also, as said, the testnet is not referenced at any other place in this document. ACKs for top commit: practicalswift: ACK 32045bb laanwj: Review ACK 32045bb RiccardoMasutti: ACK 32045bb Tree-SHA512: c623387b76d68845c0fa47f67a6f8ef70c9c560e3f8f8754e45a4f51e43198c2092be789588acd4ada607f42fbe62d51a4b1888d81b225df19b6557a081835c0
Summary: For a couple of years, Tor documentation has made the term hidden service obsolete, in favor of onion service. This PR updates all the references in the code base. This is a backport of [[bitcoin/bitcoin#19638 | core#19638]] Test Plan: proof-reading Reviewers: #bitcoin_abc, majcosta Reviewed By: #bitcoin_abc, majcosta Differential Revision: https://reviews.bitcoinabc.org/D10062
For a couple of years, Tor has made the term
hidden service
obsolete, in favor ofonion service
: Tor Project | Onion ServicesThis PR updates all the references.