source: rtems-docs/user/conf.py @ 42d50d7

5
Last change on this file since 42d50d7 was f97be09, checked in by Chris Johns <chrisj@…>, on 03/20/17 at 01:18:53

Use a single top level version number.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1import sys, os
2sys.path.append(os.path.abspath('../common/'))
3
4from conf import *
5
6project = "RTEMS User Manual"
7
8exclude_patterns = ['config/build.rst',
9                    'config/runtime.rst',
10
11                    'start/quick.rst',
12
13                    'hosts/os.rst',
14                    'hosts/prefixes.rst',
15                    'hosts/macos.rst',
16                    'hosts/posix.rst',
17                    'hosts/windows.rst',
18
19                    'installation/prefixes-sandboxing.rst',
20                    'installation/releases.rst',
21                    'installation/developer.rst',
22                    'installation/kernel.rst',
23
24                    'hardware/targets.rst',
25                    'hardware/architectures.rst',
26                    'hardware/bsps.rst',
27                    'hardware/tiers.rst',
28
29                    'tools/build.rst',
30                    'tools/simulation.rst',
31
32                    'test/create.rst',
33                    'test/running.rst',
34                    'start/installation.rst',
35                    'start/transition.rst',
36
37                    'waf/index.rst']
38
39latex_documents = [
40    ('index',
41     'user.tex',
42     u'RTEMS User Manual',
43     u'RTEMS Documentation Project',
44     'manual'),
45]
Note: See TracBrowser for help on using the repository browser.