@@ -56,16 +56,8 @@ def grouped_by_persona(tmpdir: Path, repos: Repos):
56
56
{content-type}
57
57
"""
58
58
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
- ]
67
59
usage_section = [
68
- {"Overview" : f .section_file ("usage /index.md" )},
60
+ {"Overview" : f .section_file ("user /index.md" )},
69
61
{
70
62
"Pulpcore" : [
71
63
f .section (
@@ -113,7 +105,7 @@ def grouped_by_persona(tmpdir: Path, repos: Repos):
113
105
),
114
106
]
115
107
development_section = [
116
- {"Overview" : f .section_file ("development /index.md" )},
108
+ {"Overview" : f .section_file ("dev /index.md" )},
117
109
{
118
110
"Pulpcore" : [
119
111
f .section (
@@ -132,22 +124,18 @@ def grouped_by_persona(tmpdir: Path, repos: Repos):
132
124
},
133
125
{"Extras" : f .repo_grouping ("{repo}/docs/dev/{content}" , repo_types = ["other" ])},
134
126
]
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" )},
142
131
]
143
132
144
133
# Main Section
145
134
navigation = [
146
135
{"Home" : "index.md" },
147
136
{"User Manual" : usage_section },
148
137
{"Admin Manual" : admin_section },
149
- {"Development" : development_section },
150
- {"Reference" : reference_section },
138
+ {"Developer Manual" : development_section },
151
139
{"Help" : help_section },
152
140
]
153
141
return navigation
0 commit comments