home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / Blender / blender-2.37a-windows.exe / $_5_ / .blender / scripts / help_manual.py < prev    next >
Text File  |  2004-11-07  |  2KB  |  42 lines

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