From 029ddb037d714d5349595fe101f9cead637a0344 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Fri, 20 Dec 2013 18:35:58 +0100 Subject: Delete dead code --- cnucnu/html_reporter.py | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100755 cnucnu/html_reporter.py diff --git a/cnucnu/html_reporter.py b/cnucnu/html_reporter.py deleted file mode 100755 index 12514ce..0000000 --- a/cnucnu/html_reporter.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/python -# vim: fileencoding=utf8 foldmethod=marker -# {{{ License header: GPLv2+ -# This file is part of cnucnu. -# -# Cnucnu is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 2 of the License, or -# (at your option) any later version. -# -# Cnucnu is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with cnucnu. If not, see . -# }}} -""" :author: Till Maas - :contact: till.maas@till.name - :license: GPLv2+ -""" -__docformat__ = "restructuredtext" - -#from genshi.template import MarkupTemplate -from genshi.template import TemplateLoader -from package_list import PackageList - -if __name__ == "__main__": - loader = TemplateLoader(["templates"]) - tmpl = loader.load('status.html') - packages = PackageList() - stream = tmpl.generate(packages=packages) - print stream.render() - -- cgit