summaryrefslogtreecommitdiff
path: root/templates/404.jinja
blob: 7142f5f6be13480d073f5eb2abcbf7c0b826fd9c (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "layout.jinja" %}
{% set title = "404 -- Seite konnte nicht gefunden werden!" %}

{% block heading %}404 -- Seite nicht gefunden{% endblock %}

{% block content %}
<p>
    Sorry - die Seite <i>{{page}}</i> konnte nicht gefunden werden.
</p>
{% endblock %}
over-highlight'> 2011-08-31Merged loopChimrod1-16/+11 2011-08-30Set timeout for feed fetchingChimrod3-7/+19 2011-02-18gem: include executable wrappers in bin/*Eric Wong1-0/+3 The RubyGems installation of feed2imap did not install the RubyGems bin/* wrappers in the user's normal $PATH 2011-02-18httpfetcher: accept gzip encoding from serversEric Wong1-5/+14 On supported servers, gzip encoding saves bandwidth and should be enabled on clients by default to avoid excessive bandwidth bills. "deflate" encoding could be enabled, too, but servers and clients tend to handle zlib headers (or lack thereof) inconsistently and it gets messy. 2011-02-18add "parts" config optionEric Wong3-10/+40 This allows disabling either HTML or text parts to save bandwidth/disk space on the IMAP server. 2011-01-08fix typo breaking debug-updated optionLucas Nussbaum1-2/+2 2010-12-01Add a vim-modeline for the config example.René 'Necoro' Neumann1-0/+2 This sets the correct modes for vim when editing the configfile. This is especially needed, as YAML uses indentation for structures. Options set: - filetype to YAML (else 'conf' is infered) - set the number of spaces a tab is to 2 - expandtab -- do not insert \t but spaces 2010-12-01Encode the folder in UTF7Lucas Nussbaum1-1/+17 Patch from René 'Necoro' Neumann <lists@necoro.eu>, who writes: > I wanted to wrap the folder name in a call to > "Net::IMAP::encode_utf7" > to allow special characters like umlauts in the folder name (see the > attached patch). > > Problem is, that the encode_utf7 (and the decode_utf7 FWIW) uses the > 'String::force_encoding' method, which some googling shows to be in > Ruby1.9 but not 1.8. 2010-12-01robustify config parsingLucas Nussbaum1-11/+22 2010-11-30Also add reupload_if_updated for MaildirsLucas Nussbaum1-1/+4 2010-11-30Add a reupload_if_updated option (default: true)Lucas Nussbaum4-8/+20 Following a discussion on feed2imap-devel, add a reupload_if_updated option. When set to false, if an item is updated, but was previously removed from the IMAP server, it is no longer re-uploaded. Also fix some config file parsing bugs for the disable-ssl-verification and include-images options. I should really switch to another way to describe F2I config... 2010-07-05Patch 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