blob: 29245e1819d784cacea1997006915d4a496c393a (
plain) (
blame)
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
|
@table can no longer be used with commands that require no arguments
since Texinfo 5.0. So, convert the list to @itemize and improve the
output/style of nearby code instead of blindly substituting
@table @bullet
@item
...
@end table
with
@table @asis
@item @bullet{}
...
@end table
--- doc/xlogmaster.texinfo.orig 2009-06-09 00:34:43 UTC
+++ doc/xlogmaster.texinfo
@@ -710,90 +710,48 @@ The current version is 1.6.0, yet to be
@cindex Obtaining Xlogmaster
The source can be found via anonymous FTP at
-@ifinfo
-@file{ftp.gnu.org:/pub/gnu/}.
-@end ifinfo
-@ifhtml
-<A HREF="ftp://ftp.gnu.org/pub/gnu/">ftp.gnu.org:/pub/gnu/</A>
-@end ifhtml
-@iftex
-@file{ftp.gnu.org:/pub/gnu/}.
-@end iftex
+@uref{ftp://ftp.gnu.org/pub/gnu/}.
@node Getting help, Regexp, Where, Introductory Questions
@subsection Where can I get help for using the Xlogmaster ?
@cindex Help
If you installed everything correctly the easiest ways are probably
-@table @bullet
+
+@itemize @bullet
@item
the tutorial that should be in your info tree. Otherwise you can find it
in the @file{doc} directory of the distribution
+
@item
the man page.
+
@item
executing the Xlogmaster via @code{xlogmaster --help}
-@end table
+@end itemize
+
+@noindent
Other ways are to check out the home page at
-@table @bullet
-@ifinfo
-@file{http://www.gnu.org/software/xlogmaster/xlogmaster.html}
-@end ifinfo
-@ifhtml
-<A HREF="http://www.gnu.org/software/xlogmaster/xlogmaster.html">http://www.gnu.org/software/xlogmaster/xlogmaster.html</A>
-@end ifhtml
-@iftex
-@file{http://www.gnu.org/software/xlogmaster/xlogmaster.html}
-@end iftex
-@end table
+@uref{http://www.gnu.org/software/xlogmaster/xlogmaster.html}
+@*
or the mailing lists
+
@cindex mailing lists
-@table @bullet
+@itemize @bullet
@item
-@ifinfo
-@file{beta-xlogmaster@@gnu.org}
-@end ifinfo
-@ifhtml
-<A HREF="mailto:beta-xlogmaster@@gnu.org">beta-xlogmaster@@gnu.org</A>
-@end ifhtml
-@iftex
-@file{beta-xlogmaster@@gnu.org}
-@end iftex
-@sp 1
+@email{beta-xlogmaster@@gnu.org}
+
Subscription is done by sending a mail to@*
-@ifinfo
-@file{beta-xlogmaster-request@@gnu.org}
-@end ifinfo
-@ifhtml
-<A HREF="mailto:beta-xlogmaster-request@@gnu.org">beta-xlogmaster-request@@gnu.org</A>
-@end ifhtml
-@iftex
-@file{beta-xlogmaster-request@@gnu.org}
-@end iftex
+@email{beta-xlogmaster-request@@gnu.org}
@* leave the @emph{subject} blank and enter @samp{subscribe} in the @emph{body}.
+
@item
-@ifinfo
-@file{help-xlogmaster@@gnu.org}
-@end ifinfo
-@ifhtml
-<A HREF="mailto:help-xlogmaster@@gnu.org">help-xlogmaster@@gnu.org</A>
-@end ifhtml
-@iftex
-@file{help-xlogmaster@@gnu.org}
-@end iftex
-@sp 1
+@email{help-xlogmaster@@gnu.org}
+
Subscription is done by sending a mail to@*
-@ifinfo
-@file{help-xlogmaster-request@@gnu.org}
-@end ifinfo
-@ifhtml
-<A HREF="mailto:help-xlogmaster-request@@gnu.org">help-xlogmaster-request@@gnu.org</A>
-@end ifhtml
-@iftex
-@file{help-xlogmaster-request@@gnu.org}
-@end iftex
+@email{help-xlogmaster-request@@gnu.org}
@* leave the @emph{subject} blank and enter @samp{subscribe} in the @emph{body}.
-@end table
+@end itemize
@node Regexp, , Getting help, Introductory Questions
@subsection Regular Expressions
|