Index: openacs-4/packages/authorize-gateway/authorize-gateway.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/authorize-gateway/authorize-gateway.info,v
diff -u -r1.7 -r1.8
--- openacs-4/packages/authorize-gateway/authorize-gateway.info 4 Sep 2008 12:50:03 -0000 1.7
+++ openacs-4/packages/authorize-gateway/authorize-gateway.info 6 Sep 2008 09:56:09 -0000 1.8
@@ -17,7 +17,7 @@
2002-05-13
Payment gateway to Authorize.net. An account with Authorize.net and a merchant account are required. This version works with ecommerce version 5.12 and above.
-
+
Index: openacs-4/packages/ezic-gateway/ezic-gateway.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/ezic-gateway/ezic-gateway.info,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/ezic-gateway/ezic-gateway.info 4 Sep 2008 12:48:07 -0000 1.2
+++ openacs-4/packages/ezic-gateway/ezic-gateway.info 6 Sep 2008 09:56:09 -0000 1.3
@@ -18,7 +18,7 @@
0
Package that manages communication between openacs and the EZIC merchant payment gateway. Requires an account with EZIC and a merchant credit card fulfillment account. This version works with ecommerce version 5.12 and above.
-
+
Index: openacs-4/packages/payment-gateway/payment-gateway.info
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/payment-gateway/payment-gateway.info,v
diff -u -r1.6 -r1.7
--- openacs-4/packages/payment-gateway/payment-gateway.info 11 Dec 2003 21:40:10 -0000 1.6
+++ openacs-4/packages/payment-gateway/payment-gateway.info 6 Sep 2008 09:56:09 -0000 1.7
@@ -7,7 +7,7 @@
f
t
-
+
oracle
postgresql
@@ -17,9 +17,9 @@
Payment Gateway Service Contract
2002-05-13
furfly.net, LLC
- This service contract defines an API for modules to interact with a credit card payment service providers.
+ This service contract defines an API for modules to interact with a credit card payment service providers. If you are upgrading from a previous version of payment-gateway, be sure to uninstall payment-gateway and re-install it, because the payment-gateway has changed, and an upgrade script is not yet available.
-
+
Index: openacs-4/packages/payment-gateway/sql/postgresql/payment-gateway-sc-create.sql
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/payment-gateway/sql/postgresql/payment-gateway-sc-create.sql,v
diff -u -r1.2 -r1.3
--- openacs-4/packages/payment-gateway/sql/postgresql/payment-gateway-sc-create.sql 6 Jun 2002 02:48:13 -0000 1.2
+++ openacs-4/packages/payment-gateway/sql/postgresql/payment-gateway-sc-create.sql 6 Sep 2008 09:56:09 -0000 1.3
@@ -7,7 +7,7 @@
-- this is done when the order is placed, to verify that the card is good.
select acs_sc_msg_type__new (
'PaymentGateway.Authorize.InputType',
- 'transaction_id:integer,amount:string,card_type:string,card_number:string,card_exp_month:string,card_exp_year:string,card_name:string,billing_street:string,billing_city:string,billing_state:string,billing_zip:string,billing_country:string'
+ 'transaction_id:integer,amount:string,card_type:string,card_number:string,card_exp_month:string,card_exp_year:string,card_code:string,card_name:string,billing_street:string,billing_city:string,billing_state:string,billing_zip:string,billing_country:string'
);
select acs_sc_msg_type__new (
@@ -36,7 +36,7 @@
-- should not be called directly by the end user.
select acs_sc_msg_type__new (
'PaymentGateway.ChargeCard.InputType',
- 'transaction_id:integer,amount:string,card_type:string,card_number:string,card_exp_month:string,card_exp_year:string,card_name:string,billing_street:string,billing_city:string,billing_state:string,billing_zip:string,billing_country:string'
+ 'transaction_id:integer,amount:string,card_type:string,card_number:string,card_exp_month:string,card_exp_year:string,card_code:string,card_name:string,billing_street:string,billing_city:string,billing_state:string,billing_zip:string,billing_country:string'
);
select acs_sc_msg_type__new (
@@ -61,7 +61,7 @@
-- needed
select acs_sc_msg_type__new (
'PaymentGateway.Return.InputType',
- 'transaction_id:integer,amount:string,card_type:string,card_number:string,card_exp_month:string,card_exp_year:string,card_name:string,billing_street:string,billing_city:string,billing_state:string,billing_zip:string,billing_country:string'
+ 'transaction_id:integer,amount:string,card_type:string,card_number:string,card_exp_month:string,card_exp_year:string,card_code:string,card_name:string,billing_street:string,billing_city:string,billing_state:string,billing_zip:string,billing_country:string'
);
select acs_sc_msg_type__new (
'PaymentGateway.Return.OutputType',
@@ -82,7 +82,7 @@
-- Void is probably the least commonly supported, but it does exist.
select acs_sc_msg_type__new (
'PaymentGateway.Void.InputType',
- 'transaction_id:integer,amount:string,card_type:string,card_number:string,card_exp_month:string,card_exp_year:string,card_name:string,billing_street:string,billing_city:string,billing_state:string,billing_zip:string,billing_country:string'
+ 'transaction_id:integer,amount:string,card_type:string,card_number:string,card_exp_month:string,card_exp_year:string,card_code:string,card_name:string,billing_street:string,billing_city:string,billing_state:string,billing_zip:string,billing_country:string'
);
select acs_sc_msg_type__new (