[Bf-blender-cvs] [5fe1bea] master: Info Header / URLs: Fix community link + https'ification.

Aaron Carlisle noreply at git.blender.org
Sun May 8 23:39:21 CEST 2016


Commit: 5fe1bea2daecd7670a6a7688a24432e9dce96802
Author: Aaron Carlisle
Date:   Sun May 8 23:38:41 2016 +0200
Branches: master
https://developer.blender.org/rB5fe1bea2daecd7670a6a7688a24432e9dce96802

Info Header / URLs: Fix community link + https'ification.

===================================================================

M	release/scripts/startup/bl_ui/space_info.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_info.py b/release/scripts/startup/bl_ui/space_info.py
index 1988457..1e476b6 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




More information about the Bf-blender-cvs mailing list