[Koha-patches] [PATCH] Cleanup branches.pl and .tmpl

Joe Atzberger joe.atzberger at liblime.com
Sat Jun 6 02:02:56 CEST 2009


Remove entire subs that were unused.  Remove "toggle" code.
Comment out unconditional warn.
Remove inaccurate comments regarding long-fixed bugs and obsolete processes.
Remove unused variables.
Added "dialog message" div around MESSAGE8.

NOTE: all printer functions currently useless, unfixed by this patch.
---
 admin/branches.pl                                  |  208 +++++---------------
 .../prog/en/modules/admin/branches.tmpl            |   77 ++++---
 2 files changed, 97 insertions(+), 188 deletions(-)

diff --git a/admin/branches.pl b/admin/branches.pl
index f2bc827..ed7625c 100755
--- a/admin/branches.pl
+++ b/admin/branches.pl
@@ -32,12 +32,6 @@ FIXME: looped html (e.g., list of checkboxes) need to be properly
         of these should be converted into exported booleans / counters etc
         so that the error messages can be localized; need to notify translators
 
- NOTE:  heading() should now be called like this:
-        1. Use heading() as before
-        2. $template->param('heading-LISPISHIZED-HEADING-p' => 1);
-        3. $template->param('use-heading-flags-p' => 1);
-        This ensures that both converted and unconverted templates work
-
  Finlay working on this file from 26-03-2002
  Reorganising this branches admin page.....
  
@@ -54,7 +48,6 @@ use C4::Branch;
 
 # Fixed variables
 my $script_name = "/cgi-bin/koha/admin/branches.pl";
-my $pagesize    = 20;
 
 ################################################################################
 # Main loop....
@@ -62,11 +55,7 @@ my $input        = new CGI;
 my $branchcode   = $input->param('branchcode');
 my $branchname   = $input->param('branchname');
 my $categorycode = $input->param('categorycode');
-my $op           = $input->param('op');
-
-if(!defined($op)){
-  $op = '';
-}
+my $op           = $input->param('op') || '';
 
 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
     {
@@ -78,19 +67,12 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
         debug           => 1,
     }
 );
-if ($op) {
-    $template->param(
-        script_name => $script_name,
-        $op         => 1
-    );    # we show only the TMPL_VAR names $op
-}
-else {
-    $template->param(
-        script_name => $script_name,
-        else        => 1
-    );    # we show only the TMPL_VAR names $op
-}
-$template->param( action => $script_name );
+$template->param(
+     script_name => $script_name,
+     action      => $script_name,
+);
+$template->param( ($op || 'else') => 1 );
+
 if ( $op eq 'add' ) {
 
     # If the user has pressed the "add new branch" button.
@@ -114,12 +96,12 @@ elsif ( $op eq 'add_validate' ) {
         default("MESSAGE1",$template);
     }
     else {
-        my $error = ModBranch($params);
+        my $error = ModBranch($params); # FIXME: causes warnings to log on duplicate branchcode
         # if error saving, stay on edit and rise error
         if ($error) {
             # copy input parameters back to form
             # FIXME - doing this doesn't preserve any branch group selections, but good enough for now
-            $template->param(%$params);
+            $template->param(%$params);     # FIXME: Allows user to set ANY TMPL_VAR to ANY value!!
             $template->param(branch_name => $params->{branchname});
             $template->param( 'heading-branches-add-branch-p' => 1, 'add' => 1, "ERROR$error" => 1 );
         } else {
@@ -136,21 +118,13 @@ elsif ( $op eq 'delete' ) {
     my $sth = $dbh->prepare("select count(*) from items where holdingbranch=? or homebranch=?");
     $sth->execute( $branchcode, $branchcode );
     my ($total) = $sth->fetchrow_array;
-    $sth->finish;
-    
-    my $message;
-
     if ($total) {
-        $message = "MESSAGE7";
-    }
-   
-    if ($message) {
         $template->param( else => 1 );
-        default($message,$template);
+        default("MESSAGE7", $template);
     }
     else {
-        $template->param( branchname     => $branchname );
         $template->param( delete_confirm => 1 );
+        $template->param( branchname     => $branchname );
         $template->param( branchcode     => $branchcode );
     }
 }
@@ -169,15 +143,14 @@ elsif ( $op eq 'editcategory' ) {
 }
 elsif ( $op eq 'addcategory_validate' ) {
 
+    $template->param( else => 1 );
     # confirm settings change...
     my $params = $input->Vars;
     unless ( $params->{'categorycode'} && $params->{'categoryname'} ) {
-        $template->param( else => 1 );
         default("MESSAGE4",$template);
     }
     else {
         ModBranchCategoryInfo($params);
-        $template->param( else => 1 );
         default("MESSAGE5",$template);
     }
 }
@@ -203,7 +176,6 @@ elsif ( $op eq 'categorydelete_confirmed' ) {
 
 }
 else {
-
     # if no operation has been set...
     default("",$template);
 }
@@ -213,10 +185,12 @@ else {
 # html output functions....
 
 sub default {
-    my ($message,$innertemplate) = @_;
-    $innertemplate->param( 'heading-branches-p' => 1 );
-    $innertemplate->param( "$message"           => 1 );
-    $innertemplate->param( action               => $script_name );
+    my $message       = shift || '';
+    my $innertemplate = shift or return;
+    $innertemplate->param($message => 1) if $message;
+    $innertemplate->param(
+        'heading-branches-p' => 1,
+    );
     branchinfotable("",$innertemplate);
 }
 
@@ -225,35 +199,16 @@ sub editbranchform {
     # initiate the scrolling-list to select the printers
     my $printers = GetPrinters();
     my @printerloop;
-    my $printercount = 0;
-    my $oldprinter;
-    my $CGIprinter;
-    
     my $data;
+    my $oldprinter = "";
 
     if ($branchcode) {
         $data = GetBranchInfo($branchcode);
         $data = $data->[0];
 
         # get the old printer of the branch
-        $oldprinter = $data->{'branchprinter'};
-
-        # 	printer loop
-        foreach my $thisprinter ( keys %$printers ) {
-
-            my $selected = 1
-              if $oldprinter and ( $oldprinter eq $printers->{$thisprinter} );
-
-            my %row = (
-                value         => $thisprinter,
-                selected      => $selected,
-                branchprinter => $printers->{$thisprinter}->{'printqueue'},
-            );
-            push @printerloop, \%row;
-        }
-
+        $oldprinter = $data->{'branchprinter'} || '';
         $innertemplate->param( 
-             printerloop    => \@printerloop,
              branchcode     => $data->{'branchcode'},
              branch_name    => $data->{'branchname'},
              branchaddress1 => $data->{'branchaddress1'},
@@ -265,28 +220,23 @@ sub editbranchform {
              branchip       => $data->{'branchip'} 
         );
     }
-    else {    #case of an add branch select printer
-        foreach my $thisprinter ( keys %$printers ) {
-            my %row = (
-                value         => $thisprinter,
-                branchprinter => $printers->{$thisprinter}->{'printqueue'},
-            );
-            push @printerloop, \%row;
-        }
-        $innertemplate->param( printerloop => \@printerloop );
+
+    foreach my $thisprinter ( keys %$printers ) {
+        push @printerloop, {
+            value         => $thisprinter,
+            selected      => ( $oldprinter eq $printers->{$thisprinter} ),
+            branchprinter => $printers->{$thisprinter}->{'printqueue'},
+        };
     }
 
-    # make the checkboxs.....
+    $innertemplate->param( printerloop => \@printerloop );
+    # make the checkboxes.....
     #
     # We export a "categoryloop" array to the template, each element of which
     # contains separate 'categoryname', 'categorycode', 'codedescription', and
-    # 'checked' fields. The $checked field is either '' or 'checked'
-    # (see bug 130)
-    #
-    my $catinfo = GetBranchCategory();
-    my $catcheckbox;
+    # 'checked' fields. The $checked field is either '' or 'checked="checked"'
 
-    #    print DEBUG "catinfo=".cvs($catinfo)."\n";
+    my $catinfo = GetBranchCategory();
     my @categoryloop = ();
     foreach my $cat (@$catinfo) {
         my $checked = "";
@@ -294,51 +244,42 @@ sub editbranchform {
         if ( grep { /^$tmp$/ } @{ $data->{'categories'} } ) {
             $checked = "checked=\"checked\"";
         }
-        push @categoryloop,
-          {
+        push @categoryloop, {
             categoryname    => $cat->{'categoryname'},
             categorycode    => $cat->{'categorycode'},
             categorytype    => $cat->{'categorytype'},
             codedescription => $cat->{'codedescription'},
             checked         => $checked,
-          };
+        };
     }
     $innertemplate->param( categoryloop => \@categoryloop );
 
-    # {{{ Leave this here until bug 130 is completely resolved in the templates
     for my $obsolete ( 'categoryname', 'categorycode', 'codedescription' ) {
         $innertemplate->param(
             $obsolete => 'Your template is out of date (bug 130)' );
     }
-
-    # }}}
 }
 
 sub editcatform {
 
     # prepares the edit form...
     my ($categorycode,$innertemplate) = @_;
-    warn "cat : $categorycode";
-    my $data;
+    # warn "cat : $categorycode";
 	my @cats;
-    $innertemplate->param( categorytype => \@cats);
+    my $data;
 	if ($categorycode) {
-        $data = GetBranchCategory($categorycode);
+        my $data = GetBranchCategory($categorycode);
         $data = $data->[0];
-        $innertemplate->param(	categorycode    => $data->{'categorycode'} ,
-        				categoryname    => $data->{'categoryname'},
-        				codedescription => $data->{'codedescription'} ,
-						);
+        $innertemplate->param(
+            categorycode    => $data->{'categorycode'},
+            categoryname    => $data->{'categoryname'},
+            codedescription => $data->{'codedescription'},
+		);
     }
 	for my $ctype (GetCategoryTypes()) {
-		push @cats , { type => $ctype , selected => ($data->{'categorytype'} eq $ctype) };
+		push @cats , { type => $ctype , selected => ($data->{'categorytype'} and $data->{'categorytype'} eq $ctype) };
 	}
-}
-
-sub deleteconfirm {
-
-    # message to print if the
-    my ($branchcode) = @_;
+    $innertemplate->param(categorytype => \@cats);
 }
 
 sub branchinfotable {
@@ -346,25 +287,14 @@ sub branchinfotable {
 # makes the html for a table of branch info from reference to an array of hashs.
 
     my ($branchcode,$innertemplate) = @_;
-    my $branchinfo;
-    if ($branchcode) {
-        $branchinfo = GetBranchInfo($branchcode);
-    }
-    else {
-        $branchinfo = GetBranchInfo();
-    }
-    my $toggle;
-    my $i = 0;
+    my $branchinfo = $branchcode ? GetBranchInfo($branchcode) : GetBranchInfo();
     my @loop_data = ();
     foreach my $branch (@$branchinfo) {
-        ( $i % 2 ) ? ( $toggle = 1 ) : ( $toggle = 0 );
-
         #
         # We export the following fields to the template. These are not
         # pre-composed as a single "address" field because the template
         # might (and should) escape what is exported here. (See bug 180)
         #
-        # - color
         # - branch_name     (Note: not "branchname")
         # - branch_code     (Note: not "branchcode")
         # - address         (containing a static error message)
@@ -379,7 +309,6 @@ sub branchinfotable {
         # - category_list   (loop containing "categoryname")
         # - no-categories-p (1 if no categories set, 0 otherwise)
         # - value
-        # - action
         #
         my %row = ();
 
@@ -393,17 +322,10 @@ sub branchinfotable {
           )
         {
             $row{$field} = $branch->{$field};
-            if ( $branch->{$field} ) {
-                $address_empty_p = 0;
-            }
+            $address_empty_p = 0 if ( $branch->{$field} );
         }
         $row{'address-empty-p'} = $address_empty_p;
 
-        # {{{ Leave this here until bug 180 is completely resolved in templates
-        $row{'address'} = 'Your template is out of date (see bug 180)';
-
-        # }}}
-
         # Handle categories
         my $no_categories_p = 1;
         my @categories;
@@ -413,37 +335,27 @@ sub branchinfotable {
             $no_categories_p = 0;
         }
 
-        # {{{ Leave this here until bug 180 is completely resolved in templates
-        $row{'categories'} = 'Your template is out of date (see bug 180)';
-
-        # }}}
         $row{'category_list'}   = \@categories;
         $row{'no-categories-p'} = $no_categories_p;
-
-        # Handle all other fields
         $row{'branch_name'} = $branch->{'branchname'};
         $row{'branch_code'} = $branch->{'branchcode'};
-        $row{'toggle'}      = $toggle;
         $row{'value'}       = $branch->{'branchcode'};
-        $row{'action'}      = '/cgi-bin/koha/admin/branches.pl';
 
-        push @loop_data, {%row};
-        $i++;
+        push @loop_data, \%row;
     }
     my @branchcategories = ();
 	for my $ctype ( GetCategoryTypes() ) {
     	my $catinfo = GetBranchCategories(undef,$ctype);
     	my @categories;
 		foreach my $cat (@$catinfo) {
-	       	push @categories,
-        	  {
-        	    categoryname    => $cat->{'categoryname'},
-        	    categorycode    => $cat->{'categorycode'},
-        	    codedescription => $cat->{'codedescription'},
-        	    categorytype => $cat->{'categorytype'},
-        	  };
+            push @categories, {
+                categoryname    => $cat->{'categoryname'},
+                categorycode    => $cat->{'categorycode'},
+                codedescription => $cat->{'codedescription'},
+                categorytype    => $cat->{'categorytype'},
+            };
     	}
-	push @branchcategories, { categorytype => $ctype , $ctype => 1 , catloop => \@categories};
+        push @branchcategories, { categorytype => $ctype , $ctype => 1 , catloop => \@categories};
 	}
     $innertemplate->param(
         branches         => \@loop_data,
@@ -452,20 +364,6 @@ sub branchinfotable {
 
 }
 
-# FIXME logic seems wrong   ##  sub is not used.
-sub branchcategoriestable {
-    my $innertemplate = shift;
-    #Needs to be implemented...
-
-    my $categoryinfo = GetBranchCategory();
-    my $color;
-    foreach my $cat (@$categoryinfo) {
-        $innertemplate->param( categoryname    => $cat->{'categoryname'} );
-        $innertemplate->param( categorycode    => $cat->{'categorycode'} );
-        $innertemplate->param( codedescription => $cat->{'codedescription'} );
-    }
-}
-
 output_html_with_http_headers $input, $cookie, $template->output;
 
 # Local Variables:
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tmpl
index 11e4dfe..2b71304 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tmpl
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tmpl
@@ -1,6 +1,15 @@
 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
-<title>Koha &rsaquo; Administration &rsaquo; <!-- TMPL_IF NAME="editcategory" --><!-- TMPL_IF NAME="categorycode" -->Libraries and Groups &rsaquo; Edit Group <!-- TMPL_VAR NAME="categorycode" --><!-- TMPL_ELSE -->Libraries and Groups &rsaquo; New Group<!-- /TMPL_IF --><!-- /TMPL_IF --><!-- TMPL_IF NAME="delete_category" -->Libraries and Groups &rsaquo; Confirm Deletion of Group <!-- TMPL_VAR name="categorycode" --><!-- /TMPL_IF --><!-- TMPL_IF name="add" -->
-    <!-- TMPL_IF name="heading-branches-add-branch-p" -->New library<!-- TMPL_ELSE -->Libraries and Groups &rsaquo; Modify library <!-- TMPL_VAR name="branchcode" --><!-- /TMPL_IF --><!-- /TMPL_IF --><!-- TMPL_IF name="delete_confirm" -->Libraries and Groups &rsaquo; Confirm deletion of library '<!-- TMPL_VAR NAME="branchcode" -->'<!-- /TMPL_IF --><!-- TMPL_IF name="else" -->Libraries and Groups<!-- /TMPL_IF --></title>
+<title>Koha &rsaquo; Administration &rsaquo; Libraries and Groups
+<!-- TMPL_IF NAME="editcategory" -->
+    &rsaquo;<!-- TMPL_IF NAME="categorycode" -->Edit Group <!-- TMPL_VAR NAME="categorycode" --><!-- TMPL_ELSE -->New Group<!-- /TMPL_IF -->
+<!-- TMPL_ELSIF NAME="delete_category" -->
+    &rsaquo; Confirm Deletion of Group <!-- TMPL_VAR name="categorycode" -->
+<!-- TMPL_ELSIF name="add" -->
+    &rsaquo;<!-- TMPL_IF name="heading-branches-add-branch-p" -->New library<!-- TMPL_ELSE -->Modify library <!-- TMPL_VAR name="branchcode" --><!-- /TMPL_IF -->
+<!-- TMPL_ELSIF name="delete_confirm" -->
+    &rsaquo; Confirm deletion of library '<!-- TMPL_VAR NAME="branchcode" -->'
+<!-- /TMPL_IF -->
+</title>
 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
 </head>
@@ -8,18 +17,19 @@
 <!-- TMPL_INCLUDE NAME="header.inc" -->
 <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
 
-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;  
-
-<!-- TMPL_IF NAME="editcategory" --><a href="/cgi-bin/koha/admin/branches.pl">Libraries and Groups</a> &rsaquo; <!-- TMPL_IF NAME="categorycode" -->Edit Group <!-- TMPL_VAR NAME="categorycode" --><!-- TMPL_ELSE -->New Group<!-- /TMPL_IF --><!-- /TMPL_IF -->
-<!-- TMPL_IF NAME="delete_category" --><a href="/cgi-bin/koha/admin/branches.pl">Libraries and Groups</a> &rsaquo; Confirm Deletion of Group <!-- TMPL_VAR name="categorycode" --><!-- /TMPL_IF -->
-
-<!-- TMPL_IF name="add" --><a href="/cgi-bin/koha/admin/branches.pl">Libraries and Groups</a> &rsaquo; 
-<!-- TMPL_IF name="heading-branches-add-branch-p" -->New library<!-- TMPL_ELSE -->Modify library <!-- TMPL_VAR name="branchcode" --><!-- /TMPL_IF --><!-- /TMPL_IF -->
-
-<!-- TMPL_IF name="delete_confirm" --><a href="/cgi-bin/koha/admin/branches.pl">Libraries and Groups</a> &rsaquo; Confirm deletion of library '<!-- TMPL_VAR NAME="branchcode" -->'<!-- /TMPL_IF -->
-
-<!-- TMPL_IF name="else" -->Libraries and Groups<!-- /TMPL_IF -->
-
+<div id="breadcrumbs">
+    <a href="/cgi-bin/koha/mainpage.pl">Home</a>
+&rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
+&rsaquo; <a href="/cgi-bin/koha/admin/branches.pl">Libraries and Groups</a>
+<!-- TMPL_IF NAME="editcategory" -->
+&rsaquo; <!-- TMPL_IF NAME="categorycode" -->Edit Group <!-- TMPL_VAR NAME="categorycode" --><!-- TMPL_ELSE -->New Group<!-- /TMPL_IF -->
+<!-- TMPL_ELSIF NAME="delete_category" -->
+&rsaquo; Confirm Deletion of Group <!-- TMPL_VAR name="categorycode" -->
+<!-- TMPL_ELSIF name="add" -->
+&rsaquo; <!-- TMPL_IF name="heading-branches-add-branch-p" -->New library<!-- TMPL_ELSE -->Modify library <!-- TMPL_VAR name="branchcode" --><!-- /TMPL_IF -->
+<!-- TMPL_ELSIF name="delete_confirm" -->
+&rsaquo; Confirm deletion of library '<!-- TMPL_VAR NAME="branchcode" -->'
+<!-- /TMPL_IF -->
 </div>
 
 <div id="doc3" class="yui-t2">
@@ -59,7 +69,7 @@
 <!-- /TMPL_IF -->
 
 <!-- TMPL_IF name="add" -->
-    <!-- TMPL_IF name="ERROR1" --><div class="dialog message">Code already exist &mdash; Please enter a unique code</div><!-- /TMPL_IF -->
+    <!-- TMPL_IF name="ERROR1" --><div class="dialog message">Code already exists &mdash; Please enter a unique code</div><!-- /TMPL_IF -->
   <h3><!-- TMPL_IF name="heading-branches-add-branch-p" -->New library<!-- TMPL_ELSE -->Modify library<!-- /TMPL_IF --></h3>
     <form action="<!-- TMPL_VAR name="action" -->" name="Aform" method="post">
 	<fieldset class="rows">
@@ -128,7 +138,7 @@
         <input type="hidden" name="branchcode" value="<!-- TMPL_VAR name="branchcode" escape="HTML" -->" />
         <input type="hidden" name="branchname" value="<!-- TMPL_VAR NAME="branchname" escape="HTML" -->">
         <fieldset class="action"><input type="submit" value="Delete Library" /> <a class="cancel" href="/cgi-bin/koha/admin/branches.pl">Cancel</a></fieldset>
-</fieldset>    </form>
+</fieldset></form>
 <!-- /TMPL_IF -->
 
 <!-- TMPL_IF name="else" -->
@@ -146,7 +156,7 @@
 
 <!-- TMPL_IF NAME="branches" -->
     <table id="branchest">
-<thead>        <tr>
+<thead><tr>
 			<th>Name</th>
             <th>Code</th>
             <th>Address</th>
@@ -156,7 +166,7 @@
             <th colspan="2">&nbsp;</th>
         </tr></thead><tbody>
         <!-- TMPL_LOOP name="branches" -->
-	<!-- TMPL_IF NAME="toggle" -->
+	<!-- TMPL_IF NAME="__odd__" -->
         <tr>
 	<!-- TMPL_ELSE -->
 		<tr class="highlight">
@@ -182,12 +192,11 @@
                     <!-- /TMPL_IF -->
                 </td>
                 <td>
-                    <!-- TMPL_IF name="no-categories-p" -->
-                    <!-- TMPL_ELSE -->
+                    <!-- TMPL_UNLESS name="no-categories-p" -->
                         <!-- TMPL_LOOP name="category_list" -->
                             <!-- TMPL_VAR name="categoryname" --><br />
                         <!-- /TMPL_LOOP -->
-                    <!-- /TMPL_IF -->
+                    <!-- /TMPL_UNLESS -->
                 </td>
                 <td>
                     <!-- TMPL_VAR NAME="branchip" -->
@@ -208,8 +217,7 @@
 	<div class="dialog message">There are no libraries defined. <a href="/cgi-bin/koha/admin/branches.pl?op=add">Start defining libraries</a>.</div>
 	<!-- /TMPL_IF -->
     
-    <!-- TMPL_IF NAME="branchcategories" -->
-   
+   <!-- TMPL_IF   NAME="branchcategories" -->
    <!-- TMPL_LOOP NAME="branchcategories" -->
     <h3>Group(s):  <!-- TMPL_IF NAME="properties" -->Properties<!-- TMPL_ELSE --><!-- TMPL_IF NAME="searchdomain" -->Search Domain<!-- /TMPL_IF --><!-- /TMPL_IF --></h3>
 	<table>
@@ -230,14 +238,11 @@
         <td><a href="<!-- TMPL_VAR name="action" -->?op=delete_category&amp;categorycode=<!-- TMPL_VAR name="categorycode" escape="url" -->">Delete</a>
         </td>
         </tr>
-    <!-- /TMPL_LOOP --><!-- TMPL_ELSE --><tr><td colspan="5">No <!-- TMPL_IF NAME="properties" -->Properties<!-- TMPL_ELSE --><!-- TMPL_IF NAME="searchdomain" -->Search Domain<!-- /TMPL_IF --><!-- /TMPL_IF --> Defined</td></tr><!-- /TMPL_IF -->
+    <!-- /TMPL_LOOP --><!-- TMPL_ELSE --><tr><td colspan="5">No <!-- TMPL_IF NAME="properties" -->Properties<!-- TMPL_ELSIF NAME="searchdomain" -->Search Domain<!-- /TMPL_IF --> Defined</td></tr><!-- /TMPL_IF -->
     </table>
     <!-- /TMPL_LOOP -->
-
     <!-- TMPL_ELSE -->
-        <p>
-            No Groups defined.
-        </p>
+        <p>No Groups defined.</p>
     <!-- /TMPL_IF --> <!-- NAME="branchcategories" -->
 <!-- /TMPL_IF -->
 
@@ -258,7 +263,7 @@
                     <input type="hidden" name="categorycode" id="categorycode" value="<!-- TMPL_VAR name="categorycode" escape="HTML" -->" />
                     <!-- TMPL_VAR name="categorycode" -->
                 <!-- TMPL_ELSE -->
-            <label for="categorycode">Category code:</label>
+                <label for="categorycode">Category code:</label>
                     <input type="text" name="categorycode" id="categorycode" size="11" maxlength="10" value="<!-- TMPL_VAR name="categorycode" escape="HTML" -->" />
                 <!-- /TMPL_IF -->
             </li>
@@ -274,8 +279,12 @@
 		<label for="categorytype">Category Type: </label>
             <select id="categorytype" name="categorytype">
             <!-- TMPL_LOOP NAME="categorytype" -->
-                <!-- TMPL_IF NAME="selected" --><option value="<!-- TMPL_VAR NAME="type" -->" selected="selected"><!-- TMPL_ELSE --><option value="<!-- TMPL_VAR NAME="type" -->"><!-- /TMPL_IF --><!-- TMPL_VAR NAME="type" --></option>
-                <!-- /TMPL_LOOP -->
+                <!-- TMPL_IF NAME="selected" -->
+                    <option value="<!-- TMPL_VAR NAME="type" -->" selected="selected">
+                <!-- TMPL_ELSE -->
+                    <option value="<!-- TMPL_VAR NAME="type" -->">
+                <!-- /TMPL_IF --> <!-- TMPL_VAR NAME="type" --></option>
+            <!-- /TMPL_LOOP -->
             </select>
 		</li>
 		</ol>
@@ -285,7 +294,8 @@
 <!-- /TMPL_IF -->
 
 <!-- TMPL_IF name="delete_category" -->
- <!-- TMPL_UNLESS name="MESSAGE8" -->
+    <!-- TMPL_UNLESS name="MESSAGE8" -->
+    <div class="dialog message"> 
     Confirm delete:
     <form action="<!-- TMPL_VAR name="action" -->" method="post">
         <input type="hidden" name="op" value="categorydelete_confirmed" />
@@ -295,7 +305,8 @@
     <form action="<!-- TMPL_VAR name="action" -->" method="post"><input type="hidden" name="op" value="">
         <input type="submit" value="NO" />
     </form>
-<!-- /TMPL_UNLESS -->
+    </div>
+    <!-- /TMPL_UNLESS -->
 <!-- /TMPL_IF -->
 
 </div>
-- 
1.5.6.5




More information about the Koha-patches mailing list