[vhffs-dev] [1731] No more HTML::Template in svn/create. |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 1731
Author: beuss
Date: 2011-05-14 22:28:37 +0200 (Sat, 14 May 2011)
Log Message:
-----------
No more HTML::Template in svn/create.
It seems that most service creation pages are broken since the
s/use/require/ in Panel::Main...
Modified Paths:
--------------
trunk/vhffs-panel/svn/create.pl
trunk/vhffs-panel/templates/Makefile.am
Added Paths:
-----------
trunk/vhffs-panel/templates/svn/create.tt
Removed Paths:
-------------
trunk/vhffs-panel/templates/svn/create.tmpl
Modified: trunk/vhffs-panel/svn/create.pl
===================================================================
--- trunk/vhffs-panel/svn/create.pl 2011-05-14 11:13:51 UTC (rev 1730)
+++ trunk/vhffs-panel/svn/create.pl 2011-05-14 20:28:37 UTC (rev 1731)
@@ -32,7 +32,6 @@
use strict;
use utf8;
use POSIX qw(locale_h);
-use HTML::Template;
use locale;
use Locale::gettext;
use CGI;
@@ -40,12 +39,10 @@
use Encode;
use lib '%VHFFS_LIB_DIR%';
-use Vhffs::User;
use Vhffs::Group;
-use Vhffs::Main;
use Vhffs::Panel::Main;
-use Vhffs::Panel::Menu;
-use Vhffs::Panel::Group;
+use Vhffs::Panel::Svn;
+use Vhffs::Services::Svn;
my $panel = new Vhffs::Panel::Main();
exit 0 unless $panel;
@@ -59,14 +56,10 @@
my $group = Vhffs::Group::get_by_groupname( $vhffs , $cgi->param('group') );
unless( defined $group && $user->can_modify( $group ) ) {
- my $template = new HTML::Template( filename => $templatedir.'/panel/misc/simplemsg.tmpl' );
- $template->param( MESSAGE => gettext( 'You\'re not allowed to do this (ACL rights)' ) );
-
- $panel->build( $template );
- $panel->display;
-}
-else {
+ $panel->render( 'misc/message.tt', { message => gettext( 'You\'re not allowed to do this (ACL rights)' ) });
+} else {
my $submitted = $cgi->param('svn_submit');
+ my $vars = {};
my $reponame = '';
my $description = '';
@@ -87,21 +80,11 @@
} else {
$panel->add_error( gettext('An error occured while creating the svn repository') );
}
+ $vars->{reponame} = $reponame;
+ $vars->{description} = $description;
}
- if( !$submitted || $panel->has_errors ) {
- my $template = new HTML::Template( filename => $templatedir.'/panel/svn/create.tmpl' );
-
- $panel->set_title( gettext('Create a Subversion Repository') );
- $template->param( REPOSITORY_NAME => gettext('Repository Name') );
- $template->param( REPOSITORY_VALUE => $reponame);
- $template->param( GROUP_NAME => gettext('Group owning this Subversion repository') );
-
- $template->param( GROUP => $group->get_groupname );
- $template->param( SEND => gettext('Send') );
- $template->param( DESCRIPTION => gettext('Description') );
- $template->param( DESCRIPTION_VALUE => $description );
- $panel->build( $template );
- $panel->display;
- }
+ # Since redirect exits, we've error or have not been submitted
+ $vars->{group} = $group;
+ $panel->render('svn/create.tt', $vars);
}
Modified: trunk/vhffs-panel/templates/Makefile.am
===================================================================
--- trunk/vhffs-panel/templates/Makefile.am 2011-05-14 11:13:51 UTC (rev 1730)
+++ trunk/vhffs-panel/templates/Makefile.am 2011-05-14 20:28:37 UTC (rev 1731)
@@ -96,7 +96,6 @@
repository/admin.tmpl \
repository/create.tmpl \
repository/prefs.tmpl \
- svn/create.tmpl \
svn/prefs.tmpl \
svn/user_part.tmpl \
git/create.tmpl \
@@ -138,6 +137,7 @@
misc/message.tt \
misc/service-index.tt \
misc/welcome.tt \
+ svn/create.tt \
user/prefs.tt \
web/create.tt \
web/prefs.tt
Deleted: trunk/vhffs-panel/templates/svn/create.tmpl
===================================================================
--- trunk/vhffs-panel/templates/svn/create.tmpl 2011-05-14 11:13:51 UTC (rev 1730)
+++ trunk/vhffs-panel/templates/svn/create.tmpl 2011-05-14 20:28:37 UTC (rev 1731)
@@ -1,24 +0,0 @@
-<form method="post" action="#" accept-charset="utf-8">
- <p>
- <label>
- <TMPL_VAR ESCAPE=1 NAME="GROUP_NAME">:
- </label>
- <TMPL_VAR ESCAPE=1 NAME="GROUP">
- </p>
- <p>
- <label for="reponame">
- <TMPL_VAR ESCAPE=1 NAME="REPOSITORY_NAME">:
- </label>
- <TMPL_VAR ESCAPE=1 NAME="GROUP">/<input type="text" name="reponame" id="reponame" value="<TMPL_VAR ESCAPE=1 NAME="REPOSITORY_VALUE">"/>
- </p>
- <p>
- <label for="PROJECT_USAGE">
- <TMPL_VAR ESCAPE=1 NAME="description">:
- </label>
- <textarea name="description" id="description" cols="45" rows="7"><TMPL_VAR ESCAPE=1 NAME="DESCRIPTION_VALUE"></textarea>
- </p>
- <p class="button" id="buttonSend">
- <input type="hidden" name="group" value="<TMPL_VAR ESCAPE=1 NAME="GROUP">" />
- <input type="submit" value="<TMPL_VAR ESCAPE=1 NAME="SEND">" name="svn_submit"/>
- </p>
-</form>
Added: trunk/vhffs-panel/templates/svn/create.tt
===================================================================
--- trunk/vhffs-panel/templates/svn/create.tt (rev 0)
+++ trunk/vhffs-panel/templates/svn/create.tt 2011-05-14 20:28:37 UTC (rev 1731)
@@ -0,0 +1,18 @@
+<form method="post" action="#" accept-charset="utf-8">
+ <p>
+ <label>[% 'Owner group for this SVN repository:' | i18n | html %]</label>
+ [% group.get_groupname | html %]
+ </p>
+ <p>
+ <label for="reponame">[% 'Repository name: '%]</label>
+ [% group.get_groupname | html %]/<input type="text" name="reponame" id="reponame" value="[% reponame | html %]"/>
+ </p>
+ <p>
+ <label for="PROJECT_USAGE">[% 'Description:' | i18n | html %]</label>
+ <textarea name="description" id="description" cols="45" rows="7">[% description | html %]</textarea>
+ </p>
+ <p class="button" id="buttonSend">
+ <input type="hidden" name="group" value="[% group.get_groupname | html %]" />
+ <input type="submit" value="[% 'Send' | i18n | html %]" name="svn_submit"/>
+ </p>
+</form>