Make the doco more visiable.
A user asked for the documentation to be move higher in the source tree so it is easier to find.
2
doc/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
.lock-*
|
||||
build
|
5
doc/images/icons/README
Normal file
@@ -0,0 +1,5 @@
|
||||
Replaced the plain DocBook XSL admonition icons with Jimmac's DocBook
|
||||
icons (http://jimmac.musichall.cz/ikony.php3). I dropped transparency
|
||||
from the Jimmac icons to get round MS IE and FOP PNG incompatibilies.
|
||||
|
||||
Stuart Rackham
|
BIN
doc/images/icons/callouts/1.png
Normal file
After Width: | Height: | Size: 329 B |
BIN
doc/images/icons/callouts/10.png
Normal file
After Width: | Height: | Size: 361 B |
BIN
doc/images/icons/callouts/11.png
Normal file
After Width: | Height: | Size: 565 B |
BIN
doc/images/icons/callouts/12.png
Normal file
After Width: | Height: | Size: 617 B |
BIN
doc/images/icons/callouts/13.png
Normal file
After Width: | Height: | Size: 623 B |
BIN
doc/images/icons/callouts/14.png
Normal file
After Width: | Height: | Size: 411 B |
BIN
doc/images/icons/callouts/15.png
Normal file
After Width: | Height: | Size: 640 B |
BIN
doc/images/icons/callouts/2.png
Normal file
After Width: | Height: | Size: 353 B |
BIN
doc/images/icons/callouts/3.png
Normal file
After Width: | Height: | Size: 350 B |
BIN
doc/images/icons/callouts/4.png
Normal file
After Width: | Height: | Size: 345 B |
BIN
doc/images/icons/callouts/5.png
Normal file
After Width: | Height: | Size: 348 B |
BIN
doc/images/icons/callouts/6.png
Normal file
After Width: | Height: | Size: 355 B |
BIN
doc/images/icons/callouts/7.png
Normal file
After Width: | Height: | Size: 344 B |
BIN
doc/images/icons/callouts/8.png
Normal file
After Width: | Height: | Size: 357 B |
BIN
doc/images/icons/callouts/9.png
Normal file
After Width: | Height: | Size: 357 B |
BIN
doc/images/icons/caution.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
doc/images/icons/example.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
doc/images/icons/home.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
doc/images/icons/important.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
doc/images/icons/next.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
doc/images/icons/note.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
doc/images/icons/prev.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
doc/images/icons/tip.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
doc/images/icons/up.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
doc/images/icons/warning.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
doc/images/rtemswhitebg.jpg
Normal file
After Width: | Height: | Size: 115 KiB |
1401
doc/source-builder.txt
Normal file
20
doc/wscript
Normal file
@@ -0,0 +1,20 @@
|
||||
#
|
||||
# Waf build script to build the Source Builder Documentation.
|
||||
#
|
||||
|
||||
version = "1.0.0"
|
||||
|
||||
def configure(ctx):
|
||||
ctx.env.ASCIIDOC = ctx.find_program(['asciidoc.py'], mandatory = True)
|
||||
ctx.env.ASCIIDOC_FLAGS = ['-b', 'html5', '-a', 'data-uri', '-a', 'icons', '-a', 'max-width=55em-a']
|
||||
|
||||
def build(ctx):
|
||||
ctx(target = 'source-builder.html', source = 'source-builder.txt')
|
||||
|
||||
import waflib.TaskGen
|
||||
waflib.TaskGen.declare_chain(name = 'html',
|
||||
rule = '${ASCIIDOC} ${ASCIIDOC_FLAGS} -o ${TGT} ${SRC}',
|
||||
shell = False,
|
||||
ext_in = '.txt',
|
||||
ext_out = '.html',
|
||||
reentrant = False)
|