The branch, master has been updated via 5be088e904b8a768dd8fe4add3614c0f61190b4d (commit) from eba8989fad267c75cf0921aab77bbb038dca3fc2 (commit)
- Log ----------------------------------------------------------------- commit 5be088e904b8a768dd8fe4add3614c0f61190b4d Author: Michal Čihař mcihar@novell.com Date: Thu Dec 2 16:41:54 2010 +0100
Do not filter out .xz.
-----------------------------------------------------------------------
Summary of changes: render.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/render.py b/render.py index 9767d60..ae59587 100755 --- a/render.py +++ b/render.py @@ -382,7 +382,7 @@ class SFGenerator: if type != 'phpMyAdmin': continue path, ext = os.path.splitext(title) - if ext not in ['.html', '.txt', '.7z', '.gz', '.bz2', '.zip']: + if ext not in ['.html', '.txt', '.7z', '.gz', '.bz2', '.xz', '.zip']: continue release, file = self.dom2release(entry) if release is None: @@ -507,7 +507,7 @@ class SFGenerator: if type != 'themes': continue path, ext = os.path.splitext(title) - if ext not in ['.html', '.txt', '.7z', '.gz', '.bz2', '.zip']: + if ext not in ['.html', '.txt', '.7z', '.gz', '.bz2', '.xz', '.zip']: continue name = titleparts[1] version = titleparts[2]
hooks/post-receive