summaryrefslogtreecommitdiffstats
path: root/particles_tutorial/conf.py
diff options
context:
space:
mode:
authorVladimir Minenko <vladimir.minenko@nokia.com>2012-06-18 12:12:21 +0200
committerVenugopal Shivashankar <venugopal.shivashankar@digia.com>2013-02-08 12:30:13 +0100
commite9053ba3f559fcf8c4d2dd3b6f87cce0979d0244 (patch)
tree0e6503d0068bed7b57ba751d4c200a70e5c5e7d3 /particles_tutorial/conf.py
parent4aa878fe08f8ed3f76cabf8a6b21603fa21fcb09 (diff)
Initial commit to add the learning-guide content
Change-Id: I5eb8ab089b46122bc6f7042e20541bf70f173447 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'particles_tutorial/conf.py')
-rw-r--r--particles_tutorial/conf.py53
1 files changed, 53 insertions, 0 deletions
diff --git a/particles_tutorial/conf.py b/particles_tutorial/conf.py
new file mode 100644
index 0000000..2838da6
--- /dev/null
+++ b/particles_tutorial/conf.py
@@ -0,0 +1,53 @@
+import sys, os
+
+# register path to our extensions relative to this file
+sys.path.insert(0, os.path.abspath('../scripts'))
+
+
+# Do not forget to update the version number in the ./src/readme_XYZ.txt to match the version below
+
+
+# install the shared default configuration
+from qtextensions.shared.conf import *
+
+# -- General configuration -----------------------------------------------------
+
+# General information about the project.
+project = u'Particles and Graphics Effects in Qt Quick 2'
+
+# -- Options for HTML output ---------------------------------------------------
+
+# The name for this set of Sphinx documents. If None, it defaults to
+# "<project> v<release> documentation".
+html_title = "Particles and Graphics Effects in Qt Quick 2"
+
+# A shorter title for the navigation bar. Default is the same as html_title.
+html_short_title = "Particles and Graphics Effects in Qt Quick 2"
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'ParticlesTutorial'
+
+
+# -- Options for LaTeX output --------------------------------------------------
+
+latex_documents = [
+ ('index', 'ParticlesTutorial.tex', u'Particles and Graphics Effects in Qt Quick 2',
+ u'Nokia, Qt Learning', 'manual'),
+]
+
+# -- Options for Epub output ---------------------------------------------------
+
+# The basename for the epub file. It defaults to the project name w/o spaces
+epub_basename = 'ParticlesTutorial'
+
+# Bibliographic Dublin Core info.
+epub_title = u'Particles and Graphics Effects in Qt Quick 2'
+
+# -- Options for Qt Help output ---------------------------------------------------
+# The basename for the Qt help file. It defaults to the project name w/o spaces
+qthelp_basename = 'ParticlesTutorial'
+
+show_authors = True
+
+version = '1.0'
+release = '1.0' \ No newline at end of file