/usr/share/gimp/2.0/scripts/gimp-online.scm is in gimp-data 2.8.10-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | ; GIMP - The GNU Image Manipulation Program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
; gimp-online.scm
; Copyright (C) 2003 Henrik Brix Andersen <brix@gimp.org>
;
; 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 3 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, see <http://www.gnu.org/licenses/>.
(define (gimp-online-docs-web-site)
(plug-in-web-browser "http://docs.gimp.org/")
)
(define (gimp-help-concepts-usage)
(gimp-help "" "gimp-concepts-usage")
)
(define (gimp-help-using-docks)
(gimp-help "" "gimp-using-docks")
)
(define (gimp-help-using-simpleobjects)
(gimp-help "" "gimp-using-simpleobjects")
)
(define (gimp-help-using-selections)
(gimp-help "" "gimp-using-selections")
)
(define (gimp-help-using-fileformats)
(gimp-help "" "gimp-using-fileformats")
)
(define (gimp-help-using-photography)
(gimp-help "" "gimp-using-photography")
)
(define (gimp-help-using-web)
(gimp-help "" "gimp-using-web")
)
(define (gimp-help-concepts-paths)
(gimp-help "" "gimp-concepts-paths")
)
; shortcuts to help topics
(script-fu-register "gimp-help-concepts-paths"
_"Using _Paths"
_"Bookmark to the user manual"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-concepts-paths"
"<Image>/Help/User Manual")
(script-fu-register "gimp-help-using-web"
_"_Preparing your Images for the Web"
_"Bookmark to the user manual"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-using-web"
"<Image>/Help/User Manual")
(script-fu-register "gimp-help-using-photography"
_"_Working with Digital Camera Photos"
_"Bookmark to the user manual"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-using-photography"
"<Image>/Help/User Manual")
(script-fu-register "gimp-help-using-fileformats"
_"Create, Open and Save _Files"
_"Bookmark to the user manual"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-using-fileformats"
"<Image>/Help/User Manual")
(script-fu-register "gimp-help-concepts-usage"
_"_Basic Concepts"
_"Bookmark to the user manual"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-concepts-usage"
"<Image>/Help/User Manual")
(script-fu-register "gimp-help-using-docks"
_"How to Use _Dialogs"
_"Bookmark to the user manual"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-using-docks"
"<Image>/Help/User Manual")
(script-fu-register "gimp-help-using-simpleobjects"
_"Drawing _Simple Objects"
_"Bookmark to the user manual"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-using-simpleobjects"
"<Image>/Help/User Manual")
(script-fu-register "gimp-help-using-selections"
_"Create and Use _Selections"
_"Bookmark to the user manual"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-help-using-simpleobjects"
"<Image>/Help/User Manual")
;; Links to GIMP related web sites
(define (gimp-online-main-web-site)
(plug-in-web-browser "http://www.gimp.org/")
)
(define (gimp-online-developer-web-site)
(plug-in-web-browser "http://developer.gimp.org/")
)
(define (gimp-online-plug-in-web-site)
(plug-in-web-browser "http://registry.gimp.org/")
)
(script-fu-register "gimp-online-main-web-site"
_"_Main Web Site"
_"Bookmark to the GIMP web site"
"Henrik Brix Andersen <brix@gimp.org>"
"Henrik Brix Andersen <brix@gimp.org>"
"2003"
""
)
(script-fu-menu-register "gimp-online-main-web-site"
"<Image>/Help/GIMP Online")
(script-fu-register "gimp-online-developer-web-site"
_"_Developer Web Site"
_"Bookmark to the GIMP web site"
"Henrik Brix Andersen <brix@gimp.org>"
"Henrik Brix Andersen <brix@gimp.org>"
"2003"
""
)
(script-fu-menu-register "gimp-online-developer-web-site"
"<Image>/Help/GIMP Online")
(script-fu-register "gimp-online-docs-web-site"
_"_User Manual Web Site"
_"Bookmark to the GIMP web site"
"Roman Joost <romanofski@gimp.org>"
"Roman Joost <romanofski@gimp.org>"
"2006"
""
)
(script-fu-menu-register "gimp-online-docs-web-site"
"<Image>/Help/GIMP Online")
(script-fu-register "gimp-online-plug-in-web-site"
_"Plug-in _Registry"
_"Bookmark to the GIMP web site"
"Henrik Brix Andersen <brix@gimp.org>"
"Henrik Brix Andersen <brix@gimp.org>"
"2003"
""
)
(script-fu-menu-register "gimp-online-plug-in-web-site"
"<Image>/Help/GIMP Online")
|