commit 2f65291ef15bd4d6a49c38f8809f64184b52a727 Author: Alberto Bertogli Date: Sun Nov 3 10:57:54 2013 +0000 Fix committer field in the commit view The commit view shows the author information in the committer field; this patch fixes it by showing the appropriate fields. Signed-off-by: Alberto Bertogli commit f6a75820e812f1ab44545cf01f4c475952df0821 Author: Alberto Bertogli Date: Sat Nov 2 23:32:43 2013 +0000 Work around HTTPError status code issues It turned out that bottle.py is not backwards-compatible with the status code change: older versions encode the status in e.status; newer ones use e.status_code (and e.status became a string). This patch works around that by trying to pick up which of the two variants we have, and deciding accordingly. Signed-off-by: Alberto Bertogli commit e49c69da2e53c8938f4d58bd478bb68f060e3849 Author: Alberto Bertogli Date: Sat Nov 2 22:18:33 2013 +0000 Show the age of a repository in the index, via javascript This patch adds the age of the repository to the index view, using javascript to give a nice human string for the age. When javascript is not available, the element remains hidden. Signed-off-by: Alberto Bertogli commit 6764bfcfd6bfb5e1aafc777fea9cfe00139710f2 Author: Alberto Bertogli Date: Sat Nov 2 21:15:23 2013 +0000 Use the status_code attribute to tell 404s appart Newer versions of bottle have a string in the e.status attribute, and the status code can be found in e.status_code, which should be backwards compatible. Signed-off-by: Alberto Bertogli commit 54026b7585badf3736ad97f6f6e1d656d9f469e2 Author: Alberto Bertogli Date: Sat Nov 2 21:12:50 2013 +0000 Make embedding markdown and images configurable per-repo This patch introduces the embed_markdown and embed_images configuration options, so users can enable and disable those features on a per-repository basis. Signed-off-by: Alberto Bertogli commit a42d7da6a4c33d12c0af1847ba4512b1a3f70287 Author: Alberto Bertogli Date: Sat Nov 2 19:14:36 2013 +0000 utils: Make the embedded image code use mimetypes This patch makes minor changes to the code that handles embedded images, mostly to make it use mimetypes, and to remove SVG support (at least for now) due to security concerns. Signed-off-by: Alberto Bertogli commit 21522f8a3a4a010ad717f5bdcbbc6584d9ba7527 Author: Vanya Sergeev Date: Sun Oct 13 06:30:25 2013 -0700 Add embed data URI image blob support commit f62ca211ebf8badd17fef5d15d61eb8ff00875c1 Author: Vanya Sergeev Date: Sun Oct 13 06:28:51 2013 -0700 Add markdown blob support commit d3bf98ea006f9949b16ad10f7d2c88d6809b8619 Author: Vanya Sergeev Date: Fri Oct 11 10:27:21 2013 -0700 Fix parsing of empty commit messages