~ubuntu-branches/ubuntu/hoary/gimp/hoary

« back to all changes in this revision

Viewing changes to plug-ins/script-fu/scripts/web-browser.scm

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-04-04 14:51:23 UTC
  • Revision ID: james.westby@ubuntu.com-20050404145123-9py049eeelfymur8
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
32
(script-fu-register "gimp-online-main-web-site"
 
33
                    _"_Main Web Site"
 
34
                    "Link to http://www.gimp.org"
 
35
                    "Henrik Brix Andersen <brix@gimp.org>"
 
36
                    "Henrik Brix Andersen <brix@gimp.org>"
 
37
                    "2003"
 
38
                    "")
 
39
 
 
40
(script-fu-menu-register "gimp-online-main-web-site"
 
41
                         _"<Toolbox>/Help/The GIMP Online")
 
42
 
 
43
 
 
44
(script-fu-register "gimp-online-developer-web-site"
 
45
                    _"_Developer Web Site"
 
46
                    "Link to http://developer.gimp.org"
 
47
                    "Henrik Brix Andersen <brix@gimp.org>"
 
48
                    "Henrik Brix Andersen <brix@gimp.org>"
 
49
                    "2003"
 
50
                    "")
 
51
 
 
52
(script-fu-menu-register "gimp-online-developer-web-site"
 
53
                         _"<Toolbox>/Help/The GIMP Online")
 
54
 
 
55
 
 
56
(script-fu-register "gimp-online-plug-in-web-site"
 
57
                    _"Plug-in _Registry"
 
58
                    "Link to http://registry.gimp.org"
 
59
                    "Henrik Brix Andersen <brix@gimp.org>"
 
60
                    "Henrik Brix Andersen <brix@gimp.org>"
 
61
                    "2003"
 
62
                    "")
 
63
 
 
64
(script-fu-menu-register "gimp-online-plug-in-web-site"
 
65
                         _"<Toolbox>/Help/The GIMP Online")