/usr/share/monodoc/web/Global.asax is in monodoc-http 2.10-6.
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 | <%@ Application ClassName="Mono.Website.Global" %>
<%@ Import Namespace="Monodoc" %>
<%@ Assembly name="monodoc" %>
<script runat="server" language="c#" >
public static RootTree help_tree;
void Application_Start ()
{
HelpSource.use_css = true;
HelpSource.FullHtml = false;
HelpSource.UseWebdocCache = true;
help_tree = RootTree.LoadTree ();
SettingsHandler.Settings.EnableEditing = false;
}
</script>
|