home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 August / ENTER.ISO / files / gimp-2.0.5-i586-setup.exe / {app} / share / gimp / 2.0 / scripts / web-browser.scm < prev    next >
Encoding:
Text File  |  2004-09-26  |  2.0 KB  |  54 lines

  1. ; The GIMP -- an image manipulation program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; gimp-online.scm
  5. ; Copyright (C) 2003  Henrik Brix Andersen <brix@gimp.org>
  6. ;
  7. ; This program is free software; you can redistribute it and/or modify
  8. ; it under the terms of the GNU General Public License as published by
  9. ; the Free Software Foundation; either version 2 of the License, or
  10. ; (at your option) any later version.
  11. ;
  12. ; This program is distributed in the hope that it will be useful,
  13. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. ; GNU General Public License for more details.
  16. ;
  17. ; You should have received a copy of the GNU General Public License
  18. ; along with this program; if not, write to the Free Software
  19. ; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20.  
  21.  
  22. (define (gimp-online-main-web-site)
  23.   (plug-in-web-browser "http://www.gimp.org"))
  24.  
  25. (define (gimp-online-developer-web-site)
  26.   (plug-in-web-browser "http://developer.gimp.org"))
  27.  
  28. (define (gimp-online-plug-in-web-site)
  29.   (plug-in-web-browser "http://registry.gimp.org"))
  30.  
  31. (script-fu-register "gimp-online-main-web-site"
  32.                     _"<Toolbox>/Help/The GIMP Online/_Main Web Site"
  33.                     "Link to http://www.gimp.org"
  34.             "Henrik Brix Andersen <brix@gimp.org>"
  35.             "Henrik Brix Andersen <brix@gimp.org>"
  36.             "2003"
  37.             "")
  38.  
  39. (script-fu-register "gimp-online-developer-web-site"
  40.                     _"<Toolbox>/Help/The GIMP Online/_Developer Web Site"
  41.                     "Link to http://www.gimp.org"
  42.             "Henrik Brix Andersen <brix@gimp.org>"
  43.             "Henrik Brix Andersen <brix@gimp.org>"
  44.             "2003"
  45.             "")
  46.  
  47. (script-fu-register "gimp-online-plug-in-web-site"
  48.                     _"<Toolbox>/Help/The GIMP Online/Plug-in _Registry"
  49.                     "Link to http://www.gimp.org"
  50.             "Henrik Brix Andersen <brix@gimp.org>"
  51.             "Henrik Brix Andersen <brix@gimp.org>"
  52.             "2003"
  53.             "")
  54.