You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
320 lines
9.2 KiB
320 lines
9.2 KiB
var NAVTREE =
|
|
[
|
|
[ "server", "index.html", [
|
|
[ "Class List", "annotated.html", [
|
|
[ "class", "structclass.html", null ],
|
|
[ "HttpHeader", "structHttpHeader.html", null ],
|
|
[ "HttpRequest", "structHttpRequest.html", null ],
|
|
[ "HttpRequestParser", "structHttpRequestParser.html", null ],
|
|
[ "HttpRequestQueue", "structHttpRequestQueue.html", null ],
|
|
[ "HttpResponse", "structHttpResponse.html", null ],
|
|
[ "i_Class", "structi__Class.html", null ],
|
|
[ "i_Logger", "structi__Logger.html", null ],
|
|
[ "i_StreamReader", "structi__StreamReader.html", null ],
|
|
[ "iface_impl", "structiface__impl.html", null ],
|
|
[ "interface", "structinterface.html", null ],
|
|
[ "Logger", "structLogger.html", null ],
|
|
[ "LoggerStderr", "structLoggerStderr.html", null ],
|
|
[ "LoggerSyslog", "structLoggerSyslog.html", null ],
|
|
[ "Server", "structServer.html", null ],
|
|
[ "Sock", "structSock.html", null ]
|
|
] ],
|
|
[ "Class Index", "classes.html", null ],
|
|
[ "Class Members", "functions.html", null ],
|
|
[ "File List", "files.html", [
|
|
[ "config.h", "config_8h.html", null ],
|
|
[ "include/class.h", "class_8h.html", null ],
|
|
[ "include/interface.h", "interface_8h.html", null ],
|
|
[ "include/logger.h", "logger_8h.html", null ],
|
|
[ "include/server.h", "server_8h.html", null ],
|
|
[ "include/signalHandling.h", "signalHandling_8h.html", null ],
|
|
[ "include/socket.h", "socket_8h.html", null ],
|
|
[ "include/http/header.h", "header_8h.html", null ],
|
|
[ "include/http/request.h", "request_8h.html", null ],
|
|
[ "include/http/request_parser.h", "request__parser_8h.html", null ],
|
|
[ "include/http/request_queue.h", "request__queue_8h.html", null ],
|
|
[ "include/http/response.h", "response_8h.html", null ],
|
|
[ "include/interface/class.h", "interface_2class_8h.html", null ],
|
|
[ "include/interface/logger.h", "interface_2logger_8h.html", null ],
|
|
[ "include/interface/stream_reader.h", "stream__reader_8h.html", null ],
|
|
[ "src/class.c", "class_8c.html", null ],
|
|
[ "src/daemonize.c", "daemonize_8c.html", null ],
|
|
[ "src/interface.c", "interface_8c.html", null ],
|
|
[ "src/logger.c", "logger_8c.html", null ],
|
|
[ "src/server.c", "server_8c.html", null ],
|
|
[ "src/signalHandling.c", "signalHandling_8c.html", null ],
|
|
[ "src/socket.c", "socket_8c.html", null ],
|
|
[ "src/testserver.c", "testserver_8c.html", null ],
|
|
[ "src/http/header.c", "header_8c.html", null ],
|
|
[ "src/http/request.c", "request_8c.html", null ],
|
|
[ "src/http/header/get.c", "get_8c.html", null ],
|
|
[ "src/http/header/sort.c", "sort_8c.html", null ],
|
|
[ "src/http/request/header_get.c", "header__get_8c.html", null ],
|
|
[ "src/http/request/parser.c", "parser_8c.html", null ],
|
|
[ "src/http/request/queue.c", "queue_8c.html", null ],
|
|
[ "src/http/request/parser/get_header.c", "get__header_8c.html", null ],
|
|
[ "src/http/request/parser/get_request_line.c", "get__request__line_8c.html", null ],
|
|
[ "src/http/request/parser/parse.c", "parse_8c.html", null ],
|
|
[ "src/interface/class.c", "interface_2class_8c.html", null ],
|
|
[ "src/interface/logger.c", "interface_2logger_8c.html", null ],
|
|
[ "src/interface/stream_reader.c", "stream__reader_8c.html", null ],
|
|
[ "src/logger/stderr.c", "stderr_8c.html", null ],
|
|
[ "src/logger/syslog.c", "syslog_8c.html", null ],
|
|
[ "src/server/close_conn.c", "close__conn_8c.html", null ],
|
|
[ "src/server/handle_accept.c", "handle__accept_8c.html", null ],
|
|
[ "src/server/poll.c", "poll_8c.html", null ],
|
|
[ "src/server/read.c", "read_8c.html", null ],
|
|
[ "src/server/run.c", "run_8c.html", null ],
|
|
[ "src/socket/accept.c", "accept_8c.html", null ],
|
|
[ "src/socket/connect.c", "connect_8c.html", null ],
|
|
[ "src/socket/listen.c", "listen_8c.html", null ]
|
|
] ],
|
|
[ "File Members", "globals.html", null ]
|
|
] ]
|
|
];
|
|
|
|
function createIndent(o,domNode,node,level)
|
|
{
|
|
if (node.parentNode && node.parentNode.parentNode)
|
|
{
|
|
createIndent(o,domNode,node.parentNode,level+1);
|
|
}
|
|
var imgNode = document.createElement("img");
|
|
if (level==0 && node.childrenData)
|
|
{
|
|
node.plus_img = imgNode;
|
|
node.expandToggle = document.createElement("a");
|
|
node.expandToggle.href = "javascript:void(0)";
|
|
node.expandToggle.onclick = function()
|
|
{
|
|
if (node.expanded)
|
|
{
|
|
$(node.getChildrenUL()).slideUp("fast");
|
|
if (node.isLast)
|
|
{
|
|
node.plus_img.src = node.relpath+"ftv2plastnode.png";
|
|
}
|
|
else
|
|
{
|
|
node.plus_img.src = node.relpath+"ftv2pnode.png";
|
|
}
|
|
node.expanded = false;
|
|
}
|
|
else
|
|
{
|
|
expandNode(o, node, false);
|
|
}
|
|
}
|
|
node.expandToggle.appendChild(imgNode);
|
|
domNode.appendChild(node.expandToggle);
|
|
}
|
|
else
|
|
{
|
|
domNode.appendChild(imgNode);
|
|
}
|
|
if (level==0)
|
|
{
|
|
if (node.isLast)
|
|
{
|
|
if (node.childrenData)
|
|
{
|
|
imgNode.src = node.relpath+"ftv2plastnode.png";
|
|
}
|
|
else
|
|
{
|
|
imgNode.src = node.relpath+"ftv2lastnode.png";
|
|
domNode.appendChild(imgNode);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (node.childrenData)
|
|
{
|
|
imgNode.src = node.relpath+"ftv2pnode.png";
|
|
}
|
|
else
|
|
{
|
|
imgNode.src = node.relpath+"ftv2node.png";
|
|
domNode.appendChild(imgNode);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (node.isLast)
|
|
{
|
|
imgNode.src = node.relpath+"ftv2blank.png";
|
|
}
|
|
else
|
|
{
|
|
imgNode.src = node.relpath+"ftv2vertline.png";
|
|
}
|
|
}
|
|
imgNode.border = "0";
|
|
}
|
|
|
|
function newNode(o, po, text, link, childrenData, lastNode)
|
|
{
|
|
var node = new Object();
|
|
node.children = Array();
|
|
node.childrenData = childrenData;
|
|
node.depth = po.depth + 1;
|
|
node.relpath = po.relpath;
|
|
node.isLast = lastNode;
|
|
|
|
node.li = document.createElement("li");
|
|
po.getChildrenUL().appendChild(node.li);
|
|
node.parentNode = po;
|
|
|
|
node.itemDiv = document.createElement("div");
|
|
node.itemDiv.className = "item";
|
|
|
|
node.labelSpan = document.createElement("span");
|
|
node.labelSpan.className = "label";
|
|
|
|
createIndent(o,node.itemDiv,node,0);
|
|
node.itemDiv.appendChild(node.labelSpan);
|
|
node.li.appendChild(node.itemDiv);
|
|
|
|
var a = document.createElement("a");
|
|
node.labelSpan.appendChild(a);
|
|
node.label = document.createTextNode(text);
|
|
a.appendChild(node.label);
|
|
if (link)
|
|
{
|
|
a.href = node.relpath+link;
|
|
}
|
|
else
|
|
{
|
|
if (childrenData != null)
|
|
{
|
|
a.className = "nolink";
|
|
a.href = "javascript:void(0)";
|
|
a.onclick = node.expandToggle.onclick;
|
|
node.expanded = false;
|
|
}
|
|
}
|
|
|
|
node.childrenUL = null;
|
|
node.getChildrenUL = function()
|
|
{
|
|
if (!node.childrenUL)
|
|
{
|
|
node.childrenUL = document.createElement("ul");
|
|
node.childrenUL.className = "children_ul";
|
|
node.childrenUL.style.display = "none";
|
|
node.li.appendChild(node.childrenUL);
|
|
}
|
|
return node.childrenUL;
|
|
};
|
|
|
|
return node;
|
|
}
|
|
|
|
function showRoot()
|
|
{
|
|
var headerHeight = $("#top").height();
|
|
var footerHeight = $("#nav-path").height();
|
|
var windowHeight = $(window).height() - headerHeight - footerHeight;
|
|
navtree.scrollTo('#selected',0,{offset:-windowHeight/2});
|
|
}
|
|
|
|
function expandNode(o, node, imm)
|
|
{
|
|
if (node.childrenData && !node.expanded)
|
|
{
|
|
if (!node.childrenVisited)
|
|
{
|
|
getNode(o, node);
|
|
}
|
|
if (imm)
|
|
{
|
|
$(node.getChildrenUL()).show();
|
|
}
|
|
else
|
|
{
|
|
$(node.getChildrenUL()).slideDown("fast",showRoot);
|
|
}
|
|
if (node.isLast)
|
|
{
|
|
node.plus_img.src = node.relpath+"ftv2mlastnode.png";
|
|
}
|
|
else
|
|
{
|
|
node.plus_img.src = node.relpath+"ftv2mnode.png";
|
|
}
|
|
node.expanded = true;
|
|
}
|
|
}
|
|
|
|
function getNode(o, po)
|
|
{
|
|
po.childrenVisited = true;
|
|
var l = po.childrenData.length-1;
|
|
for (var i in po.childrenData)
|
|
{
|
|
var nodeData = po.childrenData[i];
|
|
po.children[i] = newNode(o, po, nodeData[0], nodeData[1], nodeData[2],
|
|
i==l);
|
|
}
|
|
}
|
|
|
|
function findNavTreePage(url, data)
|
|
{
|
|
var nodes = data;
|
|
var result = null;
|
|
for (var i in nodes)
|
|
{
|
|
var d = nodes[i];
|
|
if (d[1] == url)
|
|
{
|
|
return new Array(i);
|
|
}
|
|
else if (d[2] != null) // array of children
|
|
{
|
|
result = findNavTreePage(url, d[2]);
|
|
if (result != null)
|
|
{
|
|
return (new Array(i).concat(result));
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
function initNavTree(toroot,relpath)
|
|
{
|
|
var o = new Object();
|
|
o.toroot = toroot;
|
|
o.node = new Object();
|
|
o.node.li = document.getElementById("nav-tree-contents");
|
|
o.node.childrenData = NAVTREE;
|
|
o.node.children = new Array();
|
|
o.node.childrenUL = document.createElement("ul");
|
|
o.node.getChildrenUL = function() { return o.node.childrenUL; };
|
|
o.node.li.appendChild(o.node.childrenUL);
|
|
o.node.depth = 0;
|
|
o.node.relpath = relpath;
|
|
|
|
getNode(o, o.node);
|
|
|
|
o.breadcrumbs = findNavTreePage(toroot, NAVTREE);
|
|
if (o.breadcrumbs == null)
|
|
{
|
|
o.breadcrumbs = findNavTreePage("index.html",NAVTREE);
|
|
}
|
|
if (o.breadcrumbs != null && o.breadcrumbs.length>0)
|
|
{
|
|
var p = o.node;
|
|
for (var i in o.breadcrumbs)
|
|
{
|
|
var j = o.breadcrumbs[i];
|
|
p = p.children[j];
|
|
expandNode(o,p,true);
|
|
}
|
|
p.itemDiv.className = p.itemDiv.className + " selected";
|
|
p.itemDiv.id = "selected";
|
|
$(window).load(showRoot);
|
|
}
|
|
}
|
|
|