@@ -56,16 +56,8 @@ def grouped_by_persona(tmpdir: Path, repos: Repos):
5656 {content-type}
5757 """
5858 f = AgregationUtils (tmpdir , repos )
59- help_section = [
60- {"Overview" : f .section_file ("help/index.md" )},
61- {
62- "Bugs, Feature and Backport Requests" : f .section_file (
63- "help/bugs-features.md"
64- )
65- },
66- ]
6759 usage_section = [
68- {"Overview" : f .section_file ("usage /index.md" )},
60+ {"Overview" : f .section_file ("user /index.md" )},
6961 {
7062 "Pulpcore" : [
7163 f .section (
@@ -113,7 +105,7 @@ def grouped_by_persona(tmpdir: Path, repos: Repos):
113105 ),
114106 ]
115107 development_section = [
116- {"Overview" : f .section_file ("development /index.md" )},
108+ {"Overview" : f .section_file ("dev /index.md" )},
117109 {
118110 "Pulpcore" : [
119111 f .section (
@@ -132,22 +124,18 @@ def grouped_by_persona(tmpdir: Path, repos: Repos):
132124 },
133125 {"Extras" : f .repo_grouping ("{repo}/docs/dev/{content}" , repo_types = ["other" ])},
134126 ]
135- reference_section = [
136- {"Overview" : f .section_file ("reference/index.md" )},
137- {"Rest API" : "pulp-docs/docs/rest_api.md" },
138- {"Glossary" : f .section_file ("reference/02-glossary.md" )},
139- {"Pulpcore" : f .section (Names .CORE , f .get_children , "pulpcore/docs/reference" )},
140- {"Plugins" : f .repo_grouping ("{repo}/docs/reference" , repo_types = ["content" ])},
141- {"Extra" : f .repo_grouping ("{repo}/docs/reference" , repo_types = ["other" ])},
127+ help_section = [
128+ {"Overview" : f .section_file ("help/index.md" )},
129+ {"How to use this documentation" : f .section_file ("help/bugs-features.md" )},
130+ {"Changelog" : f .repo_grouping ("{repo}/CHANGES.md" )},
142131 ]
143132
144133 # Main Section
145134 navigation = [
146135 {"Home" : "index.md" },
147136 {"User Manual" : usage_section },
148137 {"Admin Manual" : admin_section },
149- {"Development" : development_section },
150- {"Reference" : reference_section },
138+ {"Developer Manual" : development_section },
151139 {"Help" : help_section },
152140 ]
153141 return navigation
0 commit comments