From: Michael Tremer Date: Sun, 28 Oct 2012 19:38:50 +0000 (+0100) Subject: Remove some unused files. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=700577e7a7c8b328174ca5a1707f5b4042918050;p=pbs.git Remove some unused files. --- diff --git a/data/templates/build-detail_old.html b/data/templates/build-detail_old.html deleted file mode 100644 index 7ab1fa6e..00000000 --- a/data/templates/build-detail_old.html +++ /dev/null @@ -1,151 +0,0 @@ -{% extends "base.html" %} - -{% block title %}{{ _("Build") }}: {{ build.name }}{% end block %} - -{% block body %} - {% if build.type == "binary" %} -

{{ _("Build") }}: {{ build.name }}

- {% elif build.type == "source" %} -

{{ _("Build") }}: {{ build.name }}

- {% end %} - - - - - - - - - - - - {% if build.type == "binary" %} - - - - - - - - - - - - - {% end %} - - - - {% if build.host %} - - {% else %} - - {% end %} - - - - - -
{{ _("ID") }}{{ build.uuid }}
{{ _("State") }}{{ build.state }}
{{ _("Package") }} - {{ build.pkg.friendly_name }} -
{{ _("Source build") }} - {{ build.source_build.name }} -
{{ _("Architecture") }}{{ build.arch }}
{{ _("Host") }} - {{ build.host.name }} - {{ _("No host assigned, yet.") }}
- {{ _("Priority") }} - - {% if build.priority >= 2 %} - {{ _("Very high") }} - {% elif build.priority == 1 %} - {{ _("High") }} - {% elif build.priority == 0 %} - {{ _("Medium") }} - {% elif build.priority == -1 %} - {{ _("Low") }} - {% elif build.priority <= -2 %} - {{ _("Very low") }} - {% end %} -
-
 
- - {% if build.type == "source" %} -

{{ _("Commit") }}: {{ escape(build.commit_subject) }}

- - {% if build.commit_body %} - - - - {% end %} - - - - - - - - - - - - -
- {{ escape(build.commit_body) }} -
{{ _("Author") }}{{ escape(build.commit_author) }}
{{ _("Committer") }}{{ escape(build.commit_committer) }}
{{ _("Date") }}{{ locale.format_date(build.commit_date or 0, full_format=True) }}
-
 
- {% end %} - -

{{ _("Time") }}

- - - - - - - - - - - - - - - - {% if build.duration %} - - - - - {% end %} -
{{ _("Job added") }}{{ build.time_added }}
{{ _("Job started") }}{{ build.time_started or _("Not started, yet.") }}
{{ _("Job finished") }}{{ build.time_finished or _("Not finished, yet.") }}
{{ _("Duration") }}{{ build.duration }}
-
 
- - {% if build.packagefiles %} -

{{ _("Package files") }}

- {{ modules.FilesTable(build.packagefiles) }} - {% end %} - - {% if build.logfiles %} -

{{ _("Logfiles") }}

- {{ modules.FilesTable(build.logfiles) }} - {% end %} - -

{{ _("Log") }}

- {{ modules.LogTable(build.log) }} -{% end block %} - -{% block sidebar %} -

{{ _("Actions") }}

- -{% end %} diff --git a/data/templates/modules/build-table_old.html b/data/templates/modules/build-table_old.html deleted file mode 100644 index d1e936c0..00000000 --- a/data/templates/modules/build-table_old.html +++ /dev/null @@ -1,20 +0,0 @@ - -
 
diff --git a/data/templates/package-detail_old.html b/data/templates/package-detail_old.html deleted file mode 100644 index e218bd96..00000000 --- a/data/templates/package-detail_old.html +++ /dev/null @@ -1,111 +0,0 @@ -{% extends "base.html" %} - -{% block title %}{{ _("Package") }}: {{ pkg.friendly_name }}{% end block %} - -{% block body %} -

{{ _("Package") }}: {{ pkg.name }}-{{ pkg.friendly_version }}

- -

{{ pkg.description }}

- - - - - - - - - - - - {% if pkg.maintainer %} - - - - - {% end %} - - - - - -
{{ _("URL") }} - {{ pkg.url }} -
{{ _("License") }}{{ pkg.license }}
{{ _("Maintainer") }}{{ escape(pkg.maintainer) }}
{{ _("Supported architectures") }}{{ locale.list(pkg.supported_arches) }}
-
 
- -

{{ _("Comments") }}

-

- {{ _("This package got a total credit count of %s credits.") % pkg.credits }} -

- - {% if current_user %} -

- {{ _("Add comment") }} - -

-
-

{{ _("Add comment") }}

-
- {{ xsrf_form_html() }} - - - - - - - - - -
- -
- {% if current_user.is_tester() or current_user.is_admin() %} - {{ _("Vote") }}: - {{ _("Not tested") }} - {{ _("Works for me") }} - {{ _("Doesn't work for me") }} - {% end %} - - -
-
-
- {% else %} -

{{ _("You must be logged in to comment.") }}

- {% end %} - {{ modules.CommentsTable(pkg.comments) }} - - {% if pkg.builds %} -

{{ _("Build jobs") }}

- {{ modules.BuildTable(pkg.builds) }} - {% end %} - - {% if pkg.packagefiles %} -

{{ _("Package files") }}

- {{ modules.FilesTable(pkg.packagefiles) }} - {% end %} - - {% if pkg.logfiles %} -

{{ _("Logfiles") }}

- {{ modules.FilesTable(pkg.logfiles) }} - {% end %} - -

{{ _("Log") }}

- {{ modules.LogTable(pkg.log) }} -{% end block %} - -{% block sidebar %} -

{{ _("Actions") }}

- -{% end block %}