Modified:
getpaid.nullpayment/branches/multiplepaymentprocessors/setup.py
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/README.txt
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/button.py
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/pay.py
Log:
Updated copyright and README
Modified: getpaid.nullpayment/branches/multiplepaymentprocessors/setup.py
==============================================================================
--- getpaid.nullpayment/branches/multiplepaymentprocessors/setup.py
(original)
+++ getpaid.nullpayment/branches/multiplepaymentprocessors/setup.py Mon Jun
29 06:20:11 2009
@@ -16,7 +16,7 @@
setup(
name='getpaid.nullpayment',
- version='0.3.2dev',
+ version='0.4.0dev',
license = 'BSD',
author='Getpaid Community',
author_email='getpa...@googlegroups.com',
Modified:
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/README.txt
==============================================================================
---
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/README.txt
(original)
+++
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/README.txt
Mon Jun 29 06:20:11 2009
@@ -1,9 +1,8 @@
-======================
-Null Payment Processor
-======================
-
This is a payment processor for getpaid, which doesn't actually
process any payments. Its sole purpose is for testing other parts
of getpaid, without the hassle of setting up a merchant/dev account
with one of getpaid's supported payment processors.
+
+For more information about payment processors,
+see `getpaid.paymentprocessors README
<http://code.google.com/p/getpaid/source/browse/getpaid.paymentprocessors/trunk/README.txt>`_.
Modified:
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/button.py
==============================================================================
---
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/button.py
(original)
+++
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/button.py
Mon Jun 29 06:20:11 2009
@@ -1,4 +1,9 @@
from Products.PloneGetPaid.browser.checkout import BasePaymentMethodButton
+__author__ = "Mikko Ohtamaa <mikko....@twinapex.com>
http://www.twinapex.com"
+__docformat__ = "epytext"
+__license__ = "BSD"
+__copyright__ = "2009 Twinapex Research"
+
class NullPaymentButton(BasePaymentMethodButton):
pass
Modified:
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/pay.py
==============================================================================
---
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/pay.py
(original)
+++
getpaid.nullpayment/branches/multiplepaymentprocessors/src/getpaid/nullpayment/pay.py
Mon Jun 29 06:20:11 2009
@@ -7,6 +7,10 @@
from Products.Five.browser.pagetemplatefile import ZopeTwoPageTemplateFile
+__author__ = "Mikko Ohtamaa <mikko....@twinapex.com>
http://www.twinapex.com"
+__docformat__ = "epytext"
+__license__ = "BSD"
+__copyright__ = "2009 Twinapex Research"
class CheckoutReviewAndPay(base.CheckoutReviewAndPay):
""" Null payment method review and pay page.