File: Test.raw.xml

package info (click to toggle)
debian-reference 2.24
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 20,088 kB
  • ctags: 35
  • sloc: xml: 70,510; sh: 616; makefile: 352; perl: 221; sed: 3
file content (979 lines) | stat: -rw-r--r-- 36,633 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
<?xml version="1.0"?>
<article>
  <articleinfo>
    <title>DebianReference/Test</title>
  </articleinfo>
  <para/>
  <section>
    <title>Do not use Edit(GUI) button.</title>
    <para> </para>
    <para>Copyright 2007, 2008  Osamu Aoki GPL, (Please agree to GPL, GPL2, and any version of GPL which is compatible with DSFG if you update any part of wiki page) </para>
    <para/>
  </section>
  <section>
    <title>Guide for contributing to Debian Reference</title>
    <para>Debian Reference upstream source is <ulink url="http://wiki.debian.org/DebianReference">http://wiki.debian.org/DebianReference</ulink> . </para>
    <para/>
    <section>
      <title>Rules</title>
      <para>Here are the rules. </para>
      <itemizedlist>
        <listitem>
          <para>Do not use Edit(GUI) button of <ulink url="/MoinMoin">MoinMoin</ulink>. </para>
        </listitem>
        <listitem>You can update anytime for: <itemizedlist><listitem>grammar errors </listitem><listitem>spelling errors </listitem><listitem>moved URL location </listitem><listitem>package name transition adjustment (emacs23 etc.) </listitem><listitem>clearly broken script. </listitem></itemizedlist></listitem>
        <listitem>Before updating real contents: <itemizedlist><listitem><para>You have to discuss it on <ulink url="mailto:debian-doc@lists.debian.org">debian-doc@lists.debian.org</ulink> (1 week wait for response please) </para></listitem><listitem>You have to read the whole document to avoid duplication. </listitem><listitem>Follow the existing style. </listitem><listitem>Make sure you are reachable via e-mail. </listitem><listitem>Think twice before doing anything. </listitem><listitem>Do your own research on the latest Debian system by experimenting. </listitem><listitem>Make contents as generic suitable for slow content update cycle (including future translation work). </listitem><listitem>It is usually good to place only the pointer to the original information. </listitem><listitem>Even if new contents are required, please shorten the description to half its original draft length. </listitem><listitem><para>Make alternative page proposals as wiki and post message to <ulink url="mailto:debian-doc@lists.debian.org">debian-doc@lists.debian.org</ulink> </para></listitem></itemizedlist></listitem>
      </itemizedlist>
      <para>I use this moinmoin platform for its ability for table and XML export. </para>
      <para>This wiki will be post-processed by XSLT/XML tools and should be written accordingly: </para>
      <itemizedlist>
        <listitem>The content in the index section at the top of each wiki page will be dropped when converted to XML. </listitem>
        <listitem>
          <para><code>@ { @ tag @ } @</code> (without spaces between @s) markup on wiki pages is converted to an internal link. </para>
        </listitem>
        <listitem>Do not use overly fancy wiki features not supported by XML conversion backend, available from the git repo. (Your help to remove fancy features in moinmoin is welcome.) <itemizedlist><listitem>Do not make a complicated table with connected cells spanning rows or columns. </listitem><listitem><para>Do not use FootNote nor face marks such as <code>:)</code> for <inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/smile.png" depth="15"/></imageobject><textobject><phrase>:)</phrase></textobject></inlinemediaobject> . </para></listitem></itemizedlist></listitem>
        <listitem>Follow the wiki style: </listitem>
        <listitem>The codenames are always in the lower case (sid, etch, lenny, ...) <itemizedlist><listitem><para>Indent only for <code>*</code> and <code>1.</code> -started lines, one space per level of nesting. </para></listitem><listitem><para>Do not indent lines started with : <code>||</code>, <code> { { {</code> (without spaces). </para></listitem><listitem><para>Some graphic marks such as <code>/!\</code> for <inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/alert.png" depth="15"/></imageobject><textobject><phrase>/!\</phrase></textobject></inlinemediaobject> are converted to marking for para. (See test page.) </para><itemizedlist><listitem>Do not indent for lines started with these graphic marks. </listitem></itemizedlist></listitem></itemizedlist></listitem>
        <listitem>Wiki table markup is processed in special ways: <itemizedlist><listitem><para>The first line of a table is used as: &lt;title&gt; [, package column, popcon column]. </para></listitem><listitem>popcon and package sizes are autogenerated by a script if specified in the first line.  (Values in wiki are ignored) </listitem><listitem><para>The second line of a table is used as: &lt;thead&gt;. </para></listitem></itemizedlist></listitem>
        <listitem>
          <para><code>@ @ @tag@ @ @</code> (without spaces between @s) in wiki are converted to <code>&amp;tag;</code> in XML. </para>
          <itemizedlist>
            <listitem>The final tag contents in HTML is determined by the HTML generation script. </listitem>
          </itemizedlist>
        </listitem>
        <listitem>All internal wiki links will be removed when converted to XML. </listitem>
        <listitem>For the same text with URL link, external URL link should match if it repeats. <itemizedlist><listitem>one word reference should chose mostly wikipedia </listitem><listitem><para>No <code>%</code> or <code>&amp;</code> usage in URL address reference until I fix moin2urls.xsl. </para></listitem></itemizedlist></listitem>
        <listitem>Try to keep contents in </listitem>
      </itemizedlist>
      <para/>
      <screen><![CDATA[ ... commands examples ...
]]></screen>
      <itemizedlist>
        <listitem>language neutral so translation will not affect them. </listitem>
      </itemizedlist>
      <itemizedlist>
        <listitem>Do not bloat this document. <itemizedlist><listitem>It is already getting too big for me (osamu) to maintain . </listitem><listitem>If you want to make an XML document for a particular topic from the wiki, please use the code I use and start a new document. (GPL). </listitem></itemizedlist></listitem>
      </itemizedlist>
      <para>This ensures (eventually) clean conversion to DocBook XML and makes my work easy. <inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/smile.png" depth="15"/></imageobject><textobject><phrase>:-)</phrase></textobject></inlinemediaobject> </para>
      <para/>
      <para> </para>
      <para>If funny things happen, look for single quote repeats, etc. in wiki source. </para>
      <para>Code sections marked as "{ { { \n } } }" without using spaces will cause XML export errors; thus, always use spaces around \n. </para>
      <para>List export has &lt;para&gt; markup bugs; after conversion, review and correct them, please. </para>
      <para/>
    </section>
    <section>
      <title>Hints for tools to help updating this document</title>
      <itemizedlist>
        <listitem>
          <para>Public server: <ulink url="http://wiki.debian.org/DebianReference">http://wiki.debian.org/DebianReference</ulink> </para>
        </listitem>
        <listitem>
          <para>You may create your own mirror: <code>http://localhost/Wiki/DebianReference</code> </para>
        </listitem>
        <listitem>See Makefile and use targets: diff gedit ... </listitem>
      </itemizedlist>
      <para>Build scripts and xml sources are available via Git repository at: </para>
      <itemizedlist>
        <listitem>
          <para>
            <code>ssh://git.debian.org/git/users/osamu/debian-reference.git</code>
          </para>
        </listitem>
        <listitem>
          <para>
            <code>git://git.debian.org/git/users/osamu/debian-reference.git</code>
          </para>
        </listitem>
        <listitem>
          <para><ulink url="http://git.debian.org/?p=users/osamu/debian-reference.git">http://git.debian.org/?p=users/osamu/debian-reference.git</ulink> (for browsing)  </para>
        </listitem>
      </itemizedlist>
      <para>For example, this wiki page is converted step-by-step as follows: </para>
      <orderedlist numeration="arabic">
        <listitem>
          <para>
            <ulink url="http://wiki.debian.org/DebianReference/Test?action=raw">wiki source in raw text mode</ulink>
          </para>
        </listitem>
        <listitem>
          <para>
            <ulink url="http://people.debian.org/~osamu/pub/getwiki/en/test-all.en.xml">Docbook XML (cover page)</ulink>
          </para>
        </listitem>
        <listitem>
          <para>
            <ulink url="http://people.debian.org/~osamu/pub/getwiki/en/test.en.xml">Docbook XML (contents)</ulink>
          </para>
        </listitem>
        <listitem>
          <para>
            <ulink url="http://people.debian.org/~osamu/pub/getwiki/html/test.en.html">HTML created from Docbook XML files</ulink>
          </para>
        </listitem>
      </orderedlist>
      <para/>
    </section>
    <section>
      <title>Examples</title>
      <para>This section contains examples and scratch pad contents. </para>
      <para/>
      <section>
        <title>Table</title>
        <para>Always assumes the first line is <code>&lt;title&gt;</code>, the second line is <code>&lt;thead&gt;</code> and the rest lines are <code>&lt;tbody&gt;</code> <code>&lt;row&gt;</code>s.  (hello) </para>
        <table>
          <caption/>
          <tgroup cols="2">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <tbody>
              <row>
                <entry>
                  <para> Example of table 1 </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">TITLE1</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">TITLE2</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> DATA 11 </para>
                </entry>
                <entry>
                  <para> DATA 12 </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> DATA 21 </para>
                </entry>
                <entry>
                  <para> DATA 22 </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para/>
      </section>
      <section>
        <title>Special paragraphs</title>
        <para>Here are examples of Wiki marking used. </para>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/alert.png" depth="15"/></imageobject><textobject><phrase>/!\</phrase></textobject></inlinemediaobject><code> /!\ </code>  for "Warning" (alert) </para>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/attention.png" depth="15"/></imageobject><textobject><phrase>&lt;!&gt;</phrase></textobject></inlinemediaobject><code> &lt;!&gt; </code>  for "Caution" (attention) </para>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/star_on.png" depth="15"/></imageobject><textobject><phrase>{*}</phrase></textobject></inlinemediaobject><code> {*} </code>  for "Important" (star_on) </para>
        <para><inlinemediaobject><imageobject><imagedata width="16" fileref="/htdocs/rightsidebar/img/icon-info.png" depth="16"/></imageobject><textobject><phrase>{i}</phrase></textobject></inlinemediaobject><code> {i} </code>  for "Tip" (icon-info) </para>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/idea.png" depth="15"/></imageobject><textobject><phrase>(!)</phrase></textobject></inlinemediaobject><code> (!) </code>  for "Note" (idea) </para>
        <para><inlinemediaobject><imageobject><imagedata width="14" fileref="/htdocs/rightsidebar/img/thumbs-up.png" depth="12"/></imageobject><textobject><phrase>{OK}</phrase></textobject></inlinemediaobject><code> {OK} </code>  for "Note" (thumbs-up) </para>
        <para><inlinemediaobject><imageobject><imagedata width="20" fileref="/htdocs/rightsidebar/img/checkmark.png" depth="15"/></imageobject><textobject><phrase>(./)</phrase></textobject></inlinemediaobject><code> (./) </code>  for "Note" (check-mark) </para>
        <para/>
      </section>
      <section>
        <title>Line foldings</title>
        <para>line1 starting line break examples line2 w/o space from previous line </para>
        <para>line3 w 1 line space from previous line </para>
        <para>line2 w 2 space from previous line </para>
        <para>line2 w 3 space from previous line line with ampersand &amp; &amp; </para>
        <para/>
      </section>
      <section>
        <title>Data for popcon data and package size</title>
        <para>The calculated popcon and size can be checked at: <ulink url="http://people.debian.org/~osamu/pub/getwiki/html/test.en.html#dataforpopcondataandpackagesize">Data for popcon data and package size</ulink>. </para>
        <para>The following packages are referred in the main text. </para>
        <table>
          <caption/>
          <tgroup cols="4">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <tbody>
              <row>
                <entry>
                  <para> List of packages whose popcon and/or package size were referred in the main text </para>
                </entry>
                <entry>
                  <para> 1 </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">package</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">popcon</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">package size</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">dummy</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>gksu</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>screen</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>rutebook</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para>The following packages are meant to evaluate backup utilities. </para>
        <table>
          <caption/>
          <tgroup cols="4">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <tbody>
              <row>
                <entry>
                  <para> List of packages possibly mentioned in the main text for backup </para>
                </entry>
                <entry>
                  <para> 1 </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">package</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">popcon</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">package size</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">dummy</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>sbackup</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>amanda-common</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>amanda-client</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>amanda-server</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>cdrw-taper</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>par2</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>parchive</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>backup-manager</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>backup2l</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>backupninja</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>bacula</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>bacula-common</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>bacula-client</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>bacula-console</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>bacula-server</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>cdbackup</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>cedar-backup2</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>faubackup</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>flexbackup</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>mondo</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>afbackup</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>afbackup-client</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>afbackup-common</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>backuppc</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>boxbackup-client</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>boxbackup-server</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>chiark-backup</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>storebackup</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>keep</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para>The following packages are meant to evaluate office utilities. </para>
        <table>
          <caption/>
          <tgroup cols="5">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <colspec colname="xxx5"/>
            <tbody>
              <row>
                <entry>
                  <para> List of GUI packages possibly mentioned in the main text for office </para>
                </entry>
                <entry>
                  <para> 1 </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">package</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">popcon</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">package size</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">description</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">type</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>scribus-ng</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> desktop page layout editor </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>scribus</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> desktop page layout editor </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para>The following assorted packages are meant to evaluate inclusion to the main text. </para>
        <table>
          <caption/>
          <tgroup cols="4">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <tbody>
              <row>
                <entry>
                  <para> List of assorted packages possibly mentioned in the main text </para>
                </entry>
                <entry>
                  <para> 1 </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>traceroute</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> Traces the route taken by packets over an IPv4/IPv6 network (included) </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>tcptraceroute</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> Traces the route taken by packets over an IPv4/IPv6 network using TCP SYN packets (excluded) </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para>See <ulink url="http://wiki.debian.org/UTF8BrokenApps">http://wiki.debian.org/UTF8BrokenApps</ulink> </para>
        <para/>
      </section>
      <section>
        <title>Escape confusion</title>
        <para><ulink url="/MoinMoin">MoinMoin</ulink> conversion bug for "<code> \n </code>" needs to be worked around by placing space around it. </para>
        <para/>
        <para/>
      </section>
      <section>
        <title>internal links</title>
        <para>can be referred as @{@internallinks@}@ which will create correct reference in HTML. </para>
        <itemizedlist>
          <listitem>All characters converted to lower cases. </listitem>
          <listitem>0-9 converted to a-j </listitem>
          <listitem>Drop all special characters and spaces.   </listitem>
          <listitem>For longer reference name, it trim center parts and make it first and last 16 characters each.   </listitem>
          <listitem>See HTML link name as quick check after generation. </listitem>
        </itemizedlist>
        <para>Do not use "<code> [[Anchor(internalLinks)]] </code>" for now in the main text used by building final HTML files.  (It may be a good idea but you need to do it for entire document.)   </para>
        <para>The normal anchor feature of <ulink url="/MoinMoin">MoinMoin</ulink> wiki is not supported by the XML conversion tool now. </para>
      </section>
    </section>
  </section>
</article>