Skip to content

Commit

Permalink
Replace links to readthedocs.io with ones using the new domain
Browse files Browse the repository at this point in the history
  • Loading branch information
cameel committed Nov 18, 2020
1 parent eb77ed0 commit 5560239
Show file tree
Hide file tree
Showing 27 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .circleci/osx_install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion .circleci/soltest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# Configuration Environment Variables:
Expand Down
2 changes: 1 addition & 1 deletion .circleci/soltest_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 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!
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ number [to indicate this fast pace of change](https://semver.org/#spec-item-4).
## Build and Install

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
Expand All @@ -49,20 +49,20 @@ contract HelloWorld {
To get started with Solidity, you can use [Remix](https://remix.ethereum.org/), which is a
browser-based IDE. Here are some example contracts:

1. [Voting](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#voting)
2. [Blind Auction](https://solidity.readthedocs.io/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)
4. [Micropayment Channel](https://solidity.readthedocs.io/en/latest/solidity-by-example.html#micropayment-channel)
1. [Voting](https://docs.soliditylang.org/en/latest/solidity-by-example.html#voting)
2. [Blind Auction](https://docs.soliditylang.org/en/latest/solidity-by-example.html#blind-auction)
3. [Safe remote purchase](https://docs.soliditylang.org/en/latest/solidity-by-example.html#safe-remote-purchase)
4. [Micropayment Channel](https://docs.soliditylang.org/en/latest/solidity-by-example.html#micropayment-channel)

## 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

Solidity is still under development. Contributions are always welcome!
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.

You can find our current feature and bug priorities for forthcoming
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ The Solidity team maintains the following JSON-formatted lists of patched securi

[1]: https://bounty.ethereum.org/
[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
2 changes: 1 addition & 1 deletion docs/using-the-compiler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ Output Description
// If the language used has no contract names, this field should equal to an empty string.
"ContractName": {
// 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": [],
// See the Metadata Output documentation (serialised JSON string)
"metadata": "{...}",
Expand Down
2 changes: 1 addition & 1 deletion libsolidity/analysis/TypeChecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3255,7 +3255,7 @@ void TypeChecker::endVisit(Literal const& _literal)
_literal.location(),
msg +
" 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"
);
}

Expand Down
2 changes: 1 addition & 1 deletion libsolidity/interface/ABI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
// 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>
Expand Down
2 changes: 1 addition & 1 deletion libsolidity/interface/ABI.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
// 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
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_emscripten.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/build_emscripten.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# The documentation for solidity is hosted at:
#
# http://solidity.readthedocs.io/
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/get_nightly_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/get_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_deps.bat
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ REM for those packages.
REM
REM The documentation for solidity is hosted at:
REM
REM http://solidity.readthedocs.org
REM https://docs.soliditylang.org
REM
REM ---------------------------------------------------------------------------
REM This file is part of solidity.
Expand Down
14 changes: 7 additions & 7 deletions scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
# This is an "infrastucture-as-code" alternative to the manual build
# 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
# flow for all supported operating systems:
Expand All @@ -23,7 +23,7 @@
#
# The documentation for solidity is hosted at:
#
# http://solidity.readthedocs.io/
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down Expand Up @@ -179,7 +179,7 @@ case $(uname -s) in
#wheezy
echo "Installing solidity dependencies on Debian Wheezy (7.x)."
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 "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."
Expand Down Expand Up @@ -254,7 +254,7 @@ case $(uname -s) in
#openSUSE
echo "Installing solidity dependencies on openSUSE."
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 "See https://github.com/ethereum/webthree-umbrella/issues/552."
exit 1
Expand Down Expand Up @@ -311,7 +311,7 @@ case $(uname -s) in
#do not try anything for betsy.
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 "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 "Drop us a message at https://gitter.im/ethereum/solidity-dev."
exit 1
Expand Down Expand Up @@ -396,7 +396,7 @@ case $(uname -s) in

#other Linux
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 "Drop us a message at https://gitter.im/ethereum/solidity-dev."
exit 1
Expand All @@ -413,7 +413,7 @@ case $(uname -s) in
*)
#other
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 "Drop us a message at https://gitter.im/ethereum/solidity-dev."
;;
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ REM Batch file for implementing release flow for solidity for Windows.
REM
REM The documentation for solidity is hosted at:
REM
REM https://solidity.readthedocs.org
REM https://docs.soliditylang.org
REM
REM ---------------------------------------------------------------------------
REM This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/test_emscripten.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion scripts/yul_coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
2 changes: 1 addition & 1 deletion test/cmdlineTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# The documentation for solidity is hosted at:
#
# https://solidity.readthedocs.org
# https://docs.soliditylang.org
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5560239

Please sign in to comment.