summaryrefslogtreecommitdiff
path: root/lib/VNDB
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-01-10 12:21:38 +0100
committerYorhel <git@yorhel.nl>2021-01-10 12:21:38 +0100
commita9812a77315b9d9a77f6be663bb46b0425e3b7bb (patch)
tree02a1a7e399559636ba86b396cf05a4578c8ebc7c /lib/VNDB
parent4eede471c44dfead6c92c34b288b0df0deebeaed (diff)
v2rw: Convert /r/engines (+ make it link to new AdvSearch system)
Diffstat (limited to 'lib/VNDB')
-rw-r--r--lib/VNDB/Handler/Releases.pm30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/VNDB/Handler/Releases.pm b/lib/VNDB/Handler/Releases.pm
index 20ceb493..1fdbb0d6 100644
--- a/lib/VNDB/Handler/Releases.pm
+++ b/lib/VNDB/Handler/Releases.pm
@@ -10,7 +10,6 @@ use VNDB::Types;
TUWF::register(
qr{old/r} => \&browse,
- qr{r/engines} => \&engines,
qr{xml/engines.xml} => \&enginexml,
);
@@ -135,35 +134,6 @@ sub _fil_compat {
}
-sub engines {
- my $self = shift;
- my $lst = $self->dbReleaseEngines();
- $self->htmlHeader(title => 'Engine list', noindex => 1);
-
- div class => 'mainbox';
- h1 'Engine list';
- p;
- lit q{
- This is a list of all engines currently associated with releases. This
- list can be used as reference when filling out the engine field for a
- release and to find inconsistencies in the engine names. See the <a
- href="/d3#3">releases guidelines</a> for more information.
- };
- end;
- ul;
- for my $e (@$lst) {
- li;
- # TODO: link to new advsearch listing
- a href => '/old/r?fil='.fil_serialize({engine => $e->{engine}}), $e->{engine};
- b class => 'grayedout', " $e->{cnt}";
- end;
- }
- end;
-
- end;
-}
-
-
sub enginexml {
my $self = shift;