Merge from emacs-24; up to 2014-03-24T03:06:35Z!dancol@dancol.org
[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
494ec1e7
SM
165abbrevs.texi
166ack.texi
167anti.texi
168arevert-xtra.texi
169basic.texi
170buffers.texi
171building.texi
172calendar.texi
173cal-xtra.texi
174cmdargs.texi
175commands.texi
176custom.texi
177dired.texi
178dired-xtra.texi
179display.texi
180emacs.texi
181emacs-xtra.texi
182emerge-xtra.texi
183entering.texi
184files.texi
185fixit.texi
186fortran-xtra.texi
187frames.texi
188glossary.texi
189help.texi
190indent.texi
191killing.texi
192kmacro.texi
193macos.texi
194maintaining.texi
195mark.texi
196mini.texi
197misc.texi
198modes.texi
199msdog.texi
200msdog-xtra.texi
201mule.texi
202m-x.texi
203package.texi
204picture-xtra.texi
205programs.texi
206regs.texi
207rmail.texi
208screen.texi
209search.texi
210sending.texi
211text.texi
212trouble.texi
213vc-xtra.texi
214vc1-xtra.texi
215windows.texi
216xresources.texi
01c29e98
CY
217
218** Check the Lisp manual.
219
494ec1e7
SM
220abbrevs.texi
221anti.texi
222back.texi
223backups.texi
224buffers.texi
225commands.texi
226compile.texi
227control.texi
228customize.texi
229debugging.texi
230display.texi
231edebug.texi
01c29e98 232elisp.texi
494ec1e7
SM
233errors.texi
234eval.texi
235files.texi
236frames.texi
237functions.texi
238hash.texi
239help.texi
240hooks.texi
01c29e98 241index.texi
494ec1e7
SM
242internals.texi
243intro.texi
244keymaps.texi
245lists.texi
246loading.texi
247macros.texi
248maps.texi
249markers.texi
250minibuf.texi
251modes.texi
252nonascii.texi
253numbers.texi Paul Eggert (24.4)
254objects.texi
255os.texi
256package.texi
257positions.texi
258processes.texi
259searching.texi
260sequences.texi
261streams.texi
262strings.texi
263symbols.texi
264syntax.texi
265text.texi
266tips.texi
267variables.texi
268windows.texi
01c29e98 269
c0a070c1
KS
270\f
271Local variables:
272mode: outline
49561a36 273coding: utf-8
c0a070c1 274end: