182 return doc |
182 return doc |
183 |
183 |
184 return loader |
184 return loader |
185 |
185 |
186 internalstable = sorted([ |
186 internalstable = sorted([ |
187 (['bundles'], _('container for exchange of repository data'), |
187 (['bundles'], _('Bundles'), |
188 loaddoc('bundles', subdir='internals')), |
188 loaddoc('bundles', subdir='internals')), |
189 (['changegroups'], _('representation of revlog data'), |
189 (['changegroups'], _('Changegroups'), |
190 loaddoc('changegroups', subdir='internals')), |
190 loaddoc('changegroups', subdir='internals')), |
191 (['requirements'], _('repository requirements'), |
191 (['requirements'], _('Repository Requirements'), |
192 loaddoc('requirements', subdir='internals')), |
192 loaddoc('requirements', subdir='internals')), |
193 (['revlogs'], _('revision storage mechanism'), |
193 (['revlogs'], _('Revision Logs'), |
194 loaddoc('revlogs', subdir='internals')), |
194 loaddoc('revlogs', subdir='internals')), |
195 ]) |
195 ]) |
196 |
196 |
197 def internalshelp(ui): |
197 def internalshelp(ui): |
198 """Generate the index for the "internals" topic.""" |
198 """Generate the index for the "internals" topic.""" |