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:
authorMatt Ebb <matt@mke3.net>2004-07-29 16:13:35 +0400
committerMatt Ebb <matt@mke3.net>2004-07-29 16:13:35 +0400
commit3b29759bbfceb40a18e7a606dd2731f117cf1ffc (patch)
tree66038fd1be9530a2817dfdf3837ae2c20c3e675a
parent28f0f2d04826750c83d09ddda3b59dd5ee07f9f6 (diff)
And the necessary scripts.
-rw-r--r--release/scripts/help_getting_started.py33
-rw-r--r--release/scripts/help_manual.py33
-rw-r--r--release/scripts/help_py_reference.py33
-rw-r--r--release/scripts/help_release_notes.py33
-rw-r--r--release/scripts/help_tutorials.py34
-rw-r--r--release/scripts/help_web_blender.py33
-rw-r--r--release/scripts/help_web_devcomm.py33
-rw-r--r--release/scripts/help_web_eshop.py33
-rw-r--r--release/scripts/help_web_usercomm.py33
9 files changed, 298 insertions, 0 deletions
diff --git a/release/scripts/help_getting_started.py b/release/scripts/help_getting_started.py
new file mode 100644
index 00000000000..1706f5b2f67
--- /dev/null
+++ b/release/scripts/help_getting_started.py
@@ -0,0 +1,33 @@
+#!BPY
+"""
+Name: 'Getting Started'
+Blender: 234
+Group: 'Help'
+Tooltip: 'Help for new users'
+"""
+
+# --------------------------------------------------------------------------
+# Getting Started Help Menu Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import Blender, webbrowser
+version = str(Blender.Get('version'))
+webbrowser.open('http://www.blender3d.org/Help/?pg=GettingStarted&ver=' + version) \ No newline at end of file
diff --git a/release/scripts/help_manual.py b/release/scripts/help_manual.py
new file mode 100644
index 00000000000..51bccf07869
--- /dev/null
+++ b/release/scripts/help_manual.py
@@ -0,0 +1,33 @@
+#!BPY
+"""
+Name: 'Manual'
+Blender: 234
+Group: 'Help'
+Tooltip: 'The Blender reference manual'
+"""
+
+# --------------------------------------------------------------------------
+# Manual Help Menu Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import Blender, webbrowser
+version = str(Blender.Get('version'))
+webbrowser.open('http://www.blender3d.org/Help/?pg=Manual&ver=' + version) \ No newline at end of file
diff --git a/release/scripts/help_py_reference.py b/release/scripts/help_py_reference.py
new file mode 100644
index 00000000000..1f9b5836e23
--- /dev/null
+++ b/release/scripts/help_py_reference.py
@@ -0,0 +1,33 @@
+#!BPY
+"""
+Name: 'Python Scripting Reference'
+Blender: 234
+Group: 'Help'
+Tooltip: 'Documentation for using the Blender Python API'
+"""
+
+# --------------------------------------------------------------------------
+# Python Scripting Reference Help Menu Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import Blender, webbrowser
+version = str(Blender.Get('version'))
+webbrowser.open('http://www.blender3d.org/Help/?pg=PyReference&ver=' + version) \ No newline at end of file
diff --git a/release/scripts/help_release_notes.py b/release/scripts/help_release_notes.py
new file mode 100644
index 00000000000..6095a8c5911
--- /dev/null
+++ b/release/scripts/help_release_notes.py
@@ -0,0 +1,33 @@
+#!BPY
+"""
+Name: 'Release Notes'
+Blender: 234
+Group: 'Help'
+Tooltip: 'Information about the changes in this version of Blender'
+"""
+
+# --------------------------------------------------------------------------
+# Release Notes Help Menu Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import Blender, webbrowser
+version = str(Blender.Get('version'))
+webbrowser.open('http://www.blender3d.org/Help/?pg=ReleaseNotes&ver=' + version) \ No newline at end of file
diff --git a/release/scripts/help_tutorials.py b/release/scripts/help_tutorials.py
new file mode 100644
index 00000000000..8a48271e276
--- /dev/null
+++ b/release/scripts/help_tutorials.py
@@ -0,0 +1,34 @@
+#!BPY
+
+"""
+Name: 'Tutorials'
+Blender: 234
+Group: 'Help'
+Tooltip: 'Tutorials for learning to use Blender'
+"""
+
+# --------------------------------------------------------------------------
+# Tutorials Help Menu Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import Blender, webbrowser
+version = str(Blender.Get('version'))
+webbrowser.open('http://www.blender3d.org/Help/?pg=Tutorials&ver=' + version) \ No newline at end of file
diff --git a/release/scripts/help_web_blender.py b/release/scripts/help_web_blender.py
new file mode 100644
index 00000000000..b422db19a2d
--- /dev/null
+++ b/release/scripts/help_web_blender.py
@@ -0,0 +1,33 @@
+#!BPY
+
+"""
+Name: 'Blender Website'
+Blender: 234
+Group: 'HelpWebsites'
+Tooltip: 'The official Blender website'
+"""
+
+# --------------------------------------------------------------------------
+# Blender Website Help Menu -> Websites Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import Blender, webbrowser
+webbrowser.open('http://www.blender3d.org/') \ No newline at end of file
diff --git a/release/scripts/help_web_devcomm.py b/release/scripts/help_web_devcomm.py
new file mode 100644
index 00000000000..b572486d64c
--- /dev/null
+++ b/release/scripts/help_web_devcomm.py
@@ -0,0 +1,33 @@
+#!BPY
+
+"""
+Name: 'Developer Community'
+Blender: 234
+Group: 'HelpWebsites'
+Tooltip: 'Get involved with Blender development'
+"""
+
+# --------------------------------------------------------------------------
+# Blender Website Help Menu -> Websites Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import webbrowser
+webbrowser.open('http://www.blender.org') \ No newline at end of file
diff --git a/release/scripts/help_web_eshop.py b/release/scripts/help_web_eshop.py
new file mode 100644
index 00000000000..0ce92ab49b0
--- /dev/null
+++ b/release/scripts/help_web_eshop.py
@@ -0,0 +1,33 @@
+#!BPY
+
+"""
+Name: 'Blender E-Shop'
+Blender: 234
+Group: 'HelpWebsites'
+Tooltip: 'Buy official Blender resources and merchandise online'
+"""
+
+# --------------------------------------------------------------------------
+# Blender Website Help Menu -> Websites Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import Blender, webbrowser
+webbrowser.open('http://www.blender3d.org/e-shop') \ No newline at end of file
diff --git a/release/scripts/help_web_usercomm.py b/release/scripts/help_web_usercomm.py
new file mode 100644
index 00000000000..a6b31dbf977
--- /dev/null
+++ b/release/scripts/help_web_usercomm.py
@@ -0,0 +1,33 @@
+#!BPY
+
+"""
+Name: 'User Community'
+Blender: 234
+Group: 'HelpWebsites'
+Tooltip: 'Get involved with other Blender users'
+"""
+
+# --------------------------------------------------------------------------
+# Blender Website Help Menu -> Websites Item
+# --------------------------------------------------------------------------
+# ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ***** END GPL LICENCE BLOCK *****
+# --------------------------------------------------------------------------
+
+import webbrowser
+webbrowser.open('http://www.blender3d.org/Community') \ No newline at end of file