This file is indexed.

/usr/share/octave/packages/3.2/zenity-0.5.7/doc-cache is in octave-zenity 0.5.7-3.

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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
# Created by Octave 3.2.4, Mon May 02 03:36:01 2011 UTC <root@rothera>
# name: cache
# type: cell
# rows: 3
# columns: 9
# name: <cell-element>
# type: string
# elements: 1
# length: 15
zenity_calendar
# name: <cell-element>
# type: string
# elements: 1
# length: 395
 -- Function File: D = zenity_calendar(TITLE, DAY, MONTH, YEAR)
     Displays a date selection window.  The variable TITLE sets the
     title of the calendar.  The optional arguments DAY, MONTH, and
     YEAR changes the standard selected date.

     See also: zenity_list, zenity_progress, zenity_entry,
     zenity_message, zenity_text_info, zenity_file_selection,
     zenity_notification



# name: <cell-element>
# type: string
# elements: 1
# length: 33
Displays a date selection window.

# name: <cell-element>
# type: string
# elements: 1
# length: 12
zenity_entry
# name: <cell-element>
# type: string
# elements: 1
# length: 533
 -- Function File: S = zenity_entry(TEXT, ENTRY_TEXT, PASSWORD)
     Displays a text entry dialog.  The variable TEXT sets the title of
     the dialog, and the ENTRY_TEXT variable sets the default value of
     the text entry field. If the PASSWORD variable is non-empty the
     value of the text entry field will not be displayed on the screen.
     All arguments are optional.

     See also: zenity_calendar, zenity_list, zenity_progress,
     zenity_message, zenity_text_info, zenity_file_selection,
     zenity_notification



# name: <cell-element>
# type: string
# elements: 1
# length: 29
Displays a text entry dialog.

# name: <cell-element>
# type: string
# elements: 1
# length: 21
zenity_file_selection
# name: <cell-element>
# type: string
# elements: 1
# length: 668
 -- Function File: zenity_file_selection (TITLE, OPTION1, ...)
     Opens a file selection dialog.  The variable TITLE sets the title
     of the file selection window.  The optional string arguments can be
    `save'
          The file selection dialog is a dialog for saving files.

    `multiple'
          It is possible to select multiple files.

    `directory'
          It is possible to select directories as well as files.

    `Anything else'
          The argument will be the default selected file.
     and `error'.

     See also: zenity_calendar, zenity_list, zenity_progress,
     zenity_entry, zenity_message, zenity_text_info, zenity_notification



# name: <cell-element>
# type: string
# elements: 1
# length: 30
Opens a file selection dialog.

# name: <cell-element>
# type: string
# elements: 1
# length: 11
zenity_list
# name: <cell-element>
# type: string
# elements: 1
# length: 1613
 -- Function File: S = zenity_list(TITLE, COLUMNS, DATA, OPTIONS1, ...)
     Displays a graphical list of data.  The variable TITLE sets the
     title of the list. The variable COLUMNS must be a cell array of
     strings of length N containing the headers of the list. The
     variable DATA must be cell array of strings of length NxM
     containing the data of the list.

     The code
          zenity_list("Age versus Height", {"Age", "Height"},
          {"10", "20"; "120cm", "180cm"})
     produces a list of the data. The user can select a row in the
     table, and it's first value will be returned by the function when
     the user closes the window.

     It's possible to alter the behaviour of the list window by passing
     more than three arguments to the funtion. Theese optional string
     arguments can be
    `checklist'
          The first row in the list will be a check box. The first
          value of each data row must be either "TRUE" or "FALSE".

    `radiolist'
          The first row in the list will be a radio list. The first
          value of each data row must be either "TRUE" or "FALSE".

    `editable'
          The values of the list will be editable by the user.

    `A numeric value'
          The value returned by the function will be the value of this
          column of the user selected row.

    `all'
          The value returned by the function will be the entire row
          selected by the user.

     See also: zenity_calendar, zenity_progress, zenity_entry,
     zenity_message, zenity_text_info, zenity_file_selection,
     zenity_notification



# name: <cell-element>
# type: string
# elements: 1
# length: 34
Displays a graphical list of data.

# name: <cell-element>
# type: string
# elements: 1
# length: 14
zenity_message
# name: <cell-element>
# type: string
# elements: 1
# length: 637
 -- Function File: zenity_message (TEXT, TYPE)
     Displays a graphical message dialog.  The variable TEXT sets the
     message of the dialog, and the optional variable TYPE sets the
     type of the message.  TYPE must be one of the following strings
     `error', `info', `question', and `warning'. The default value of
     TYPE is `info'. Retuns the value `status' which is 0 for 'Ok' and
     1 for 'Cancel' button selection; a value of -1 indicates a failure
     of dialog box.

     See also: zenity_calendar, zenity_list, zenity_progress,
     zenity_entry, zenity_text_info, zenity_file_selection,
     zenity_notification



# name: <cell-element>
# type: string
# elements: 1
# length: 36
Displays a graphical message dialog.

# name: <cell-element>
# type: string
# elements: 1
# length: 19
zenity_notification
# name: <cell-element>
# type: string
# elements: 1
# length: 457
 -- Function File: zenity_notification (TEXT, ICON)
     Displays an icon with a text in the notification area.  The
     variable TEXT sets the text in the notification area, and the
     optional variable ICON determines which icon to show.  ICON can be
     either `info', `warning', `question', and `error'.

     See also: zenity_calendar, zenity_list, zenity_progress,
     zenity_entry, zenity_message, zenity_text_info,
     zenity_file_selection



# name: <cell-element>
# type: string
# elements: 1
# length: 54
Displays an icon with a text in the notification area.

# name: <cell-element>
# type: string
# elements: 1
# length: 15
zenity_progress
# name: <cell-element>
# type: string
# elements: 1
# length: 1142
 -- Function File: H = zenity_progress(TITLE, OPTION1, OPTION2)
 -- Function File: zenity_progress (H, PROGRESS)
 -- Function File: zenity_progress (H, PROGRESS, TEXT)
     Displays a graphical progress bar.  If the first argument is
     either non-present or a string, a new progress bar is created and
     a handle is returned. If the first argument is a string it will be
     used as the title of the progress bar. The two optional arguments
     OPTION1 and OPTION2 can be
    `auto-close'
          The progress bar will be closed when it reaches 100.

    `pulsate'
          The progress bar will pulsate.

     If the first argument is a handle to a progress bar and the second
     argument is an integer, the progress bar will set its current value
     to the given integer. If the second argument is a string, the text
     of the progress bar will be set to the given string.  It is
     possible to pass both an integer and a string to the function in
     one function call.

     See also: zenity_calendar, zenity_list, zenity_entry,
     zenity_message, zenity_text_info, zenity_file_selection,
     zenity_notification



# name: <cell-element>
# type: string
# elements: 1
# length: 34
Displays a graphical progress bar.

# name: <cell-element>
# type: string
# elements: 1
# length: 12
zenity_scale
# name: <cell-element>
# type: string
# elements: 1
# length: 1064
 -- Function File: OUTPUT = zenity_scale(TITLE,TEXT, VALUE, MINVAL,
          MAXVAL,STEP,PRINT_PARTIAL,HIDEVAL)
     Displays a selection scale (range widget) window.  Allows the user
     to choose a parameter within the set ranges, and sets default
     value, and step sizes.  The variable TITLE sets the title of the
     window.  The variable TEXT sets the label of the range widget.
     The other arguments VALUE, MINVAL,MAXVAL, STEP, PRINT_PARTIAL, and
     HIDEVAL.  The range widget can be used to select anywhere from
     MINVAL to MAXVAL values in increments of STEP. The variable
     PRINT_PARTIAL and HIDEVAL are boolean flags to partial and hidden
     views of the value on the range widget.  The first 3 parameters
     are essential, while the remaining parameters MINVAL,
     MAXVAL,STEP,PRINT_PARTIAL,HIDEVAL if not specified take on default
     values of 0,100,1,false,false respectively.

     See also: zenity_list, zenity_progress, zenity_entry,
     zenity_message, zenity_text_info, zenity_file_selection,
     zenity_notification



# name: <cell-element>
# type: string
# elements: 1
# length: 49
Displays a selection scale (range widget) window.

# name: <cell-element>
# type: string
# elements: 1
# length: 16
zenity_text_info
# name: <cell-element>
# type: string
# elements: 1
# length: 560
 -- Function File: S = zenity_text_info(TITLE, TEXT, EDITABLE)
     Display a large amount of text in a graphical display.  The title
     of the display window is set with the variable TITLE, and the
     actual text ti display is set with the variable TEXT.  If the
     optional argument EDITABLE is given the displayed text is
     editable. In this case the altered text is returned from the
     function.

     See also: zenity_calendar, zenity_list, zenity_progress,
     zenity_entry, zenity_message, zenity_file_selection,
     zenity_notification



# name: <cell-element>
# type: string
# elements: 1
# length: 54
Display a large amount of text in a graphical display.