[cvs] commit: incubator/Horde_Payment COPYING README index.php list.php matrix.php incubator/Horde_Payment/config .cvsignore conf.xml countries.php.dist prefs.php.dist incubator/Horde_Payment/docs CHANGES CREDITS INSTALL RELEASE_NOTES TODO ...

Chuck Hagenbuch chuck at horde.org
Wed Sep 27 10:51:57 PDT 2006


chuck       2006-09-27 10:51:57 PDT

  Added files:
    Horde_Payment        COPYING README index.php list.php 
                         matrix.php 
    Horde_Payment/config .cvsignore conf.xml countries.php.dist 
                         prefs.php.dist 
    Horde_Payment/docs   CHANGES CREDITS INSTALL RELEASE_NOTES 
                         TODO 
    Horde_Payment/lib    Driver.php Method.php Payment.php api.php 
                         base.php version.php 
    Horde_Payment/lib/Driver sql.php 
    Horde_Payment/lib/Forms PaymentData.php 
    Horde_Payment/lib/Methods/COD COD.php info.php 
    Horde_Payment/lib/Methods/Proforma Proforma.php info.php 
    Horde_Payment/locale/sl_SI/LC_MESSAGES payment.mo 
    Horde_Payment/po     .cvsignore README payment.pot sl_SI.po 
    Horde_Payment/process enter.php index.php revoke.php step1.php 
                          step2.php step3.php step_check.php 
    Horde_Payment/scripts/sql payment.mysql.php 
    Horde_Payment/templates common-header.inc menu.inc 
    Horde_Payment/templates/list footer.inc header.inc row.inc 
    Horde_Payment/templates/methods/Proforma bill.inc bill.php 
                                             proforma.jpg 
    Horde_Payment/templates/process header.inc revoked.inc 
    Horde_Payment/themes screen.css 
  Log:
  Import Horde_Payment module from Duck.
  
  Revision  Changes    Path
  1.1       +280 -0    incubator/Horde_Payment/COPYING (new)
  1.1       +88 -0     incubator/Horde_Payment/README (new)
  1.1       +4 -0      incubator/Horde_Payment/config/.cvsignore (new)
  1.1       +39 -0     incubator/Horde_Payment/config/conf.xml (new)
  1.1       +11 -0     incubator/Horde_Payment/config/countries.php.dist (new)
  1.1       +18 -0     incubator/Horde_Payment/config/prefs.php.dist (new)
  1.1       +5 -0      incubator/Horde_Payment/docs/CHANGES (new)
  1.1       +24 -0     incubator/Horde_Payment/docs/CREDITS (new)
  1.1       +217 -0    incubator/Horde_Payment/docs/INSTALL (new)
  1.1       +49 -0     incubator/Horde_Payment/docs/RELEASE_NOTES (new)
  1.1       +9 -0      incubator/Horde_Payment/docs/TODO (new)
  1.1       +21 -0     incubator/Horde_Payment/index.php (new)
  1.1       +53 -0     incubator/Horde_Payment/lib/Driver.php (new)
  1.1       +294 -0    incubator/Horde_Payment/lib/Driver/sql.php (new)
  1.1       +54 -0     incubator/Horde_Payment/lib/Forms/PaymentData.php (new)
  1.1       +101 -0    incubator/Horde_Payment/lib/Method.php (new)
  1.1       +33 -0     incubator/Horde_Payment/lib/Methods/COD/COD.php (new)
  1.1       +14 -0     incubator/Horde_Payment/lib/Methods/COD/info.php (new)
  1.1       +87 -0     incubator/Horde_Payment/lib/Methods/Proforma/Proforma.php (new)
  1.1       +14 -0     incubator/Horde_Payment/lib/Methods/Proforma/info.php (new)
  1.1       +208 -0    incubator/Horde_Payment/lib/Payment.php (new)
  1.1       +77 -0     incubator/Horde_Payment/lib/api.php (new)
  1.1       +47 -0     incubator/Horde_Payment/lib/base.php (new)
  1.1       +1 -0      incubator/Horde_Payment/lib/version.php (new)
  1.1       +67 -0     incubator/Horde_Payment/list.php (new)
  1.1       +20 -0     incubator/Horde_Payment/locale/sl_SI/LC_MESSAGES/payment.mo (new)
  1.1       +51 -0     incubator/Horde_Payment/matrix.php (new)
  1.1       +1 -0      incubator/Horde_Payment/po/.cvsignore (new)
  1.1       +1 -0      incubator/Horde_Payment/po/README (new)
  1.1       +277 -0    incubator/Horde_Payment/po/payment.pot (new)
  1.1       +284 -0    incubator/Horde_Payment/po/sl_SI.po (new)
  1.1       +47 -0     incubator/Horde_Payment/process/enter.php (new)
  1.1       +91 -0     incubator/Horde_Payment/process/index.php (new)
  1.1       +60 -0     incubator/Horde_Payment/process/revoke.php (new)
  1.1       +58 -0     incubator/Horde_Payment/process/step1.php (new)
  1.1       +60 -0     incubator/Horde_Payment/process/step2.php (new)
  1.1       +34 -0     incubator/Horde_Payment/process/step3.php (new)
  1.1       +39 -0     incubator/Horde_Payment/process/step_check.php (new)
  1.1       +49 -0     incubator/Horde_Payment/scripts/sql/payment.mysql.php (new)
  1.1       +29 -0     incubator/Horde_Payment/templates/common-header.inc (new)
  1.1       +3 -0      incubator/Horde_Payment/templates/list/footer.inc (new)
  1.1       +12 -0     incubator/Horde_Payment/templates/list/header.inc (new)
  1.1       +19 -0     incubator/Horde_Payment/templates/list/row.inc (new)
  1.1       +4 -0      incubator/Horde_Payment/templates/menu.inc (new)
  1.1       +6 -0      incubator/Horde_Payment/templates/methods/Proforma/bill.inc (new)
  1.1       +89 -0     incubator/Horde_Payment/templates/methods/Proforma/bill.php (new)
  1.1       +276 -0    incubator/Horde_Payment/templates/methods/Proforma/proforma.jpg (new)
  1.1       +1 -0      incubator/Horde_Payment/templates/process/header.inc (new)
  1.1       +7 -0      incubator/Horde_Payment/templates/process/revoked.inc (new)
  1.1       +3 -0      incubator/Horde_Payment/themes/screen.css (new)

  Chora Links:
  http://cvs.horde.org/co.php/incubator/Horde_Payment/COPYING?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/README?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/config/.cvsignore?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/config/conf.xml?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/config/countries.php.dist?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/config/prefs.php.dist?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/docs/CHANGES?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/docs/CREDITS?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/docs/INSTALL?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/docs/RELEASE_NOTES?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/docs/TODO?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/index.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Driver.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Driver/sql.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Forms/PaymentData.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Method.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Methods/COD/COD.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Methods/COD/info.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Methods/Proforma/Proforma.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Methods/Proforma/info.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/Payment.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/api.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/base.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/lib/version.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/list.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/locale/sl_SI/LC_MESSAGES/payment.mo?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/matrix.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/po/.cvsignore?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/po/README?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/po/payment.pot?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/po/sl_SI.po?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/process/enter.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/process/index.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/process/revoke.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/process/step1.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/process/step2.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/process/step3.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/process/step_check.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/scripts/sql/payment.mysql.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/common-header.inc?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/list/footer.inc?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/list/header.inc?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/list/row.inc?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/menu.inc?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/methods/Proforma/bill.inc?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/methods/Proforma/bill.php?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/methods/Proforma/proforma.jpg?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/process/header.inc?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/templates/process/revoked.inc?r=1.1
  http://cvs.horde.org/co.php/incubator/Horde_Payment/themes/screen.css?r=1.1


More information about the cvs mailing list