* admin/update_autogen: Fix sed bug that was losing the last AUTOGEN_VCS.
[bpt/emacs.git] / admin / FOR-RELEASE
CommitLineData
e47ac727
RS
1Tasks needed before the next release.
2
c8de0427 3* TO BE DONE SHORTLY BEFORE RELEASE
1f912e99 4
408b936e
GM
5** Either update, test, and support the old w32 build method, or remove it.
6
10a99e0d 7** Manuals
16bcc96d
GM
8Check for node names using problematic characters:
9 find doc -name '*.texi' -exec grep '^@node[^,]*[:.()]' {} +
10Sadly makeinfo does not warn about such characters.
11
10a99e0d 12Check cross-references between the manuals (eg from emacs to elisp)
332eb5f1
GM
13are correct. You can use something like the following in the info
14directory in the Emacs build tree:
15
bcc65704 16emacs -Q --eval "(progn (require 'info) (setq Info-directory-list '(\".\")))" \
332eb5f1 17 -f info-xref-check-all
10a99e0d 18
7e3a3bb3
GM
19Setting Info-directory-list avoids having system info pages confuse
20things. References to external manuals will be flagged as
21uncheckable. You should still check these, and also that each
22external manual has an appropriate redirect in the file manual/.htaccess
23in the web pages repository. E.g.:
24Redirect /software/emacs/manual/html_mono/automake.html /software/automake/manual/automake.html
25Redirect /software/emacs/manual/html_node/automake/ /software/automake/manual/html_node/
26
8b09455e
GM
27Another tool you can use to check links is gnu.org's linc.py:
28http://www.gnu.org/server/source/
29
30You run this something like:
31
32cd /path/to/cvs/emacs-www
33linc.py -o /path/to/output-dir --url http://www.gnu.org/software/emacs/ .
34
35Be warned that it is really, really slow (as in, can take ~ a full day
36to check the manual/ directory). It is probably best to run it on a
37single directory at a time from eg manual/html_node. It is very
38inefficient, but may reveal a few things that info-xref does not.
39
40
10a99e0d
GM
41make emacs.dvi, elisp.dvi, and deal with any errors (undefined
42references etc) in the output. Break any overfull lines.
43Underfull hboxes are not serious, but it can be nice to get rid of
44them if a simple rephrasing or rearrangement will work.
45
46Update the master menu and detailed menu (eg the antinews version).
47The command texinfo-multiple-files-update can do this, but you
48probably want to apply the results selectively (eg the current master
49menu has better line-breaks than the automatic version). It includes
50the menu-entry name (if there is one) as well as the node name - using
51only the latter looks better. Also, it doesn't seem to handle nested
52includes, so will miss edebug.texi etc.
53
64adbcf6
GM
54Check for widow and orphan lines in the printed manual; make sure all
55the pages really look ok in the manual as formatted. Orphans/widows
56are cases where the first/last line of a paragraph is on its own at
57the end/start of a page, or where the last word in a paragraph is on
58its own at the start of a line. It looks better if you reword/respace
59things to avoid these. (AFAIK, there is no way to find these except
60paging through the whole manual.) This should be the very last thing
61you do, since any change can alter the layout.
e2866686
GM
62(Actually, there is probably little point in trying to do this.
63It's only really relevant if printed versions of the manuals are going
64to be published. End-users are not likely to print out all 1000+
65pages of the manuals, and even if they do, the resulting page breaks
66depend on what paper and font size they use. This also means that if
67you _are_ going to do this, it should be done with the paper and font
68size that the GNU Press are going to use when they print the manuals.
69I think this is different to what you get if you just use eg `make
70emacs.pdf' (e.g., enable "smallbook").
059cbcd5 71
6ad032d2 72** Check the keybindings in the refcards are correct, and add any new ones.
6ad032d2 73What paper size are the English versions supposed to be on?
accc7588
GM
74On Debian testing, the packages texlive-lang-czechslovak and
75texlive-lang-polish will let you generate the cs-* and sk-* pdfs.
a017d05f 76(You may need texlive-lang-cyrillic, texlive-lang-german for others.)
accc7588
GM
77The Makefile rules did not work for me, I had to use something like:
78csplain -output-format=pdf cs-refcard
f199f76c 79
b713c813
RS
80** Ask maintainers of refcard translations to update them.
81
590394eb 82Emacs 22 translators:
49561a36
RS
83
84LANG Translator Status
590394eb
GM
85cs Pavel Janík
86de Sven Joachim
87fr Eric Jacoboni
88pl Włodek Bzyl
89pt-br Rodrigo Real
90ru Alex Ott
91sk Miroslav Vaško
49561a36 92
5db6195f
GM
93** For a major release, add a "New in Emacs XX" section to faq.texi.
94
0fd352a5
GM
95** Remove temporary +++/--- lines in NEWS.
96
97** Try to reorder NEWS: most important things first, related items together.
98
10a99e0d
GM
99** Consider bumping customize-changed-options-previous-release.
100
8cee47b8 101** cusver-check from admin.el can help find new defcustoms missing
5db6195f
GM
102:version tags.
103
f9de7738
RS
104* BUGS
105
caf857eb
JL
106** Check for modes which bind M-s that conflicts with a new global binding M-s
107and change key bindings where necessary. The current list of modes:
108
1091. Gnus binds `M-s' to `gnus-summary-search-article-forward'.
110
1112. Minibuffer binds `M-s' to `next-matching-history-element'
112 (not useful any more since C-s can now search in the history).
113
1f9689eb 1143. `center-line' in Text mode was already moved to the text formatting
caf857eb
JL
115 keymap as `M-o M-s' (thus this binding is not necessary any more
116 in `nroff-mode-map' too and can be removed now from the nroff mode
117 because it can now use the global key binding `M-o M-s' `center-line').
118
1f9689eb 1194. PCL-CVS binds `M-s' to `cvs-status', and log-edit-mode binds it to
caf857eb
JL
120 `log-edit-comment-search-forward'. Perhaps search commands
121 on the global key binding `M-s' are useless in these modes.
122
8f4fb15f
GM
1235. Rmail binds `\es' to `rmail-search'/`rmail-summary-search'.
124
125
3026f1b4 126* DOCUMENTATION
58340fa7 127
0b048d52
MT
128** Check the Emacs Tutorial.
129
29121f81
RS
130The first line of every tutorial must begin with text ending in a
131period (".", ASCII 0x2E) saying "Emacs Tutorial" in the respective
41999d0f
GM
132language. This should be followed by "See end for copying conditions",
133likewise in the respective language.
b75122e4
RS
134
135After each file name, on the same line or the following line, come the
136names of the people who have checked it.
137
0b048d52
MT
138SECTION READERS
139----------------------------------
107ddb97 140TUTORIAL cyd
7a22e700 141TUTORIAL.bg ogi
2fd3a9f7 142TUTORIAL.cn xfq
fd99fde6 143TUTORIAL.cs
7a22e700 144TUTORIAL.de wl
fd99fde6
GM
145TUTORIAL.eo
146TUTORIAL.es
147TUTORIAL.fr
0dc18ae0 148TUTORIAL.he eliz
fd99fde6 149TUTORIAL.it
2fd3a9f7 150TUTORIAL.ja
fd99fde6 151TUTORIAL.ko
735cc5ca 152TUTORIAL.nl Pieter Schoenmakers
fd99fde6
GM
153TUTORIAL.pl
154TUTORIAL.pt_BR
155TUTORIAL.ro
5eb7536f 156TUTORIAL.ru Alex Ott
fd99fde6 157TUTORIAL.sk
6d0bd9ba 158TUTORIAL.sl Primoz PETERLIN
21f50183 159TUTORIAL.sv Mats Lidell
fd99fde6
GM
160TUTORIAL.th
161TUTORIAL.zh
0b048d52 162
01c29e98
CY
163** Check the manual.
164
c40a7de7 165abbrevs.texi cyd
41f1e868 166ack.texi rgm
0b21c100 167anti.texi cyd
bfd779dd 168arevert-xtra.texi cyd
21100e7d 169basic.texi cyd
da97a9e6 170buffers.texi cyd
bc859d5f 171building.texi cyd
112d1241 172calendar.texi rgm
a5987767 173cal-xtra.texi rgm
a73a3461 174cmdargs.texi cyd
de0bde62 175commands.texi cyd
89bd9ccd 176custom.texi cyd
c40a7de7 177dired.texi cyd
3b19a30d 178dired-xtra.texi rgm
939db9ac 179display.texi cyd
2d2f6581 180emacs.texi rgm
2e03845d 181emacs-xtra.texi rgm
68af8d4f 182emerge-xtra.texi rgm
de0bde62 183entering.texi cyd
bfd779dd 184files.texi cyd
06848b82 185fixit.texi cyd
d400b295 186fortran-xtra.texi rgm
dc95a8b0 187frames.texi cyd
a0706406 188glossary.texi rgm
21100e7d 189help.texi cyd
6d262977 190indent.texi cyd
21100e7d 191killing.texi cyd
bfd779dd 192kmacro.texi cyd
40ace058 193macos.texi rgm (can't actually test any of it though)
3d992aa0 194maintaining.texi cyd
21100e7d 195mark.texi cyd
49fe4321 196mini.texi rgm
88c5c7c8 197misc.texi cyd
dc95a8b0 198modes.texi cyd
8f4042d2 199msdog.texi rgm (can't actually test any of it though)
371fb833 200msdog-xtra.texi rgm (can't actually test any of it though)
05806f43 201mule.texi rgm (not 100% sure about "Fontsets")
21100e7d 202m-x.texi cyd
b0d7d8af 203package.texi cyd
5f8dc2ca 204picture-xtra.texi rgm
bc859d5f 205programs.texi cyd
21100e7d 206regs.texi cyd
b474519e 207rmail.texi rgm
de0bde62 208screen.texi cyd
5abc31ef 209search.texi cyd
b30941db 210sending.texi cyd
bc859d5f 211text.texi cyd
c61ab18c 212trouble.texi cyd
3d992aa0
CY
213vc-xtra.texi cyd
214vc1-xtra.texi cyd
dc95a8b0 215windows.texi cyd
06848b82 216xresources.texi cyd
01c29e98
CY
217
218** Check the Lisp manual.
219
ea16568d 220abbrevs.texi rgm
25dec365 221advice.texi cyd
764a3017 222anti.texi rgm
0b021094 223back.texi rgm
d268b4fe 224backups.texi cyd
431ee44b 225buffers.texi cyd
faccede1 226commands.texi cyd
25dec365 227compile.texi cyd
31cbea1d 228control.texi cyd
e1161b06 229customize.texi cyd
faccede1 230debugging.texi cyd
5319014e 231display.texi cyd
0b021094 232edebug.texi rgm
01c29e98 233elisp.texi
7e05b1ec 234errors.texi rgm
31cbea1d 235eval.texi cyd
a59225b1 236files.texi cyd
a08a07e3 237frames.texi cyd
735cc5ca 238functions.texi cyd
31cbea1d 239hash.texi cyd
8376d7c2 240help.texi cyd
2064cc6a 241hooks.texi rgm
01c29e98 242index.texi
d15aac68 243internals.texi rgm cyd
6d0bd9ba 244intro.texi cyd
3d8badf4 245keymaps.texi cyd
31cbea1d 246lists.texi cyd
6c1e4b46 247loading.texi cyd
03988c98 248macros.texi cyd
53a1239b 249maps.texi rgm
3266b56f 250markers.texi rgm
5db6195f 251minibuf.texi rgm
8376d7c2 252modes.texi cyd
83ef8187 253nonascii.texi cyd
31cbea1d 254numbers.texi cyd
7a22e700 255objects.texi cyd
d15aac68 256os.texi cyd
763d4948 257package.texi rgm
ef959d3a 258positions.texi cyd
4373fd43 259processes.texi rgm
fee88ca0 260searching.texi rgm
31cbea1d 261sequences.texi cyd
faccede1 262streams.texi cyd
31cbea1d
CY
263strings.texi cyd
264symbols.texi cyd
4230351b 265syntax.texi cyd
83ef8187 266text.texi cyd
b3134b95 267tips.texi rgm
735cc5ca 268variables.texi cyd
09ebefe1 269windows.texi rgm (skimmed)
01c29e98 270
c0a070c1
KS
271\f
272Local variables:
273mode: outline
49561a36 274coding: utf-8
c0a070c1 275end: