summaryrefslogtreecommitdiff
path: root/static/images/open.png
blob: c4d5094a0891d793159894bfaceac6188adbdcac (plain)
ofshex dumpascii
0000 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 08 00 00 00 08 08 06 00 00 00 c4 0f be .PNG........IHDR................
0020 8b 00 00 00 04 73 42 49 54 08 08 08 08 7c 08 64 88 00 00 00 09 70 48 59 73 00 00 06 47 00 00 06 .....sBIT....|.d.....pHYs...G...
0040 47 01 20 5d bc 3a 00 00 00 19 74 45 58 74 53 6f 66 74 77 61 72 65 00 77 77 77 2e 69 6e 6b 73 63 G..].:....tEXtSoftware.www.inksc
0060 61 70 65 2e 6f 72 67 9b ee 3c 1a 00 00 00 aa 49 44 41 54 18 95 35 cf 31 4a 03 61 10 86 e1 e7 0f ape.org..<.....IDAT..5.1J.a.....
0080 82 01 61 73 82 94 b2 90 ca 46 08 62 ba 90 bd 81 6d 2a 6f b0 f1 12 1b f0 00 a9 6c 3d 80 88 d8 45 ..as.....F.b....m*o.......l=...E
00a0 82 60 2f bb 90 4b 6c 11 88 d5 9f 22 e3 54 33 2f 2f f3 f1 a5 a6 2d 9e b1 c4 7d 5d f6 bf b0 ee 46 .`/..Kl....".T3//....-...}]....F
00c0 13 7c e1 25 35 6d 31 c0 2b 6e 31 75 9e 6f fc e0 21 e5 9c ad bb d1 10 9f b8 0a e1 80 79 5d f6 c7 .|.%5m1.+n1u.o..!...........y]..
00e0 d4 b4 c5 35 8e 01 77 21 dc 85 3c 1c a0 c2 1e 37 11 31 8d 7d 8f ea 3f a2 c1 23 66 f1 61 8b 4d 5d ...5..w!..<....7.1.}..?..#f.a.M]
0100 f6 ab 8b 00 4f 18 e3 2d ee f7 60 52 ce 59 54 bb c4 47 08 8b ba ec ff e0 04 38 d2 30 9a 52 22 f9 ....O..-..`R.YT..G.......8.0.R".
0120 b5 00 00 00 00 49 45 4e 44 ae 42 60 82 .....IEND.B`.
t/lib/feed2imap/maildir.rb?id=94dc1db641f98242496a32409e823920f4e700e9&follow=1'>Patch to use feed item pubDate in Maildir file namesBernie Maier1-6/+10 Hi! I've just subscribed to the list, having downloaded feed2imap a few days ago. Since I want to just write RSS feeds to a local Maildir, this looked like just what I needed. Unfortunately, the release 1.0 version seems to randomise the order of the feed items when doing the first fetch for a new feed. Looking at maildir.rb, there is a "TODO: handle `date'" comment and it looks like the code is just generating maildir filenames using the timestamp at the time the items are being written into the maildir. Since all the initial items are written at the same time, and the maildir file name has a random element, this loses the original ordering from the mail feed. The solution is to use the timestamp corresponding to the pubDate in the feed item as the initial component of the maildir file name. Also, instead of using a random integer to force uniqueness in the second component of the file name, I think it is better to use a sequence number for each feed item, which will still be unique for the feed and also preserve item order. My patch follows (it's the first piece of Ruby code I've ever written / modified)... Cheers, Bernie 2010-04-18update websiteLucas Nussbaum2-2/+15 2010-04-18prepare releaseLucas Nussbaum4-5/+5 2010-04-18provide a way to disable SSL certificate verificationLucas Nussbaum4-1/+12 2010-04-18update changelogLucas Nussbaum1-0/+4 2010-04-18Update rubyimap.rbLucas Nussbaum1-5/+38 Update rubyimap.rb to upstream revision 27336 2010-03-17Document the maildir targetSandra Snan3-5/+5 I looked for a good feed to maildir program, and I couldn’t find one. Turns out, by looking at feed2imaps source code, that it has that function. So here’s a documentation patch so it’s easier to find. This patch shouldn’t touch any code. Generated by git. Sandra Signed-off-by: Sandra Snan <sandra.snan@handgranat.org> 2009-12-26Avoid using "acme.com"Lucas Nussbaum4-10/+19 Patch from Guido Berhoerster <guido@berhoerster.name>: Hello, here is a small patch that avoids using the valid(!) domain "acme.com" for generating message ids and email addresses. It adds a new global configuration option "default-email" which will be used in case a feed does provide one, currently feed2imap resorts to "feed2imap@acme.com". If this configuration option is not given it will basically default to <logname>@<hostname> as returned by Etc.getlogin and Socket.gethostname. Yours, 2009-09-04fix to use Message-Id instead of X-CacheIndexLucas Nussbaum1-5/+2 2009-09-03added the forth arg to ConfigFeed::new for maildirLucas Nussbaum1-1/+1