[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [22675] branches/blender2.5/blender/ release: 2.5:

Thomas Dinges dingto at gmx.de
Fri Aug 21 13:52:21 CEST 2009


Revision: 22675
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=22675
Author:   dingto
Date:     2009-08-21 13:52:20 +0200 (Fri, 21 Aug 2009)

Log Message:
-----------
2.5:

* Deleted Help scripts, there are now operators in space_info.py. 

* Some code cleanup. 

Modified Paths:
--------------
    branches/blender2.5/blender/release/ui/space_filebrowser.py
    branches/blender2.5/blender/release/ui/space_info.py

Removed Paths:
-------------
    branches/blender2.5/blender/release/scripts/help_getting_started.py
    branches/blender2.5/blender/release/scripts/help_manual.py
    branches/blender2.5/blender/release/scripts/help_release_notes.py
    branches/blender2.5/blender/release/scripts/help_tutorials.py
    branches/blender2.5/blender/release/scripts/help_web_blender.py
    branches/blender2.5/blender/release/scripts/help_web_devcomm.py
    branches/blender2.5/blender/release/scripts/help_web_eshop.py
    branches/blender2.5/blender/release/scripts/help_web_usercomm.py

Deleted: branches/blender2.5/blender/release/scripts/help_getting_started.py
===================================================================
--- branches/blender2.5/blender/release/scripts/help_getting_started.py	2009-08-21 11:22:38 UTC (rev 22674)
+++ branches/blender2.5/blender/release/scripts/help_getting_started.py	2009-08-21 11:52:20 UTC (rev 22675)
@@ -1,50 +0,0 @@
-#!BPY
-"""
-Name: 'Getting Started'
-Blender: 248
-Group: 'Help'
-Tooltip: 'Help for new users'
-"""
-
-__author__ = "Matt Ebb"
-__url__ = ("blender", "blenderartists.org")
-__version__ = "1.0.1"
-__bpydoc__ = """\
-This script opens the user's default web browser at www.blender.org's
-"Getting Started" page.
-"""
-
-# $Id$
-#
-# --------------------------------------------------------------------------
-# 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
-try: import webbrowser
-except: webbrowser = None
-
-if webbrowser:
-    webbrowser.open('http://www.blender.org/education-help/tutorials/getting-started/')
-else:
-    Blender.Draw.PupMenu("Error%t|This script requires a full python installation")
-
-

Deleted: branches/blender2.5/blender/release/scripts/help_manual.py
===================================================================
--- branches/blender2.5/blender/release/scripts/help_manual.py	2009-08-21 11:22:38 UTC (rev 22674)
+++ branches/blender2.5/blender/release/scripts/help_manual.py	2009-08-21 11:52:20 UTC (rev 22675)
@@ -1,48 +0,0 @@
-#!BPY
-"""
-Name: 'Manual'
-Blender: 248
-Group: 'Help'
-Tooltip: 'The Blender Wiki manual'
-"""
-
-__author__ = "Matt Ebb"
-__url__ = ("blender", "blenderartists.org")
-__version__ = "1.0.1"
-__bpydoc__ = """\
-This script opens the user's default web browser at www.blender.org's
-"Manual" page.
-"""
-
-# --------------------------------------------------------------------------
-# 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
-try: import webbrowser
-except: webbrowser = None
-
-if webbrowser:
-    webbrowser.open('http://wiki.blender.org/index.php/Manual')
-else:
-    Blender.Draw.PupMenu("Error%t|This script requires a full python installation")
-
-

Deleted: branches/blender2.5/blender/release/scripts/help_release_notes.py
===================================================================
--- branches/blender2.5/blender/release/scripts/help_release_notes.py	2009-08-21 11:22:38 UTC (rev 22674)
+++ branches/blender2.5/blender/release/scripts/help_release_notes.py	2009-08-21 11:52:20 UTC (rev 22675)
@@ -1,47 +0,0 @@
-#!BPY
-"""
-Name: 'Release Logs'
-Blender: 248
-Group: 'Help'
-Tooltip: 'Information about the changes in this version of Blender'
-"""
-
-__author__ = "Matt Ebb"
-__url__ = ("blender", "blenderartists.org")
-__version__ = "1.0.1"
-__bpydoc__ = """\
-This script opens the user's default web browser at www.blender.org's
-"Release Logs" page.
-"""
-
-# --------------------------------------------------------------------------
-# 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
-try: import webbrowser
-except: webbrowser = None
-
-if webbrowser:
-    webbrowser.open('http://www.blender.org/development/release-logs/')
-else:
-    Blender.Draw.PupMenu("Error%t|This script requires a full python installation")
-

Deleted: branches/blender2.5/blender/release/scripts/help_tutorials.py
===================================================================
--- branches/blender2.5/blender/release/scripts/help_tutorials.py	2009-08-21 11:22:38 UTC (rev 22674)
+++ branches/blender2.5/blender/release/scripts/help_tutorials.py	2009-08-21 11:52:20 UTC (rev 22675)
@@ -1,47 +0,0 @@
-#!BPY
-
-"""
-Name: 'Tutorials'
-Blender: 248
-Group: 'Help'
-Tooltip: 'Tutorials for learning to use Blender'
-"""
-
-__author__ = "Matt Ebb"
-__url__ = ("blender", "blenderartists.org")
-__version__ = "1.0.1"
-__bpydoc__ = """\
-This script opens the user's default web browser at www.blender.org's
-"Tutorials" page.
-"""
-
-# --------------------------------------------------------------------------
-# 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
-try: import webbrowser
-except: webbrowser = None
-
-if webbrowser:
-    webbrowser.open('http://www.blender.org/education-help/tutorials/')
-else:
-    Blender.Draw.PupMenu("Error%t|This script requires a full python installation")

Deleted: branches/blender2.5/blender/release/scripts/help_web_blender.py
===================================================================
--- branches/blender2.5/blender/release/scripts/help_web_blender.py	2009-08-21 11:22:38 UTC (rev 22674)
+++ branches/blender2.5/blender/release/scripts/help_web_blender.py	2009-08-21 11:52:20 UTC (rev 22675)
@@ -1,48 +0,0 @@
-#!BPY
-
-"""
-Name: 'Blender Website'
-Blender: 248
-Group: 'HelpWebsites'
-Tooltip: 'The official Blender website'
-"""
-
-__author__ = "Matt Ebb"
-__url__ = ("blender", "blenderartists.org")
-__version__ = "1.0.1"
-__bpydoc__ = """\
-This script opens the user's default web browser at Blender's main site,
-www.blender.org.
-"""
-
-
-# --------------------------------------------------------------------------
-# 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
-try: import webbrowser
-except: webbrowser = None
-
-if webbrowser:
-    webbrowser.open('http://www.blender.org/')
-else:
-    Blender.Draw.PupMenu("Error%t|This script requires a full python installation")

Deleted: branches/blender2.5/blender/release/scripts/help_web_devcomm.py
===================================================================
--- branches/blender2.5/blender/release/scripts/help_web_devcomm.py	2009-08-21 11:22:38 UTC (rev 22674)
+++ branches/blender2.5/blender/release/scripts/help_web_devcomm.py	2009-08-21 11:52:20 UTC (rev 22675)
@@ -1,47 +0,0 @@
-#!BPY
-
-"""
-Name: 'Developer Community'
-Blender: 248
-Group: 'HelpWebsites'

@@ Diff output truncated at 10240 characters. @@




More information about the Bf-blender-cvs mailing list