annotate etc/images/show.xpm @ 110410:f2e111723c3a

Merge changes made in Gnus trunk. Reimplement nnimap, and do tweaks to the rest of the code to support that. * gnus-int.el (gnus-finish-retrieve-group-infos) (gnus-retrieve-group-data-early): New functions. * gnus-range.el (gnus-range-nconcat): New function. * gnus-start.el (gnus-get-unread-articles): Support early retrieval of data. (gnus-read-active-for-groups): Support finishing the early retrieval of data. * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name if the move is internal, so that nnimap can do fast internal moves. * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for nnimap usage. * nnimap.el: Rewritten. * nnmail.el (nnmail-inhibit-default-split-group): New internal variable to allow the mail splitting to not return a default group. This is useful for nnimap, which will leave unmatched mail in the inbox. * utf7.el (utf7-encode): Autoload. Implement shell connection. * nnimap.el (nnimap-open-shell-stream): New function. (nnimap-open-connection): Use it. Get the number of lines by using BODYSTRUCTURE. (nnimap-transform-headers): Get the number of lines in each message. (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the number of lines. Not all servers return UIDNEXT. Work past this problem. Remove junk from end of file. Fix typo in "bogus" section. Make capabilties be case-insensitive. Require cl when compiling. Don't bug out if the LIST command doesn't have any parameters. 2010-09-17 Knut Anders Hatlen <kahatlen@gmail.com> (tiny change) * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command doesn't have any parameters. (mm-text-html-renderer): Document gnus-article-html. 2010-09-17 Julien Danjou <julien@danjou.info> (tiny fix) * mm-decode.el (mm-text-html-renderer): Document gnus-article-html. * dgnushack.el: Define netrc-credentials. If the user doesn't have a /etc/services, supply some sensible port defaults. Have `unseen-or-unread' select an unread unseen article first. (nntp-open-server): Return whether the open was successful or not. Throughout all files, replace (save-excursion (set-buffer ...)) with (with-current-buffer ... ). Save result so that it doesn't say "failed" all the time. Add ~/.authinfo to the default, since that's probably most useful for users. Don't use the "finish" method when we're reading from the agent. Add some more nnimap-relevant agent stuff to nnagent.el. * nnimap.el (nnimap-with-process-buffer): Removed. Revert one line that was changed by mistake in the last checkin. (nnimap-open-connection): Don't error out when we can't make a connection nnimap-related changes to avoid bugging out if we can't contact a server. * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups from methods that are denied. * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log in. (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for nothing. * gnus-sum.el (gnus-select-newsgroup): Indent.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Sat, 18 Sep 2010 10:02:19 +0000
parents 75b06a7624a1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
65755
7b615e6c0ea5 2005-09-30 Bill Wohler <wohler@newt.com>
Bill Wohler <wohler@newt.com>
parents:
diff changeset
1 /* XPM */
69713
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
2 static char * show_xpm[] = {
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
3 "24 24 153 2",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
4 " c None",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
5 ". c #000000",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
6 "+ c #0E0E0E",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
7 "@ c #282828",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
8 "# c #616161",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
9 "$ c #D3D3D3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
10 "% c #F6F6F6",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
11 "& c #FFFFFF",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
12 "* c #F9F9F9",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
13 "= c #F9F9F8",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
14 "- c #E7E7E7",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
15 "; c #E4E4E4",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
16 "> c #CDCDCD",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
17 ", c #1F1F1F",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
18 "' c #EFEFEE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
19 ") c #AFAFAE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
20 "! c #E9E9E9",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
21 "~ c #B3B3B3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
22 "{ c #383838",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
23 "] c #C1C1C1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
24 "^ c #B4B4B4",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
25 "/ c #A4A4A3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
26 "( c #F0F0F0",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
27 "_ c #F4F4F4",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
28 ": c #ABABAB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
29 "< c #050505",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
30 "[ c #FEFEFE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
31 "} c #FDFDFD",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
32 "| c #FCFCFB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
33 "1 c #FBFBFB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
34 "2 c #F2F2F2",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
35 "3 c #9E9E9E",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
36 "4 c #C0C0C0",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
37 "5 c #BFBFBF",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
38 "6 c #BFBFBE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
39 "7 c #BEBEBE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
40 "8 c #BDBDBC",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
41 "9 c #BCBCBC",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
42 "0 c #B9B9B9",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
43 "a c #A0A0A0",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
44 "b c #B9B7B6",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
45 "c c #838381",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
46 "d c #848381",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
47 "e c #6A6763",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
48 "f c #FAFAF9",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
49 "g c #F8F8F7",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
50 "h c #F8F7F6",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
51 "i c #F3F2F1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
52 "j c #E0E0DF",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
53 "k c #DCDAD8",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
54 "l c #CACAC8",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
55 "m c #B6B6B4",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
56 "n c #72706C",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
57 "o c #BCBCBB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
58 "p c #BCBBBA",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
59 "q c #BBBAB9",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
60 "r c #BABAB9",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
61 "s c #B9B8B7",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
62 "t c #B6B6B5",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
63 "u c #B6B5B3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
64 "v c #E5E4E2",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
65 "w c #C4C3C0",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
66 "x c #817D74",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
67 "y c #F7F6F5",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
68 "z c #F6F6F4",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
69 "A c #F5F4F3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
70 "B c #F4F3F2",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
71 "C c #EBEAE8",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
72 "D c #E1DFDC",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
73 "E c #8B867D",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
74 "F c #B9B9B8",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
75 "G c #B8B8B6",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
76 "H c #B7B7B6",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
77 "I c #B5B5B3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
78 "J c #B4B3B2",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
79 "K c #B3B3B2",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
80 "L c #ADADAB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
81 "M c #A49E93",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
82 "N c #F6F5F4",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
83 "O c #F5F5F3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
84 "P c #F3F3F1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
85 "Q c #F2F2F0",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
86 "R c #F1F1EF",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
87 "S c #F1F0EE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
88 "T c #EEEDEB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
89 "U c #ECEBE9",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
90 "V c #E7E6E3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
91 "W c #E2E1DF",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
92 "X c #E4E3E0",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
93 "Y c #B8B7B6",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
94 "Z c #B5B4B3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
95 "` c #B3B2B0",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
96 " . c #B0AFAD",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
97 ".. c #ADADAA",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
98 "+. c #ADACAA",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
99 "@. c #E2E1DE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
100 "#. c #F0F0EE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
101 "$. c #EFEFED",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
102 "%. c #F0EFED",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
103 "&. c #EFEEEC",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
104 "*. c #E8E7E5",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
105 "=. c #E5E4E1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
106 "-. c #B3B3B1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
107 ";. c #AFAEAC",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
108 ">. c #E1E0DC",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
109 ",. c #E0DFDB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
110 "'. c #A19C90",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
111 "). c #EDEDEB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
112 "!. c #EDECEA",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
113 "~. c #E9E8E5",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
114 "{. c #E6E4E1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
115 "]. c #E3E2DE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
116 "^. c #DFDEDA",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
117 "/. c #DEDDD9",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
118 "(. c #DDDCD8",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
119 "_. c #A19B90",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
120 ":. c #B0B0AE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
121 "<. c #AFADAB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
122 "[. c #E4E2DF",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
123 "}. c #E2E1DD",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
124 "|. c #DCDBD7",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
125 "1. c #E6E5E2",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
126 "2. c #E5E4E0",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
127 "3. c #E4E3DF",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
128 "4. c #DBD9D5",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
129 "5. c #D9D7D3",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
130 "6. c #9F998D",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
131 "7. c #E3E2DF",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
132 "8. c #DDDBD7",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
133 "9. c #DCDAD6",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
134 "0. c #D8D6D2",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
135 "a. c #9E988D",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
136 "b. c #EDEDED",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
137 "c. c #E1E0DD",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
138 "d. c #E0DEDA",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
139 "e. c #D8D6D1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
140 "f. c #D7D5D1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
141 "g. c #9D978B",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
142 "h. c #D1D1D1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
143 "i. c #E1DFDB",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
144 "j. c #DEDCD8",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
145 "k. c #D7D6D1",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
146 "l. c #D5D3CE",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
147 "m. c #9B958A",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
148 "n. c #999891",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
149 "o. c #A39E92",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
150 "p. c #A39D92",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
151 "q. c #A39D91",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
152 "r. c #A29C90",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
153 "s. c #A19B8F",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
154 "t. c #9D978C",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
155 "u. c #9B968A",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
156 "v. c #676359",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
157 " ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
158 " . . . . . . . . . . . . . + @ # ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
159 " . $ % & & & & & & & & * = = - ; > , ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
160 " . % & & & & & & & & & & = ' ) ! & ~ { ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
161 " . & & ] ] ] ] ] ] ] ] ] ] ^ / ( & _ : < ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
162 " . & & & & & [ } | } | 1 = 2 3 . . . . . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
163 " . & & ] 4 5 6 7 8 7 8 9 9 0 a b c d e . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
164 " . & [ } | 1 f = g = g h = i j k l m n . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
165 " . & | 7 8 9 o p q p q r s t u u v w x . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
166 " . & f = g h y z A z A B B B B C D D E . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
167 " . & g p q r F s G s G H I J K L D D M . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
168 " . & N O B B P Q R Q R S T U V W X D M . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
169 " . & B Y H m I m u m u Z ` ...+.@.D M . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
170 " . & B i Q #.$.S %.S %.&.U *.=.X @.D M . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
171 " . & #.I I Z J -.-.-.-.` .;.W >.>.,.'.. ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
172 " . & ).!.U U U C ~.C ~.~.=.{.].^./.(._.. ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
173 " . & C :.:. . . .;. .;.<.[.}.,.(.(.|._.. ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
174 " . & V 1.1.1.=.{.2.{.2.3.}.,./.|.4.5.6.. ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
175 " . * X 7.].[.3.}.].}.].>.>./.8.9.5.0.a.. ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
176 " . b.c.D >.,.}.,.>.,.>.^.d.8.9.5.e.f.g.. ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
177 " . h.i.d.^./.,./.d./.d.j.j.9.9.0.k.l.m.. ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
178 " . n.o.M p.q.p.'.r.'.r.s._.6.6.t.t.u.v.. ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
179 " . . . . . . . . . . . . . . . . . . ",
75b06a7624a1 * images/README: Update with following information.
Bill Wohler <wohler@newt.com>
parents: 65755
diff changeset
180 " "};