File: doc-base.sgml

package info (click to toggle)
doc-base 0.8.20
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 224 kB
  • ctags: 133
  • sloc: perl: 1,506; makefile: 161; sh: 97
file content (999 lines) | stat: -rw-r--r-- 32,575 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
<!DOCTYPE debiandoc PUBLIC "-//DebianDoc//DTD DebianDoc//EN"[
  <!-- include version information so we don't have to hard-code it
       within the document -->
  <!ENTITY % versiondata SYSTEM "version.ent"> %versiondata;
]>

<book>

<title>Debian <package>doc-base</package> Manual
<author>Christian Schwarz <email/schwarz@debian.org/
<author>Adam Di Carlo <email/aph@debian.org/
<author>Robert Luberda <email/robert@debian.org/
<version>ver. &version;, &date;

<abstract><!--{{{-->
  This manual describes what <package>doc-base</package> is and how it
  can be used to manage online manuals on Debian systems.
</abstract><!--}}}-->

<copyright><!--{{{-->
  <copyrightsummary>copyright &copy;1998, Christian Schwarz</copyrightsummary>
  <copyrightsummary>copyright &copy;1999 &ndash 2002, Adam Di Carlo</copyrightsummary>
	<copyrightsummary>copyright &copy;2006 &ndash 2008, Robert Luberda</copyrightsummary>

  <p>This manual is free software; you may redistribute it and/or modify it
     under the terms of the GNU General Public License as published by the
     Free Software Foundation; either version 2, or (at your option) any
     later version.
  </p>


  <p>This is distributed in the hope that it will be useful, but
     <em>without any warranty</em>; without even the implied warranty of
     merchantability or fitness for a particular purpose.  See the GNU
     General Public License for more details.
  </p>

  <p>A copy of the GNU General Public License is available as
     <tt>/usr/share/common-licenses/GPL</tt> in the Debian GNU/Linux
     distribution or on the World Wide Web at the <url
     id="http://www.gnu.org/copyleft/gpl.html" name="GNU website">. You can
     also obtain it by writing to the Free Software Foundation, Inc.,
     51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  </p>
</copyright><!--}}}-->

<toc detail="sect2">

<chapt id="about">About <package/doc-base/<!--{{{-->
<p>

Some time ago, there was a big discussion on the Debian mailing lists
about the preferred documentation format in Debian. The discussion
showed clearly that people have very different opinions on that topic
and thus, we'll have to implement a flexible solution.

<p>

The <package>doc-base</package> package tries to implement such a flexible solution:
Every Debian package that provides online documentation (other than
manual pages) will register these documents to
<package>doc-base</package> via the <prgn/install-docs/ script (see
<ref id="registering_documents">) at installation time and de-register the manuals again when the
package is removed.


<p>

Since all manuals will eventually be registered,
<package>doc-base</package> can also be used to solve another
outstanding problem: Debian currently has three different online
documentation systems, <package>doc-central</package>, <package>dwww</package> and
<package>dhelp</package>. Each system has advantages and
disadvantages, thus <package/doc-base/ supports all of them.
The system administrator can choose which implementation he/she prefers.
<p>
Additionally <package/doc-base/ registers the documentation with
 <url id="http://scrollkeeper.sourceforge.net/" name="scrollkeper">, thus making
it possible to view the manuals using programs like <package/yelp/ or <package/khelpcenter/.

</chapt><!--}}}-->


<chapt id="interface">The packages interface<!--{{{-->
<p>

<sect>Introduction<!--{{{-->
<p>

Each Debian package that installs online manuals (in any format) should
register its manuals to <package>doc-base</package>. This is done by installing a
<package>doc-base</package> <em/control file/ (see <ref id="control_files">)
and calling <prgn/install-docs/ from the <prgn/postinst/ script (see <ref id="registering_documents">).
<p>
</sect><!--}}}-->

<sect id="document_ids">Document IDs<!--{{{-->
<p>

Each document that is registered to <package>doc-base</package> must
have a unique <em/document ID/.
<p>

The document ID is usually taken from the document's title or from the
package name. Here are a few examples:
<p>

<example>
DOCID                  Title
---------------------- ----------------------------
debian-policy          Debian Policy Manual
developers-reference   Debian Developers Reference
doc-base               Debian doc-base Manual
emacs-manual           GNU Emacs Manual
</example>
<p>

Legal characters for the document ID are lower case
letters (a-z), digits (0-9), plus (+) or minus (-) signs, and dots
(.) (the same characters allowed in package names).
<p>
</sect><!--}}}-->

<sect id="control_files">Control Files<!--{{{-->
<p>

For each piece online documentation, <package>doc-base</package> needs a <em/control
file/ that describes the documentation and the documentation file
formats that are provided initially.
<p>
<sect1>Example<!--{{{-->

<p>
Here is an example of a <em/control file/:
<p>

<example>
Document: doc-base
Title: Debian doc-base Manual
Author: Christian Schwarz
Abstract: This manual describes what doc-base is
 and how it can be used to
 manage online manuals on Debian systems.
Section: Debian

Format: DebianDoc-SGML
Files: /usr/share/doc/doc-base/doc-base.sgml.gz

Format: Text
Files: /usr/share/doc/doc-base/doc-base.txt.gz

Format: HTML
Index: /usr/share/doc/doc-base/doc-base.html/index.html
Files: /usr/share/doc/doc-base/doc-base.html/*.html
</example>

<p>
If the <package/doc-base/ package provided necessary files in other formats, it would be possible
to add  more sections at the end of the <em/control file/:
<example>

Format: PDF
Files: /usr/share/doc-base/doc-base.pdf

Format: PostScript
Files: /usr/share/doc-base/doc-base.ps.gz

Format: DVI
Files: /usr/share/doc-base/doc-base.dvi.gz

Format: Info
Index: /usr/share/info/doc-base.info.gz
Files: /usr/share/info/doc-base.info*.gz
</example>
</sect1><!--}}}-->

<sect1>Syntax of the control file<!--{{{-->
<p>
As you can see from the above example, the syntax -- as is the whole
design of <package>doc-base</package> -- is heavily influenced by dpkg. This is important
since every maintainer will have to work with <package>doc-base</package> and thus, it
should be simple to remember the basic ideas.
<p>

The syntax of the control file is simple:
<list compact>
  <item>The file consist of
    <list compact>
      <item>exactly one main section providing base information about the registered manual
            (see <ref id="main_section"> below);</item>
      <item>one or more format sections (see <ref id="format_sections">) containing pointers
            to the registered documentation files.</item>
    </list>
  </item>
  <item>Successive sections must be separated with empty lines.</item>
  <item>Non-empty lines use a `<tt/field-name: value/' syntax.</item>
  <item>The field names are case-insensitive.</item>
  <item>The field values are case-sensitive (except for the <em/Format/ field).</item>
  <item>Field values may be wrapped over several lines by making the first character of
        subsequent lines a space.
    <list compact> 	
      <item>If a multi-line value should contain an empty line,
            a single dot (.) must be placed in the second column.
      <item>If the <em/Abstract/ field value should contain lines displayed verbatim,
            the lines must begin with two spaces.
    </list>
  </item>
  <item>The file should be encoded in UTF-8.</item>
</list>

<sect2 id="main_section">The main section
<p>
The first section of the control file describes the document.  The
following fields are available:
<taglist>
  <tag><em>Document</em></tag>
    <item>
      <p><qref id="document_ids">Document ID</qref>, required field; should be the first field.</p>
    </item>
  <tag><em>Title</em></tag>
    <item>
      <p>Title of the document; required field.</p>
    </item>
  <tag><em>Author</em></tag>
    <item>
      <p>Author(s) of the document; optional field.</p>
    </item>
  <tag><em>Abstract</em></tag>
    <item>
      <p>Short paragraph giving an overview of the document; optional but
         recommended field.</p>
    </item>
  <tag><em>Section</em></tag>
    <item>
      <p>Section where the document belongs; see <ref id="section_field">.
         Required field.</p>
    </item>
</taglist>
</sect2>
<sect2 id="format_sections"><em/Format/ sections
<p>
The next sections describe the different formats for the provided
document which is described in the first section.  The following
fields are available:
<taglist>
  <tag><em>Format</em></tag>
    <item>
      <p>Format for the document.  Required field.  The following formats
         are recognised:
          <list compact>
            <item><tt/HTML/,</item>
            <item><tt/Text/,</item>
            <item><tt/PDF/,</item>
            <item><tt/PostScript/,</item>
            <item><tt/Info/,</item>
            <item><tt/DVI/,</item>
            <item>and <tt/DebianDoc-SGML/.</item>
          </list>
        The values of this field are case-insensitive (e.g. both <tt/Text/ and <tt/text/ are valid).
      </p>
    </item>
  <tag><em>Index</em></tag>
    <item>
      <p>Index or top-level file for this document format.  Only applies to
         document formats <tt/HTML/ and <tt/Info/, and required if the format is
         <tt/HTML/ or <tt/Info/.</p>
      <p>This field has to contain the absolute file name of the main page of the
         document. This file will be specified as the front page link when the
         document is registered.</p>
    </item>
  <tag><em>Files</em></tag>
    <item>
      <p>Space separated list of filenames or POSIX shell globs (i.e. <tt/*/, <tt/?/, and
         <tt/[]/ meta-characters) representing the files which constitute the
         documentation in this format.  Required field.</p>
    </item>
</taglist>

<p>There must be at least one such a section. If there are more, each of them must register
files in different formats (e.g. having two <tt/Format: HTML/ sections in one <em/control
file/ is not allowed).</p>

<p>
Except for the <tt/Info/ format the files referred in both <em/Index/ and <em/Files/
fields should be placed somewhere under the <file>/usr/share/doc</file> hierarchy.
If for some reason it's not possible, then the registering package should provide a symbolic
link pointing from the above hierarchy to the real files and register its documentation
through the link, allowing <package/doc-base/, <package/dhelp/, or <package/dwww/ packages
to actually handle the documentation.

Of course, files in the <tt/Info/ format should be located in the <file>/usr/share/info</file>
directory.

</sect2>
</sect1><!--}}}-->


<sect1 id="section_field"> The <tt/section/ field<!--{{{-->
<p>
The <tt/section/ field hold a slash-separated list of hierarchical sections
components. The hierarchy is mostly based on the sections outlined in chapter 2.1 of
the <url id="http://www.debian.org/doc/packaging-manuals/menu-policy/ch2.html#s2.1"
 name="Debian Menu Policy">, however the top-level <tt/Applications/ component was removed
and a few <package/doc-base/-specific sections were added.
<p>
The full section list is presented below.
<p>
<!-- section list begin -->
<taglist>
  <tag><tt>Accessibility</tt></tag>
    <item>
      <p>Documentation of tools to aid people with disabilities or for machines lacking usual input devices.</p>
    </item>
  <tag><tt>Amateur Radio</tt></tag>
    <item>
      <p>Anything relating to HAM radio.</p>
    </item>
  <tag><tt>Data Management</tt></tag>
    <item>
      <p>Interactive database programs, collection managers,
         address books, bibliography tools, etc.</p>
    </item>
  <tag><tt>Debian</tt></tag>
    <item>
      Documentation of Debian specific tools, policies, etc.
    </item>
  <tag><tt>Editors</tt></tag>
    <item>
      <p>Documentation of editors, other than office word processors, for
         text-based information.</p>
    </item>
  <tag><tt>Education</tt></tag>
    <item>
      <p>Educational and training softwares.</p>
    </item>
  <tag><tt>Emulators</tt></tag>
    <item>
      <p>Software that allows you to run non-native
         software or more than one OS at a time.</p>
  </item>
  <tag><tt>File Management</tt></tag>
    <item>
      <p>Tools for file management, archiving,
         searching, CD/DVD burning, backup, etc.</p>
    </item>
  <tag><tt>Games</tt></tag> <!--skip-->
    <item>
      Games and recreations. Entries should be placed in appropriate subsection.
      <taglist>
        <tag><tt>Action</tt></tag>
          <item>
            <p>Games that involve a lot of action
               and require fast reflexes.</p>
          </item>
        <tag><tt>Adventure</tt></tag>
          <item>
            <p>Role playing and adventure games,
               interactive movies and stories, etc.</p>
          </item>
        <tag><tt>Blocks</tt></tag>
          <item>
            <p>Tetris-like games involving falling blocks.</p>
          </item>
        <tag><tt>Board</tt></tag>
          <item>
            <p>Games played on a board.</p>
          </item>
        <tag><tt>Card</tt></tag>
          <item>
            <p>Games involving a deck of cards.</p>
          </item>
        <tag><tt>Puzzles</tt></tag>
          <item>
            <p>Tests of ingenuity and logic.</p>
          </item>
        <tag><tt>Simulation</tt></tag>
          <item>
            <p>Simulations of the real world
               in all detail and complexity.</p>
          </item>
        <tag><tt>Strategy</tt></tag>
          <item>
            <p>Games involving long-term strategic thinking.</p>
          </item>
        <tag><tt>Tools</tt></tag>
          <item>
            <p>Server browsers, configurators, editors, and other
               game-related tools that are not games themselves.</p>
          </item>
        <tag><tt>Toys</tt></tag>
          <item>
            <p>Amusements, eye-candy, entertaining
               demos, screen hacks (screen-savers), etc.</p>
          </item>
      </taglist>
    </item>
  <tag><tt>Graphics</tt></tag>
    <item>
      <p>2D and 3D graphics manipulation software.</p>
    </item>
  <tag><tt>Help</tt></tag>
    <item>
      Documentation of programs that provide user documentation.
      <taglist>
        <tag><tt>Books</tt></tag>
          <item>
            Books.
          </item>
        <tag><tt>FAQ</tt></tag>
          <item>
            Frequently Asked Questions.
          </item>
        <tag><tt>HOWTO</tt></tag>
          <item>
            Various HOWTOs.
          </item>
        <tag><tt>RFC</tt></tag>
          <item>
            RFCs 
          </item>
        <tag><tt>Standards</tt></tag>
          <item>
            Standards
          </item>
      </taglist>
    </item>
  <tag><tt>Mobile Devices</tt></tag>
    <item>
      <p>Software that allows you to interface with mobile
         devices (phones, PDAs, etc.).</p>
  </item>
  <tag><tt>Network</tt></tag> <!--skip-->
  <item>
    Network related software. This is a three-level
    section, do not put entries directly here.
    <taglist>
      <tag><tt>Communication</tt></tag>
        <item>
          <p>Mail, USENET news, chat, instant messaging,
             IP telephony, video conferencing software, etc.</p>
        </item>
      <tag><tt>File Transfer</tt></tag>
        <item>
          <p>File transfer software such as download
             managers, FTP clients, P2P clients, etc.</p>
        </item>
      <tag><tt>Monitoring</tt></tag>
        <item>
          <p>Network monitoring software</p>
        </item>
      <tag><tt>Web Browsing</tt></tag>
        <item>
          <p>Web browsers, tools for offline browsing, etc.</p>
        </item>
      <tag><tt>Web News</tt></tag>
        <item>
          <p>Web feed (RSS, Atom, etc.) and podcast aggregators.</p>
        </item>
    </taglist>
  </item>
  <tag><tt>Office</tt></tag>
    <item>
      <p>Office suites, word processors, spreadsheets,
         CRM, ERP, financial software, etc.</p>
    </item>
  <tag><tt>Programming</tt></tag>
    <item>
      IDEs, debuggers, compilers, APIs, libraries, programming languages. Documentation related
      to only one specific language should be put in subsection named like the language, 
      for example:
      <list>
          <item><tt>C</tt></item>
          <item><tt>C++</tt></item>
          <item><tt>Java</tt></item>
          <item><tt>OCaml</tt></item>
          <item><tt>Perl</tt></item>
          <item><tt>Python</tt></item>
          <item><tt>Ruby</tt></item>
    </list>          
  <tag><tt>Project Management</tt></tag>
    <item>
      <p>Timetable managers, group task trackers,
         bug tracking software, etc.</p>
  </item>
  <tag><tt>Science</tt></tag> <!--skip-->
    <item>
      Documentation of scientific and engineering-related software.
      Please use appropriate subsection.
      <taglist>
        <tag><tt>Astronomy</tt></tag>
          <item>
            <p>Astronomy-related software.</p>
          </item>
        <tag><tt>Biology</tt></tag>
          <item>
            <p>Biology-related software.</p>
          </item>
        <tag><tt>Chemistry</tt></tag>
          <item>
            <p>Chemistry-related software.</p>
          </item>
        <tag><tt>Data Analysis</tt></tag>
          <item>
            <p>Software designed for processing, extracting,
               and presenting generic scientific data.</p>
          </item>
        <tag><tt>Electronics</tt></tag>
          <item>
            <p>Circuit design tools, simulators and
               assemblers for microprocessors, etc</p>
          </item>
        <tag><tt>Engineering</tt></tag>
          <item>
            <p>CAD, UML tools, diagram-drawing and
               other engineering-related software.</p>
          </item>
        <tag><tt>Geoscience</tt></tag>
          <item>
            <p>Geoscience-related software.</p>
          </item>
        <tag><tt>Mathematics</tt></tag>
          <item>
            <p>Mathematics-related software.</p>
          </item>
        <tag><tt>Medicine</tt></tag>
          <item>
            <p>Medicine-related software.</p>
          </item>
        <tag><tt>Physics</tt></tag>
          <item>
            <p>Physics-related software.</p>
          </item>
        <tag><tt>Social</tt></tag>
          <item>
            <p>Social sciences-related software.</p>
          </item>
      </taglist>
    </item>
  <tag><tt>Screen</tt></tag>
    <item>
      Programs that affect the whole screen. 
      <taglist>
        <tag><tt>Saving</tt></tag>
          <item>
            <p>Tools for blanking the screen. Entries of screen hacks and
               configuration GUIs should go to other appropriate sections.</p>
          </item>
        <tag><tt>Locking</tt></tag>
          <item>
            <p>Tools for locking the screen.</p>
          </item>
      </taglist>
    </item>
  <tag><tt>Shells</tt></tag>
    <item>
      <p>Various shells to be used inside a terminal emulator.</p>
    </item>
  <tag><tt>Sound</tt></tag>
    <item>
      <p>Sound players, editors, and rippers/recorders.</p>
    </item>
  <tag><tt>System</tt></tag> <!--skip-->
    <item>
      System related software. Place entries in one of she subsections.
      <taglist>
        <tag><tt>Administration</tt></tag>
          <item>
            <p>Administrative and system configuration utilities,
               also tools for personal user settings.</p>
          </item>
        <tag><tt>Hardware</tt></tag>
          <item>
            <p>Tools for manipulating specific hardware,
               especially non-standard laptop hardware.</p>
          </item>
        <tag><tt>Language Environment</tt></tag>
          <item>
            <p>This section is reserved for language-env as a
               special case.</p>
          </item>
        <tag><tt>Monitoring</tt></tag>
          <item>
            <p>System information and monitoring tools, log viewers,
               etc.</p>
          </item>
        <tag><tt>Package Management</tt></tag>
          <item>
            <p>Package managers and related tools.</p>
          </item>
        <tag><tt>Security</tt></tag>
          <item>
            <p>Security, cryptography and privacy related software,
               antiviruses, tools to track and report bugs, etc.</p>
          </item>
      </taglist>
    </item>
  <tag><tt>Terminal Emulators</tt></tag>
    <item>
      <p>Graphical terminal emulators.</p>
    </item>
  <tag><tt>Text</tt></tag>
    <item>
      <p>Text oriented tools like dictionaries, OCR,
         translation, text analysis software, etc.</p>
    </item>
  <tag><tt>TV and Radio</tt></tag>
    <item>
      <p>TV-in, TV-out, FM radio, teletext browsers, etc.</p>
    </item>
  <tag><tt>Viewers</tt></tag>
    <item>
      <p>Software for viewing images, documents
         and other (non-video) media.</p>
    </item>
  <tag><tt>Video</tt></tag>
    <item>
      <p>Video players, editors, and rippers/recorders.</p>
    </item>
  <tag><tt>Web Development</tt></tag>
    <item>
      <p>Software for web site editing, web
         programming, and site administration.</p>
    </item>
  <tag><tt>Window Managers</tt></tag>
    <item>
      <p>X window managers.</p>
    </item>
</taglist>
<!-- section list end -->
</sect1><!--}}}-->
</sect><!--}}}-->

<sect id="registering_documents">Registering Documents Using <prgn>install-docs</prgn><!--{{{-->
<p>

In order to register a piece of online documentation to
<package>doc-base</package>, the package must install the control
file (see <ref id="control_files">) as file
<file>/usr/share/doc-base/<var/document-id/</file>.
<p>

Then, it should call <prgn/install-docs/ from its <file>postinst</file> script:

<example>
  if [ "$1" = configure ]; then
    if which install-docs >/dev/null 2>&1; then
      install-docs -i /usr/share/doc-base/&lt;document-id&gt;
    fi
  fi
</example>

and from the <file>prerm</file> script as well:

<example>
  if [ "$1" = remove ] || [ "$1" = upgrade ]; then
    if which install-docs >/dev/null 2>&1; then
      install-docs -r /usr/share/doc-base/&lt;document-id&gt;
    fi
  fi
</example>



<p>
With that, <package>doc-base</package> will generate
<file>/var/lib/doc-base/documents/<var/&lt;document-id&gt;/</file> file and
register the
online manuals to <package>dww</package>, <package>dhelp</package>,
and <package>scrollkeeper</package>
when the package is installed, and de-register the manuals when the
package is removed.

<p>
Note that the call to remove the registered documentation from the
<file>prerm</file> maintainer script is necessary for cases such as
when the documentation directory changes.
</sect><!--}}}-->


<sect>doc-base 0.8.x features and incompatibilities<!--{{{-->
<sect1>Remove call semantics
<p>
The semantics of the remove call has been changed in version 0.8.4:
<prgn/install-docs -r/ require the full path of <em/control file/ to be passed.
Previous syntax (i.e. passing only <em/document-id/) is still supported for backward compatibility.
Older versions of <prgn/install-docs/ ignore the new syntax (only issue a warning, but don't fail).
</sect1>

<sect1>Registering multiple documents
<p>
With 0.8.4 and later is possible to install (and remove) multiple documents in one call, like
<example>
install-docs -i /usr/share/doc-base/&lt;document-id1&gt; \
                /usr/share/doc-base/&lt;document-id2&gt; \
                /usr/share/doc-base/&lt;document-id3&gt;
</example>
or even
<example>
cat &lt;&lt; EOF | install-docs -i -
/usr/share/doc-base/&lt;document-id1&gt;
/usr/share/doc-base/&lt;document-id2&gt;
/usr/share/doc-base/&lt;document-id3&gt;
EOF
</example>
However <strong/older versions will fail/ on such a syntax, so it's necessary to add proper
<em/Conflicts/ or <em/Depends/ line if you plan to use the feature in your package.

</sect1>

<sect1>Splitting control files over multiple binary packages
<p>
Since version 0.8.7 is it possible to provide documents with the same <em/document-id/
by more than one binary package. All such documents with be merged together and the merged document
will be generated in <file>/var/lib/doc-base/documents/<em/document-id/</file> file.
This feature can be useful in cases when the same documentation, but in different formats,
is provided by two binary packages.

<p>
For example the <package/foo-text/ package could install the
<file>/usr/share/doc-base/foo-text</file> file with the following contents:

<example>
Document: foo
Title: This is foo
Author: John Foo &lt;foo@foo.net&gt;
Abstract: Description of foo
Section: Text

Format: text
Files: /usr/share/foo-text/foo.txt.gz
</example>

and the <package/foo-html/ package could install  the following
<file>/usr/share/doc-base/foo-html</file> file:

<example>
Document: foo
Title: This is foo
Author: John Foo &lt;foo@foo.net&gt;
Abstract: Description of foo
Section: Text

Format: HTML
Index: /usr/share/foo-html/index.html
Files: /usr/share/foo-html/*.html
</example>

When both packages are installed, <prgn/install-docs/ will merge contents of the two
files into <file>/var/lib/doc-base/documents/foo</file>:

<example>
Document: foo
Title: This is foo
Author: John Foo &lt;foo@foo.net&gt;
Abstract: Description of foo
Section: Text

Format: HTML
Index: /usr/share/foo-html/index.html
Files: /usr/share/foo-html/*.html

Format: text
Files: /usr/share/foo-text/foo.txt.gz
</example>
</sect1>



<sect1>Registering local documents
<p>
Version 0.8.7 and furthers allow user to register local documentations.

In order to do this local administrators need to create their own control file
(see <ref id="control_files">, place it in the
 <file>/etc/doc-base/documents</file> directory, and then register it with
 <example>
install-docs -i /etc/doc-base/documents/&lt;document-id&gt;
 </example>

Before removing the file, it should be de-registered with
 <example>
install-docs -r /etc/doc-base/documents/&lt;document-id&gt;
 </example>

Since version 0.8.12
 <example>
install-docs --install-changed
</example>
may be used instead of the two above commands.

</sect1>
</sect><!--}}}-->

<sect id="checking_syntax">Checking Syntax of <em/Control Files/<!--{{{-->
<p>

With the new <tt/--check/ (<tt/-c/) option of <prgn/install-docs/ it is possible to check
the <em/control file/:

<example>
$ install-docs --check /usr/share/doc-base/doc-base
/usr/share/doc-base/doc-base: No problems found
</example>

<example>
$ install-docs -c /usr/share/doc-base/xlogmaster
Error in `/usr/share/doc-base/xlogmaster', line 15: `Index' value missing for format info
/usr/share/doc-base/xlogmaster: Fatal error found, the file won't be registered
</example>

<example>
$ install-docs -c /usr/share/doc-base/MC-FAQ /usr/share/doc-base/gnu-privacy-handbook
/usr/share/doc-base/MC-FAQ: 1 warning(s) or non-fatal error(s) found
/usr/share/doc-base/gnu-privacy-handbook: 1 warning(s) or non-fatal error(s) found
</example>

<p>
More details about the warnings and non-fatal errors can be found using the <tt/--verbose/
(<tt/-v/) option:
<example>
$ install-docs -v -c /usr/share/doc-base/MC-FAQ /usr/share/doc-base/gnu-privacy-handbook
Warning in `/usr/share/doc-base/MC-FAQ', line 1: invalid value of `Document' field
/usr/share/doc-base/MC-FAQ: 1 warning(s) or non-fatal error(s) found
Warning in `/usr/share/doc-base/gnu-privacy-handbook', line 12: file `/usr/share/doc/gnupg-doc/GNU_Privacy_Handbook/html/book1.html' does not exist
/usr/share/doc-base/gnu-privacy-handbook: 1 warning(s) or non-fatal error(s) found
</example>

<p>
With the <tt/--rootdir/ option is possible to check non-installed packages:

<example>
$ dpkg-deb -x autoclass_3.3.4-6_i386.deb AUTOCLASS_UNPACKED
$ install-docs --rootdir AUTOCLASS_UNPACKED -vc AUTOCLASS_UNPACKED/usr/share/doc-base/*
AUTOCLASS_UNPACKED/usr/share/doc-base/autoclass-results: No problems found
AUTOCLASS_UNPACKED/usr/share/doc-base/autoclass-theory: No problems found
</example>

If the <tt/--rootdir/ option was omitted, <prgn/install-docs/ would complain:
<example>
Warning in `AUTOCLASS_UNPACKED/usr/share/doc-base/autoclass-results', line 20: file mask `/usr/share/doc/autoclass/kdd-95.pdf' does not match any files
Warning in `AUTOCLASS_UNPACKED/usr/share/doc-base/autoclass-theory', line 20: file mask `/usr/share/doc/autoclass/tr-fia-90-12-7-01.pdf' does not match any files
</example>

</sect><!--}}}-->
</chapt><!--}}}-->


<chapt id="informations">Getting information about installed documents<!--{{{-->
<p>

If you want to get information about the status of an installed
manual, you can use the `<tt/-s/' or `<tt/--status/' option of
<prgn/install-docs/ followed by the document id:

<example>
$ install-docs -s foo
---document-information---
Document: foo
Abstract: This manual is about foos, bars, and Debian.
Author: Wile E. Coyote
Section: Debian
Title: Debian Foo's Manual

---format-description---
Format: debiandoc-sgml
Files: /usr/share/doc/foo/sgml/foo.sgml.gz

---format-description---
Format: html
Files: /usr/share/doc/foo/html-sgml/*.html
Index: /usr/share/doc/foo/html-sgml/index.html

---status-information---
Control-Files: /usr/share/doc-base/foo (changed: Tue Apr  8 23:09:24 2008)
Scrollkeeper-omf-file: /var/lib/doc-base/omf/foo/foo-C.omf
Scrollkeeper-sid: 99999999-0000-8888-0000-1234567890ab
</example>
<p>

<package>doc-base</package> always creates
a <file>/var/lib/doc-base/documents/&lt;document-id&gt;</file> file when
installing a document.
<p>
When a document is registered to <package/scrollkeeper/, <package/doc-base/ will create
`<tt/*-C.omf/' file under the <file>/var/lib/doc-base/omf</file> directory. Name of the
generated file is recorded in the <em/Scrollkeeper-omf-file/ field. Lack of the field
means the documents was not registered to the package.
</chapt><!--}}}-->


<chapt id="todo">TODO List<!--{{{-->
<sect>Roadmap for 0.8.* releases<!--{{{-->
<p>
<list>
  <item>
    <p>
      Internationalisation and po-debconf support. Unfortunately this
      would require merging <em/Abstract/ and <em/Title/ fields into
	    one <em/Description/ field.
      See <url id="http://bugs.debian.org/171373" name="Bug#171363">,
          <url id="http://bugs.debian.org/171375" name="Bug#171375">,
      and <url id="http://bugs.debian.org/171378" name="Bug#171378">.
    </p>
  </item>

  <item>
    <p>
      Introduce some new fields, like <em/Package/
      (<url id="http://bugs.debian.org/71955" name="Bug#71955">),
       or <em/SortSkip/
      (<url id="http://bugs.debian.org/187590" name="Bug#187590">).
    </p>
  </item>

  <item>
    <p>
      Possibly allow documents to appear in multiple sections,
      see <url id="http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=54;bug=109431" 
      name="Steve M. Robbins' mail">.
    </p>
  </item>

  <item>
    <p>
      Possibly index documentation with swish++ that could be used by frontends like 
      <package/dhelp/ or <package/dwww/.
    </p>
  </item>
  
</list>
</sect><!--}}}-->

<sect>Old TODO entries<!--{{{-->
<p>
<list>
  <item>
    <p>
      Policy: document the <package>doc-base</package> document registration file
      format separately (or SUBDOC it) as a proposed Debian documentation
      system policy.
    </p>
  </item>

  <item>
    <p>
      Policy: define a first-cut standard as the document hierarchy.
    </p>
  </item>

  <item>
    <p>
      Documentation update: show clean and minimal use of
      <prgn>install-docs</prgn> from maintainer script.
    </p>
  </item>

  <item>
    <p>
      It is <em>extremely</em> difficult to deal coherently with a
      misnamed control file, or a mismatch between a control file and the
      document field.  This hit me in the transition between <package>doc-base</package>
      0.4 to 0.5 (in 0.4 I had added, in a file install-docs-man, a document
      ID named install-doc-man).  Something needs to be done about that.
    </p>
  </item>

  <item>
    <p>
      Automated format conversion, including user preferences.
      (For example, convert texinfo source to GNU info or PostScript,
	    optionally compress or remove HTML manuals which are also available in
	    GNU info format, etc. etc.)
    </p>
  </item>
</list>

</sect><!--}}}-->
</chapt><!--}}}-->

</book>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:nil
sgml-parent-document:nil
sgml-exposed-tags:nil
sgml-declaration:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
$Id: doc-base.sgml 134 2008-04-21 21:30:30Z robert $
vim:ts=2:et:sts=2:sw=2:fdm=marker 
-->