Skip to content

Commit 5560239

Browse files
committed
Replace links to readthedocs.io with ones using the new domain
1 parent eb77ed0 commit 5560239

27 files changed

+39
-39
lines changed

.circleci/osx_install_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# The documentation for solidity is hosted at:
66
#
7-
# https://solidity.readthedocs.org
7+
# https://docs.soliditylang.org
88
#
99
# ------------------------------------------------------------------------------
1010
# This file is part of solidity.

.circleci/soltest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# The documentation for solidity is hosted at:
66
#
7-
# https://solidity.readthedocs.org
7+
# https://docs.soliditylang.org
88
#
99
# ------------------------------------------------------------------------------
1010
# Configuration Environment Variables:

.circleci/soltest_all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# The documentation for solidity is hosted at:
66
#
7-
# https://solidity.readthedocs.org
7+
# https://docs.soliditylang.org
88
#
99
# ------------------------------------------------------------------------------
1010
# This file is part of solidity.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Contribution Guidelines
22

3-
Please see our contribution guidelines in [the Solidity documentation](https://solidity.readthedocs.io/en/latest/contributing.html).
3+
Please see our contribution guidelines in [the Solidity documentation](https://docs.soliditylang.org/en/latest/contributing.html).
44

55
Thank you for your help!

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ number [to indicate this fast pace of change](https://semver.org/#spec-item-4).
2929
## Build and Install
3030

3131
Instructions about how to build and install the Solidity compiler can be
32-
found in the [Solidity documentation](https://solidity.readthedocs.io/en/latest/installing-solidity.html#building-from-source).
32+
found in the [Solidity documentation](https://docs.soliditylang.org/en/latest/installing-solidity.html#building-from-source).
3333

3434

3535
## Example
@@ -49,20 +49,20 @@ contract HelloWorld {
4949
To get started with Solidity, you can use [Remix](https://remix.ethereum.org/), which is a
5050
browser-based IDE. Here are some example contracts:
5151

52-
1. [Voting](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#voting)
53-
2. [Blind Auction](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#blind-auction)
54-
3. [Safe remote purchase](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#safe-remote-purchase)
55-
4. [Micropayment Channel](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#micropayment-channel)
52+
1. [Voting](https://docs.soliditylang.org/en/latest/solidity-by-example.html#voting)
53+
2. [Blind Auction](https://docs.soliditylang.org/en/latest/solidity-by-example.html#blind-auction)
54+
3. [Safe remote purchase](https://docs.soliditylang.org/en/latest/solidity-by-example.html#safe-remote-purchase)
55+
4. [Micropayment Channel](https://docs.soliditylang.org/en/latest/solidity-by-example.html#micropayment-channel)
5656

5757
## Documentation
5858

59-
The Solidity documentation is hosted at [Read the docs](https://solidity.readthedocs.io).
59+
The Solidity documentation is hosted at [Read the docs](https://docs.soliditylang.org).
6060

6161
## Development
6262

6363
Solidity is still under development. Contributions are always welcome!
6464
Please follow the
65-
[Developers Guide](https://solidity.readthedocs.io/en/latest/contributing.html)
65+
[Developers Guide](https://docs.soliditylang.org/en/latest/contributing.html)
6666
if you want to help.
6767

6868
You can find our current feature and bug priorities for forthcoming

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ The Solidity team maintains the following JSON-formatted lists of patched securi
4848

4949
[1]: https://bounty.ethereum.org/
5050
[2]: https://bounty.ethereum.org/#rules
51-
[3]: https://solidity.readthedocs.io/en/develop/bugs.html
51+
[3]: https://docs.soliditylang.org/en/develop/bugs.html
5252
[4]: https://github.com/ethereum/solidity/blob/develop/docs/bugs_by_version.json

docs/using-the-compiler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ Output Description
441441
// If the language used has no contract names, this field should equal to an empty string.
442442
"ContractName": {
443443
// The Ethereum Contract ABI. If empty, it is represented as an empty array.
444-
// See https://solidity.readthedocs.io/en/develop/abi-spec.html
444+
// See https://docs.soliditylang.org/en/develop/abi-spec.html
445445
"abi": [],
446446
// See the Metadata Output documentation (serialised JSON string)
447447
"metadata": "{...}",

libsolidity/analysis/TypeChecker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3255,7 +3255,7 @@ void TypeChecker::endVisit(Literal const& _literal)
32553255
_literal.location(),
32563256
msg +
32573257
" If this is not used as an address, please prepend '00'. " +
3258-
"For more information please see https://solidity.readthedocs.io/en/develop/types.html#address-literals"
3258+
"For more information please see https://docs.soliditylang.org/en/develop/types.html#address-literals"
32593259
);
32603260
}
32613261

libsolidity/interface/ABI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
// SPDX-License-Identifier: GPL-3.0
1818
/**
19-
* Utilities to handle the Contract ABI (https://solidity.readthedocs.io/en/develop/abi-spec.html)
19+
* Utilities to handle the Contract ABI (https://docs.soliditylang.org/en/develop/abi-spec.html)
2020
*/
2121

2222
#include <libsolidity/interface/ABI.h>

libsolidity/interface/ABI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717
// SPDX-License-Identifier: GPL-3.0
1818
/**
19-
* Utilities to handle the Contract ABI (https://solidity.readthedocs.io/en/develop/abi-spec.html)
19+
* Utilities to handle the Contract ABI (https://docs.soliditylang.org/en/develop/abi-spec.html)
2020
*/
2121

2222
#pragma once

scripts/build_emscripten.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# The documentation for solidity is hosted at:
77
#
8-
# https://solidity.readthedocs.org
8+
# https://docs.soliditylang.org
99
#
1010
# ------------------------------------------------------------------------------
1111
# This file is part of solidity.

scripts/ci/build_emscripten.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# The documentation for solidity is hosted at:
1313
#
14-
# http://solidity.readthedocs.io/
14+
# https://docs.soliditylang.org
1515
#
1616
# ------------------------------------------------------------------------------
1717
# This file is part of solidity.

scripts/docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# The documentation for solidity is hosted at:
77
#
8-
# https://solidity.readthedocs.org
8+
# https://docs.soliditylang.org
99
#
1010
# ------------------------------------------------------------------------------
1111
# This file is part of solidity.

scripts/get_nightly_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# The documentation for solidity is hosted at:
88
#
9-
# https://solidity.readthedocs.org
9+
# https://docs.soliditylang.org
1010
#
1111
# ------------------------------------------------------------------------------
1212
# This file is part of solidity.

scripts/get_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# The documentation for solidity is hosted at:
77
#
8-
# https://solidity.readthedocs.org
8+
# https://docs.soliditylang.org
99
#
1010
# ------------------------------------------------------------------------------
1111
# This file is part of solidity.

scripts/install_deps.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ REM for those packages.
3737
REM
3838
REM The documentation for solidity is hosted at:
3939
REM
40-
REM http://solidity.readthedocs.org
40+
REM https://docs.soliditylang.org
4141
REM
4242
REM ---------------------------------------------------------------------------
4343
REM This file is part of solidity.

scripts/install_deps.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# This is an "infrastucture-as-code" alternative to the manual build
88
# instructions pages which we previously maintained at:
9-
# http://solidity.readthedocs.io/en/latest/installing-solidity.html
9+
# https://docs.soliditylang.org/en/latest/installing-solidity.html
1010
#
1111
# The aim of this script is to simplify things down to the following basic
1212
# flow for all supported operating systems:
@@ -23,7 +23,7 @@
2323
#
2424
# The documentation for solidity is hosted at:
2525
#
26-
# http://solidity.readthedocs.io/
26+
# https://docs.soliditylang.org
2727
#
2828
# ------------------------------------------------------------------------------
2929
# This file is part of solidity.
@@ -179,7 +179,7 @@ case $(uname -s) in
179179
#wheezy
180180
echo "Installing solidity dependencies on Debian Wheezy (7.x)."
181181
echo "ERROR - 'install_deps.sh' doesn't have Debian Wheezy support yet."
182-
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions."
182+
echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
183183
echo "If you would like to get 'install_deps.sh' working for Debian Wheezy, that would be fantastic."
184184
echo "Drop us a message at https://gitter.im/ethereum/solidity-dev."
185185
echo "See also https://github.com/ethereum/webthree-umbrella/issues/495 where we are working through Alpine support."
@@ -254,7 +254,7 @@ case $(uname -s) in
254254
#openSUSE
255255
echo "Installing solidity dependencies on openSUSE."
256256
echo "ERROR - 'install_deps.sh' doesn't have openSUSE support yet."
257-
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions."
257+
echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
258258
echo "If you would like to get 'install_deps.sh' working for openSUSE, that would be fantastic."
259259
echo "See https://github.com/ethereum/webthree-umbrella/issues/552."
260260
exit 1
@@ -311,7 +311,7 @@ case $(uname -s) in
311311
#do not try anything for betsy.
312312
echo "Linux Mint Betsy is not supported at the moment as it runs off of Debian."
313313
echo "We only support Sylvia, Sonya, Serena, Sarah, Rosa, Rafaela, Rebecca, and Qiana."
314-
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions."
314+
echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
315315
echo "If you would like to get your distro working, that would be fantastic."
316316
echo "Drop us a message at https://gitter.im/ethereum/solidity-dev."
317317
exit 1
@@ -396,7 +396,7 @@ case $(uname -s) in
396396

397397
#other Linux
398398
echo "ERROR - Unsupported or unidentified Linux distro."
399-
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions."
399+
echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
400400
echo "If you would like to get your distro working, that would be fantastic."
401401
echo "Drop us a message at https://gitter.im/ethereum/solidity-dev."
402402
exit 1
@@ -413,7 +413,7 @@ case $(uname -s) in
413413
*)
414414
#other
415415
echo "ERROR - Unsupported or unidentified operating system."
416-
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions."
416+
echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
417417
echo "If you would like to get your operating system working, that would be fantastic."
418418
echo "Drop us a message at https://gitter.im/ethereum/solidity-dev."
419419
;;

scripts/release.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ REM Batch file for implementing release flow for solidity for Windows.
55
REM
66
REM The documentation for solidity is hosted at:
77
REM
8-
REM https://solidity.readthedocs.org
8+
REM https://docs.soliditylang.org
99
REM
1010
REM ---------------------------------------------------------------------------
1111
REM This file is part of solidity.

scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
# The documentation for solidity is hosted at:
1010
#
11-
# https://solidity.readthedocs.org
11+
# https://docs.soliditylang.org
1212
#
1313
# ------------------------------------------------------------------------------
1414
# This file is part of solidity.

scripts/test_emscripten.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# The documentation for solidity is hosted at:
77
#
8-
# https://solidity.readthedocs.org
8+
# https://docs.soliditylang.org
99
#
1010
# ------------------------------------------------------------------------------
1111
# This file is part of solidity.

scripts/tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# The documentation for solidity is hosted at:
77
#
8-
# https://solidity.readthedocs.org
8+
# https://docs.soliditylang.org
99
#
1010
# ------------------------------------------------------------------------------
1111
# This file is part of solidity.

scripts/yul_coverage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#
3131
# The documentation for solidity is hosted at:
3232
#
33-
# https://solidity.readthedocs.org
33+
# https://docs.soliditylang.org
3434
#
3535
# ------------------------------------------------------------------------------
3636
# This file is part of solidity.

test/cmdlineTests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# The documentation for solidity is hosted at:
77
#
8-
# https://solidity.readthedocs.org
8+
# https://docs.soliditylang.org
99
#
1010
# ------------------------------------------------------------------------------
1111
# This file is part of solidity.

test/libsolidity/syntaxTests/nameAndTypeResolution/406_invalid_address_checksum.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ contract C {
55
}
66
}
77
// ----
8-
// SyntaxError 9429: (64-106): This looks like an address but has an invalid checksum. Correct checksummed address: "0xfA0bFc97E48458494Ccd857e1A85DC91F7F0046E". If this is not used as an address, please prepend '00'. For more information please see https://solidity.readthedocs.io/en/develop/types.html#address-literals
8+
// SyntaxError 9429: (64-106): This looks like an address but has an invalid checksum. Correct checksummed address: "0xfA0bFc97E48458494Ccd857e1A85DC91F7F0046E". If this is not used as an address, please prepend '00'. For more information please see https://docs.soliditylang.org/en/develop/types.html#address-literals

test/libsolidity/syntaxTests/nameAndTypeResolution/407_invalid_address_no_checksum.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ contract C {
55
}
66
}
77
// ----
8-
// SyntaxError 9429: (64-106): This looks like an address but has an invalid checksum. Correct checksummed address: "0xfA0bFc97E48458494Ccd857e1A85DC91F7F0046E". If this is not used as an address, please prepend '00'. For more information please see https://solidity.readthedocs.io/en/develop/types.html#address-literals
8+
// SyntaxError 9429: (64-106): This looks like an address but has an invalid checksum. Correct checksummed address: "0xfA0bFc97E48458494Ccd857e1A85DC91F7F0046E". If this is not used as an address, please prepend '00'. For more information please see https://docs.soliditylang.org/en/develop/types.html#address-literals

test/libsolidity/syntaxTests/nameAndTypeResolution/408_invalid_address_length_short.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ contract C {
55
}
66
}
77
// ----
8-
// SyntaxError 9429: (64-105): This looks like an address but is not exactly 40 hex digits. It is 39 hex digits. If this is not used as an address, please prepend '00'. For more information please see https://solidity.readthedocs.io/en/develop/types.html#address-literals
8+
// SyntaxError 9429: (64-105): This looks like an address but is not exactly 40 hex digits. It is 39 hex digits. If this is not used as an address, please prepend '00'. For more information please see https://docs.soliditylang.org/en/develop/types.html#address-literals

test/libsolidity/syntaxTests/nameAndTypeResolution/409_invalid_address_length_long.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ contract C {
55
}
66
}
77
// ----
8-
// SyntaxError 9429: (64-107): This looks like an address but is not exactly 40 hex digits. It is 41 hex digits. If this is not used as an address, please prepend '00'. For more information please see https://solidity.readthedocs.io/en/develop/types.html#address-literals
8+
// SyntaxError 9429: (64-107): This looks like an address but is not exactly 40 hex digits. It is 41 hex digits. If this is not used as an address, please prepend '00'. For more information please see https://docs.soliditylang.org/en/develop/types.html#address-literals

0 commit comments

Comments
 (0)