This file is indexed.

/usr/share/gimp/2.0/scripts/phillips-double-border.scm is in gimp-plugin-registry 7.20140602ubuntu2.

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
;
; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
;
; Double border script  for GIMP 2.4
; Copyright (C) 2007 Harry Phillips <script-fu@tux.com.au>
;
; Tags: decor, border
;
; Author statement:
;
; Creates two borders around you image with a shadow layer in between.
;
; --------------------------------------------------------------------
; Distributed by Gimp FX Foundry project
; --------------------------------------------------------------------
;   - Changelog -
;  Version 1.3 (7th August 2007)
;    - Changed the order of the size checking so the error message is
;      at the top and makes easier reading.
;
;  Version 1.2 (5th August 2007)
;    - Added GPL3 licence
;    - Menu location at the top of the script
;    - Removed the "script-fu-menu-register" section
;
; --------------------------------------------------------------------
;
;    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 (layer-add-fill         width
                    height
                    label
                    opacity
                    colour
                    image)

    (let* ((newLayer (car (gimp-layer-new image width height 1 label opacity 0))))

    ;Set the background colour
    (gimp-context-set-background colour)

    ;Add the layer
    (gimp-image-add-layer image newLayer 100)

    ;Fill the shadow layer
    (gimp-drawable-fill newLayer 1)

    newLayer))

(define (script-fu-double-border    theImage
                    theLayer
                    innerColour
                    innerSize
                    outerColour
                    outerSize
                    shadowColour
                    shadowSize
                    shadowBlur
                    shadowOpacity
                    shadowInclude
    )

    ;Check that the outer size is larger than the required sie for the shadow
    (if (< outerSize (+ shadowSize shadowBlur))
    ;Outer size is too small
    (gimp-message _"Outer size needs to larger than shadow size plus shadow blur")

    ;Outer size is large enough
    (begin


    ;Start an undo group so the process can be undone with one undo
    (gimp-image-undo-group-start theImage)

    (let*
    (
    ;Read the current colours
    (myForeground (car (gimp-context-get-foreground)))
    (myBackground (car (gimp-context-get-background)))

    ;Read the image width and height
    (imageWidth (car (gimp-image-width theImage)))
    (imageHeight (car (gimp-image-height theImage)))

    ;Calculate the size of the inner layer
    (innerWidth (+ imageWidth (* innerSize 2)))
    (innerHeight (+ imageHeight (* innerSize 2)))

    (shadBlur (+ shadowSize shadowBlur))
    (innerLayer)
    (outerLayer)
    (shadowLayer)

    (outerWidth (+ innerWidth (* outerSize 2)))
    (outerHeight (+ innerHeight (* outerSize 2)))
    (outerTemp)


    )

    ;Select none
    (gimp-selection-none theImage)

    ;Resize image
    (gimp-image-resize theImage innerWidth innerHeight innerSize innerSize)


    ;Add the inner layer to the image
    (set! innerLayer (layer-add-fill innerWidth innerHeight _"Inner" 100 innerColour theImage))

    ;Add the shadow layer to the image
    (set! shadowLayer (layer-add-fill innerWidth innerHeight _"Shadow" shadowOpacity shadowColour theImage))

    ;Check to see if the extra outer is wanted
    (if (= shadowInclude TRUE)
        (begin
            (set! outerWidth (+ outerWidth shadBlur))
            (set! outerHeight (+ outerHeight shadBlur))
        )
        ()
    )


    ;Resize image
    (gimp-image-resize theImage outerWidth outerHeight outerSize outerSize)

    ;Resize the shadow layer
    (gimp-layer-resize shadowLayer (+ innerWidth shadBlur) (+ innerHeight shadBlur) 0 0)

    ;Move the shadow
    (gimp-drawable-offset shadowLayer TRUE 0 shadowSize shadowSize)

    ;Blur the shadow layer
    (if (> shadowBlur 0)
    (plug-in-gauss 1 theImage shadowLayer shadowBlur shadowBlur 0)
    ()
    )

    ;Add the outer layer to the image
    (set! outerLayer (layer-add-fill outerWidth outerHeight _"Shadow" 100 outerColour theImage))

    ;Reset the background colour
    (gimp-context-set-background myBackground)


    ;Finish the undo group for the process
    (gimp-image-undo-group-end theImage)

    ;Ensure the updated image is displayed now
    (gimp-displays-flush)


))))


(script-fu-register "script-fu-double-border"
	_"Double Border..."
	_"Gives two borders with a dropped shadow"
	"Harry Phillips"
	"Harry Phillips"
	"30 July 2007"
	"*"
	SF-IMAGE        "Image"     0
	SF-DRAWABLE        "Drawable"  0
	SF-COLOR        _"Inner colour" '(255 255 255)
	SF-ADJUSTMENT    _"Inner size"     '(25 0 1024 1 10 1 0)
	SF-COLOR         _"Outer colour" '(217 217 217)
	SF-ADJUSTMENT    _"Outer size"      '(50 0 1024 1 10 1 0)
	SF-COLOR         _"Shadow colour" '(0 0 0)
	SF-ADJUSTMENT    _"Shadow size"         '(10 5 1024 1 10 0 1)
	SF-ADJUSTMENT    _"Shadow blur"    '(10 0 1024 1 10 0 1)
	SF-ADJUSTMENT    _"Shadow opacity"        '(80 0 100 1 10 0 0)
	SF-TOGGLE         _"Outer border is full width past shadow"       FALSE
)

(script-fu-menu-register "script-fu-double-border"
                         "<Image>/FX-Foundry/Image Effects")