4 Name: 'Blender Website'
7 Tooltip: 'The official Blender website'
10 __author__ = "Matt Ebb"
11 __url__ = ("blender", "blenderartists.org")
14 This script opens the user's default web browser at Blender's main site,
19 # --------------------------------------------------------------------------
20 # Blender Website Help Menu -> Websites Item
21 # --------------------------------------------------------------------------
22 # ***** BEGIN GPL LICENSE BLOCK *****
24 # This program is free software; you can redistribute it and/or
25 # modify it under the terms of the GNU General Public License
26 # as published by the Free Software Foundation; either version 2
27 # of the License, or (at your option) any later version.
29 # This program is distributed in the hope that it will be useful,
30 # but WITHOUT ANY WARRANTY; without even the implied warranty of
31 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 # GNU General Public License for more details.
34 # You should have received a copy of the GNU General Public License
35 # along with this program; if not, write to the Free Software Foundation,
36 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
38 # ***** END GPL LICENCE BLOCK *****
39 # --------------------------------------------------------------------------
42 try: import webbrowser
43 except: webbrowser = None
46 webbrowser.open('http://www.blender.org/')
48 Blender.Draw.PupMenu("Error%t|This script requires a full python installation")