This file is indexed.

/usr/share/sgml/docbook/stylesheet/dsssl/modular/html/dbinline.dsl is in docbook-dsssl 1.79-6ubuntu1.

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
;; $Id: dbinline.dsl,v 1.11 2004/09/14 14:47:10 petere78 Exp $
;;
;; This file is part of the Modular DocBook Stylesheet distribution.
;; See ../README or http://docbook.sourceforge.net/projects/dsssl/
;;

;; ============================== INLINES ===============================

(element abbrev (if %html40%
                    ($abbr-seq$)
                    ($charseq$)))
(element acronym (if %html40%
                     ($acronym-seq$)
                     ($charseq$)))
(element accel ($charseq$))
(element action ($charseq$))
(element application ($charseq$))
(element classname ($code-seq$))
(element constant ($code-seq$))
(element command ($bold-seq$))
(element computeroutput ($samp-seq$))
(element database ($charseq$))

(element email 
  ($code-seq$ 
   (make sequence 
     (literal "<")
     (make element gi: "A"
	   attributes: (list (list "HREF" 
				   (string-append "mailto:" 
						  (data (current-node)))))
	   (process-children))
     (literal ">"))))

(element errorcode ($charseq$))
(element errorname ($charseq$))
(element errortype ($charseq$))
(element envar ($code-seq$))
(element filename ($mono-seq$))         ; unsure
(element function ($code-seq$))
(element guibutton ($charseq$))
(element guiicon ($charseq$))
(element guilabel ($charseq$))
(element guimenu ($charseq$))
(element guimenuitem ($charseq$))
(element guisubmenu ($charseq$))
(element hardware ($charseq$))
(element interface ($charseq$))
(element interfacedefinition ($charseq$))
(element keycap ($bold-seq$))
(element keycode ($charseq$))

(element keycombo 
  (let* ((action (attribute-string (normalize "action")))
	 (joinchar 
	  (cond
	   ((equal? action (normalize "seq")) " ")          ;; space
	   ((equal? action (normalize "simul")) "+")        ;; +
	   ((equal? action (normalize "press")) "-")        ;; ? I don't know
	   ((equal? action (normalize "click")) "-")        ;; ? what to do
	   ((equal? action (normalize "double-click")) "-") ;; ? about the rest
	   ((equal? action (normalize "other")) "-")        ;; ? of these
	   (else "-"))))
    (let loop ((nl (children (current-node))) (count 1))
      (if (node-list-empty? nl)
	  (empty-sosofo)
	  (if (equal? count 1)
	      (make sequence
		(process-node-list (node-list-first nl))
		(loop (node-list-rest nl) (+ count 1)))
	      (make sequence
		(literal joinchar)
		(process-node-list (node-list-first nl))
		(loop (node-list-rest nl) (+ count 1))))))))

(element keysym ($charseq$))
(element literal ($mono-seq$))
(element medialabel ($italic-seq$))

(element menuchoice
  (let* ((shortcut (select-elements (children (current-node)) 
				    (normalize "shortcut")))
	 (items    (node-list-filter-by-not-gi
		    (children (current-node))
		    (list (normalize "shortcut")))))
    (make sequence
      (let loop ((nl items) (first? #t))
	(if (node-list-empty? nl)
	    (empty-sosofo)
	    (make sequence
	      (if first?
		  (process-node-list (node-list-first nl))
		  (make sequence
		    (if (or (equal? (gi (node-list-first nl))
				    (normalize "guimenuitem"))
			    (equal? (gi (node-list-first nl))
				    (normalize "guisubmenu")))
			(make sequence
			  (literal "-")
			  (make entity-ref name: "gt"))
			(literal "+"))
		    (process-node-list (node-list-first nl))))
	      (loop (node-list-rest nl) #f))))
      (if (node-list-empty? shortcut)
	  (empty-sosofo)
	  (make sequence
	    (literal " (")
	    (process-node-list shortcut)
	    (literal ")"))))))

(element methodname ($code-seq$))
(element shortcut ($bold-seq$))
(element mousebutton ($charseq$))
(element option ($code-seq$))

(element optional 
  (make sequence 
    (literal %arg-choice-opt-open-str%)
    ($charseq$)
    (literal %arg-choice-opt-close-str%)))

(element parameter ($code-seq$))
(element property ($charseq$))
(element prompt ($samp-seq$))
(element replaceable ($italic-mono-seq$))
(element returnvalue ($charseq$))
(element structfield ($code-seq$))
(element structname ($code-seq$))
(element symbol ($code-seq$))
(element systemitem ($charseq$))        ; ambiguous, should look at class
(element token ($charseq$))
(element type ($charseq$))              ; ambiguous
(element userinput ($kbd-seq$))
(element varname ($code-seq$))

(element citation 
  (if biblio-citation-check
      (let* ((bgraphies (select-elements (descendants (sgml-root-element))
					 (normalize "bibliography")))
	     (bchildren1 (expand-children bgraphies
					  (list (normalize "bibliography"))))
	     (bchildren2 (expand-children bchildren1
					  (list (normalize "bibliodiv"))))
	     (bibentries (node-list-filter-by-gi 
			  bchildren2
			  (list (normalize "biblioentry")
				(normalize "bibliomixed")))))
	(let loop ((bibs bibentries))
	  (if (node-list-empty? bibs)
	      (make sequence
		(error (string-append "Cannot find citation: " 
				      (data (current-node))))
		(literal "[") ($charseq$) (literal "]"))
	      (if (citation-matches-target? (current-node) 
					    (node-list-first bibs))
		  (make element gi: "A"
			attributes: (list 
				     (list "HREF" (href-to 
						   (node-list-first bibs))))
			(literal "[") ($charseq$) (literal "]"))
		  (loop (node-list-rest bibs))))))
      (make sequence 
	(literal "[") ($charseq$) (literal "]"))))

(element citerefentry
  (if %citerefentry-link%
      (make element gi: "A"
	    attributes: (list (list "HREF" ($generate-citerefentry-link$)))
	    (if %refentry-xref-italic%
		($italic-seq$)
		($charseq$)))
      (if %refentry-xref-italic%
	  ($italic-seq$)
	  ($charseq$))))

(define ($generate-citerefentry-link$)
  (empty-sosofo))

(define ($x-generate-citerefentry-link$)
  (let* ((refentrytitle (select-elements (children (current-node))
					 (normalize "refentrytitle")))
	 (manvolnum (select-elements (children (current-node))
				     (normalize "manvolnum"))))
    (string-append "http://example.com/cgi-bin/man.cgi?"
		   (data refentrytitle)
		   "("
		   (data manvolnum)
		   ")")))

(element citetitle
  (if (equal? (attribute-string (normalize "pubwork")) "article")
      (make sequence
	(literal (gentext-start-quote))
	(process-children)
	(literal (gentext-end-quote)))
      ($italic-seq$)))

(element emphasis
  (let* ((class (if (and (attribute-string (normalize "role"))
			 %emphasis-propagates-style%)
		    (attribute-string (normalize "role"))
		    "emphasis")))
    (make element gi: "SPAN"
	  attributes: (list (list "CLASS" class))
	  (if (and (attribute-string (normalize "role"))
		   (or (equal? (attribute-string (normalize "role")) "strong")
		       (equal? (attribute-string (normalize "role")) "bold")))
	      ($bold-seq$)
	      ($italic-seq$)))))

(element foreignphrase ($italic-seq$))
(element markup ($charseq$))

(element phrase
  (let* ((class (if (and (attribute-string (normalize "role"))
			 %phrase-propagates-style%)
		    (attribute-string (normalize "role"))
		    "phrase")))
    (make element gi: "SPAN"
	  attributes: (list (list "CLASS" class))
	  ($charseq$))))

(element quote
  (let* ((hnr   (hierarchical-number-recursive (normalize "quote") 
					       (current-node)))
	 (depth (length hnr)))
    (make element gi: "SPAN"
	  attributes: '(("CLASS" "QUOTE"))
	  (if (equal? (modulo depth 2) 1)
	      (make sequence
		(literal (gentext-start-nested-quote))
		(process-children)
		(literal (gentext-end-nested-quote)))
	      (make sequence
		(literal (gentext-start-quote))
		(process-children)
		(literal (gentext-end-quote)))))))

(element sgmltag
  (let ((class (if (attribute-string (normalize "class"))
		   (attribute-string (normalize "class"))
		   (normalize "element"))))
<![CDATA[
  (cond
   ((or (equal? class (normalize "attribute"))
        (equal? class (normalize "attvalue"))
        (equal? class (normalize "element"))) ($code-seq$))
   ((equal? class (normalize "endtag")) ($code-seq$ (make sequence 
						      (literal "</") 
						      (process-children)
						      (literal ">"))))
   ((equal? class (normalize "genentity")) ($code-seq$ (make sequence
							 (literal "&")
							 (process-children)
							 (literal ";"))))
   ((equal? class (normalize "numcharref")) ($code-seq$ (make sequence
							  (literal "&#")
							  (process-children)
							  (literal ";"))))
   ((equal? class (normalize "paramentity")) ($code-seq$ (make sequence
							   (literal "%")
							   (process-children)
							   (literal ";"))))
   ((equal? class (normalize "pi")) ($code-seq$ (make sequence 
						  (literal "<?")
						  (process-children)
						  (literal ">"))))
   ((equal? class (normalize "xmlpi")) ($code-seq$ (make sequence 
						  (literal "<?")
						  (process-children)
						  (literal "?>"))))
   ((equal? class (normalize "starttag")) ($code-seq$ (make sequence 
							(literal "<") 
							(process-children)
							(literal ">"))))
   ((equal? class (normalize "emptytag")) ($code-seq$ (make sequence 
							(literal "<") 
							(process-children)
							(literal "/>"))))
   ((equal? class (normalize "sgmlcomment")) ($code-seq$ (make sequence 
							   (literal "<!--")
							   (process-children)
							   (literal "-->"))))
]]>
  (else ($charseq$)))))

(element trademark
  (make sequence
    ($charseq$)
    (cond
     ((equal? (attribute-string "class") (normalize "copyright"))
      (make entity-ref name: "copy"))
     ((equal? (attribute-string "class") (normalize "registered"))
      (make entity-ref name: "reg"))
     ((equal? (attribute-string "class") (normalize "service"))
      (make element gi: "SUP"
	    (literal "SM")))
     (else
      (make entity-ref name: "#8482")))))

(element wordasword ($italic-seq$))

(element lineannotation
  (process-children))

(element superscript 
  (make element gi: "SUP"
	(process-children)))

(element subscript
  (make element gi: "SUB"
	(process-children)))