"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "gnus-5.10.10/etc/images/GNUS-README" of archive gnus-5.10.10.tar.gz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 CONTENTS
2
3 This file (GNUS-NEWS) contains some Gnus specific informations or other
4 information that not relevant for Emacs. For information relevant to Emacs,
5 see README, smilies/README, mail/README, and gnus/README. Don't modify these
6 files in Gnus' repository unless the change should also be included in the
7 Emacs incarnation of the files.
8
9
10 COPYRIGHT AND LICENSE INFORMATION FOR IMAGE FILES
11
12 See README, smilies/README, mail/README and gnus/README.
13
14
15 ORIGIN OF THE IMAGE FILES
16
17 The following icons are from GNOME 2.6:
18
19 attach.xpm (stock_attach)
20 connect.xpm (stock_connect)
21 contact.xpm (stock_contact)
22 delete.xpm (stock_delete)
23 describe.xpm (stock_properties)
24 disconnect.xpm (stock_disconnect)
25 exit.xpm (stock_exit)
26 lock-broken.xpm (stock_lock_broken)
27 lock-ok.xpm (stock_lock_ok)
28 lock.xpm (stock_lock)
29 next-page.xpm (stock_next-page)
30 refresh.xpm (stock_refresh)
31 sort-ascending.xpm (stock_sort-ascending)
32 sort-column-ascending.xpm (stock_sort-column-ascending)
33 sort-criteria.xpm (stock_sort-criteria)
34 sort-descending.xpm (stock_sort-descending)
35 sort-row-ascending.xpm (stock_sort-row-ascending)
36
37 gnus/toggle-subscription.xpm (stock_task-recurring)
38
39 mail/compose.xpm (stock_mail-compose)
40 mail/copy.xpm (stock_mail-copy)
41 mail/forward.xpm (stock_mail-forward)
42 mail/inbox.xpm (stock_inbox)
43 mail/move.xpm (stock_mail-move)
44 mail/not-spam.xpm (stock_not-spam)
45 mail/outbox.xpm (stock_outbox)
46 mail/reply-all.xpm (stock_mail-reply-to-all)
47 mail/reply.xpm (stock_mail-reply)
48 mail/save-draft.xpm (stock_mail-handling)
49 mail/send.xpm (stock_mail-send)
50 mail/spam.xpm (stock_spam)
51
52
53 The following icons were contributed by Adam Sjøgren <asjo@koldfront.dk>:
54
55 mail/preview.xpm (combining stock_mail and stock_zoom)
56 mail/save.xpm (combining stock_mail, stock_save and stock_convert)
57
58
59 The folling icon are duplicated from Emacs 22. They are either not present in
60 Emacs 21 or look different there.
61
62 cancel.xpm
63 close.xpm
64 copy.xpm
65 cut.xpm
66 diropen.xpm
67 help.xpm
68 home.xpm
69 index.xpm
70 jump-to.xpm
71 left-arrow.xpm
72 new.xpm
73 next-node.xpm
74 open.xpm
75 paste.xpm
76 preferences.xpm
77 prev-node.xpm
78 print.xpm
79 redo.xpm
80 right-arrow.xpm
81 save.xpm
82 saveas.xpm
83 search.xpm
84 separator.xpm
85 spell.xpm
86
87 You might want to use the following code to get Gnome icons in Emacs 21:
88
89 ;; Only for Emacs 21:
90 (when (and (not (featurep 'xemacs))
91 (not (boundp 'image-load-path))
92 tool-bar-mode)
93 (push "/path/to/etc/images/" image-load-path)
94 (setq tool-bar-map (make-sparse-keymap))
95 (clear-image-cache)
96 (tool-bar-setup))
97
98
99 CONVERSION OF PNG FILES TO XPM
100
101 The GNOME's stock_*.png files were converted to XPM using the following GIMP
102 script:
103
104 ;; -*- scheme -*-
105 ;; Put this file in ~/.gimp-*/scripts/
106 ;; gimp -i -b '(rs-save-as-xpm "foo.png" "foo.xpm" 127)' '(gimp-quit 0)'
107 (define (rs-save-as-xpm filename filename2 threshold)
108 (let* ((image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
109 (drawable (car (gimp-image-get-active-layer image))))
110 (file-xpm-save RUN-NONINTERACTIVE image drawable
111 filename2 filename2 threshold)
112 (gimp-image-delete image)))
113 ;; end