Tell about server setup.
[gnus] / texi / gnus-coding.texi
1 \input texinfo
2
3 @setfilename gnus-coding
4 @settitle Gnus Coding Style and Maintainance Guide
5 @syncodeindex fn cp
6 @syncodeindex vr cp
7 @syncodeindex pg cp
8
9 @copying
10 Copyright @copyright{} 2004, 2005, 2007, 2008, 2009, 2010  Free Software
11 Foundation, Inc.
12
13 @quotation
14 Permission is granted to copy, distribute and/or modify this document
15 under the terms of the GNU Free Documentation License, Version 1.3 or
16 any later version published by the Free Software Foundation; with no
17 Invariant Sections, with the Front-Cover texts being ``A GNU
18 Manual'', and with the Back-Cover Texts as in (a) below.  A copy of the
19 license is included in the section entitled ``GNU Free Documentation
20 License'' in the Gnus manual.
21
22 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
23 modify this GNU manual.  Buying copies from the FSF supports it in
24 developing GNU and promoting software freedom.''
25
26 This document is part of a collection distributed under the GNU Free
27 Documentation License.  If you want to distribute this document
28 separately from the collection, you can do so by adding a copy of the
29 license to the document, as described in section 6 of the license.
30 @end quotation
31 @end copying
32
33
34 @titlepage
35 @title Gnus Coding Style and Maintenance Guide
36
37 @author by Reiner Steib  <Reiner.Steib@@gmx.de>
38
39 @insertcopying
40 @end titlepage
41
42 @c Obviously this is only a very rudimentary draft.  We put it in the
43 @c repository anyway hoping that it might annoy someone enough to fix
44 @c it.  ;-) Fixing only a paragraph also is appreciated.
45
46 @ifnottex
47 @node Top
48 @top Gnus Coding Style and Maintainance Guide
49 This manual describes @dots{}
50
51 @insertcopying 
52 @end ifnottex
53
54 @menu
55 * Gnus Coding Style:: Gnus Coding Style
56 * Gnus Maintainance Guide:: Gnus Maintainance Guide
57 @end menu
58
59 @c @ref{Gnus Reference Guide, ,Gnus Reference Guide, gnus, The Gnus Newsreader}
60
61 @node Gnus Coding Style
62 @chapter Gnus Coding Style
63 @section Dependencies
64
65 The Gnus distribution contains a lot of libraries that have been written
66 for Gnus and used intensively for Gnus.  But many of those libraries are
67 useful on their own.  E.g. other Emacs Lisp packages might use the
68 @acronym{MIME} library @xref{Top, ,Top, emacs-mime, The Emacs MIME
69 Manual}.
70
71 @subsection General purpose libraries
72
73 @table @file
74
75 @item netrc.el
76 @file{.netrc} parsing functionality.
77 @c As of 2005-10-21...
78 There are no Gnus dependencies in this file.
79
80 @item format-spec.el
81 Functions for formatting arbitrary formatting strings.
82 @c As of 2005-10-21...
83 There are no Gnus dependencies in this file.
84
85 @item hex-util.el
86 Functions to encode/decode hexadecimal string.
87 @c As of 2007-08-25...
88 There are no Gnus dependencies in these files.
89 @end table
90
91 @subsection Encryption and security
92
93 @table @file
94 @item encrypt.el
95 File encryption routines
96 @c As of 2005-10-25...
97 There are no Gnus dependencies in this file.
98
99 @item password.el
100 Read passwords from user, possibly using a password cache.
101 @c As of 2005-10-21...
102 There are no Gnus dependencies in this file.
103
104 @item tls.el
105 TLS/SSL support via wrapper around GnuTLS
106 @c As of 2005-10-21...
107 There are no Gnus dependencies in this file.
108
109 @item pgg*.el
110 Glue for the various PGP implementations.
111 @c As of 2005-10-21...
112 There are no Gnus dependencies in these files.
113
114 @item sha1.el
115 SHA1 Secure Hash Algorithm.
116 @c As of 2007-08-25...
117 There are no Gnus dependencies in these files.
118 @end table
119
120 @subsection Networking
121
122 @table @file
123 @item dig.el
124 Domain Name System dig interface.
125 @c As of 2005-10-21...
126 There are no serious Gnus dependencies in this file.  Uses
127 @code{gnus-run-mode-hooks} (a wrapper function).
128
129 @item dns.el, dns-mode.el
130 Domain Name Service lookups.
131 @c As of 2005-10-21...
132 There are no Gnus dependencies in these files.
133 @end table
134
135 @subsection Mail and News related RFCs
136
137 @table @file
138 @item pop3.el
139 Post Office Protocol (RFC 1460) interface.
140 @c As of 2005-10-21...
141 There are no Gnus dependencies in this file.
142
143 @item imap.el
144 @acronym{IMAP} library.
145 @c As of 2005-10-21...
146 There are no Gnus dependencies in this file.
147
148 @item ietf-drums.el
149 Functions for parsing RFC822bis headers.
150 @c As of 2005-10-21...
151 There are no Gnus dependencies in this file.
152
153 @item rfc1843.el
154 HZ (rfc1843) decoding.  HZ is a data format for exchanging files of
155 arbitrarily mixed Chinese and @acronym{ASCII} characters.
156 @c As of 2005-10-21...
157 @code{rfc1843-gnus-setup} seem to be useful only for Gnus.  Maybe this
158 function should be relocated to remove dependencies on Gnus.  Other
159 minor dependencies: @code{gnus-newsgroup-name} could be eliminated by
160 using an optional argument to @code{rfc1843-decode-article-body}.
161
162 @item rfc2045.el
163 Functions for decoding rfc2045 headers
164 @c As of 2007-08-25...
165 There are no Gnus dependencies in these files.
166
167 @item rfc2047.el
168 Functions for encoding and decoding rfc2047 messages
169 @c As of 2007-08-25...
170 There are no Gnus dependencies in these files.
171 @c
172 Only a couple of tests for gnusy symbols.
173
174 @item rfc2104.el
175 RFC2104 Hashed Message Authentication Codes
176 @c As of 2007-08-25...
177 There are no Gnus dependencies in these files.
178
179 @item rfc2231.el
180 Functions for decoding rfc2231 headers
181 @c As of 2007-08-25...
182 There are no Gnus dependencies in these files.
183
184 @item flow-fill.el
185 Interpret RFC2646 "flowed" text.
186 @c As of 2005-10-27...
187 There are no Gnus dependencies in this file.
188
189 @item uudecode.el
190 Elisp native uudecode.
191 @c As of 2005-12-06...
192 There are no Gnus dependencies in this file.
193 @c ... but the custom group is gnus-extract.
194
195 @item canlock.el
196 Functions for Cancel-Lock feature
197 @c Cf. draft-ietf-usefor-cancel-lock-01.txt
198 @c Although this draft has expired, Canlock-Lock revived in 2007 when
199 @c major news providers (e.g. news.individual.org) started to use it.
200 @c As of 2007-08-25...
201 There are no Gnus dependencies in these files.
202
203 @end table
204
205 @subsection message
206
207 All message composition from Gnus (both mail and news) takes place in
208 Message mode buffers.  Message mode is intended to be a replacement for
209 Emacs mail mode.  There should be no Gnus dependencies in
210 @file{message.el}.  Alas it is not anymore.  Patches and suggestions to
211 remove the dependencies are welcome.
212
213 @c message.el requires nnheader which requires gnus-util.
214
215 @subsection Emacs @acronym{MIME}
216
217 The files @file{mml*.el} and @file{mm-*.el} provide @acronym{MIME}
218 functionality for Emacs.
219
220 @acronym{MML} (@acronym{MIME} Meta Language) is supposed to be
221 independent from Gnus.  Alas it is not anymore.  Patches and suggestions
222 to remove the dependencies are welcome.
223
224 @subsection Gnus backends
225
226 The files @file{nn*.el} provide functionality for accessing NNTP
227 (@file{nntp.el}), IMAP (@file{nnimap.el}) and several other Mail back
228 ends (probably @file{nnml.el}, @file{nnfolder.el} and
229 @file{nnmaildir.el} are the most widely used mail back ends).
230
231 @c mm-uu requires nnheader which requires gnus-util.  message.el also
232 @c requires nnheader.
233
234
235 @section Compatibility
236
237 No Gnus and Gnus 5.10.10 and up should work on:
238 @itemize @bullet
239 @item
240 Emacs 21.1 and up.
241 @item
242 XEmacs 21.4 and up.
243 @end itemize
244
245 Gnus 5.10.8 and below should work on:
246 @itemize @bullet
247 @item
248 Emacs 20.7 and up.
249 @item
250 XEmacs 21.1 and up.
251 @end itemize
252
253 @node Gnus Maintainance Guide
254 @chapter Gnus Maintainance Guide
255
256 @section Stable and development versions
257
258 The development of Gnus normally is done on the Git repository trunk
259 as of April 19, 2010 (formerly it was done in CVS; the repository is
260 at http://git.gnus.org), i.e. there are no separate branches to
261 develop and test new features.  Most of the time, the trunk is
262 developed quite actively with more or less daily changes.  Only after
263 a new major release, e.g. 5.10.1, there's usually a feature period of
264 several months.  After the release of Gnus 5.10.6 the development of
265 new features started again on the trunk while the 5.10 series is
266 continued on the stable branch (v5-10) from which more stable releases
267 will be done when needed (5.10.8, @dots{}).  @ref{Gnus Development,
268 ,Gnus Development, gnus, The Gnus Newsreader}
269
270 Stable releases of Gnus finally become part of Emacs.  E.g. Gnus 5.8
271 became a part of Emacs 21 (relabeled to Gnus 5.9).  The 5.10 series 
272 became part of Emacs 22 as Gnus 5.11.
273
274 @section Syncing
275
276 @c Some MIDs related to this follow.  Use http://thread.gmane.org/MID
277 @c (and click on the subject) to get the thread on Gmane.
278
279 @c Some quotes from Miles Bader follow...
280
281 @c <v9eklyke6b.fsf@marauder.physik.uni-ulm.de>
282 @c <buovfd71nkk.fsf@mctpc71.ucom.lsi.nec.co.jp>
283
284 In the past, the inclusion of Gnus into Emacs was quite cumbersome.  For
285 each change made to Gnus in Emacs repository, it had to be checked that
286 it was applied to the new Gnus version, too.  Else, bug fixes done in
287 Emacs repository might have been lost.
288
289 With the inclusion of Gnus 5.10, Miles Bader has set up an Emacs-Gnus
290 gateway to ensure the bug fixes from Emacs CVS are propagated to Gnus
291 CVS semi-automatically.  These bug fixes are installed on the stable
292 branch and on the trunk.  Basically the idea is that the gateway will
293 cause all common files in Emacs and Gnus v5-10 to be identical except
294 when there's a very good reason (e.g., the Gnus version string in Emacs
295 says @samp{5.11}, but the v5-10 version string remains @samp{5.10.x}).
296 Furthermore, all changes in these files in either Emacs or the v5-10
297 branch will be installed into the Gnus CVS trunk, again except where
298 there's a good reason.
299 @c (typically so far the only exception has been that the changes
300 @c already exist in the trunk in modified form).
301 Because of this, when the next major version of Gnus will be included in
302 Emacs, it should be very easy -- just plonk in the files from the Gnus
303 trunk without worrying about lost changes from the Emacs tree.
304
305 The effect of this is that as hacker, you should generally only have to
306 make changes in one place:
307
308 @itemize
309 @item
310 If it's a file which is thought of as being outside of Gnus (e.g., the
311 new @file{encrypt.el}), you should probably make the change in the Emacs
312 tree, and it will show up in the Gnus tree a few days later.
313
314 If you don't have Emacs CVS access (or it's inconvenient), you can
315 change such a file in the v5-10 branch, and it should propagate to Emacs
316 CVS -- however, it will get some extra scrutiny (by Miles) to see if the
317 changes are possibly controversial and need discussion on the mailing
318 list.  Many changes are obvious bug-fixes however, so often there won't
319 be any problem.
320
321 @item
322 If it's to a Gnus file, and it's important enough that it should be part
323 of Emacs and the v5-10 branch, then you can make the change on the v5-10
324 branch, and it will go into Emacs CVS and the Gnus CVS trunk (a few days
325 later).  The most prominent examples for such changes are bug-fixed
326 including improvements on the documentation.
327
328 If you know that there will be conflicts (perhaps because the affected
329 source code is different in v5-10 and the Gnus CVS trunk), then you can
330 install your change in both places, and when I try to sync them, there
331 will be a conflict -- however, since in most such cases there would be a
332 conflict @emph{anyway}, it's often easier for me to resolve it simply if
333 I see two @samp{identical} changes, and can just choose the proper one,
334 rather than having to actually fix the code.
335
336 @item
337 For general Gnus development changes, of course you just make the
338 change on the Gnus Git trunk and it goes into Emacs a few years
339 later... :-)
340
341 With the new Git repository, we'll probably set up something to
342 automatically synchronize with Emacs when possible.  CVS was much less
343 powerful for this kind of synchronization.
344 @end itemize
345
346 Of course in any case, if you just can't wait for me to sync your
347 change, you can commit it in more than one place and probably there will
348 be no problem; usually the changes are textually identical anyway, so
349 can be easily resolved automatically (sometimes I notice silly things in
350 such multiple commits, like whitespace differences, and unify those ;-).
351
352
353 @c I do Emacs->Gnus less often (than Gnus->Emacs) because it tends to
354 @c require more manual work.
355
356 @c By default I sync about once a week.  I also try to follow any Gnus
357 @c threads on the mailing lists and make sure any changes being discussed
358 @c are kept more up-to-date (so say 1-2 days delay for "topical" changes).
359
360 @c <buovfd71nkk.fsf@mctpc71.ucom.lsi.nec.co.jp>
361
362 @c BTW, just to add even more verbose explanation about the syncing thing:
363
364 @section Miscellanea
365
366 @heading @file{GNUS-NEWS}
367
368 Starting from No Gnus, the @file{GNUS-NEWS} is created from
369 @file{texi/gnus-news.texi}.  Don't edit @file{GNUS-NEWS}.  Edit
370 @file{texi/gnus-news.texi}, type @command{make GNUS-NEWS} in the
371 @file{texi} directory and commit @file{GNUS-NEWS} and
372 @file{texi/gnus-news.texi}.
373
374 @heading Conventions for version information in defcustoms
375
376 For new customizable variables introduced in Oort Gnus (including the
377 v5-10 branch) use @code{:version "22.1" ;; Oort Gnus} (including the
378 comment) or e.g. @code{:version "22.2" ;; Gnus 5.10.10} if the feature
379 was added for Emacs 22.2 and Gnus 5.10.10.
380 @c
381 If the variable is new in No Gnus use @code{:version "23.1" ;; No Gnus}.
382
383 The same applies for customizable variables when its default value was
384 changed.
385
386 @c Local Variables:
387 @c mode: texinfo
388 @c coding: iso-8859-1
389 @c End:
390
391 @ignore
392    arch-tag: ab15234c-2c8a-4cbd-8111-1811bcc6f931
393 @end ignore