From 12acf1e4f84c450872860f01eeffcaa594f2aea8 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Mon, 13 Aug 2018 21:55:30 -0400 Subject: Cleanup: Update some links to new wiki --- GNUmakefile | 6 +++--- build_files/cmake/example_scripts/cmake_linux_install.sh | 3 +-- doc/doxygen/doxygen.main.h | 6 +++--- doc/python_api/examples/bpy.app.translations.py | 6 +++--- release/scripts/startup/bl_operators/uvcalc_follow_active.py | 2 +- release/text/readme.html | 6 +++--- source/blender/python/generic/py_capi_utils.c | 2 +- source/blender/windowmanager/intern/wm_operators.c | 2 +- 8 files changed, 16 insertions(+), 17 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 277ee176ce6..ad2c265f3a9 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -216,12 +216,12 @@ help: .FORCE @echo " which are tagged to use the stricter formatting" @echo " * test_deprecated - checks for deprecation tags in our code which may need to be removed" @echo " * test_style_c - checks C/C++ conforms with blenders style guide:" - @echo " http://wiki.blender.org/index.php/Dev:Doc/CodeStyle" + @echo " https://wiki.blender.org/wiki/Source/Code_Style" @echo " * test_style_c_qtc - same as test_style but outputs QtCreator tasks format" @echo " * test_style_osl - checks OpenShadingLanguage conforms with blenders style guide:" - @echo " http://wiki.blender.org/index.php/Dev:Doc/CodeStyle" + @echo " https://wiki.blender.org/wiki/Source/Code_Style" @echo " * test_style_osl_qtc - checks OpenShadingLanguage conforms with blenders style guide:" - @echo " http://wiki.blender.org/index.php/Dev:Doc/CodeStyle" + @echo " https://wiki.blender.org/wiki/Source/Code_Style" @echo "" @echo "Static Source Code Checking (not associated with building blender)" @echo " * check_cppcheck - run blender source through cppcheck (C & C++)" diff --git a/build_files/cmake/example_scripts/cmake_linux_install.sh b/build_files/cmake/example_scripts/cmake_linux_install.sh index 34bbe104b3b..5599863ff81 100755 --- a/build_files/cmake/example_scripts/cmake_linux_install.sh +++ b/build_files/cmake/example_scripts/cmake_linux_install.sh @@ -4,7 +4,7 @@ # assumes you have dependencies installed already # See this page for more info: -# http://wiki.blender.org/index.php/Dev:Doc/Building_Blender/Linux/Generic_Distro/CMake +# https://wiki.blender.org/wiki/Building_Blender/Linux/Generic_Distro/CMake # grab blender mkdir ~/blender-git @@ -38,4 +38,3 @@ echo " Update Blender: git pull --rebase; git submodule foreach git pull --reb echo " Reconfigure Blender: cd ~/blender-git/build-cmake ; cmake ." echo " Build Blender: cd ~/blender-git/build-cmake ; make" echo "" - diff --git a/doc/doxygen/doxygen.main.h b/doc/doxygen/doxygen.main.h index d2825761b2a..0d7b5e38397 100644 --- a/doc/doxygen/doxygen.main.h +++ b/doc/doxygen/doxygen.main.h @@ -7,11 +7,11 @@ * These pages document the source code of blender. * * \subsection implinks Important Links - * - developer.blender.org with bug tracker. - * - Development documents on our wiki. + * - developer.blender.org with bug tracker. + * - Development documents on our wiki. * * \subsection blother Other - * For more information on using Blender browse to http://www.blender.org + * For more information on using Blender browse to https://www.blender.org * */ diff --git a/doc/python_api/examples/bpy.app.translations.py b/doc/python_api/examples/bpy.app.translations.py index d18344f43be..866ad3234ff 100644 --- a/doc/python_api/examples/bpy.app.translations.py +++ b/doc/python_api/examples/bpy.app.translations.py @@ -24,8 +24,8 @@ Then, call ``bpy.app.translations.register(__name__, your_dict)`` in your ``regi The ``Manage UI translations`` add-on has several functions to help you collect strings to translate, and generate the needed python code (the translation dictionary), as well as optional intermediary po files if you want some... See -`How to Translate Blender `_ and -`Using i18n in Blender Code `_ +`How to Translate Blender `_ and +`Using i18n in Blender Code `_ for more info. Module References @@ -36,7 +36,7 @@ Module References import bpy # This block can be automatically generated by UI translations addon, which also handles conversion with PO format. -# See also https://wiki.blender.org/index.php/Dev:Doc/Process/Translate_Blender#Translating_non-official_addons +# See also https://wiki.blender.org/wiki/Process/Translate_Blender#Translating_non-official_addons # It can (should) also be put in a different, specific py file. # ##### BEGIN AUTOGENERATED I18N SECTION ##### diff --git a/release/scripts/startup/bl_operators/uvcalc_follow_active.py b/release/scripts/startup/bl_operators/uvcalc_follow_active.py index 5c870849cc5..414fc9c7b32 100644 --- a/release/scripts/startup/bl_operators/uvcalc_follow_active.py +++ b/release/scripts/startup/bl_operators/uvcalc_follow_active.py @@ -19,7 +19,7 @@ # # for full docs see... -# http://mediawiki.blender.org/index.php/Scripts/Manual/UV_Calculate/Follow_active_quads +# https://docs.blender.org/manual/en/dev/editors/uv_image/uv/editing/unwrapping/mapping_types.html#follow-active-quads import bpy from bpy.types import Operator diff --git a/release/text/readme.html b/release/text/readme.html index 45bff37b025..47c8596e996 100644 --- a/release/text/readme.html +++ b/release/text/readme.html @@ -38,7 +38,7 @@ For more information, visit b

BLENDER_VERSION

The Blender Foundation and online developer community is proud to present Blender BLENDER_VERSION. - + More information about this release.


@@ -100,8 +100,8 @@ For more information on how to use Blender,

General information www.blender.org
-Full release log -wiki.blender.org/index.php/Dev:Ref/Release_Notes/BLENDER_VERSION
+Full release log +wiki.blender.org/wiki/Reference/Release_Notes/BLENDER_VERSION
Tutorials www.blender.org/support/tutorials/
Manual https://docs.blender.org/manual/en/dev/
diff --git a/source/blender/python/generic/py_capi_utils.c b/source/blender/python/generic/py_capi_utils.c index d2d78167fae..6517cc271cc 100644 --- a/source/blender/python/generic/py_capi_utils.c +++ b/source/blender/python/generic/py_capi_utils.c @@ -784,7 +784,7 @@ bool PyC_IsInterpreterActive(void) } /* Would be nice if python had this built in - * See: http://wiki.blender.org/index.php/Dev:Doc/Tools/Debugging/PyFromC + * See: https://wiki.blender.org/wiki/Tools/Debugging/PyFromC */ void PyC_RunQuicky(const char *filepath, int n, ...) { diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 3ef9e234ab4..c1efce45e03 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -1574,7 +1574,7 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *ar, void *UNUSED(ar "http://www.blender.org/foundation/donation-payment/"); uiItemStringO(col, IFACE_("Credits"), ICON_URL, "WM_OT_url_open", "url", "http://www.blender.org/about/credits/"); - BLI_snprintf(url, sizeof(url), "http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/%d.%d", + BLI_snprintf(url, sizeof(url), "https://wiki.blender.org/wiki/Reference/Release_Notes/%d.%d", BLENDER_VERSION / 100, BLENDER_VERSION % 100); uiItemStringO(col, IFACE_("Release Log"), ICON_URL, "WM_OT_url_open", "url", url); uiItemStringO(col, IFACE_("Manual"), ICON_URL, "WM_OT_url_open", "url", -- cgit v1.2.3