koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha reports/overdue.pl koha-tmpl/intranet-tmpl... [rel_3_0]


From: Antoine Farnault
Subject: [Koha-cvs] koha reports/overdue.pl koha-tmpl/intranet-tmpl... [rel_3_0]
Date: Tue, 26 Sep 2006 14:12:52 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         rel_3_0
Changes by:     Antoine Farnault <toins>        06/09/26 14:12:52

Modified files:
        reports        : overdue.pl 
Added files:
        koha-tmpl/intranet-tmpl/prog/en/reports: overdue.tmpl 
Removed files:
        koha-tmpl/intranet-tmpl/prog/en: overdue.tmpl 

Log message:
        moving overdue.tmpl to reports/overdue.tmpl

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/overdue.tmpl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1&r2=0
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/reports/overdue.tmpl?cvsroot=koha&only_with_tag=rel_3_0&rev=1.1.2.1
http://cvs.savannah.gnu.org/viewcvs/koha/reports/overdue.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.1&r2=1.1.2.1

Patches:
Index: reports/overdue.pl
===================================================================
RCS file: /sources/koha/koha/reports/overdue.pl,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -b -r1.1 -r1.1.2.1
--- reports/overdue.pl  17 Jan 2006 16:48:35 -0000      1.1
+++ reports/overdue.pl  26 Sep 2006 14:12:52 -0000      1.1.2.1
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: overdue.pl,v 1.1 2006/01/17 16:48:35 tipaul Exp $
+# $Id: overdue.pl,v 1.1.2.1 2006/09/26 14:12:52 toins Exp $
 
 # Copyright 2000-2002 Katipo Communications
 #
@@ -32,7 +32,7 @@
 my $theme = $input->param('theme'); # only used if allowthemeoverride is set
 
 my ($template, $loggedinuser, $cookie)
-      = get_template_and_user({template_name => "overdue.tmpl",
+      = get_template_and_user({template_name => "reports/overdue.tmpl",
                                         query => $input,
                                         type => "intranet",
                                         authnotrequired => 0,

Index: koha-tmpl/intranet-tmpl/prog/en/reports/overdue.tmpl
===================================================================
RCS file: koha-tmpl/intranet-tmpl/prog/en/reports/overdue.tmpl
diff -N koha-tmpl/intranet-tmpl/prog/en/reports/overdue.tmpl
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ koha-tmpl/intranet-tmpl/prog/en/reports/overdue.tmpl        26 Sep 2006 
14:12:52 -0000      1.1.2.1
@@ -0,0 +1,29 @@
+<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Items Overdue as of <!-- 
TMPL_VAR NAME="todaysdate" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
+
+<h2>Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h2>
+
+<table>
+  <tr>
+    <th>Due Date</th>
+    <th>Patron</th>
+    <th>Phone</th>
+    <th>Title</th>
+    <th>Author</th>
+  </tr>
+
+  <!-- TMPL_LOOP NAME="overdueloop" -->
+    <tr>
+      <td><!-- TMPL_VAR NAME="duedate" --></td>
+    <!-- TMPL_IF NAME="email" -->
+      <td><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Overdue: <!-- 
TMPL_VAR NAME="title" -->"><!-- TMPL_VAR NAME="name" --></a></td>
+    <!-- TMPL_ELSE -->
+      <td><!-- TMPL_VAR NAME="name" --></td>
+    <!-- /TMPL_IF -->
+      <td><!-- TMPL_VAR NAME="phone" --></td>
+      <td><!-- TMPL_VAR NAME="title" --></td>
+      <td><!-- TMPL_VAR NAME="author" --></td>
+    </tr>
+  <!-- /TMPL_LOOP -->
+</table>
+
+<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->
\ No newline at end of file

Index: koha-tmpl/intranet-tmpl/prog/en/overdue.tmpl
===================================================================
RCS file: koha-tmpl/intranet-tmpl/prog/en/overdue.tmpl
diff -N koha-tmpl/intranet-tmpl/prog/en/overdue.tmpl
--- koha-tmpl/intranet-tmpl/prog/en/overdue.tmpl        6 Aug 2005 20:19:56 
-0000       1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,29 +0,0 @@
-<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Items Overdue as of <!-- 
TMPL_VAR NAME="todaysdate" --><!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
-
-<h2>Items Overdue as of <!-- TMPL_VAR NAME="todaysdate" --></h2>
-
-<table>
-  <tr>
-    <th>Due Date</th>
-    <th>Patron</th>
-    <th>Phone</th>
-    <th>Title</th>
-    <th>Author</th>
-  </tr>
-
-  <!-- TMPL_LOOP NAME="overdueloop" -->
-    <tr>
-      <td><!-- TMPL_VAR NAME="duedate" --></td>
-    <!-- TMPL_IF NAME="email" -->
-      <td><a href="mailto:<!-- TMPL_VAR NAME="email" -->?subject=Overdue: <!-- 
TMPL_VAR NAME="title" -->"><!-- TMPL_VAR NAME="name" --></a></td>
-    <!-- TMPL_ELSE -->
-      <td><!-- TMPL_VAR NAME="name" --></td>
-    <!-- /TMPL_IF -->
-      <td><!-- TMPL_VAR NAME="phone" --></td>
-      <td><!-- TMPL_VAR NAME="title" --></td>
-      <td><!-- TMPL_VAR NAME="author" --></td>
-    </tr>
-  <!-- /TMPL_LOOP -->
-</table>
-
-<!-- TMPL_INCLUDE name="intranet-bottom.inc" -->
\ No newline at end of file




reply via email to

[Prev in Thread] Current Thread [Next in Thread]