This repository was archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuild_docs.py
executable file
·143 lines (114 loc) · 4.65 KB
/
build_docs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# -*- coding: utf-8 -*-
#
# AWS Sphinx configuration file.
#
# For more information about how to configure this file, see:
#
# https://w.amazon.com/index.php/AWSDevDocs/Sphinx
#
#
# General information about the project.
#
# Optional service/SDK name, typically the three letter acronym (TLA) that
# represents the service, such as 'SWF'. If this is an SDK, you can use 'SDK'
# here.
service_name = u'Mobile SDK'
# The long version of the service or SDK name, such as "Amazon Simple Workflow
# Service", "AWS Flow Framework for Ruby" or "AWS SDK for Java"
service_name_long = u'AWS ' + service_name
# The landing page for the service documentation.
service_docs_home = u'http://aws.amazon.com/documentation/mobile-sdk/'
project = u'iOS Developer Guide'
# A short description of the project.
project_desc = u'%s %s' % (service_name_long, project)
# the output will be generated in latest/<project_basename> and will appear on
# the web using the same basename.
project_basename = 'mobile/sdkforios/developerguide'
# This name is used as the manual / PDF name. Don't include the extension
# (.pdf) here.
man_name = 'aws-ios-dg'
# The language for this version of the docs. Typically 'en'. For a full list of
# values, see: http://sphinx-doc.org/config.html#confval-language
language = u'en'
# Whether or not to show the PDF link. If you generate a PDF for your
# documentation, set this to True.
show_pdf_link = True
# Whether or not to show the language selector
show_lang_selector = True
# The link to the top of the doc source tree on GitHub. This allows generation
# of per-page "Edit on GitHub" links.
github_doc_url = 'https://github.com/awsdocs/aws-ios-developer-guide/tree/master/doc_source'
#
# Version Information
#
# The version info for the project you're documenting, acts as replacement for
# |version| and |release| substitutions in the documentation, and is also used
# in various other places throughout the built documents.
# The short X.Y version.
version = '0.0.3'
# The full version, including alpha/beta/rc tags.
release = '0.0.3'
#
# Forum Information
#
# Optional forum ID. If there's a relevant forum at forums.aws.amazon.com, then
# set the ID here. If not set, then no forum ID link will be generated.
forum_id = '88'
#
# Navlinks
#
# Extra navlinks. You can specify additional links to appear in the top bar here
# as navlink name / url pairs. If extra_navlinks is not set, then no extra
# navlinks will be generated.
#
# extra_navlinks = [
# ('API Reference', 'http://path/to/api/reference'),
# ('GitHub', 'http://path/to/github/project'),
# ]
extra_navlinks = [
('API Reference', 'http://docs.aws.amazon.com/AWSiOSSDK/latest/'),
('GitHub', 'https://github.com/aws/aws-sdk-ios'),
('Samples', 'https://github.com/awslabs/aws-sdk-ios-samples'),
('Download SDK',
'http://sdk-for-ios.amazonwebservices.com/latest/aws-ios-sdk.zip'),
]
build_html = True
build_pdf = True #Or False if you don't build a pdf
build_mobi = False #Or the Kindle ASIN if you need a Kindle build
feedback_name = 'Mobile SDK Docs'
# For the url docs.aws.amazon.com/docset-root/version/guide-name
docset_path_slug = 'mobile'
version_path_slug = 'sdkforios'
guide_path_slug = 'developerguide'
#
# EXTRA_CONF_CONTENT -- don't change, move or remove this line!
#
# Any settings *below* this act as overrides for the default config content.
# Declare extlinks <http://sphinx-doc.org/latest/ext/extlinks.html> and
# additional configuration details specific to this documentation set here.
if 'extlinks' not in vars():
extlinks = {}
# The feedback name is different than the service name...
html_theme_options = {} #['feedback_name'] = u'Mobile SDK Docs'
#-- Intersphinx mappings ------------------------------------------------------
# Mappings are used if you have more than one doc set that you'd like to refer
# to. The syntax is generally::
#
# intersphinx_mapping = { 'mapname' : ('url', None) }
#
# For more information about intersphinx mappings, see:
#
# * http://sphinx-doc.org/latest/ext/intersphinx.html
#
aws_docs_url = 'http://' + aws_domains['documentation']
intersphinx_mapping = {
'sdkforandroid': (aws_docs_url + '/mobile/sdkforandroid/developerguide', None),
# 'sdkforios': (aws_docs_url + '/mobile/sdkforios/developerguide', None),
'sdkforunity': (aws_docs_url + '/mobile/sdkforunity/developerguide', None),
'sdkforxamarin': (aws_docs_url + '/mobile/sdkforxamarin/developerguide', None),
}
extlinks.update({
# links to API pages or other non-standard guide links.
'pol-dg': (aws_docs_url + '/lex/latest/developerguide/%s.html', ''),
'lex-dg': (aws_docs_url + '/polly/latest/dg/%s.html', '')
})