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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-13 15:02:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-13 15:20:48 +0300
commitd555f6a4abc50ab7fbf5ecd9d85965aeef0f4335 (patch)
treeb664ed422d0aa858d143a2829935f1d2911f6b02 /release/scripts/modules
parent3afc77655e94aea3ba56ca71cee2f89ec640dc2b (diff)
WM: pre-fill bug-reports
D4507 by @LazyDodo w/ edits & moved into own module.
Diffstat (limited to 'release/scripts/modules')
-rw-r--r--release/scripts/modules/bl_ui_utils/__init__.py0
-rw-r--r--release/scripts/modules/bl_ui_utils/bug_report_url.py76
2 files changed, 76 insertions, 0 deletions
diff --git a/release/scripts/modules/bl_ui_utils/__init__.py b/release/scripts/modules/bl_ui_utils/__init__.py
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/release/scripts/modules/bl_ui_utils/__init__.py
diff --git a/release/scripts/modules/bl_ui_utils/bug_report_url.py b/release/scripts/modules/bl_ui_utils/bug_report_url.py
new file mode 100644
index 00000000000..510ea5d7e57
--- /dev/null
+++ b/release/scripts/modules/bl_ui_utils/bug_report_url.py
@@ -0,0 +1,76 @@
+# ##### BEGIN GPL LICENSE BLOCK #####
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# ##### END GPL LICENSE BLOCK #####
+
+# <pep8-80 compliant>
+
+def url_prefill_from_blender():
+ import bpy
+ import bgl
+ import struct
+ import platform
+ import urllib.parse
+ import io
+
+ fh = io.StringIO()
+
+ fh.write("**System Information**\n")
+ fh.write(
+ "Operating system: {!s} {!s} Bits\n".format(
+ platform.platform(),
+ struct.calcsize("P") * 8,
+ )
+ )
+ fh.write(
+ "Graphics card: {!s} {!s} {!s}\n".format(
+ bgl.glGetString(bgl.GL_RENDERER),
+ bgl.glGetString(bgl.GL_VENDOR),
+ bgl.glGetString(bgl.GL_VERSION),
+ )
+ )
+ fh.write(
+ "\n"
+ "\n**Blender Version**\n"
+ )
+ fh.write(
+ "Broken: version: {!s}, branch: {!s}, commit date: {!s} {!s}, hash: `rB{!s}`\n".format(
+ bpy.app.version_string,
+ bpy.app.build_branch.decode('utf-8', 'replace'),
+ bpy.app.build_commit_date.decode('utf-8', 'replace'),
+ bpy.app.build_commit_time.decode('utf-8', 'replace'),
+ bpy.app.build_hash.decode('ascii'),
+ )
+ )
+ fh.write(
+ "Worked: (optional)\n"
+ "\n"
+ "\n"
+ "**Short description of error**\n"
+ "[Please fill out a short description of the error here]\n"
+ "\n"
+ "**Exact steps for others to reproduce the error**\n"
+ "[Please describe the exact steps needed to reproduce the issue]\n"
+ "[Based on the default startup or an attached .blend file (as simple as possible)]\n"
+ "\n"
+ )
+
+ fh.seek(0)
+
+ return (
+ "https://developer.blender.org/maniphest/task/edit/form/1?description=" +
+ urllib.parse.quote(fh.read())
+ )