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

SF.net SVN: ledger-smb:[5609] branches/1.3



Revision: 5609
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=5609&view=rev
Author:   einhverfr
Date:     2013-01-19 10:40:42 +0000 (Sat, 19 Jan 2013)
Log Message:
-----------
Merging from trunk: Adding ID's for relevant elements for payment entry in invoices and transactions so these can be hidden via CSS

Modified Paths:
--------------
    branches/1.3/Changelog
    branches/1.3/bin/aa.pl
    branches/1.3/bin/ir.pl
    branches/1.3/bin/is.pl

Property Changed:
----------------
    branches/1.3/
    branches/1.3/Changelog


Property changes on: branches/1.3
___________________________________________________________________
Modified: svn:mergeinfo
   - /trunk:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487,5489,5495-5496,5515,5519,5524,5526,5528-5529,5533,5544-5546,5548-5549,5554-5555,5563,5565,5569,5576,5579,5589-5590,5597,5602-5603
   + /trunk:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487,5489,5495-5496,5515,5519,5524,5526,5528-5529,5533,5544-5546,5548-5549,5554-5555,5563,5565,5569,5576,5579,5589-5590,5597,5602-5603,5608

Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog	2013-01-19 09:37:10 UTC (rev 5608)
+++ branches/1.3/Changelog	2013-01-19 10:40:42 UTC (rev 5609)
@@ -22,6 +22,8 @@
 is not a total pain(Chris T)
 * Fixed lines 2 and 3 not showing on address div for contacts (Chris T)
 * Fixed credit limit not accounting for some payments (Chris T, 3600679)
+* Payments tables in invoice/transaction screens can be references in CSS
+(Chris T)
 
 Changelog for 1.3.28
 * Added db list to setup.pl when no db is entered and credentials allow login


Property changes on: branches/1.3/Changelog
___________________________________________________________________
Modified: svn:mergeinfo
   - /trunk/Changelog:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487,5489,5495-5496,5513,5515,5519,5524,5529,5548,5563,5565,5578-5579,5581,5583,5587,5590,5593,5595,5597
   + /trunk/Changelog:3711-3712,5424,5446-5448,5451,5457,5459,5461,5466,5473,5475,5482-5483,5485,5487,5489,5495-5496,5513,5515,5519,5524,5529,5548,5563,5565,5578-5579,5581,5583,5587,5590,5593,5595,5597,5608

Modified: branches/1.3/bin/aa.pl
===================================================================
--- branches/1.3/bin/aa.pl	2013-01-19 09:37:10 UTC (rev 5608)
+++ branches/1.3/bin/aa.pl	2013-01-19 10:40:42 UTC (rev 5609)
@@ -816,11 +816,11 @@
     </td>
   </tr>
 
-  <tr class=listheading>
+  <tr class=listheading id="transaction-payments-label">
     <th class=listheading>| . $locale->text('Payments') . qq|</th>
   </tr>
 
-  <tr>
+  <tr id="invoice-payments-table">
     <td>
       <table width=100%>
 |;

Modified: branches/1.3/bin/ir.pl
===================================================================
--- branches/1.3/bin/ir.pl	2013-01-19 09:37:10 UTC (rev 5608)
+++ branches/1.3/bin/ir.pl	2013-01-19 10:40:42 UTC (rev 5609)
@@ -753,7 +753,7 @@
   </tr>
   <tr>
     <td>
-      <table width=100%>
+      <table width=100% id="invoice-payments-table">
         <tr>
 	  <th colspan=6 class=listheading>| . $locale->text('Payments') . qq|</th>
 	</tr>

Modified: branches/1.3/bin/is.pl
===================================================================
--- branches/1.3/bin/is.pl	2013-01-19 09:37:10 UTC (rev 5608)
+++ branches/1.3/bin/is.pl	2013-01-19 10:40:42 UTC (rev 5609)
@@ -830,7 +830,7 @@
   </tr>
   <tr>
     <td>
-      <table width=100%>
+      <table width=100% id="invoice-payments-table">
 	<tr class=listheading>
 	  <th colspan=6 class=listheading>| . $locale->text('Payments') . qq|</th>
 	</tr>

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.