diff options
author | Till Maas <opensource@till.name> | 2013-12-20 18:35:58 +0100 |
---|---|---|
committer | Till Maas <opensource@till.name> | 2013-12-20 18:37:22 +0100 |
commit | 029ddb037d714d5349595fe101f9cead637a0344 (patch) | |
tree | f30c179dac9e4bf1fa687611f88f1aaa40776573 /cnucnu | |
parent | dfaafb51a3b08060f258001fcca126346c8e993e (diff) | |
download | cnucnu-029ddb037d714d5349595fe101f9cead637a0344.tar.gz cnucnu-029ddb037d714d5349595fe101f9cead637a0344.tar.xz cnucnu-029ddb037d714d5349595fe101f9cead637a0344.zip |
Delete dead code
Diffstat (limited to 'cnucnu')
-rwxr-xr-x | cnucnu/html_reporter.py | 35 |
1 files changed, 0 insertions, 35 deletions
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 <http://www.gnu.org/licenses/>. -# }}} -""" :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() - |