Merge lp:~nskaggs/ubuntu-ui-toolkit/emulator-docs-try2 into lp:ubuntu-ui-toolkit

Proposed by Nicholas Skaggs
Status: Superseded
Proposed branch: lp:~nskaggs/ubuntu-ui-toolkit/emulator-docs-try2
Merge into: lp:ubuntu-ui-toolkit
Diff against target: 700 lines (+591/-5) (has conflicts)
9 files modified
README (+22/-2)
debian/changelog (+6/-0)
debian/control (+3/-2)
debian/rules (+3/-1)
docs-autopilot-emulator/_static/nature.css (+211/-0)
docs-autopilot-emulator/_templates/layout.html (+28/-0)
docs-autopilot-emulator/conf.py (+285/-0)
docs-autopilot-emulator/index.rst (+23/-0)
docs-autopilot-emulator/ubuntuuitoolkit.rst (+10/-0)
Conflict: can't delete documentation.moved because it is not empty.  Not deleting.
Conflict adding file documentation.  Moved existing file to documentation.moved.
Conflict because documentation.moved is not versioned, but has versioned children.  Versioned directory.
To merge this branch: bzr merge lp:~nskaggs/ubuntu-ui-toolkit/emulator-docs-try2
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Needs Fixing
Cris Dywan Needs Fixing
Review via email: mp+193132@code.launchpad.net

This proposal has been superseded by a proposal from 2013-12-17.

Commit message

add sphinx build system for autopilot emulators docs.

Description of the change

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Cris Dywan (kalikiana) wrote :

This is missing a dependency:

=== modified file 'debian/control'
--- debian/control 2013-11-22 20:06:11 +0000
+++ debian/control 2013-11-27 09:41:30 +0000
@@ -7,6 +7,7 @@ Build-Depends: debhelper (>= 9.0.0),
                libgles2-mesa-dev,
                libglib2.0-dev,
                python,
+ python-sphinx,
                libqt5qml-graphicaleffects | libqt5graphicaleffects5,
                qt5-default,
                qtbase5-dev,

review: Needs Fixing
Revision history for this message
Cris Dywan (kalikiana) wrote :

I also get a bunch of warnings by "pep8 docs-autopilot-emulator/conf.py" which Jenkins will complain about.

review: Needs Fixing
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)

Unmerged revisions

815. By Nicholas Skaggs

fix missing depends, pep8 issues

814. By Nicholas Skaggs

rebase to trunk

813. By Nicholas Skaggs

update changelog
------ This line and the following will be ignored --------------

modified:
  debian/changelog
unknown:
  debian/qtdeclarative5-ubuntu-ui-toolkit-plugin.debhelper.log
  debian/ubuntu-ui-toolkit-autopilot.debhelper.log
  debian/ubuntu-ui-toolkit-doc.debhelper.log
  debian/ubuntu-ui-toolkit-examples.debhelper.log
  debian/ubuntu-ui-toolkit-theme.debhelper.log

812. By Nicholas Skaggs

add sphinx build

811. By Nicholas Skaggs

retrying corey's changes to merge to the uitk project

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'README'
--- README 2013-04-24 17:09:29 +0000
+++ README 2013-12-17 19:57:06 +0000
@@ -47,6 +47,26 @@
47Documentation47Documentation
48-------------48-------------
4949
50Main Documentation (QDocs):
51+++++++++++++++++++++++++++
52
50Once built, you may view the documentation by opening 53Once built, you may view the documentation by opening
51 documentation/html/overview-ubuntu-sdk.html54`documentation/html/overview-ubuntu-sdk.html` in your favorite web browser.
52in your favorite web browser.55
56
57Autopilot Emulators (Sphinx docs):
58++++++++++++++++++++++++++++++++++
59
60To build the AutoPilot Emulators API documentation (html),
61
62 * install python-sphinx::
63
64 $ sudo apt-get install python-sphinx
65
66 * from the branch's root, run::
67
68 $ sphinx-build -b html docs-autopilot-emulator emulator-html
69
70 * Once built, you may view the documentation by opening
71 `emulator-html/ubuntuuitoolkit.html` in your favorite web browser.
72
5373
=== modified file 'debian/changelog'
--- debian/changelog 2013-11-29 20:24:58 +0000
+++ debian/changelog 2013-12-17 19:57:06 +0000
@@ -275,6 +275,12 @@
275275
276 -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 05 Nov 2013 16:51:13 +0000276 -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 05 Nov 2013 16:51:13 +0000
277277
278ubuntu-ui-toolkit (0.1.46+13.10.20131011.2-0ubuntu2) UNRELEASED; urgency=low
279
280 * add sphinx documentation
281
282 -- Nicholas Skaggs <nicholas.skaggs@canonical.com> Tue, 29 Oct 2013 17:28:30 -0400
283
278ubuntu-ui-toolkit (0.1.46+13.10.20131011.2-0ubuntu1) saucy; urgency=low284ubuntu-ui-toolkit (0.1.46+13.10.20131011.2-0ubuntu1) saucy; urgency=low
279285
280 [ Zsombor Egri ]286 [ Zsombor Egri ]
281287
=== modified file 'debian/control'
--- debian/control 2013-12-02 05:35:06 +0000
+++ debian/control 2013-12-17 19:57:06 +0000
@@ -40,8 +40,8 @@
40 locales,40 locales,
41Standards-Version: 3.9.441Standards-Version: 3.9.4
42Homepage: https://launchpad.net/ubuntu-ui-toolkit42Homepage: https://launchpad.net/ubuntu-ui-toolkit
43# If you aren't a member of ~ubuntu-sdk-team but need to upload packaging 43# If you aren't a member of ~ubuntu-sdk-team but need to upload packaging
44# changes, just go ahead. ~ubuntu-sdk-team will notice and sync up the code 44# changes, just go ahead. ~ubuntu-sdk-team will notice and sync up the code
45# again.45# again.
46Vcs-Bzr: https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/trunk46Vcs-Bzr: https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/trunk
4747
@@ -132,6 +132,7 @@
132 libqt5widgets5,132 libqt5widgets5,
133 python-autopilot (>= 1.4),133 python-autopilot (>= 1.4),
134 python-mock,134 python-mock,
135 python-sphinx,
135 ubuntu-ui-toolkit-examples (>= ${source:Version}),136 ubuntu-ui-toolkit-examples (>= ${source:Version}),
136Description: Test package for Ubuntu UI Toolkit137Description: Test package for Ubuntu UI Toolkit
137 Autopilot tests for the ubuntu-ui-toolkit package138 Autopilot tests for the ubuntu-ui-toolkit package
138139
=== modified file 'debian/rules'
--- debian/rules 2013-10-14 15:59:19 +0000
+++ debian/rules 2013-12-17 19:57:06 +0000
@@ -8,8 +8,10 @@
8%:8%:
9 dh $@ --fail-missing9 dh $@ --fail-missing
1010
11
11override_dh_install:12override_dh_install:
12 dh_auto_build -- docs13 dh_auto_build -- docs
13 mkdir -p debian/tmp/`qmake -query QT_INSTALL_DOCS`/qch 14 sphinx-build -b html docs-autopilot-emulator emulator-html
15 mkdir -p debian/tmp/`qmake -query QT_INSTALL_DOCS`/qch
14 dh_install --fail-missing16 dh_install --fail-missing
1517
1618
=== added directory 'docs-autopilot-emulator'
=== added directory 'docs-autopilot-emulator/_static'
=== added file 'docs-autopilot-emulator/_static/favicon.ico'
17Binary files docs-autopilot-emulator/_static/favicon.ico 1970-01-01 00:00:00 +0000 and docs-autopilot-emulator/_static/favicon.ico 2013-12-17 19:57:06 +0000 differ19Binary files docs-autopilot-emulator/_static/favicon.ico 1970-01-01 00:00:00 +0000 and docs-autopilot-emulator/_static/favicon.ico 2013-12-17 19:57:06 +0000 differ
=== added file 'docs-autopilot-emulator/_static/nature.css'
--- docs-autopilot-emulator/_static/nature.css 1970-01-01 00:00:00 +0000
+++ docs-autopilot-emulator/_static/nature.css 2013-12-17 19:57:06 +0000
@@ -0,0 +1,211 @@
1/*
2 Copyright 2013 Canonical Ltd.
3*/
4
5 @import url(basic.css);
6
7body {
8 font-family:Ubuntu, "DejaVu Sans", "Trebuchet MS", sans-serif;
9 font-size:100%;
10 background-color:#2C001E;
11 margin:0;
12 padding:0;
13 }
14
15div.documentwrapper {
16 float:left;
17 width:100%;
18}
19
20div.bodywrapper {
21 margin:0 0 0 0;
22}
23
24hr {
25 border:1px solid #B1B4B6;
26}
27
28div.body {
29 background-color:#FFF;
30 color:#3E4349;
31 font-size:.9em;
32 padding:0 30px 30px;
33}
34
35div.footer {
36 color:#CCC;
37 width:100%;
38 text-align:center;
39 font-size:75%;
40 padding:13px 0;
41}
42
43div.footer a {
44 color:#444;
45 text-decoration:underline;
46}
47
48div.related {
49 background-color:#DD4814;
50 line-height:32px;
51 color:#fff;
52 font-size:.9em;
53}
54
55div.related a {
56 color:#EEE;
57}
58
59div.sphinxsidebar {
60 font-size:.75em;
61 line-height:1.5em;
62}
63
64div.sphinxsidebarwrapper {
65 padding:20px 0;
66}
67
68div.sphinxsidebar h3,
69div.sphinxsidebar h4 {
70 font-family:Ubuntu, "DejaVu Sans", "Trebuchet MS", sans-serif;
71 color:#222;
72 font-size:1.2em;
73 font-weight:400;
74 background-color:#ddd;
75 margin:0;
76 padding:5px 10px;
77}
78
79div.sphinxsidebar p {
80 color:#444;
81 padding:2px 10px;
82}
83
84div.sphinxsidebar ul {
85 color:#000;
86 margin:10px 5px;
87 padding:0;
88}
89
90div.sphinxsidebar input {
91 border:1px solid #ccc;
92 font-family:Ubuntu, "DejaVu Sans", "Trebuchet MS", sans-serif;
93 font-size:1em;
94}
95
96div.sphinxsidebar input[type=text] {
97 margin-left:5px;
98}
99
100a {
101 color:#5E2750;
102 text-decoration:none;
103}
104
105a:hover {
106 color:#DD4814;
107 text-decoration:underline;
108}
109
110div.body h1 {
111 font-family:Ubuntu, "DejaVu Sans", "Trebuchet MS", sans-serif;
112 font-weight:bold;
113 font-size:200%;
114 color:#444;
115 margin:20px 0 10px;
116 padding:5px 0 5px 10px;
117}
118
119div.body h2 {
120 font-family:Ubuntu, "DejaVu Sans", "Trebuchet MS", sans-serif;
121 font-size:130%;
122 background-color:#CCC;
123 margin:20px 0 10px;
124 padding:5px 0 5px 10px;
125}
126
127div.body h6 {
128 font-family:Ubuntu, "DejaVu Sans", "Trebuchet MS", sans-serif;
129 background-color:#BED4EB;
130 font-weight:400;
131 color:#333;
132 margin:30px 0 10px;
133 padding:5px 0 5px 10px;
134}
135
136a.headerlink {
137 text-decoration:none;
138 padding:0 4px;
139}
140
141a.headerlink:hover {
142 background-color:#AEA79F;
143 color:#FFF;
144}
145
146div.body p,div.body dd,div.body li {
147 line-height:1.5em;
148}
149
150div.highlight {
151 background-color:#FFF;
152}
153
154div.note {
155 background-color:#eee;
156 border:1px solid #ccc;
157}
158
159div.seealso {
160 background-color:#ffc;
161 border:1px solid #ff6;
162}
163
164div.warning {
165 background-color:#ffe4e4;
166 border:1px solid #f66;
167}
168
169p.admonition-title:after {
170 content:":";
171}
172
173pre {
174 background-color:#EFEFEF;
175 color:#000;
176 line-height:1.1em;
177 border:1px solid #C6C9CB;
178 font-size:1.2em;
179 font-family:"Ubuntu Mono", Monaco, Consolas, "DejaVu Sans Mono", "Lucida Console", monospace;
180 margin:1.5em 0;
181 padding:6px;
182}
183
184tt {
185 background-color:#EFEFEF;
186 color:#222;
187 font-size:1.1em;
188 font-family:"Ubuntu Mono", Monaco, Consolas, "DejaVu Sans Mono", "Lucida Console", monospace;
189}
190
191.viewcode-back {
192 font-family:Ubuntu, "DejaVu Sans", "Trebuchet MS", sans-serif;
193}
194
195div.viewcode-block:target {
196 background-color:#f4debf;
197 border-top:1px solid #ac9;
198 border-bottom:1px solid #ac9;
199}
200
201div.document,div.topic {
202 background-color:#eee;
203}
204
205div.sphinxsidebar h3 a,div.sphinxsidebar a {
206 color:#444;
207}
208
209div.admonition p.admonition-title + p,p.admonition-title {
210 display:inline;
211}
0212
=== added directory 'docs-autopilot-emulator/_templates'
=== added file 'docs-autopilot-emulator/_templates/layout.html'
--- docs-autopilot-emulator/_templates/layout.html 1970-01-01 00:00:00 +0000
+++ docs-autopilot-emulator/_templates/layout.html 2013-12-17 19:57:06 +0000
@@ -0,0 +1,28 @@
1<!--
2 Copyright 2013 Canonical Ltd.
3-->
4
5{#
6 default/layout.html
7 ~~~~~~~~~~~~~~~~~~~
8
9 Sphinx layout template for the default theme.
10
11 :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
12 :license: BSD, see LICENSE for details.
13#}
14{% extends "basic/layout.html" %}
15
16{%- block content %}
17<div class="document">
18 {%- block document %}
19 <div class="documentwrapper">
20 {%- if render_sidebar %}
21 <div class="bodywrapper">
22 {%- endif %}
23 <div class="body">
24 {% block body %} {% endblock %}
25 </div>
26 </div>
27 {%- endblock %}
28{%- endblock %}
0\ No newline at end of file29\ No newline at end of file
130
=== added file 'docs-autopilot-emulator/conf.py'
--- docs-autopilot-emulator/conf.py 1970-01-01 00:00:00 +0000
+++ docs-autopilot-emulator/conf.py 2013-12-17 19:57:06 +0000
@@ -0,0 +1,285 @@
1#-*- coding: utf-8 -*-
2#
3#ubuntu-ui-toolkit-autopilot documentation build configuration file, created by
4#sphinx-quickstart on Fri Jul 26 12:12:45 2013.
5#
6#This file is execfile()d with the current directory set to its containing dir.
7#
8#Note that not all possible configuration values are present in this
9#autogenerated file.
10#
11#All configuration values have a default; values that are commented out
12#serve to show the default.
13
14import sys, os
15
16#If extensions (or modules to document with autodoc) are in another directory,
17#add these directories to sys.path here. If the directory is relative to the
18#documentation root, use os.path.abspath to make it absolute, like shown here.
19sys.path.insert(0, os.path.abspath('../tests/autopilot/'))
20
21#-- General configuration -----------------------------------------------------
22
23#If your documentation needs a minimal Sphinx version, state it here.
24#needs_sphinx = '1.0'
25
26#Add any Sphinx extension module names here, as strings. They can be extensions
27#coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
28extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode']
29
30#Add any paths that contain templates here, relative to this directory.
31templates_path = ['_templates']
32
33#The suffix of source filenames.
34source_suffix = '.rst'
35
36#The encoding of source files.
37#source_encoding = 'utf-8-sig'
38
39#The master toctree document.
40master_doc = 'index'
41
42#General information about the project.
43project = u'ubuntu-ui-toolkit-autopilot'
44copyright = u'2013, Canonical'
45
46#The version info for the project you're documenting, acts as replacement for
47#|version| and |release|, also used in various other places throughout the
48#built documents.
49#
50#The short X.Y version.
51version = ''
52#The full version, including alpha/beta/rc tags.
53release = ''
54
55#The language for content autogenerated by Sphinx. Refer to documentation
56#for a list of supported languages.
57#language = None
58
59#There are two options for replacing |today|: either, you set today to some
60#non-false value, then it is used:
61#today = ''
62#Else, today_fmt is used as the format for a strftime call.
63#today_fmt = '%B %d, %Y'
64
65#List of patterns, relative to source directory, that match files and
66#directories to ignore when looking for source files.
67exclude_patterns = ['_build']
68
69#The reST default role (used for this markup: `text`) to use for all documents.
70#default_role = None
71
72#If true, '()' will be appended to :func: etc. cross-reference text.
73#add_function_parentheses = True
74
75#If true, the current module name will be prepended to all description
76#unit titles (such as .. function::).
77#add_module_names = True
78
79#If true, sectionauthor and moduleauthor directives will be shown in the
80#output. They are ignored by default.
81#show_authors = False
82
83#The name of the Pygments (syntax highlighting) style to use.
84pygments_style = 'sphinx'
85
86#A list of ignored prefixes for module index sorting.
87#modindex_common_prefix = []
88
89
90#-- Options for HTML output ---------------------------------------------------
91
92#The theme to use for HTML and HTML Help pages. See the documentation for
93#a list of builtin themes.
94html_theme = 'nature'
95
96#Theme options are theme-specific and customize the look and feel of a theme
97#further. For a list of options available for each theme, see the
98#documentation.
99#html_theme_options = {}
100
101#Add any paths that contain custom themes here, relative to this directory.
102#html_theme_path = []
103
104#The name for this set of Sphinx documents. If None, it defaults to
105#"<project> v<release> documentation".
106#html_title = None
107
108#A shorter title for the navigation bar. Default is the same as html_title.
109#html_short_title = None
110
111#The name of an image file (relative to this directory) to place at the top
112#of the sidebar.
113#html_logo = None
114
115#The name of an image file (within the static path) to use as favicon of the
116#docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
117#pixels large.
118html_favicon = 'favicon.ico'
119
120#Add any paths that contain custom static files (such as style sheets) here,
121#relative to this directory. They are copied after the builtin static files,
122#so a file named "default.css" will overwrite the builtin "default.css".
123html_static_path = ['_static']
124
125#If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
126#using the given strftime format.
127#html_last_updated_fmt = '%b %d, %Y'
128
129#If true, SmartyPants will be used to convert quotes and dashes to
130#typographically correct entities.
131#html_use_smartypants = True
132
133#Custom sidebar templates, maps document names to template names.
134#html_sidebars = {}
135
136#Additional templates that should be rendered to pages, maps page names to
137#template names.
138#html_additional_pages = {}
139
140#If false, no module index is generated.
141html_domain_indices = True
142
143#If false, no index is generated.
144html_use_index = True
145
146#If true, the index is split into individual pages for each letter.
147#html_split_index = False
148
149#If true, links to the reST sources are added to the pages.
150html_show_sourcelink = False
151
152#If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
153html_show_sphinx = False
154
155#If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
156html_show_copyright = True
157
158#If true, an OpenSearch description file will be output, and all pages will
159#contain a <link> tag referring to it. The value of this option must be the
160#base URL from which the finished HTML is served.
161#html_use_opensearch = ''
162
163#This is the file name suffix for HTML files (e.g. ".xhtml").
164html_file_suffix = '.html'
165
166#Output file base name for HTML help builder.
167htmlhelp_basename = 'ubuntu-ui-toolkit-autopilotdoc'
168
169
170#-- Options for LaTeX output --------------------------------------------------
171
172latex_elements = {
173#The paper size ('letterpaper' or 'a4paper').
174#'papersize': 'letterpaper',
175
176#The font size ('10pt', '11pt' or '12pt').
177#'pointsize': '10pt',
178
179#Additional stuff for the LaTeX preamble.
180#'preamble': '',
181}
182
183#Grouping the document tree into LaTeX files. List of tuples
184#(source start file, target name, title, author, documentclass [howto/manual]).
185latex_documents = [
186 ('index', 'ubuntu-ui-toolkit-autopilot.tex', u'ubuntu-ui-toolkit-autopilot Documentation',
187 u'authors', 'manual'),
188]
189
190#The name of an image file (relative to this directory) to place at the top of
191#the title page.
192#latex_logo = None
193
194#For "manual" documents, if this is true, then toplevel headings are parts,
195#not chapters.
196#latex_use_parts = False
197
198#If true, show page references after internal links.
199#latex_show_pagerefs = False
200
201#If true, show URL addresses after external links.
202#latex_show_urls = False
203
204#Documents to append as an appendix to all manuals.
205#latex_appendices = []
206
207#If false, no module index is generated.
208#latex_domain_indices = True
209
210
211#-- Options for manual page output --------------------------------------------
212
213#One entry per manual page. List of tuples
214#(source start file, name, description, authors, manual section).
215man_pages = [
216 ('index', 'ubuntu-ui-toolkit-autopilot', u'ubuntu-ui-toolkit-autopilot Documentation',
217 [u'authors'], 1)
218]
219
220#If true, show URL addresses after external links.
221#man_show_urls = False
222
223
224#-- Options for Texinfo output ------------------------------------------------
225
226#Grouping the document tree into Texinfo files. List of tuples
227#(source start file, target name, title, author,
228# dir menu entry, description, category)
229texinfo_documents = [
230 ('index', 'ubuntu-ui-toolkit-autopilot', u'ubuntu-ui-toolkit-autopilot Documentation',
231 u'authors', 'ubuntu-ui-toolkit-autopilot', 'An autopilot emulator for the ubuntu sdk',
232 'Miscellaneous'),
233]
234
235#Documents to append as an appendix to all manuals.
236#texinfo_appendices = []
237
238#If false, no module index is generated.
239#texinfo_domain_indices = True
240
241#How to display URL addresses: 'footnote', 'no', or 'inline'.
242#texinfo_show_urls = 'footnote'
243
244
245#-- Options for Epub output ---------------------------------------------------
246
247#Bibliographic Dublin Core info.
248epub_title = u'ubuntu-ui-toolkit-autopilot'
249epub_author = u'authors'
250epub_publisher = u'Canonical'
251epub_copyright = u'2013, Canonical'
252
253#The language of the text. It defaults to the language option
254#or en if the language is not set.
255#epub_language = ''
256
257#The scheme of the identifier. Typical schemes are ISBN or URL.
258#epub_scheme = ''
259
260#The unique identifier of the text. This can be a ISBN number
261#or the project homepage.
262#epub_identifier = ''
263
264#A unique identification for the text.
265#epub_uid = ''
266
267#A tuple containing the cover image and cover page html template filenames.
268#epub_cover = ()
269
270#HTML files that should be inserted before the pages created by sphinx.
271#The format is a list of tuples containing the path and title.
272#epub_pre_files = []
273
274#HTML files shat should be inserted after the pages created by sphinx.
275#The format is a list of tuples containing the path and title.
276#epub_post_files = []
277
278#A list of files that should not be packed into the epub file.
279#epub_exclude_files = []
280
281#The depth of the table of contents in toc.ncx.
282#epub_tocdepth = 3
283
284#Allow duplicate toc entries.
285#epub_tocdup = True
0286
=== added file 'docs-autopilot-emulator/index.rst'
--- docs-autopilot-emulator/index.rst 1970-01-01 00:00:00 +0000
+++ docs-autopilot-emulator/index.rst 2013-12-17 19:57:06 +0000
@@ -0,0 +1,23 @@
1.. ubuntu-ui-toolkit-autopilot documentation master file, created by
2 sphinx-quickstart on Fri Jul 26 12:12:45 2013.
3 You can adapt this file completely to your liking, but it should at least
4 contain the root `toctree` directive.
5
6Welcome to ubuntu-ui-toolkit-autopilot's documentation!
7=======================================================
8
9Contents:
10
11.. toctree::
12 :maxdepth: 4
13
14 ubuntuuitoolkit
15
16
17Indices and tables
18==================
19
20* :ref:`genindex`
21* :ref:`modindex`
22* :ref:`search`
23
024
=== added file 'docs-autopilot-emulator/ubuntuuitoolkit.rst'
--- docs-autopilot-emulator/ubuntuuitoolkit.rst 1970-01-01 00:00:00 +0000
+++ docs-autopilot-emulator/ubuntuuitoolkit.rst 2013-12-17 19:57:06 +0000
@@ -0,0 +1,10 @@
1ubuntuuitoolkit Package
2=======================
3
4:mod:`emulators` Module
5-----------------------
6
7.. automodule:: ubuntuuitoolkit.emulators
8 :members:
9 :undoc-members:
10 :show-inheritance:
011
=== added directory 'documentation'
=== renamed directory 'documentation' => 'documentation.moved'
=== renamed file 'documentation/all-modules.qdoc' => 'documentation/all-modules.qdoc'
=== renamed directory 'documentation/css' => 'documentation/css'
=== renamed file 'documentation/docs.sh' => 'documentation/docs.sh'
=== renamed file 'documentation/documentation.pri' => 'documentation/documentation.pri'
=== removed directory 'documentation/html'
=== renamed directory 'documentation/images' => 'documentation/images'
=== renamed file 'documentation/overview.qdoc' => 'documentation/overview.qdoc'
=== renamed file 'documentation/resolution-independence.qdoc' => 'documentation/resolution-independence.qdoc'
=== renamed directory 'documentation/snippets' => 'documentation/snippets'
=== renamed file 'documentation/statesaving.qdoc' => 'documentation/statesaving.qdoc'
=== renamed file 'documentation/ubuntu-appdev-site-footer.qdocconf' => 'documentation/ubuntu-appdev-site-footer.qdocconf'
=== renamed file 'documentation/ubuntu-appdev-site-header.qdocconf' => 'documentation/ubuntu-appdev-site-header.qdocconf'
=== renamed file 'documentation/ubuntu-components-listitems.qdoc' => 'documentation/ubuntu-components-listitems.qdoc'
=== renamed file 'documentation/ubuntu-components-pickers.qdoc' => 'documentation/ubuntu-components-pickers.qdoc'
=== renamed file 'documentation/ubuntu-components-popups.qdoc' => 'documentation/ubuntu-components-popups.qdoc'
=== renamed file 'documentation/ubuntu-components.qdoc' => 'documentation/ubuntu-components.qdoc'
=== renamed file 'documentation/ubuntu-layouts.qdoc' => 'documentation/ubuntu-layouts.qdoc'
=== renamed file 'documentation/ubuntu-ui-toolkit-common.qdocconf' => 'documentation/ubuntu-ui-toolkit-common.qdocconf'
=== renamed file 'documentation/ubuntu-ui-toolkit-offline.qdocconf' => 'documentation/ubuntu-ui-toolkit-offline.qdocconf'
=== renamed file 'documentation/ubuntu-ui-toolkit-online.qdocconf' => 'documentation/ubuntu-ui-toolkit-online.qdocconf'
=== renamed file 'documentation/ubuntu-ui-toolkit-qtcreator.qdocconf' => 'documentation/ubuntu-ui-toolkit-qtcreator.qdocconf'

Subscribers

People subscribed via source and target branches

to status/vote changes: