Merge pull request #10330 from ethereum/replace-readthedocs-io-links-with-soliditylang-org

Replace links to readthedocs.io with ones using the new domain
This commit is contained in:
chriseth 2020-11-18 17:43:07 +01:00 committed by GitHub
commit 4b8de0ea44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
27 changed files with 39 additions and 39 deletions

View File

@ -4,7 +4,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -4,7 +4,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# Configuration Environment Variables: # Configuration Environment Variables:

View File

@ -4,7 +4,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -1,5 +1,5 @@
# Contribution Guidelines # Contribution Guidelines
Please see our contribution guidelines in [the Solidity documentation](https://solidity.readthedocs.io/en/latest/contributing.html). Please see our contribution guidelines in [the Solidity documentation](https://docs.soliditylang.org/en/latest/contributing.html).
Thank you for your help! Thank you for your help!

View File

@ -29,7 +29,7 @@ number [to indicate this fast pace of change](https://semver.org/#spec-item-4).
## Build and Install ## Build and Install
Instructions about how to build and install the Solidity compiler can be Instructions about how to build and install the Solidity compiler can be
found in the [Solidity documentation](https://solidity.readthedocs.io/en/latest/installing-solidity.html#building-from-source). found in the [Solidity documentation](https://docs.soliditylang.org/en/latest/installing-solidity.html#building-from-source).
## Example ## Example
@ -49,20 +49,20 @@ contract HelloWorld {
To get started with Solidity, you can use [Remix](https://remix.ethereum.org/), which is a To get started with Solidity, you can use [Remix](https://remix.ethereum.org/), which is a
browser-based IDE. Here are some example contracts: browser-based IDE. Here are some example contracts:
1. [Voting](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#voting) 1. [Voting](https://docs.soliditylang.org/en/latest/solidity-by-example.html#voting)
2. [Blind Auction](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#blind-auction) 2. [Blind Auction](https://docs.soliditylang.org/en/latest/solidity-by-example.html#blind-auction)
3. [Safe remote purchase](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#safe-remote-purchase) 3. [Safe remote purchase](https://docs.soliditylang.org/en/latest/solidity-by-example.html#safe-remote-purchase)
4. [Micropayment Channel](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#micropayment-channel) 4. [Micropayment Channel](https://docs.soliditylang.org/en/latest/solidity-by-example.html#micropayment-channel)
## Documentation ## Documentation
The Solidity documentation is hosted at [Read the docs](https://solidity.readthedocs.io). The Solidity documentation is hosted at [Read the docs](https://docs.soliditylang.org).
## Development ## Development
Solidity is still under development. Contributions are always welcome! Solidity is still under development. Contributions are always welcome!
Please follow the Please follow the
[Developers Guide](https://solidity.readthedocs.io/en/latest/contributing.html) [Developers Guide](https://docs.soliditylang.org/en/latest/contributing.html)
if you want to help. if you want to help.
You can find our current feature and bug priorities for forthcoming You can find our current feature and bug priorities for forthcoming

View File

@ -48,5 +48,5 @@ The Solidity team maintains the following JSON-formatted lists of patched securi
[1]: https://bounty.ethereum.org/ [1]: https://bounty.ethereum.org/
[2]: https://bounty.ethereum.org/#rules [2]: https://bounty.ethereum.org/#rules
[3]: https://solidity.readthedocs.io/en/develop/bugs.html [3]: https://docs.soliditylang.org/en/develop/bugs.html
[4]: https://github.com/ethereum/solidity/blob/develop/docs/bugs_by_version.json [4]: https://github.com/ethereum/solidity/blob/develop/docs/bugs_by_version.json

View File

@ -441,7 +441,7 @@ Output Description
// If the language used has no contract names, this field should equal to an empty string. // If the language used has no contract names, this field should equal to an empty string.
"ContractName": { "ContractName": {
// The Ethereum Contract ABI. If empty, it is represented as an empty array. // The Ethereum Contract ABI. If empty, it is represented as an empty array.
// See https://solidity.readthedocs.io/en/develop/abi-spec.html // See https://docs.soliditylang.org/en/develop/abi-spec.html
"abi": [], "abi": [],
// See the Metadata Output documentation (serialised JSON string) // See the Metadata Output documentation (serialised JSON string)
"metadata": "{...}", "metadata": "{...}",

View File

@ -3255,7 +3255,7 @@ void TypeChecker::endVisit(Literal const& _literal)
_literal.location(), _literal.location(),
msg + msg +
" If this is not used as an address, please prepend '00'. " + " 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" "For more information please see https://docs.soliditylang.org/en/develop/types.html#address-literals"
); );
} }

View File

@ -16,7 +16,7 @@
*/ */
// SPDX-License-Identifier: GPL-3.0 // SPDX-License-Identifier: GPL-3.0
/** /**
* Utilities to handle the Contract ABI (https://solidity.readthedocs.io/en/develop/abi-spec.html) * Utilities to handle the Contract ABI (https://docs.soliditylang.org/en/develop/abi-spec.html)
*/ */
#include <libsolidity/interface/ABI.h> #include <libsolidity/interface/ABI.h>

View File

@ -16,7 +16,7 @@
*/ */
// SPDX-License-Identifier: GPL-3.0 // SPDX-License-Identifier: GPL-3.0
/** /**
* Utilities to handle the Contract ABI (https://solidity.readthedocs.io/en/develop/abi-spec.html) * Utilities to handle the Contract ABI (https://docs.soliditylang.org/en/develop/abi-spec.html)
*/ */
#pragma once #pragma once

View File

@ -5,7 +5,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -11,7 +11,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# http://solidity.readthedocs.io/ # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -5,7 +5,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -6,7 +6,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -5,7 +5,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -37,7 +37,7 @@ REM for those packages.
REM REM
REM The documentation for solidity is hosted at: REM The documentation for solidity is hosted at:
REM REM
REM http://solidity.readthedocs.org REM https://docs.soliditylang.org
REM REM
REM --------------------------------------------------------------------------- REM ---------------------------------------------------------------------------
REM This file is part of solidity. REM This file is part of solidity.

View File

@ -6,7 +6,7 @@
# #
# This is an "infrastucture-as-code" alternative to the manual build # This is an "infrastucture-as-code" alternative to the manual build
# instructions pages which we previously maintained at: # instructions pages which we previously maintained at:
# http://solidity.readthedocs.io/en/latest/installing-solidity.html # https://docs.soliditylang.org/en/latest/installing-solidity.html
# #
# The aim of this script is to simplify things down to the following basic # The aim of this script is to simplify things down to the following basic
# flow for all supported operating systems: # flow for all supported operating systems:
@ -23,7 +23,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# http://solidity.readthedocs.io/ # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.
@ -179,7 +179,7 @@ case $(uname -s) in
#wheezy #wheezy
echo "Installing solidity dependencies on Debian Wheezy (7.x)." echo "Installing solidity dependencies on Debian Wheezy (7.x)."
echo "ERROR - 'install_deps.sh' doesn't have Debian Wheezy support yet." echo "ERROR - 'install_deps.sh' doesn't have Debian Wheezy support yet."
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions." echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
echo "If you would like to get 'install_deps.sh' working for Debian Wheezy, that would be fantastic." echo "If you would like to get 'install_deps.sh' working for Debian Wheezy, that would be fantastic."
echo "Drop us a message at https://gitter.im/ethereum/solidity-dev." echo "Drop us a message at https://gitter.im/ethereum/solidity-dev."
echo "See also https://github.com/ethereum/webthree-umbrella/issues/495 where we are working through Alpine support." 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
#openSUSE #openSUSE
echo "Installing solidity dependencies on openSUSE." echo "Installing solidity dependencies on openSUSE."
echo "ERROR - 'install_deps.sh' doesn't have openSUSE support yet." echo "ERROR - 'install_deps.sh' doesn't have openSUSE support yet."
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions." echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
echo "If you would like to get 'install_deps.sh' working for openSUSE, that would be fantastic." echo "If you would like to get 'install_deps.sh' working for openSUSE, that would be fantastic."
echo "See https://github.com/ethereum/webthree-umbrella/issues/552." echo "See https://github.com/ethereum/webthree-umbrella/issues/552."
exit 1 exit 1
@ -311,7 +311,7 @@ case $(uname -s) in
#do not try anything for betsy. #do not try anything for betsy.
echo "Linux Mint Betsy is not supported at the moment as it runs off of Debian." echo "Linux Mint Betsy is not supported at the moment as it runs off of Debian."
echo "We only support Sylvia, Sonya, Serena, Sarah, Rosa, Rafaela, Rebecca, and Qiana." echo "We only support Sylvia, Sonya, Serena, Sarah, Rosa, Rafaela, Rebecca, and Qiana."
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions." echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
echo "If you would like to get your distro working, that would be fantastic." echo "If you would like to get your distro working, that would be fantastic."
echo "Drop us a message at https://gitter.im/ethereum/solidity-dev." echo "Drop us a message at https://gitter.im/ethereum/solidity-dev."
exit 1 exit 1
@ -396,7 +396,7 @@ case $(uname -s) in
#other Linux #other Linux
echo "ERROR - Unsupported or unidentified Linux distro." echo "ERROR - Unsupported or unidentified Linux distro."
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions." echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
echo "If you would like to get your distro working, that would be fantastic." echo "If you would like to get your distro working, that would be fantastic."
echo "Drop us a message at https://gitter.im/ethereum/solidity-dev." echo "Drop us a message at https://gitter.im/ethereum/solidity-dev."
exit 1 exit 1
@ -413,7 +413,7 @@ case $(uname -s) in
*) *)
#other #other
echo "ERROR - Unsupported or unidentified operating system." echo "ERROR - Unsupported or unidentified operating system."
echo "See http://solidity.readthedocs.io/en/latest/installing-solidity.html for manual instructions." echo "See https://docs.soliditylang.org/en/latest/installing-solidity.html for manual instructions."
echo "If you would like to get your operating system working, that would be fantastic." echo "If you would like to get your operating system working, that would be fantastic."
echo "Drop us a message at https://gitter.im/ethereum/solidity-dev." echo "Drop us a message at https://gitter.im/ethereum/solidity-dev."
;; ;;

View File

@ -5,7 +5,7 @@ REM Batch file for implementing release flow for solidity for Windows.
REM REM
REM The documentation for solidity is hosted at: REM The documentation for solidity is hosted at:
REM REM
REM https://solidity.readthedocs.org REM https://docs.soliditylang.org
REM REM
REM --------------------------------------------------------------------------- REM ---------------------------------------------------------------------------
REM This file is part of solidity. REM This file is part of solidity.

View File

@ -8,7 +8,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -5,7 +5,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -5,7 +5,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -30,7 +30,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -5,7 +5,7 @@
# #
# The documentation for solidity is hosted at: # The documentation for solidity is hosted at:
# #
# https://solidity.readthedocs.org # https://docs.soliditylang.org
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# This file is part of solidity. # This file is part of solidity.

View File

@ -5,4 +5,4 @@ contract C {
} }
} }
// ---- // ----
// 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 // 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

View File

@ -5,4 +5,4 @@ contract C {
} }
} }
// ---- // ----
// 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 // 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

View File

@ -5,4 +5,4 @@ contract C {
} }
} }
// ---- // ----
// 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 // 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

View File

@ -5,4 +5,4 @@ contract C {
} }
} }
// ---- // ----
// 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 // 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