Browse Source

Replace http://www.cmake.org URLs with https://cmake.org

The latter is now the preferred URL for visiting cmake.org with a
browser.  Convert using the shell code:

 git ls-files -z | xargs -0 sed -i 's|http://www\.cmake|https://cmake|g'
Brad King 10 years ago
parent
commit
da7276cf94

+ 1 - 1
Auxiliary/cmake-indent.vim

@@ -16,7 +16,7 @@
 " Version:      $Revision$
 "
 " Licence:      The CMake license applies to this file. See
-"               http://www.cmake.org/licensing
+"               https://cmake.org/licensing
 "               This implies that distribution with Vim is allowed
 
 if exists("b:did_indent")

+ 1 - 1
Auxiliary/cmake-syntax.vim

@@ -16,7 +16,7 @@
 " Version:      $Revision$
 "
 " Licence:      The CMake license applies to this file. See
-"               http://www.cmake.org/licensing
+"               https://cmake.org/licensing
 "               This implies that distribution with Vim is allowed
 
 " For version 5.x: Clear all syntax items

+ 4 - 4
CMakeCPackOptions.cmake.in

@@ -14,14 +14,14 @@ if(CPACK_GENERATOR MATCHES "NSIS")
   # tell cpack to create links to the doc files
   set(CPACK_NSIS_MENU_LINKS
     "@CMAKE_DOC_DIR@/html/index.html" "CMake Documentation"
-    "http://www.cmake.org" "CMake Web Site"
+    "https://cmake.org" "CMake Web Site"
     )
   # Use the icon from cmake-gui for add-remove programs
   set(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\cmake-gui.exe")
 
   set(CPACK_NSIS_PACKAGE_NAME "@CPACK_NSIS_PACKAGE_NAME@")
   set(CPACK_NSIS_DISPLAY_NAME "@CPACK_NSIS_PACKAGE_NAME@, a cross-platform, open-source build system")
-  set(CPACK_NSIS_HELP_LINK "http://www.cmake.org")
+  set(CPACK_NSIS_HELP_LINK "https://cmake.org")
   set(CPACK_NSIS_URL_INFO_ABOUT "http://www.kitware.com")
   set(CPACK_NSIS_CONTACT @CPACK_PACKAGE_CONTACT@)
   set(CPACK_NSIS_MODIFY_PATH ON)
@@ -35,7 +35,7 @@ if(CPACK_GENERATOR MATCHES "IFW")
 
   # Installer configuration
   set(CPACK_IFW_PACKAGE_TITLE "CMake Build Tool")
-  set(CPACK_IFW_PRODUCT_URL "http://www.cmake.org")
+  set(CPACK_IFW_PRODUCT_URL "https://cmake.org")
   @_CPACK_IFW_PACKAGE_ICON@
   set(CPACK_IFW_PACKAGE_WINDOW_ICON
     "@CMake_SOURCE_DIR@/Source/QtDialog/CMakeSetup128.png")
@@ -204,7 +204,7 @@ if("${CPACK_GENERATOR}" STREQUAL "WIX")
     set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION}.${patch}")
   endif()
 
-  set(CPACK_WIX_PROPERTY_ARPURLINFOABOUT "http://www.cmake.org")
+  set(CPACK_WIX_PROPERTY_ARPURLINFOABOUT "https://cmake.org")
 
   set(CPACK_WIX_PROPERTY_ARPCONTACT "@CPACK_PACKAGE_CONTACT@")
 

+ 1 - 1
CONTRIBUTING.rst

@@ -14,7 +14,7 @@ Please subscribe and post to the `CMake Developers List`_ to offer
 contributions.  Regular and productive contributors may be invited
 to gain direct push access.
 
-.. _`CMake Developers List`: http://www.cmake.org/mailman/listinfo/cmake-developers
+.. _`CMake Developers List`: https://cmake.org/mailman/listinfo/cmake-developers
 
 Patches
 =======

+ 5 - 5
Help/manual/LINKS.txt

@@ -1,25 +1,25 @@
 The following resources are available to get help using CMake:
 
 Home Page
- http://www.cmake.org
+ https://cmake.org
 
  The primary starting point for learning about CMake.
 
 Frequently Asked Questions
- http://www.cmake.org/Wiki/CMake_FAQ
+ https://cmake.org/Wiki/CMake_FAQ
 
  A Wiki is provided containing answers to frequently asked questions.
 
 Online Documentation
- http://www.cmake.org/documentation
+ https://cmake.org/documentation
 
  Links to available documentation may be found on this web page.
 
 Mailing List
- http://www.cmake.org/mailing-lists
+ https://cmake.org/mailing-lists
 
  For help and discussion about using cmake, a mailing list is
  provided at [email protected].  The list is member-post-only but one
  may sign up on the CMake web page.  Please first read the full
- documentation at http://www.cmake.org before posting questions to
+ documentation at https://cmake.org before posting questions to
  the list.

+ 1 - 1
Modules/CMakeDetermineCCompiler.cmake

@@ -101,7 +101,7 @@ if(NOT CMAKE_C_COMPILER_ID_RUN)
     CMAKE_C_COMPILER_ID_PLATFORM_CONTENT)
 
   # The IAR compiler produces weird output.
-  # See http://www.cmake.org/Bug/view.php?id=10176#c19598
+  # See https://cmake.org/Bug/view.php?id=10176#c19598
   list(APPEND CMAKE_C_COMPILER_ID_VENDORS IAR)
   set(CMAKE_C_COMPILER_ID_VENDOR_FLAGS_IAR )
   set(CMAKE_C_COMPILER_ID_VENDOR_REGEX_IAR "IAR .+ Compiler")

+ 1 - 1
Modules/CMakeDetermineCXXCompiler.cmake

@@ -96,7 +96,7 @@ if(NOT CMAKE_CXX_COMPILER_ID_RUN)
     CMAKE_CXX_COMPILER_ID_PLATFORM_CONTENT)
 
   # The IAR compiler produces weird output.
-  # See http://www.cmake.org/Bug/view.php?id=10176#c19598
+  # See https://cmake.org/Bug/view.php?id=10176#c19598
   list(APPEND CMAKE_CXX_COMPILER_ID_VENDORS IAR)
   set(CMAKE_CXX_COMPILER_ID_VENDOR_FLAGS_IAR )
   set(CMAKE_CXX_COMPILER_ID_VENDOR_REGEX_IAR "IAR .+ Compiler")

+ 2 - 2
Modules/CPackComponent.cmake

@@ -263,7 +263,7 @@
 #
 # The site argument is a URL where the archives for downloadable
 # components will reside, e.g.,
-# http://www.cmake.org/files/2.6.1/installer/ All of the archives
+# https://cmake.org/files/2.6.1/installer/ All of the archives
 # produced by CPack should be uploaded to that location.
 #
 # UPLOAD_DIRECTORY is the local directory where CPack will create the
@@ -301,7 +301,7 @@
 if(NOT CPackComponent_CMake_INCLUDED)
 set(CPackComponent_CMake_INCLUDED 1)
 
-# Argument-parsing macro from http://www.cmake.org/Wiki/CMakeMacroParseArguments
+# Argument-parsing macro from https://cmake.org/Wiki/CMakeMacroParseArguments
 macro(cpack_parse_arguments prefix arg_names option_names)
   set(${prefix}_DEFAULT_ARGS)
   foreach(arg_name ${arg_names})

+ 3 - 3
Modules/CPackDeb.cmake

@@ -9,7 +9,7 @@
 #
 # CPackDeb may be used to create Deb package using CPack.
 # CPackDeb is a CPack generator thus it uses the CPACK_XXX variables
-# used by CPack : http://www.cmake.org/Wiki/CMake:CPackConfiguration.
+# used by CPack : https://cmake.org/Wiki/CMake:CPackConfiguration.
 # CPackDeb generator should work on any linux host but it will produce
 # better deb package when Debian specific tools 'dpkg-xxx' are usable on
 # the build system.
@@ -23,7 +23,7 @@
 # a component GROUP name.
 #
 # You'll find a detailed usage on the wiki:
-# http://www.cmake.org/Wiki/CMake:CPackPackageGenerators#DEB_.28UNIX_only.29 .
+# https://cmake.org/Wiki/CMake:CPackPackageGenerators#DEB_.28UNIX_only.29 .
 # However as a handy reminder here comes the list of specific variables:
 #
 # .. variable:: CPACK_DEBIAN_PACKAGE_NAME
@@ -153,7 +153,7 @@
 #    You may need set :variable:`CMAKE_INSTALL_RPATH` to an appropriate value
 #    if you use this feature, because if you don't :code:`dpkg-shlibdeps`
 #    may fail to find your own shared libs.
-#    See http://www.cmake.org/Wiki/CMake_RPATH_handling.
+#    See https://cmake.org/Wiki/CMake_RPATH_handling.
 #
 #
 # .. variable:: CPACK_DEBIAN_PACKAGE_DEBUG

+ 1 - 1
Modules/CPackNSIS.cmake

@@ -115,7 +115,7 @@
 #
 #   set(CPACK_NSIS_MENU_LINKS
 #       "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake.html"
-#       "CMake Help" "http://www.cmake.org" "CMake Web Site")
+#       "CMake Help" "https://cmake.org" "CMake Web Site")
 #
 
 #=============================================================================

+ 2 - 2
Modules/CPackRPM.cmake

@@ -9,7 +9,7 @@
 #
 # CPackRPM may be used to create RPM package using CPack.  CPackRPM is a
 # CPack generator thus it uses the CPACK_XXX variables used by CPack :
-# http://www.cmake.org/Wiki/CMake:CPackConfiguration
+# https://cmake.org/Wiki/CMake:CPackConfiguration
 #
 # However CPackRPM has specific features which are controlled by the
 # specifics CPACK_RPM_XXX variables.  CPackRPM is a component aware
@@ -24,7 +24,7 @@
 #
 # ::
 #
-#   http://www.cmake.org/Wiki/CMake:CPackPackageGenerators#RPM_.28Unix_Only.29
+#   https://cmake.org/Wiki/CMake:CPackPackageGenerators#RPM_.28Unix_Only.29
 #
 # However as a handy reminder here comes the list of specific variables:
 #

+ 2 - 2
Modules/Compiler/IAR.cmake

@@ -1,6 +1,6 @@
 # This file is processed when the IAR compiler is used for a C or C++ file
 # Documentation can be downloaded here: http://www.iar.com/website1/1.0.1.0/675/1/
-# The initial feature request is here: http://www.cmake.org/Bug/view.php?id=10176
+# The initial feature request is here: https://cmake.org/Bug/view.php?id=10176
 # It also contains additional links and information.
 
 if(_IAR_CMAKE_LOADED)
@@ -39,7 +39,7 @@ endif()
 
 if(NOT IAR_TARGET_ARCHITECTURE)
   message(FATAL_ERROR "The IAR compiler for this architecture is not yet supported "
-          " by CMake. Please go to http://www.cmake.org/Bug and enter a feature request there.")
+          " by CMake. Please go to https://cmake.org/Bug and enter a feature request there.")
 endif()
 
 set(CMAKE_LINKER "${CMAKE_IAR_LINKER}" CACHE FILEPATH "The IAR linker" FORCE)

+ 1 - 1
Modules/FindHDF5.cmake

@@ -307,7 +307,7 @@ if( NOT HDF5_FOUND )
             if( UNIX AND HDF5_USE_STATIC_LIBRARIES )
                 # According to bug 1643 on the CMake bug tracker, this is the
                 # preferred method for searching for a static library.
-                # See http://www.cmake.org/Bug/view.php?id=1643.  We search
+                # See https://cmake.org/Bug/view.php?id=1643.  We search
                 # first for the full static library name, but fall back to a
                 # generic search on the name if the static search fails.
                 set( THIS_LIBRARY_SEARCH_DEBUG lib${LIB}d.a ${LIB}d )

+ 2 - 2
Modules/FindwxWidgets.cmake

@@ -193,8 +193,8 @@ set(wxWidgets_CXX_FLAGS    "")
 # to prevent UsewxWidgets.cmake from using SYSTEM.
 #
 # See cmake mailing list discussions for more info:
-#   http://www.cmake.org/pipermail/cmake/2008-April/021115.html
-#   http://www.cmake.org/pipermail/cmake/2008-April/021146.html
+#   https://cmake.org/pipermail/cmake/2008-April/021115.html
+#   https://cmake.org/pipermail/cmake/2008-April/021146.html
 #
 if(APPLE OR CMAKE_CXX_PLATFORM_ID MATCHES "OpenBSD")
   set(wxWidgets_INCLUDE_DIRS_NO_SYSTEM 1)

+ 1 - 1
Modules/readme.txt

@@ -1,4 +1,4 @@
 See the "Find Modules" section of the cmake-developer(7) manual page.
 
 For more information about how to contribute modules to CMake, see this page:
-http://www.cmake.org/Wiki/CMake:Module_Maintainers
+https://cmake.org/Wiki/CMake:Module_Maintainers

+ 6 - 6
README.rst

@@ -8,8 +8,8 @@ CMake is a cross-platform, open-source build system generator.
 For full documentation visit the `CMake Home Page`_ and the
 `CMake Documentation Page`_.
 
-.. _`CMake Home Page`: http://www.cmake.org
-.. _`CMake Documentation Page`: http://www.cmake.org/cmake/help/documentation.html
+.. _`CMake Home Page`: https://cmake.org
+.. _`CMake Documentation Page`: https://cmake.org/cmake/help/documentation.html
 
 CMake is maintained and supported by `Kitware`_ and developed in
 collaboration with a productive community of contributors.
@@ -37,7 +37,7 @@ it should not be a major problem to port CMake to this platform.
 Subscribe and post to the `CMake Users List`_ to ask if others have
 had experience with the platform.
 
-.. _`CMake Users List`: http://www.cmake.org/mailman/listinfo/cmake
+.. _`CMake Users List`: https://cmake.org/mailman/listinfo/cmake
 
 Building CMake from Scratch
 ---------------------------
@@ -63,7 +63,7 @@ You need to download and install a binary release of CMake in order to build
 CMake.  You can get these releases from the `CMake Download Page`_ .  Then
 proceed with the instructions below.
 
-.. _`CMake Download Page`: http://www.cmake.org/cmake/resources/software.html
+.. _`CMake Download Page`: https://cmake.org/cmake/resources/software.html
 
 Building CMake with CMake
 -------------------------
@@ -73,7 +73,7 @@ run the installed CMake on the sources of this CMake with your preferred
 options and generators. Then build it and install it.
 For instructions how to do this, see documentation on `Running CMake`_.
 
-.. _`Running CMake`: http://www.cmake.org/cmake/help/runningcmake.html
+.. _`Running CMake`: https://cmake.org/cmake/help/runningcmake.html
 
 Reporting Bugs
 ==============
@@ -89,7 +89,7 @@ If you have found a bug:
 3. Finally, if the issue is not resolved by the above steps, open
    an entry in the `CMake Issue Tracker`_.
 
-.. _`CMake Issue Tracker`: http://www.cmake.org/Bug
+.. _`CMake Issue Tracker`: https://cmake.org/Bug
 
 Contributing
 ============

+ 1 - 1
Source/cmPolicies.h

@@ -235,7 +235,7 @@ class cmPolicy;
  * \brief Handles changes in CMake behavior and policies
  *
  * See the cmake wiki section on
- * <a href="http://www.cmake.org/Wiki/CMake/Policies">policies</a>
+ * <a href="https://cmake.org/Wiki/CMake/Policies">policies</a>
  * for an overview of this class's purpose
  */
 class cmPolicies

+ 1 - 1
Templates/CPack.GenericDescription.txt

@@ -1,5 +1,5 @@
 DESCRIPTION
 ===========
 
-This is an installer created using CPack (http://www.cmake.org). No additional installation instructions provided.
+This is an installer created using CPack (https://cmake.org). No additional installation instructions provided.
 

+ 1 - 1
Templates/CPack.GenericLicense.txt

@@ -1,5 +1,5 @@
 LICENSE
 =======
 
-This is an installer created using CPack (http://www.cmake.org). No license provided.
+This is an installer created using CPack (https://cmake.org). No license provided.
 

+ 1 - 1
Tests/CPackComponents/CMakeLists.txt

@@ -72,7 +72,7 @@ set(CPACK_PACKAGE_INSTALL_DIRECTORY "CPack Component Example")
 set(CPACK_NSIS_MENU_LINKS
   "ftp://ftpserver" "Test Ftp Link"
   "ftps://ftpsserver" "Test Ftps Link"
-  "http://www.cmake.org" "CMake Web Site"
+  "https://cmake.org" "CMake Web Site"
   "https://github.com/" "Test Https Link"
   "mailto:[email protected]" "Test MailTo Link"
   "news://newsserver" "Test News Link"

+ 1 - 1
Tests/CPackComponentsDEB/license.txt

@@ -1,3 +1,3 @@
 LICENSE
 -------
-This is an installer created using CPack (http://www.cmake.org). No license provided.
+This is an installer created using CPack (https://cmake.org). No license provided.

+ 1 - 1
Tests/CPackComponentsForAll/license.txt

@@ -1,3 +1,3 @@
 LICENSE
 -------
-This is an installer created using CPack (http://www.cmake.org). No license provided.
+This is an installer created using CPack (https://cmake.org). No license provided.

+ 1 - 1
Tests/CPackWiXGenerator/CMakeLists.txt

@@ -64,7 +64,7 @@ set(CPACK_WIX_PATCH_FILE "${CMAKE_CURRENT_SOURCE_DIR}/patch.xml")
 set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/license.txt")
 
 set(CPACK_WIX_PROPERTY_ARPCOMMENTS "My Custom ARPCOMMENTS")
-set(CPACK_WIX_PROPERTY_ARPHELPLINK "http://www.cmake.org")
+set(CPACK_WIX_PROPERTY_ARPHELPLINK "https://cmake.org")
 
 include(CPack)
 

+ 1 - 1
Tests/Contracts/Trilinos/CMakeLists.txt

@@ -27,7 +27,7 @@ endif()
 message(STATUS "HOME='${HOME}'")
 
 if(NOT DEFINED url)
-  set(url "http://www.cmake.org/files/contracts/trilinos-11.4.1.tar.gz")
+  set(url "https://cmake.org/files/contracts/trilinos-11.4.1.tar.gz")
 endif()
 message(STATUS "url='${url}'")
 

+ 1 - 1
Tests/ExternalProject/Example/CMakeLists.txt

@@ -5,7 +5,7 @@ include(ExternalProject)
 
 ExternalProject_Add(
   cmake281
-  URL http://www.cmake.org/files/v2.8/cmake-2.8.1.tar.gz
+  URL https://cmake.org/files/v2.8/cmake-2.8.1.tar.gz
   CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
   BUILD_COMMAND ""
 )

+ 1 - 1
Utilities/Release/Cygwin/README.cygwin.in

@@ -8,7 +8,7 @@ Build requirements
   make
 
 Canonical homepage:
-  http://www.cmake.org
+  https://cmake.org
 
 Canonical download:
   ftp://www.cmake.org/pub/cmake/

+ 1 - 1
Utilities/Sphinx/templates/layout.html

@@ -5,7 +5,7 @@
          style="vertical-align: middle; margin-top: -2px" />
   </li>
   <li>
-    <a href="http://www.cmake.org/">CMake</a>{{ reldelim1 }}
+    <a href="https://cmake.org/">CMake</a>{{ reldelim1 }}
   </li>
   <li>
     <a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a>{{ reldelim1 }}