-rw-r--r-- | docs/usermanual/Makefile | 12 | ||||
-rw-r--r-- | docs/usermanual/caution.gif | bin | 0 -> 1039 bytes | |||
-rw-r--r-- | docs/usermanual/important.gif | bin | 0 -> 1081 bytes | |||
-rw-r--r-- | docs/usermanual/logo-small.png | bin | 0 -> 22791 bytes | |||
-rw-r--r-- | docs/usermanual/newfiles.tgz | bin | 0 -> 27627 bytes | |||
-rw-r--r-- | docs/usermanual/note.gif | bin | 0 -> 1070 bytes | |||
-rw-r--r-- | docs/usermanual/preface.sgm | 31 | ||||
-rw-r--r-- | docs/usermanual/stylesheet-html.dsl | 56 | ||||
-rw-r--r-- | docs/usermanual/tip.gif | bin | 0 -> 1029 bytes | |||
-rw-r--r-- | docs/usermanual/warning.gif | bin | 0 -> 1052 bytes |
10 files changed, 99 insertions, 0 deletions
diff --git a/docs/usermanual/Makefile b/docs/usermanual/Makefile new file mode 100644 index 0000000..3242e5a --- a/dev/null +++ b/docs/usermanual/Makefile | |||
@@ -0,0 +1,12 @@ | |||
1 | all: html | ||
2 | |||
3 | DOC := usermanual | ||
4 | |||
5 | html: | ||
6 | sgmltools -b html -s stylesheet-html.dsl $(DOC).sgm | ||
7 | mv -f $(DOC)/*.html . | ||
8 | rmdir $(DOC) | ||
9 | ln -sf book1.html index.html | ||
10 | |||
11 | clean: | ||
12 | rm -f *.html | ||
diff --git a/docs/usermanual/caution.gif b/docs/usermanual/caution.gif new file mode 100644 index 0000000..9cc2e15 --- a/dev/null +++ b/docs/usermanual/caution.gif | |||
Binary files differ | |||
diff --git a/docs/usermanual/important.gif b/docs/usermanual/important.gif new file mode 100644 index 0000000..25e40c7 --- a/dev/null +++ b/docs/usermanual/important.gif | |||
Binary files differ | |||
diff --git a/docs/usermanual/logo-small.png b/docs/usermanual/logo-small.png new file mode 100644 index 0000000..6630276 --- a/dev/null +++ b/docs/usermanual/logo-small.png | |||
Binary files differ | |||
diff --git a/docs/usermanual/newfiles.tgz b/docs/usermanual/newfiles.tgz new file mode 100644 index 0000000..41f4637 --- a/dev/null +++ b/docs/usermanual/newfiles.tgz | |||
Binary files differ | |||
diff --git a/docs/usermanual/note.gif b/docs/usermanual/note.gif new file mode 100644 index 0000000..7322e8e --- a/dev/null +++ b/docs/usermanual/note.gif | |||
Binary files differ | |||
diff --git a/docs/usermanual/preface.sgm b/docs/usermanual/preface.sgm new file mode 100644 index 0000000..7e49937 --- a/dev/null +++ b/docs/usermanual/preface.sgm | |||
@@ -0,0 +1,31 @@ | |||
1 | <preface> | ||
2 | <title>Editorial note</title> | ||
3 | <note> | ||
4 | <para>The <xref linkend="installation" endterm="tinstallation"> chapter and some other chapters of this manual have been updated in August 2003, especially to take into account <ulink url="http://opie.handhelds.org/archive_2003-w31.html">&opie; 1.0 release</ulink>. But it is difficult for the &opie; team to keep up with &opie; and &opie; applications progress. Please indulge this manual occasional tardiness!</para> | ||
5 | <para>Please note, also, that the end of this guide (from late Chapter 2 on) is incomplete, when it comes to documenting applications. In particular, the following applications still have an empty page: | ||
6 | <emphasis>appearance2, | ||
7 | appskey, | ||
8 | calibrate, | ||
9 | citytime, | ||
10 | drawpad, | ||
11 | handwriting, | ||
12 | helpbrowser, | ||
13 | kjumpx, | ||
14 | language, | ||
15 | lightpower, | ||
16 | login, | ||
17 | multikey, | ||
18 | pickboard, | ||
19 | player2, | ||
20 | qpdf, | ||
21 | reader, | ||
22 | rotation, | ||
23 | sheet, | ||
24 | showimg, | ||
25 | sshkeys, | ||
26 | sysinfo, | ||
27 | tableviewer,</emphasis> | ||
28 | and <emphasis>write</emphasis>. Hopefully their interface is clear enough so you won't need documentation so much :-) | ||
29 | </para> | ||
30 | </note> | ||
31 | </preface> | ||
diff --git a/docs/usermanual/stylesheet-html.dsl b/docs/usermanual/stylesheet-html.dsl new file mode 100644 index 0000000..c07cc53 --- a/dev/null +++ b/docs/usermanual/stylesheet-html.dsl | |||
@@ -0,0 +1,56 @@ | |||
1 | <!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [ | ||
2 | <!ENTITY dbstyle SYSTEM "/usr/share/sgml/docbook/stylesheet/dsssl/modular/html/docbook.dsl" CDATA DSSSL> | ||
3 | ]> | ||
4 | |||
5 | <style-sheet> | ||
6 | <style-specification use="docbook"> | ||
7 | <style-specification-body> | ||
8 | |||
9 | ; Personnalization of James Clark's stylesheet for HTML output | ||
10 | ; These parameters overide James Clark's one. | ||
11 | |||
12 | ; Only produce a table of contents (not a table of figure, etc...) | ||
13 | (define ($generate-book-lot-list$) | ||
14 | (list )) | ||
15 | |||
16 | ; Depth of the table of contents | ||
17 | (define (toc-depth nd) | ||
18 | 2) | ||
19 | |||
20 | ; Change of HTML page for each chapter, not for each "sect1" | ||
21 | (define (chunk-element-list) | ||
22 | (list (normalize "preface") | ||
23 | (normalize "chapter") | ||
24 | (normalize "appendix") | ||
25 | (normalize "article") | ||
26 | (normalize "glossary") | ||
27 | (normalize "bibliography") | ||
28 | (normalize "index") | ||
29 | (normalize "colophon") | ||
30 | (normalize "setindex") | ||
31 | (normalize "reference") | ||
32 | (normalize "refentry") | ||
33 | (normalize "part") | ||
34 | (normalize "book") | ||
35 | (normalize "set") | ||
36 | )) | ||
37 | |||
38 | ; "screens" should be in verbatim mode" | ||
39 | (define %shade-verbatim% | ||
40 | #t) | ||
41 | |||
42 | ; I want small icons for "notes", "warnings", "caution" & "important" | ||
43 | (define %admon-graphics% | ||
44 | #t) | ||
45 | ; Path for the icons | ||
46 | (define %admon-graphics-path% | ||
47 | "") | ||
48 | |||
49 | ; Use ID attributes as name for component HTML files | ||
50 | (define %use-id-as-filename% | ||
51 | #t) | ||
52 | |||
53 | </style-specification-body> | ||
54 | </style-specification> | ||
55 | <external-specification id="docbook" document="dbstyle"> | ||
56 | </style-sheet> | ||
diff --git a/docs/usermanual/tip.gif b/docs/usermanual/tip.gif new file mode 100644 index 0000000..f062955 --- a/dev/null +++ b/docs/usermanual/tip.gif | |||
Binary files differ | |||
diff --git a/docs/usermanual/warning.gif b/docs/usermanual/warning.gif new file mode 100644 index 0000000..a587079 --- a/dev/null +++ b/docs/usermanual/warning.gif | |||
Binary files differ | |||