<html lang="en">
<head>
<meta charset="UTF-8" />
- <title>My Project » Uppercase page | My Project</title>
+ <title>A page » Uppercase page | My Project</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600" />
<link rel="stylesheet" href="m-dark+documentation.compiled.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<div class="m-row">
<div class="m-col-l-10 m-push-l-1">
<h1>
- <span class="m-breadcrumb"><a href="index.html">My Project</a> »</span>
+ <span class="m-breadcrumb"><a href="page.html">A page</a> »</span>
Uppercase page
</h1>
<p>This should get saved to a correct place and also get correctly linked to.</p>
-/** @mainpage
+/** @page page A page
- @subpage UPPERCASE
- @ref UPPERCLASS
<html lang="en">
<head>
<meta charset="UTF-8" />
- <title>My Project</title>
+ <title>A page | My Project</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600" />
<link rel="stylesheet" href="m-dark+documentation.compiled.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<div class="m-row">
<div class="m-col-l-10 m-push-l-1">
<h1>
- My Project
+ A page
</h1>
<ul><li><a href="_u_p_p_e_r_c_a_s_e.html" class="m-doc">Uppercase page</a></li><li><a href="class_u_p_p_e_r_c_l_a_s_s.html" class="m-doc">UPPERCLASS</a></li></ul>
</div>
<h1>Pages</h1>
<ul class="m-doc">
<li class="m-doc-collapsible">
- <a href="#" onclick="return toggle(this)"></a><a href="index.html" class="m-doc">My Project</a> <span class="m-doc"></span>
+ <a href="#" onclick="return toggle(this)"></a><a href="page.html" class="m-doc">A page</a> <span class="m-doc"></span>
<ul class="m-doc">
<li><a href="_u_p_p_e_r_c_a_s_e.html" class="m-doc">Uppercase page</a> <span class="m-doc"></span></li>
</ul>
# Verify that all filenames are "converted" to lowercase and the links
# and page tree work properly as well
- self.assertEqual(*self.actual_expected_contents('index.html'))
+ self.assertEqual(*self.actual_expected_contents('page.html'))
self.assertEqual(*self.actual_expected_contents('pages.html'))
self.assertEqual(*self.actual_expected_contents('_u_p_p_e_r_c_a_s_e.html'))
self.assertEqual(*self.actual_expected_contents('class_u_p_p_e_r_c_l_a_s_s.html'))
self.assertEqual(*self.actual_expected_contents('untitled.html'))
class SubpageOfIndex(IntegrationTestCase):
+ @unittest.skipUnless(LooseVersion(doxygen_version()) >= LooseVersion("1.8.17"),
+ "1.8.16 and below doesn't mark the page as subpage of index")
def test(self):
self.run_doxygen(wildcard='*.xml')
self.assertEqual(*self.actual_expected_contents('page.html'))