This file is indexed.

/usr/share/cyclograph/openlayers.html is in cyclograph 1.6.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
<!DOCTYPE html>
<html>
    <head>
    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
    <meta name="apple-mobile-web-app-capable" content="yes" />
        <title>CycloGraph: draw on map</title>
        <link rel="stylesheet" href="google.css" type="text/css">
        <style type="text/css">
            html, body, #map {
                margin: 0;
                width: 100%;
                height: 100%;
            }
/*
            #text {
                position: absolute;
                bottom: 1em;
                left: 1em;
                width: 256px;
                z-index: 20000;
                background-color: white;
                opacity: 0.6;
                padding: 0 0.5em 0.5em 0.5em;
            }*/
        </style>
        <script type="text/javascript" src="http://maps.google.com/maps/api/js?v=3.3&amp;sensor=false"></script>
        <script type="text/javascript" src="http://www.openlayers.org/dev/OpenLayers.js"></script>
        <script type="text/javascript" src="draw_on_map.js"></script>
        <script type="text/javascript" src="file://./draw_on_map.js"></script>
    </head>
    <body onload="init()">
        <div id="map"/>
        </div>
    </body>
</html>