~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to release/scripts/help_web_eshop.py

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!BPY
 
2
 
 
3
"""
 
4
Name: 'Blender E-Shop'
 
5
Blender: 234
 
6
Group: 'HelpWebsites'
 
7
Tooltip: 'Buy official Blender resources and merchandise online'
 
8
"""
 
9
 
 
10
__author__ = "Matt Ebb"
 
11
__url__ = ("blender", "elysiun")
 
12
__version__ = "1.0"
 
13
__bpydoc__ = """\
 
14
This script opens the user's default web browser at www.blender3d.org's
 
15
"E-Shop" section.
 
16
"""
 
17
 
 
18
# --------------------------------------------------------------------------
 
19
# Blender Website Help Menu -> Websites Item
 
20
# --------------------------------------------------------------------------
 
21
# ***** BEGIN GPL LICENSE BLOCK *****
 
22
#
 
23
# This program is free software; you can redistribute it and/or
 
24
# modify it under the terms of the GNU General Public License
 
25
# as published by the Free Software Foundation; either version 2
 
26
# of the License, or (at your option) any later version.
 
27
#
 
28
# This program is distributed in the hope that it will be useful,
 
29
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
30
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
31
# GNU General Public License for more details.
 
32
#
 
33
# You should have received a copy of the GNU General Public License
 
34
# along with this program; if not, write to the Free Software Foundation,
 
35
# Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
36
#
 
37
# ***** END GPL LICENCE BLOCK *****
 
38
# --------------------------------------------------------------------------
 
39
 
 
40
import Blender, webbrowser
 
41
webbrowser.open('http://www.blender3d.org/e-shop')