|
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | # |
3 | | -# gogs_client documentation build configuration file, created by |
| 3 | +# gitea_client documentation build configuration file, created by |
4 | 4 | # sphinx-quickstart on Mon Aug 8 21:56:44 2016. |
5 | 5 | # |
6 | 6 | # This file is execfile()d with the current directory set to its |
|
52 | 52 | master_doc = 'index' |
53 | 53 |
|
54 | 54 | # General information about the project. |
55 | | -project = u'gogs_client' |
| 55 | +project = u'gitea_client' |
56 | 56 | copyright = u'2016, unfoldingWord' |
57 | 57 | author = u'unfoldingWord' |
58 | 58 |
|
|
137 | 137 | # The name for this set of Sphinx documents. |
138 | 138 | # "<project> v<release> documentation" by default. |
139 | 139 | # |
140 | | -# html_title = u'gogs_client v1.0.1' |
| 140 | +# html_title = u'gitea_client v1.0.1' |
141 | 141 |
|
142 | 142 | # A shorter title for the navigation bar. Default is the same as html_title. |
143 | 143 | # |
|
237 | 237 | # html_search_scorer = 'scorer.js' |
238 | 238 |
|
239 | 239 | # Output file base name for HTML help builder. |
240 | | -htmlhelp_basename = 'gogs_clientdoc' |
| 240 | +htmlhelp_basename = 'gitea_clientdoc' |
241 | 241 |
|
242 | 242 | # -- Options for LaTeX output --------------------------------------------- |
243 | 243 |
|
|
263 | 263 | # (source start file, target name, title, |
264 | 264 | # author, documentclass [howto, manual, or own class]). |
265 | 265 | latex_documents = [ |
266 | | - (master_doc, 'gogs_client.tex', u'gogs\\_client Documentation', |
| 266 | + (master_doc, 'gitea_client.tex', u'gitea\\_client Documentation', |
267 | 267 | u'unfoldingWord', 'manual'), |
268 | 268 | ] |
269 | 269 |
|
|
299 | 299 | # One entry per manual page. List of tuples |
300 | 300 | # (source start file, name, description, authors, manual section). |
301 | 301 | man_pages = [ |
302 | | - (master_doc, 'gogs_client', u'gogs_client Documentation', |
| 302 | + (master_doc, 'gitea_client', u'gitea_client Documentation', |
303 | 303 | [author], 1) |
304 | 304 | ] |
305 | 305 |
|
|
314 | 314 | # (source start file, target name, title, author, |
315 | 315 | # dir menu entry, description, category) |
316 | 316 | texinfo_documents = [ |
317 | | - (master_doc, 'gogs_client', u'gogs_client Documentation', |
318 | | - author, 'gogs_client', 'One line description of project.', |
| 317 | + (master_doc, 'gitea_client', u'gitea_client Documentation', |
| 318 | + author, 'gitea_client', 'One line description of project.', |
319 | 319 | 'Miscellaneous'), |
320 | 320 | ] |
321 | 321 |
|
@@ -349,7 +349,7 @@ def maybe_skip_member(app, what, name, obj, skip, options): |
349 | 349 | whitelisted_names = [] |
350 | 350 | if name in whitelisted_names: |
351 | 351 | return False |
352 | | - whitelisted_init_classes = ["GogsApi", "Token", "UsernamePassword", "Builder"] |
| 352 | + whitelisted_init_classes = ["GiteaApi", "Token", "UsernamePassword", "Builder"] |
353 | 353 | if name == "__init__": |
354 | 354 | if hasattr(obj, 'im_class'): |
355 | 355 | return obj.im_class.__name__ not in whitelisted_init_classes |
|
0 commit comments