This file is indexed.

/usr/share/yelp-xsl/xslt/common/icons.xsl is in yelp-xsl 3.10.1-1.

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
<?xml version='1.0' encoding='UTF-8'?><!-- -*- indent-tabs-mode: nil -*- -->
<!--
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser 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 Lesser General Public License for more
details.

You should have received a copy of the GNU Lesser General Public License
along with this program; see the file COPYING.LGPL.  If not, write to the
Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
-->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

<!--!!==========================================================================
Icons
Specify common named icons to style output.
:Requires: l10n
:Revision:version="1.0" date="2010-05-25" status="final"

This stylesheet provides a common interface to specify icons for transformations
to presentation-oreinted formats. This allows similar output for different
types of input documents.
-->


<!--@@==========================================================================
icons.base_url
The default URL prefix for all icons.
:Revision:version="1.0" date="2010-01-26" status="final"

This parameter provides a default URL prefix. All icon locations in this
stylesheet reference files directly under this URL prefix by default. If
you override the individual icon parameters in this stylesheet, this parameter
has no effect. This parameter should end with a trailing slash.
-->
<xsl:param name="icons.base_url" select="''"/>


<!--@@==========================================================================
icons.size.note
The size of the note icons.
:Revision:version="1.0" date="2010-03-05" status="final"

This parameter specifies the size of the note icons. Use an integer giving
the width of the image files in pixels. Icons are assumed to be square, and
all note icons are assumed to have the same size.
-->
<xsl:param name="icons.size.note" select="24"/>


<!--@@==========================================================================
icons.note
The URL for the note icon.
:Revision:version="1.0" date="2010-05-03" status="final"

This parameter specifies the URL for the icon used for regular notes.
-->
<xsl:param name="icons.note"
           select="concat($icons.base_url, 'yelp-note.png')"/>


<!--@@==========================================================================
icons.note.bug
The URL for the bug note icon.
:Revision:version="1.0" date="2010-05-03" status="final"

This parameter specifies the URL for the icon used for bug notes.
-->
<xsl:param name="icons.note.bug"
           select="concat($icons.base_url, 'yelp-note-bug.png')"/>


<!--@@==========================================================================
icons.note.important
The URL for the important note icon.
:Revision:version="1.0" date="2010-05-03" status="final"

This parameter specifies the URL for the icon used for important notes.
-->
<xsl:param name="icons.note.important"
           select="concat($icons.base_url, 'yelp-note-important.png')"/>


<!--@@==========================================================================
icons.note.tip
The URL for the tip note icon.
:Revision:version="1.0" date="2010-05-03" status="final"

This parameter specifies the URL for the icon used for tip notes.
-->
<xsl:param name="icons.note.tip"
           select="concat($icons.base_url, 'yelp-note-tip.png')"/>


<!--@@==========================================================================
icons.note.warning
The URL for the warning note icon.
:Revision:version="1.0" date="2010-05-03" status="final"

This parameter specifies the URL for the icon used for warning notes.
-->
<xsl:param name="icons.note.warning"
           select="concat($icons.base_url, 'yelp-note-warning.png')"/>


<!--@@==========================================================================
icons.size.quote
The size of the quote icons.
:Revision:version="3.8" date="2012-09-29" status="final"

This parameter specifies the size of the block quote icon. Use an integer giving
the width of the image files in pixels. Icons are assumed to be square, and all
quote icons are assumed to have the same size.

As of version 3.8, there is no longer an actual image file for the quote icon.
Instead, a language-appropriate quotation character is placed in the margin.
This parameters still affects the size of that character.
-->
<xsl:param name="icons.size.quote" select="48"/>


<!--@@==========================================================================
icons.size.code
The size of the code icons.
:Revision:version="1.0" date="2010-05-03" status="final"

This parameter specifies the size of the code icons. Use an integer giving
the width of the image files in pixels. Icons are assumed to be square, and
all code icons are assumed to have the same size.
-->
<xsl:param name="icons.size.quote" select="128"/>


<!--@@==========================================================================
icons.code
The URL for the block code watermark.
:Revision:version="1.0" date="2010-05-03" status="final"

This parameter specifies the URL for the watermark for code blocks.
-->
<xsl:param name="icons.code">
  <xsl:value-of select="$icons.base_url"/>
  <xsl:text>yelp-code.png</xsl:text>
</xsl:param>


</xsl:stylesheet>