Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.aaron00@gmail.com>2016-05-09 00:38:41 +0300
committerThomas Dinges <blender@dingto.org>2016-05-09 00:38:41 +0300
commit5fe1bea2daecd7670a6a7688a24432e9dce96802 (patch)
tree41c653f5389a2d7e3a4c2d7c5ac402a2d3099f47 /release
parent98e2135a2d5b6689788870003804f958dea54db7 (diff)
Info Header / URLs: Fix community link + https'ification.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_info.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/space_info.py b/release/scripts/startup/bl_ui/space_info.py
index 198845792b3..1e476b63b56 100644
--- a/release/scripts/startup/bl_ui/space_info.py
+++ b/release/scripts/startup/bl_ui/space_info.py
@@ -300,16 +300,16 @@ class INFO_MT_help(Menu):
def draw(self, context):
layout = self.layout
- layout.operator("wm.url_open", text="Manual", icon='HELP').url = "http://www.blender.org/manual"
+ layout.operator("wm.url_open", text="Manual", icon='HELP').url = "https://www.blender.org/manual"
layout.operator("wm.url_open", text="Release Log", icon='URL').url = "http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/%d.%d" % bpy.app.version[:2]
layout.separator()
- layout.operator("wm.url_open", text="Blender Website", icon='URL').url = "http://www.blender.org"
+ layout.operator("wm.url_open", text="Blender Website", icon='URL').url = "https://www.blender.org"
layout.operator("wm.url_open", text="Blender Store", icon='URL').url = "https://store.blender.org"
- layout.operator("wm.url_open", text="Developer Community", icon='URL').url = "http://www.blender.org/get-involved/"
- layout.operator("wm.url_open", text="User Community", icon='URL').url = "http://www.blender.org/community/user-community"
+ layout.operator("wm.url_open", text="Developer Community", icon='URL').url = "https://www.blender.org/get-involved/"
+ layout.operator("wm.url_open", text="User Community", icon='URL').url = "https://www.blender.org/support/user-community"
layout.separator()
- layout.operator("wm.url_open", text="Report a Bug", icon='URL').url = "http://developer.blender.org/maniphest/task/create/?project=2&type=Bug"
+ layout.operator("wm.url_open", text="Report a Bug", icon='URL').url = "https://developer.blender.org/maniphest/task/create/?project=2&type=Bug"
layout.separator()
layout.operator("wm.url_open", text="Python API Reference", icon='URL').url = bpy.types.WM_OT_doc_view._prefix