Cleanup: Update some links to new wiki
This commit is contained in:
@@ -216,12 +216,12 @@ help: .FORCE
|
|||||||
@echo " which are tagged to use the stricter formatting"
|
@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_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 " * 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_c_qtc - same as test_style but outputs QtCreator tasks format"
|
||||||
@echo " * test_style_osl - checks OpenShadingLanguage conforms with blenders style guide:"
|
@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 " * 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 ""
|
||||||
@echo "Static Source Code Checking (not associated with building blender)"
|
@echo "Static Source Code Checking (not associated with building blender)"
|
||||||
@echo " * check_cppcheck - run blender source through cppcheck (C & C++)"
|
@echo " * check_cppcheck - run blender source through cppcheck (C & C++)"
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
# assumes you have dependencies installed already
|
# assumes you have dependencies installed already
|
||||||
|
|
||||||
# See this page for more info:
|
# 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
|
# grab blender
|
||||||
mkdir ~/blender-git
|
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 " Reconfigure Blender: cd ~/blender-git/build-cmake ; cmake ."
|
||||||
echo " Build Blender: cd ~/blender-git/build-cmake ; make"
|
echo " Build Blender: cd ~/blender-git/build-cmake ; make"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
|
@@ -7,11 +7,11 @@
|
|||||||
* These pages document the source code of blender.
|
* These pages document the source code of blender.
|
||||||
*
|
*
|
||||||
* \subsection implinks Important Links
|
* \subsection implinks Important Links
|
||||||
* - <a href="http://developer.blender.org">developer.blender.org</a> with bug tracker.
|
* - <a href="https://developer.blender.org">developer.blender.org</a> with bug tracker.
|
||||||
* - <a href="http://wiki.blender.org/index.php/Dev:Contents">Development documents</a> on our wiki.
|
* - <a href="https://wiki.blender.org">Development documents</a> on our wiki.
|
||||||
*
|
*
|
||||||
* \subsection blother Other
|
* \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
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@@ -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
|
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
|
generate the needed python code (the translation dictionary), as well as optional intermediary po files
|
||||||
if you want some... See
|
if you want some... See
|
||||||
`How to Translate Blender <https://wiki.blender.org/index.php/Dev:Doc/Process/Translate_Blender>`_ and
|
`How to Translate Blender <https://wiki.blender.org/wiki/Process/Translate_Blender>`_ and
|
||||||
`Using i18n in Blender Code <https://wiki.blender.org/index.php/Dev:Source/Interface/Internationalization>`_
|
`Using i18n in Blender Code <https://wiki.blender.org/wiki/Source/Interface/Internationalization>`_
|
||||||
for more info.
|
for more info.
|
||||||
|
|
||||||
Module References
|
Module References
|
||||||
@@ -36,7 +36,7 @@ Module References
|
|||||||
import bpy
|
import bpy
|
||||||
|
|
||||||
# This block can be automatically generated by UI translations addon, which also handles conversion with PO format.
|
# 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.
|
# It can (should) also be put in a different, specific py file.
|
||||||
|
|
||||||
# ##### BEGIN AUTOGENERATED I18N SECTION #####
|
# ##### BEGIN AUTOGENERATED I18N SECTION #####
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
# <pep8 compliant>
|
# <pep8 compliant>
|
||||||
|
|
||||||
# for full docs see...
|
# 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
|
import bpy
|
||||||
from bpy.types import Operator
|
from bpy.types import Operator
|
||||||
|
@@ -38,7 +38,7 @@ For more information, visit <a href="http://www.blender.org/"><span class="s1">b
|
|||||||
<p class="p3"><b>BLENDER_VERSION</b></p>
|
<p class="p3"><b>BLENDER_VERSION</b></p>
|
||||||
<p class="p4">
|
<p class="p4">
|
||||||
The Blender Foundation and online developer community is proud to present Blender BLENDER_VERSION.
|
The Blender Foundation and online developer community is proud to present Blender BLENDER_VERSION.
|
||||||
<a href="http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/BLENDER_VERSION">
|
<a href="https://wiki.blender.org/wiki/Reference/Release_Notes/BLENDER_VERSION">
|
||||||
<span class="s1">More information about this release</span></a>.
|
<span class="s1">More information about this release</span></a>.
|
||||||
</p>
|
</p>
|
||||||
<p class="p2"><br></p>
|
<p class="p2"><br></p>
|
||||||
@@ -100,8 +100,8 @@ For more information on how to use Blender,
|
|||||||
<p class="p5">
|
<p class="p5">
|
||||||
<span class="s3">General information <a href="http://www.blender.org/">
|
<span class="s3">General information <a href="http://www.blender.org/">
|
||||||
<span class="s4">www.blender.org</span></a> <br>
|
<span class="s4">www.blender.org</span></a> <br>
|
||||||
Full release log <a href="http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/BLENDER_VERSION">
|
Full release log <a href="https://wiki.blender.org/wiki/Reference/Release_Notes/BLENDER_VERSION">
|
||||||
<span class="s4">wiki.blender.org/index.php/Dev:Ref/Release_Notes/BLENDER_VERSION</span></a><br>
|
<span class="s4">wiki.blender.org/wiki/Reference/Release_Notes/BLENDER_VERSION</span></a><br>
|
||||||
Tutorials <a href="http://www.blender.org/support/tutorials/">
|
Tutorials <a href="http://www.blender.org/support/tutorials/">
|
||||||
<span class="s4">www.blender.org/support/tutorials/</span></a> <br>
|
<span class="s4">www.blender.org/support/tutorials/</span></a> <br>
|
||||||
Manual <a href="https://docs.blender.org/manual/en/dev/"><span class="s4">https://docs.blender.org/manual/en/dev/</span></a><br>
|
Manual <a href="https://docs.blender.org/manual/en/dev/"><span class="s4">https://docs.blender.org/manual/en/dev/</span></a><br>
|
||||||
|
@@ -784,7 +784,7 @@ bool PyC_IsInterpreterActive(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Would be nice if python had this built in
|
/* 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, ...)
|
void PyC_RunQuicky(const char *filepath, int n, ...)
|
||||||
{
|
{
|
||||||
|
@@ -1574,7 +1574,7 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *ar, void *UNUSED(ar
|
|||||||
"http://www.blender.org/foundation/donation-payment/");
|
"http://www.blender.org/foundation/donation-payment/");
|
||||||
uiItemStringO(col, IFACE_("Credits"), ICON_URL, "WM_OT_url_open", "url",
|
uiItemStringO(col, IFACE_("Credits"), ICON_URL, "WM_OT_url_open", "url",
|
||||||
"http://www.blender.org/about/credits/");
|
"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);
|
BLENDER_VERSION / 100, BLENDER_VERSION % 100);
|
||||||
uiItemStringO(col, IFACE_("Release Log"), ICON_URL, "WM_OT_url_open", "url", url);
|
uiItemStringO(col, IFACE_("Release Log"), ICON_URL, "WM_OT_url_open", "url", url);
|
||||||
uiItemStringO(col, IFACE_("Manual"), ICON_URL, "WM_OT_url_open", "url",
|
uiItemStringO(col, IFACE_("Manual"), ICON_URL, "WM_OT_url_open", "url",
|
||||||
|
Reference in New Issue
Block a user