[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [1498] trunk
- Subject: SF.net SVN: ledger-smb: [1498] trunk
- From: ..hidden..
- Date: Sat, 01 Sep 2007 22:54:43 -0700
Revision: 1498
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=1498&view=rev
Author: einhverfr
Date: 2007-09-01 22:54:43 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Some reporting framework changes
Added Paths:
-----------
trunk/LedgerSMB/DBObject/Report.pm
trunk/UI/report/
trunk/UI/report/basic.html
Removed Paths:
-------------
trunk/LedgerSMB/Report.pm
Copied: trunk/LedgerSMB/DBObject/Report.pm (from rev 1487, trunk/LedgerSMB/Report.pm)
===================================================================
--- trunk/LedgerSMB/DBObject/Report.pm (rev 0)
+++ trunk/LedgerSMB/DBObject/Report.pm 2007-09-02 05:54:43 UTC (rev 1498)
@@ -0,0 +1,10 @@
+
+=head1: LedgerSMB::Report: Stub function for custom reports.
+=head1: Copyright (c) 2007. LedgerSMB Core Team
+
+=cut
+
+package LedgerSMB::DBObject::Report;
+use base qw(LedgerSMB::DBObject);
+use strict;
+our $VERSION = '1.0.0';
Deleted: trunk/LedgerSMB/Report.pm
===================================================================
--- trunk/LedgerSMB/Report.pm 2007-09-02 02:29:02 UTC (rev 1497)
+++ trunk/LedgerSMB/Report.pm 2007-09-02 05:54:43 UTC (rev 1498)
@@ -1,10 +0,0 @@
-
-=head1: LedgerSMB::Report: Stub function for custom reports.
-=head1: Copyright (c) 2007. LedgerSMB Core Team
-
-=cut
-
-package LedgerSMB::Report;
-use base qw(LedgerSMB::DBObject);
-use strict;
-our $VERSION = '1.0.0';
Added: trunk/UI/report/basic.html
===================================================================
--- trunk/UI/report/basic.html (rev 0)
+++ trunk/UI/report/basic.html 2007-09-02 05:54:43 UTC (rev 1498)
@@ -0,0 +1,38 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <title>Accounting Menu - LedgerSMB Version 1.2.7 - Chris Travers - metatron_ledger</title>
+ <meta http-equiv="Pragma" content="no-cache" />
+ <meta http-equiv="Expires" content="-1" />
+ <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
+ <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" title="LedgerSMB stylesheet" />
+ <link rel="stylesheet" href="UI/report/basic.css" type="text/css" title="LedgerSMB stylesheet" />
+
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+
+ <meta name="robots" content="noindex,nofollow" />
+</head>
+<body>
+<div class="titlebar"><?lsmb title ?></div>
+<table>
+<tr>
+<?lsmb FOREACH col IN columns ?>
+ <th class="col_lable"><?lsmb col ?></th>
+<?lsmb END ?>
+</tr>
+<?lsmb FOREACH row IN report_rows ?>
+ <?lsmb IF styletoggle = 1 ;
+ SET styletoggle = 0;
+ ELSE;
+ SET styletoggle = 1;
+ END ?>
+ <tr class="row_<?lsmb styletoggle ?>">
+ <?lsmb FOREACH col IN columns ?>
+ <td><?lsmb row.$col ?></td>
+ <?lsmb END ?>
+ </tr>
+</table>
+
+</body>
+</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.