This file is indexed.

/usr/share/pyshared/fltk/test/HelpDialog.html is in python-fltk 1.3.0-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
<HTML>
<HEAD>
	<TITLE>HelpDialog Widget for FLTK</TITLE>
	<STYLE>H1 { font-family: sans-serif; font-size: 36pt }
	H2 { font-family: sans-serif }
	H3 { font-family: monospace }
	P { margin-left: 2em }
	UL { margin-left: 2em }
	CODE { font-weight: bold }</STYLE>
</HEAD>
<BODY BGCOLOR="#ccccff">

<H1 ALIGN=CENTER>HelpDialog Widget for FLTK</H1>

<P ALIGN=CENTER>Version 1.0 - October 12, 1999 -
<A HREF="mailto:mike@easysw.com">Michael Sweet</A>

<H2>Introduction</H2>

<P>The <CODE>HelpDialog</CODE> widget displays HTML files and allows the user
to click on links to do navigation.

<H2><A HREF="HelpDialog.gif">
<IMG SRC="HelpDialog.gif" ALIGN="RIGHT" WIDTH="273" HEIGHT="214"></A>
Source Code</H2>

<P>The source code is provided under the terms of the GNU Library General
Public License and is used to provide on-line help for the
<A HREF="http://www.easysw.com/printpro">ESP Print Pro</A> software.

<P>You can download the source for the current version (1.0) in several
formats:

<UL>
	<LI><A HREF="HelpDialog-1.0.tar.gz">HelpDialog-1.0.tar.gz (34k)</A>
	<LI><A HREF="HelpDialog-1.0.zip">HelpDialog-1.0.zip (35k)</A>
</UL>

<H2>Overview</H2>

<P>The <code>HelpDialog</code> widget is based upon the <CODE>HelpView</CODE>
widget which supports basic HTML elements including tables. Images and text
alignment are not supported at this time, although the hooks are there for
the alignment stuff.

<P>To use the <CODE>HelpDialog</CODE> widget in your program do:

<UL><PRE>
#include "HelpDialog.h"

...

{
  HelpView help();

  help.load("filename.html");
  help.show();
  while (help.visible())
    Fl::wait();
}
</PRE></UL>

<H2>Methods</H2>

<UL>

	<LI><CODE><A HREF="#HelpDialog">HelpDialog</A></CODE>
	<LI><CODE><A HREF="#hide">hide</A></CODE>
	<LI><CODE><A HREF="#load">load</A></CODE>
	<LI><CODE><A HREF="#show">show</A></CODE>
	<LI><CODE><A HREF="#topline">topline</A></CODE>
	<LI><CODE><A HREF="#visible">visible</A></CODE>

</UL>

<H3><A NAME="HelpDialog">HelpDialog::HelpDialog()</A></H3>

<P>The constructor creates the dialog pictured above.

<H3><A NAME="hide">void HelpDialog::hide()</A></H3>

<P>Hides the <code>HelpDialog</code> window.

<H3><A NAME="load">void HelpDialog::load(const char *f)</A></H3>

<P>Loads the specified HTML file into the <CODE>HelpView</CODE> widget.
The filename can also contain a target name ("filename.html#target").

<H3><A NAME="show">void HelpDialog::show()</A></H3>

<P>Shows the <code>HelpDialog</code> window.

<H3><A NAME="topline">void HelpDialog::topline(const char *n)<BR>
void HelpDialog::topline(int n)</A></H3>

<P>Sets the top line in the <CODE>HelpView</CODE> widget to the named or
numbered line.

<H3><A NAME="visible">int HelpDialog::visible()</A></H3>

<P>Returns 1 if the <code>HelpDialog</code> window is visible.

</BODY>
</HTML>