This file is indexed.

/usr/share/qt5/doc/qtsvg/qtsvg-svgviewer-files-spheres-svg.html is in qtsvg5-doc-html 5.5.1-2build1.

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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>spheres.svg Example File | Qt SVG 5.5</title>
  <link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
    <div class="main">
    <div class="main-rounded">
        <div class="navigationbar">
        <ul>
<li>Qt 5.5</li>
<li><a href="qtsvg-index.html">Qt SVG</a></li>
<li><a href="qtsvg-svgviewer-example.html">SVG Viewer Example</a></li>
<li>spheres.svg Example File</li>
<li id="buildversion">Qt 5.5.1 Reference Documentation</li>
    </ul>
    </div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">spheres.svg Example File</h1>
<span class="subtitle">svgviewer/files/spheres.svg</span>
<!-- $$$svgviewer/files/spheres.svg-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp">&lt;?xml version=&quot;1.0&quot; standalone=&quot;no&quot;?&gt;
&lt;svg width=&quot;8cm&quot; height=&quot;8cm&quot; viewBox=&quot;0 0 400 400&quot;
    xmlns=&quot;http://www.w3.org/2000/svg&quot;
    xmlns:xlink=&quot;http://www.w3.org/1999/xlink/&quot;
    baseProfile=&quot;tiny&quot; version=&quot;1.2&quot;&gt;
  &lt;title&gt;Spheres&lt;/title&gt;
  &lt;desc&gt;Gradient filled spheres with different colors.&lt;/desc&gt;
    &lt;defs&gt;
      &lt;!-- Create radial gradients for each circle to make them look like
           spheres. --&gt;
      &lt;radialGradient id=&quot;blueSphere&quot; gradientUnits=&quot;userSpaceOnUse&quot;
                      cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; fx=&quot;-50&quot; fy=&quot;-50&quot;&gt;
        &lt;stop offset=&quot;0%&quot; stop-color=&quot;white&quot; /&gt;
        &lt;stop offset=&quot;75%&quot; stop-color=&quot;blue&quot; /&gt;
        &lt;stop offset=&quot;100%&quot; stop-color=&quot;#222244&quot; /&gt;
      &lt;/radialGradient&gt;
      &lt;radialGradient id=&quot;redSphere&quot; gradientUnits=&quot;userSpaceOnUse&quot;
                      cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; fx=&quot;-50&quot; fy=&quot;-50&quot;&gt;
        &lt;stop offset=&quot;0%&quot; stop-color=&quot;white&quot; /&gt;
        &lt;stop offset=&quot;75%&quot; stop-color=&quot;red&quot; /&gt;
        &lt;stop offset=&quot;100%&quot; stop-color=&quot;#442222&quot; /&gt;
      &lt;/radialGradient&gt;
      &lt;radialGradient id=&quot;greenSphere&quot; gradientUnits=&quot;userSpaceOnUse&quot;
                      cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; fx=&quot;-50&quot; fy=&quot;-50&quot;&gt;
        &lt;stop offset=&quot;0%&quot; stop-color=&quot;white&quot; /&gt;
        &lt;stop offset=&quot;75%&quot; stop-color=&quot;green&quot; /&gt;
        &lt;stop offset=&quot;100%&quot; stop-color=&quot;#113311&quot; /&gt;
      &lt;/radialGradient&gt;
      &lt;radialGradient id=&quot;yellowSphere&quot; gradientUnits=&quot;userSpaceOnUse&quot;
                      cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; fx=&quot;-50&quot; fy=&quot;-50&quot;&gt;
        &lt;stop offset=&quot;0%&quot; stop-color=&quot;white&quot; /&gt;
        &lt;stop offset=&quot;75%&quot; stop-color=&quot;yellow&quot; /&gt;
        &lt;stop offset=&quot;100%&quot; stop-color=&quot;#444422&quot; /&gt;
      &lt;/radialGradient&gt;
      &lt;radialGradient id=&quot;shadowGrad&quot; gradientUnits=&quot;userSpaceOnUse&quot;
                      cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; fx=&quot;-50&quot; fy=&quot;50&quot;&gt;
        &lt;stop offset=&quot;0%&quot; stop-color=&quot;black&quot; stop-opacity=&quot;1.0&quot; /&gt;
        &lt;stop offset=&quot;100%&quot; stop-color=&quot;white&quot; stop-opacity=&quot;0.0&quot; /&gt;
      &lt;/radialGradient&gt;

      &lt;!-- Define a shadow for each sphere. --&gt;
      &lt;circle id=&quot;shadow&quot; fill=&quot;url(#shadowGrad)&quot; cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; /&gt;
    &lt;/defs&gt;
  &lt;g fill=&quot;#ffee99&quot; stroke=&quot;none&quot; &gt;
    &lt;rect x=&quot;0&quot; y=&quot;0&quot; width=&quot;400&quot; height=&quot;400&quot; /&gt;
  &lt;/g&gt;
  &lt;g fill=&quot;white&quot; stroke=&quot;none&quot; &gt;
    &lt;rect x=&quot;0&quot; y=&quot;175&quot; width=&quot;400&quot; height=&quot;225&quot; /&gt;
  &lt;/g&gt;
  &lt;g transform=&quot;translate(200,175)&quot;&gt;
    &lt;use xlink:href=&quot;#shadow&quot; transform=&quot;translate(25,55) scale(1.0,0.5)&quot; /&gt;
    &lt;circle fill=&quot;url(#blueSphere)&quot; cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; /&gt;
  &lt;/g&gt;
  &lt;g transform=&quot;translate(315,240)&quot;&gt;
    &lt;g transform=&quot;scale(0.5,0.5)&quot;&gt;
      &lt;use xlink:href=&quot;#shadow&quot; transform=&quot;translate(25,55) scale(1.0,0.5)&quot; /&gt;
      &lt;circle fill=&quot;url(#redSphere)&quot; cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; /&gt;
    &lt;/g&gt;
  &lt;/g&gt;
  &lt;g transform=&quot;translate(80,275)&quot;&gt;
    &lt;g transform=&quot;scale(0.65,0.65)&quot;&gt;
      &lt;use xlink:href=&quot;#shadow&quot; transform=&quot;translate(25,55) scale(1.0,0.5)&quot; /&gt;
      &lt;circle fill=&quot;url(#greenSphere)&quot; cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; /&gt;
    &lt;/g&gt;
  &lt;/g&gt;
  &lt;g transform=&quot;translate(255,325)&quot;&gt;
    &lt;g transform=&quot;scale(0.3,0.3)&quot;&gt;
      &lt;use xlink:href=&quot;#shadow&quot; transform=&quot;translate(25,55) scale(1.0,0.5)&quot; /&gt;
      &lt;circle fill=&quot;url(#yellowSphere)&quot; cx=&quot;0&quot; cy=&quot;0&quot; r=&quot;100&quot; /&gt;
    &lt;/g&gt;
  &lt;/g&gt;
&lt;/svg&gt;</pre>
</div>
<!-- @@@svgviewer/files/spheres.svg -->
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2015 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>