[vhffs-dev] [1768] No more HTML::Template in git/create

[ Thread Index | Date Index | More vhffs.org/vhffs-dev Archives ]


Revision: 1768
Author:   beuss
Date:     2011-05-17 22:50:36 +0200 (Tue, 17 May 2011)
Log Message:
-----------
No more HTML::Template in git/create

Modified Paths:
--------------
    trunk/vhffs-panel/git/create.pl
    trunk/vhffs-panel/templates/Makefile.am

Added Paths:
-----------
    trunk/vhffs-panel/templates/git/create.tt

Removed Paths:
-------------
    trunk/vhffs-panel/templates/git/create.tmpl

Modified: trunk/vhffs-panel/git/create.pl
===================================================================
--- trunk/vhffs-panel/git/create.pl	2011-05-17 20:27:49 UTC (rev 1767)
+++ trunk/vhffs-panel/git/create.pl	2011-05-17 20:50:36 UTC (rev 1768)
@@ -41,12 +41,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::Services::Git;
+use Vhffs::Panel::Git;
 
 my $panel = new Vhffs::Panel::Main();
 exit 0 unless $panel;
@@ -60,16 +58,12 @@
 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('git_submit');
 	my $reponame = '';
 	my $description = '';
+    my $vars = {};
 
 	if( $submitted ) {
 		$reponame = $cgi->param('reponame');
@@ -87,23 +81,10 @@
 		} else {
 			$panel->add_error( gettext('An error occured while creating the git repository') );
 		}
+        $vars->{reponame} = $reponame;
+        $vars->{description} = $description;
 	}
 
-	if( !$submitted || $panel->has_errors ) {
-		my $template = new HTML::Template( filename => $templatedir.'/panel/git/create.tmpl' );
-	
-		$panel->set_title( gettext('Create a git Repository') );
-		$template->param( REPOSITORY_NAME => gettext('Repository Name') );
-		$template->param( REPOSITORY_VALUE => $reponame );
-		$template->param( GROUP_NAME => gettext('Group owning this git repository') );
-
-		$template->param( GROUP => $group->get_groupname );
-		$template->param( GIT_SUFFIX => '.git' );
-		$template->param( SEND => gettext('Send') );
-		$template->param( DESCRIPTION => gettext('Description') );
-		$template->param( DESCRIPTION_VALUE => $description );
-
-		$panel->build( $template );
-		$panel->display;
-	}
+    $vars->{group} = $group;
+    $panel->render('git/create.tt', $vars);
 }

Modified: trunk/vhffs-panel/templates/Makefile.am
===================================================================
--- trunk/vhffs-panel/templates/Makefile.am	2011-05-17 20:27:49 UTC (rev 1767)
+++ trunk/vhffs-panel/templates/Makefile.am	2011-05-17 20:50:36 UTC (rev 1768)
@@ -81,7 +81,6 @@
 	misc/infos.tmpl \
 	misc/service_index.tmpl \
 	misc/simplemsg.tmpl \
-	git/create.tmpl \
 	git/prefs.tmpl \
 	bazaar/create.tmpl \
 	bazaar/prefs.tmpl \
@@ -96,6 +95,7 @@
 	anonymous/lost-password-ack.tt \
 	anonymous/subscribe.tt \
 	database/prefs.tt \
+	git/create.tt \
 	group/create.tt \
 	group/index.tt \
 	group/info.tt \

Deleted: trunk/vhffs-panel/templates/git/create.tmpl
===================================================================
--- trunk/vhffs-panel/templates/git/create.tmpl	2011-05-17 20:27:49 UTC (rev 1767)
+++ trunk/vhffs-panel/templates/git/create.tmpl	2011-05-17 20:50:36 UTC (rev 1768)
@@ -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">"/><TMPL_VAR ESCAPE=1 NAME="GIT_SUFFIX">
-	</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="git_submit"/>
-	</p>
-</form>

Added: trunk/vhffs-panel/templates/git/create.tt
===================================================================
--- trunk/vhffs-panel/templates/git/create.tt	                        (rev 0)
+++ trunk/vhffs-panel/templates/git/create.tt	2011-05-17 20:50:36 UTC (rev 1768)
@@ -0,0 +1,18 @@
+<form method="post" action="#" accept-charset="utf-8">
+	<p>
+		<label>[% 'Owner group for this Git 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="git_submit"/>
+	</p>
+</form>


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/