[freeside-commits]
freeside/httemplate/misc batch-cust_pay.html, 1.4,
1.5 payment.cgi, 1.6, 1.7
Ivan,,,
ivan at wavetail.420.am
Sun May 14 09:47:32 PDT 2006
- Previous message: [freeside-commits] freeside/httemplate/elements
checkboxes-table.html, NONE, 1.1 cssexpr.js, NONE,
1.1 footer.html, 1.1, 1.2 header.html, 1.3, 1.4 menubar.html,
1.1, 1.2 select-access_group.html, NONE,
1.1 tr-select-access_group.html, NONE, 1.1 xmenu.css, NONE,
1.1 xmenu.js, NONE, 1.1
- Next message: [freeside-commits]
freeside/httemplate/edit access_group.html, NONE,
1.1 access_user.html, NONE, 1.1 agent_type.cgi, 1.14,
1.15 cust_bill_pay.cgi, 1.9, 1.10 cust_credit.cgi, 1.10,
1.11 cust_credit_bill.cgi, 1.9, 1.10 cust_main.cgi, 1.61,
1.62 cust_pkg.cgi, 1.10, 1.11 part_referral.cgi, 1.9,
1.10 part_virtual_field.cgi, 1.3, 1.4 svc_domain.cgi, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/httemplate/misc
In directory wavetail:/tmp/cvs-serv14201/httemplate/misc
Modified Files:
batch-cust_pay.html payment.cgi
Log Message:
first part of ACL and re-skinning work and some other small stuff
Index: payment.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/misc/payment.cgi,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- payment.cgi 15 Mar 2005 23:27:08 -0000 1.6
+++ payment.cgi 14 May 2006 16:47:30 -0000 1.7
@@ -35,28 +35,18 @@
<INPUT TYPE="hidden" NAME="custnum" VALUE="<%= $custnum %>">
<INPUT TYPE="hidden" NAME="payby" VALUE="<%= $payby %>">
<INPUT TYPE="hidden" NAME="paybatch" VALUE="<%= $paybatch %>">
-<SCRIPT>
-var mywindow = -1;
-function myopen(filename,windowname,properties) {
- myclose();
- mywindow = window.open(filename,windowname,properties);
-}
-function myclose() {
- if ( mywindow != -1 )
- mywindow.close();
- mywindow = -1;
-}
-var achwindow = -1;
-function achopen(filename,windowname,properties) {
- achclose();
- achwindow = window.open(filename,windowname,properties);
-}
-function achclose() {
- if ( achwindow != -1 )
- achwindow.close();
- achwindow = -1;
+
+<SCRIPT TYPE="text/javascript" SRC="../elements/overlibmws.js"></SCRIPT>
+<SCRIPT TYPE="text/javascript" SRC="../elements/overlibmws_iframe.js"></SCRIPT>
+<SCRIPT TYPE="text/javascript" SRC="../elements/overlibmws_draggable.js"></SCRIPT>
+<SCRIPT TYPE="text/javascript">
+function OLiframeContent(src, width, height, name) {
+ return ('<iframe src="'+src+'" width="'+width+'" height="'+height+'"'
+ +(name?' name="'+name+'" id="'+name+'"':'')+' scrolling="auto">'
+ +'<div>[iframe not supported]</div></iframe>');
}
</SCRIPT>
+
<% #include( '/elements/table.html', '#cccccc' ) %>
<%= ntable('#cccccc') %>
<TR>
@@ -112,7 +102,7 @@
<TR>
<TD ALIGN="right">CVV2</TD>
<TD><INPUT TYPE="text" NAME="paycvv" VALUE="<%= $paycvv %>" SIZE=4 MAXLENGTH=4>
- (<A HREF="javascript:myopen('../docs/cvv2.html','cvv2','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=480,height=288')">help</A>)
+ (<A HREF="javascript:void(0);" onClick="overlib( OLiframeContent('../docs/cvv2.html', 480, 352, 'cvv2_popup' ), CAPTION, 'CVV2 Help', STICKY, AUTOSTATUSCAP, CLOSECLICK, DRAGGABLE ); return false;">help</A>)
</TD>
</TR>
<TR>
@@ -173,7 +163,7 @@
<TD ALIGN="right">ABA/Routing number</TD>
<TD>
<INPUT TYPE="text" SIZE=10 MAXLENGTH=9 NAME="payinfo2" VALUE="<%=$payinfo2%>">
- (<A HREF="javascript:achopen('../docs/ach.html','ach','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=384,height=256')">help</A>)
+ (<A HREF="javascript:void(0);" onClick="overlib( OLiframeContent('../docs/ach.html', 380, 240, 'ach_popup' ), CAPTION, 'ACH Help', STICKY, AUTOSTATUSCAP, CLOSECLICK, DRAGGABLE ); return false;">help</A>)
</TD>
</TR>
<TR>
@@ -205,5 +195,5 @@
<BR>
<INPUT TYPE="submit" NAME="process" VALUE="Process payment">
</FORM>
-</BODY>
-</HTML>
+
+<%= include('/elements/footer.html') %>
Index: batch-cust_pay.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/misc/batch-cust_pay.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- batch-cust_pay.html 31 Jan 2006 04:26:54 -0000 1.4
+++ batch-cust_pay.html 14 May 2006 16:47:30 -0000 1.5
@@ -1,8 +1,6 @@
<%= include("/elements/header.html", 'Quick payment entry',
menubar(
'Main Menu' => $p, #popurl(1),
- 'Old-style quick payment entry' =>
- $p. 'search/cust_main-quickpay.html',
),
( $cgi->param('error') ? '' : 'onload="addRow()"' ),
)
- Previous message: [freeside-commits] freeside/httemplate/elements
checkboxes-table.html, NONE, 1.1 cssexpr.js, NONE,
1.1 footer.html, 1.1, 1.2 header.html, 1.3, 1.4 menubar.html,
1.1, 1.2 select-access_group.html, NONE,
1.1 tr-select-access_group.html, NONE, 1.1 xmenu.css, NONE,
1.1 xmenu.js, NONE, 1.1
- Next message: [freeside-commits]
freeside/httemplate/edit access_group.html, NONE,
1.1 access_user.html, NONE, 1.1 agent_type.cgi, 1.14,
1.15 cust_bill_pay.cgi, 1.9, 1.10 cust_credit.cgi, 1.10,
1.11 cust_credit_bill.cgi, 1.9, 1.10 cust_main.cgi, 1.61,
1.62 cust_pkg.cgi, 1.10, 1.11 part_referral.cgi, 1.9,
1.10 part_virtual_field.cgi, 1.3, 1.4 svc_domain.cgi, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list