parent
704c31c378
commit
aa2fc7a98b
8 changed files with 164 additions and 8 deletions
@ -0,0 +1,8 @@ |
||||
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> |
||||
<ul> |
||||
$navpath |
||||
<li class="footer"><a href="@AUTHOR_URL@" target="_blank">@AUTHOR_NAME@</a></li> |
||||
</ul> |
||||
</div> |
||||
</body> |
||||
</html> |
@ -0,0 +1,33 @@ |
||||
<!-- HTML header for doxygen 1.8.6--> |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||||
<html xmlns="http://www.w3.org/1999/xhtml"> |
||||
<head> |
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=9"/> |
||||
<meta name="generator" content="Doxygen $doxygenversion"/> |
||||
<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME--> |
||||
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME--> |
||||
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/> |
||||
<script type="text/javascript" src="$relpath^jquery.js"></script> |
||||
<script type="text/javascript" src="$relpath^dynsections.js"></script> |
||||
$treeview |
||||
$search |
||||
$mathjax |
||||
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" /> |
||||
$extrastylesheet |
||||
</head> |
||||
<body> |
||||
<div id="top"><!-- do not remove this div, it is closed by doxygen! --> |
||||
|
||||
<div id="titlearea"> |
||||
<div id="projecthead"> |
||||
<div id="projectlogo"><img alt="" src="$relpath^$projectlogo"/></div> |
||||
<div id="projectname">$projectname</span> <span id="projectnumber">$projectnumber</div> |
||||
<div id="projectbrief">$projectbrief</div> |
||||
</div> |
||||
<nav> |
||||
<a href="@PROJECT_URL@" target="_blank">Project Management</a> |
||||
<a href="@SOURCE_DOWNLOAD@" target="_blank">Download</a> |
||||
<div>$searchbox</div> |
||||
</nav> |
||||
</div> |
Binary file not shown.
@ -0,0 +1,38 @@ |
||||
#titlearea { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: flex-begin; |
||||
} |
||||
#titlearea nav { |
||||
padding: 0; |
||||
margin: 0; |
||||
} |
||||
#titlearea nav a { |
||||
background-color: lightgray; |
||||
border: 1px solid gray; |
||||
color: black; |
||||
padding: 1ex; |
||||
margin: 0; |
||||
} |
||||
img, object { |
||||
max-width: 100% !important; |
||||
} |
||||
@media (max-width: 50em) { |
||||
#navrow1, #navrow2 { |
||||
display: block |
||||
} |
||||
#side-nav, #splitbar, .ui-resizable-handle ui-resizable-e, .ui-resizable-handle ui-resizable-s { |
||||
display: none; |
||||
} |
||||
#doc-content { |
||||
margin-left: 0 !important; |
||||
} |
||||
} |
||||
@media (min-width: 50em) { |
||||
#navrow1, #navrow2 { |
||||
display: none; |
||||
} |
||||
#side-nav, #splitbar, .ui-resizable-handle ui-resizable-e, .ui-resizable-handle ui-resizable-s { |
||||
display: block |
||||
} |
||||
} |
@ -0,0 +1,9 @@ |
||||
## @id $Id$ |
||||
|
||||
## 1 2 3 4 5 6 7 8 |
||||
## 45678901234567890123456789012345678901234567890123456789012345678901234567890 |
||||
|
||||
%.gcda: % |
||||
gcov $< |
||||
|
||||
CLEANFILES += ${CLEANFILES} ${TEST:%=%.gcno} ${TEST:%=%.gcda} *.gcov |
Loading…
Reference in new issue