[vhffs-dev] [1804] No more HTML::Template in mercurial/list. |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 1804
Author: beuss
Date: 2011-05-24 08:13:09 +0200 (Tue, 24 May 2011)
Log Message:
-----------
No more HTML::Template in mercurial/list.
Modified Paths:
--------------
trunk/vhffs-api/src/Vhffs/Panel/Mercurial.pm
trunk/vhffs-panel/admin/mercurial/list.pl
trunk/vhffs-panel/templates/Makefile.am
Removed Paths:
-------------
trunk/vhffs-panel/templates/admin/mercurial/part.tmpl
Modified: trunk/vhffs-api/src/Vhffs/Panel/Mercurial.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Panel/Mercurial.pm 2011-05-24 05:54:04 UTC (rev 1803)
+++ trunk/vhffs-api/src/Vhffs/Panel/Mercurial.pm 2011-05-24 06:13:09 UTC (rev 1804)
@@ -94,28 +94,22 @@
sub search {
my ($main, $name) = @_;
- my $sql;
my @params;
- my $mercurials = [];
+ my $sql = 'SELECT m.reponame as label, g.groupname as owner_group, o.state, u.username as owner_user '.
+ 'FROM vhffs_mercurial m '.
+ 'INNER JOIN vhffs_object o ON (o.object_id = m.object_id) '.
+ 'INNER JOIN vhffs_groups g ON (g.gid = o.owner_gid) '.
+ 'INNER JOIN vhffs_users u ON (u.uid = o.owner_uid) ';
if( defined $name ) {
- $sql = 'SELECT s.reponame AS mercurialroot, g.groupname, o.state FROM vhffs_mercurial s INNER JOIN vhffs_object o ON o.object_id=s.object_id INNER JOIN vhffs_groups g ON g.gid = o.owner_gid WHERE s.reponame LIKE ?';
+ $sql .= 'WHERE m.reponame LIKE ? ';
push(@params, '%'.lc($name).'%');
- } else {
- $sql = 'SELECT s.reponame AS mercurialroot, g.groupname, o.state FROM vhffs_mercurial s INNER JOIN vhffs_object o ON o.object_id=s.object_id INNER JOIN vhffs_groups g ON g.gid = o.owner_gid';
}
- my $dbh = $main->get_db_object();
- my $sth = $dbh->prepare($sql) or return undef;
+ $sql .= 'ORDER BY m.reponame';
- return undef unless($sth->execute(@params));
-
- while(my $s = $sth->fetchrow_hashref('NAME_lc')) {
- $s->{state} = Vhffs::Functions::status_string_from_status_id($s->{state});
- push(@$mercurials, $s);
- }
-
- return $mercurials;
+ my $dbh = $main->get_db_object();
+ return $dbh->selectall_arrayref($sql, { Slice => {} }, @params);
}
Modified: trunk/vhffs-panel/admin/mercurial/list.pl
===================================================================
--- trunk/vhffs-panel/admin/mercurial/list.pl 2011-05-24 05:54:04 UTC (rev 1803)
+++ trunk/vhffs-panel/admin/mercurial/list.pl 2011-05-24 06:13:09 UTC (rev 1804)
@@ -31,60 +31,27 @@
use strict;
use utf8;
-use HTML::Template;
use Locale::gettext;
use lib '%VHFFS_LIB_DIR%';
-use Vhffs::Panel::Main;
+use Vhffs::Panel::Admin;
use Vhffs::Panel::Mercurial;
-my $panel = new Vhffs::Panel::Main();
-exit 0 unless $panel;
-my $session = $panel->get_session;
-exit 0 unless $session;
+my $panel = new Vhffs::Panel::Admin();
my $vhffs = $panel->{'vhffs'};
-my $user = $panel->{'user'};
my $cgi = $panel->{'cgi'};
-my $templatedir = $panel->{'templatedir'};
-my $template;
+my $name = $cgi->param('NAME');
+my $vars = {
+ type => 'mercurial'
+};
-if( ($user->is_moderator != 1 ) && ( $user->is_admin != 1 ) )
-{
- $template = new HTML::Template( filename => $templatedir.'/panel/misc/simplemsg.tmpl' );
- $template->param( MESSAGE => gettext('You are not allowed to see it') );
+if( defined( $name ) ) {
+ $vars->{list_title} = sprintf( gettext('Search result for mercurial repository %s'), $name );
+} else {
+ $vars->{list_title} = gettext('All mercurial repositories list');
}
-else
-{
- $template = new HTML::Template( filename => $templatedir.'/panel/admin/misc/list.tmpl' );
- my $name = $cgi->param('NAME');
- if( defined( $name ) )
- {
- $template->param( TITLE => gettext('Search result for mercurial repository').': '.$name );
- }
- else
- {
- $template->param( TITLE => gettext('All mercurial repositories lists') );
- }
-
- $template->param(TEXT_TITLE1 => gettext('Mercurial root'));
- $template->param(TEXT_TITLE2 => gettext('Group'));
- $template->param(TEXT_TITLE3 => gettext('State'));
-
- my $repos = Vhffs::Panel::Mercurial::search( $vhffs, $name );
- if( defined $repos )
- {
- my $subtemplate = new HTML::Template( filename => $templatedir.'/panel/admin/mercurial/part.tmpl', global_vars => 1 );
- if( $user->is_admin == 1 ) {
- $subtemplate->param( ACTION => gettext('Modify') );
- } else {
- $subtemplate->param( ACTION => gettext('Show') );
- }
- $subtemplate->param( MERCURIALREPOS => $repos);
- $template->param( LIST => $subtemplate->output );
- }
-}
-
-$panel->build( $template );
-$panel->display;
+$vars->{label_title} = gettext('Mercurial root');
+$vars->{list} = Vhffs::Panel::Mercurial::search( $vhffs, $name );
+$panel->render('admin/misc/list.tt', $vars);
Modified: trunk/vhffs-panel/templates/Makefile.am
===================================================================
--- trunk/vhffs-panel/templates/Makefile.am 2011-05-24 05:54:04 UTC (rev 1803)
+++ trunk/vhffs-panel/templates/Makefile.am 2011-05-24 06:13:09 UTC (rev 1804)
@@ -44,7 +44,6 @@
admin/tag/request/list.tmpl \
admin/git/part.tmpl \
admin/git/search.tmpl \
- admin/mercurial/part.tmpl \
admin/mercurial/search.tmpl \
admin/user/part.tmpl \
admin/user/search.tmpl \
Deleted: trunk/vhffs-panel/templates/admin/mercurial/part.tmpl
===================================================================
--- trunk/vhffs-panel/templates/admin/mercurial/part.tmpl 2011-05-24 05:54:04 UTC (rev 1803)
+++ trunk/vhffs-panel/templates/admin/mercurial/part.tmpl 2011-05-24 06:13:09 UTC (rev 1804)
@@ -1,16 +0,0 @@
-<TMPL_LOOP NAME="MERCURIALREPOS">
-<tr>
- <td>
- <TMPL_VAR ESCAPE=1 NAME="MERCURIALROOT">
- </td>
- <td>
- <TMPL_VAR ESCAPE=1 NAME="GROUPNAME">
- </td>
- <td>
- <TMPL_VAR ESCAPE=1 NAME="STATE">
- </td>
- <td>
- <a href="/mercurial/prefs.pl?admin_menu=1&name=<TMPL_VAR ESCAPE=1 NAME="MERCURIALROOT">"><TMPL_VAR ESCAPE=1 NAME="ACTION"></a>
- </td>
-</tr>
-</TMPL_LOOP>