This file is indexed.

/usr/lib/cgi-bin/doc-central/docconfig.py is in doc-central 1.8.3.

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
# docconfig.py
# This is the central location for all configurable settings in Doc-Central

## User configurable defaults

# The preferred viewing order for document formats. This is used to sort
# the list of available formats and determine to which format the
# title-link will point.
FormatOrder		= [ "html", "info", "pdf", "postscript" ]

# Global map for all options, initialized with some defaults.
Options			= {
	"section"	: "",
	"keyword"	: "",
	"depth"		: "1"
	}

## System defaults

# Location of the doc-base registries. 
docbasedirs		= [ "/var/lib/doc-base/documents" ]

# Descriptions for the various documentation settings. These should probably
# also be in some policy document.
SectionDescr		=  {
	"Graphics"		: "Image processing and other graphics programs",
	"Science/Mathematics"	: "Mathematics software",
	"Network"		: "Network, mail, news and websoftware ",
	"Programming"		: "Programming tools",
	"Shells"		: "Shells",
	"Sound"			: "Audio software",
	"System"		: "System management tools",
	"Text"			: "Text processing software",
	"Viewers"		: "Documentation and graphics viewers",
	"Debian"		: "Documentation on the Debian distribution and project",
	"Help"			: "General documentation, FAQs and HOWTOs"
	}