This file is indexed.

/usr/share/tkgate/scripts/simopts.tcl is in tkgate-data 2.0~b10-4.

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
#   Copyright (C) 1987-2006 by Jeffery P. Hansen
#
#   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 2 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, write to the Free Software
#   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Last edit by hansen on Thu Jan  8 23:40:23 2009

namespace eval SimOptions {
  proc create {w} {
    frame $w
    packPad $w

    labelframe $w.t [m opt.simbase]
    frame $w.t.pad -height [rescale *10]

    label $w.t.simstepL -text "[m opt.estepsz]:"
    entry $w.t.simstepE -width 5 -textvariable tkg_simStepSize -bg white

    label $w.t.clkstepL -text "[m opt.cstepsz]:"
    entry $w.t.clkstepE -width 5 -textvariable tkg_simClockStepSize -bg white

    label $w.t.clkostepL -text "[m opt.overstep]:"
    entry $w.t.clkostepE -width 5 -textvariable tkg_simClockOverStep -bg white

    grid $w.t.pad       -row 0 -column 0
    grid $w.t.simstepL	-row 1 -column 0 -sticky e -padx 5 -pady 5
    grid $w.t.simstepE	-row 1 -column 1 -sticky w -padx 5 -pady 5
    grid $w.t.clkostepL	-row 1 -column 3 -sticky e -padx 5 -pady 5
    grid $w.t.clkostepE	-row 1 -column 4 -sticky w -padx 5 -pady 5 
    grid $w.t.clkstepL	-row 2 -column 3 -sticky e -padx 5 -pady 5
    grid $w.t.clkstepE	-row 2 -column 4 -sticky w -padx 5 -pady 5 

    pack $w.t -side left -padx 5 -pady 5 -anchor nw

  }
}