<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel">
    <title>gmane.comp.web.zope.plone.getpaid.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1918"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1917"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1916"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1915"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1914"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1913"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1912"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1911"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1910"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1909"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1908"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1907"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1906"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1905"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1904"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1903"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1902"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1901"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1900"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1899"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1918">
    <title>Sprinting &lt; at &gt; PyCON</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1918</link>
    <description>&lt;pre&gt;Hey guys!

Is anyone of you here in Santa Clara?

I'd like to chat a bit about your experience with PloneGetPaid and see if
someone is willing to sprint on improvements, bug fixing or stuff related...


&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2012-03-08T19:37:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1917">
    <title>Re: ids generated by Getpaid templates contain dotted names and result in unusable html markup for css styling</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1917</link>
    <description>&lt;pre&gt;Addendum:
my words were a little bit hash due you may use unusual CSS selectors  
to style these objects as well.

To hide the "Continue Shopping" button in the cart template by CSS you  
can e.g. use:

/* this may survive an update, but the later example not */
body.template-getpaid-cart input[value|='Continue Shopping'] {
     display: none;
}

To add a currency behind the numbers in the cart you can use:

/* Adds Euro currencies to the cart (not IE7 and Opera 5-6 safe!) */
body.template-getpaid-cart div.cart-listing td+td+td+td:after {
  content: " Euro";
}

body.template-getpaid-cart div.getpaid-totals th+td:after {
  content: " Euro";
}

For this I tweaked the template and added a class checkout-link to the  
template code:

/* Make the checkout link big*/
#portlet-cart dd.checkout-link a {
     font-size: 200%;
     font-weight: bold;
}


But – if anything in the template changes, your styles are gone.

The current Getpaid CSS class and id markup is not best practise. So  
use underscores, hyphens an&lt;/pre&gt;</description>
    <dc:creator>Armin Stroß-Radschinski</dc:creator>
    <dc:date>2012-03-05T07:57:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1916">
    <title>ids generated by Getpaid templates contain dotted names and result in unusable html markup for css styling</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1916</link>
    <description>&lt;pre&gt;Templates like 
../Products.PloneGetPaid/Products/PloneGetPaid/browser/templates/cart-listing.pt 
create id and class markup in html that results in dotted names for ids.

If you try to adress these ids in css the part behind the first dot is 
interpreted as a class name. So you can never style objects with such ids. 
This is a major design mistake an may occur at other places as well.

How do we deal with this during refactoring?

Armin

I am using Products.PloneGetPaid svn checkout Revision: 3919 with Plone 4.1

&lt;/pre&gt;</description>
    <dc:creator>Armin Stroß-Radschinski</dc:creator>
    <dc:date>2012-03-04T22:07:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1915">
    <title>ideas for multiple payment gateway</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1915</link>
    <description>&lt;pre&gt;I've been playing around with PGP for a couple of months now. In a near
future I'm gonna need to add a second payment gateway to one site I'm
working on.

There's a branch of getpaid.core and Products.PloneGetPaid with some work
on the multple payment gateway, but the code is a bit old. I was wondering
if any of you guys have come up with a solution to this?

I was wondering that this might be achievable trough some "payment router"
that would drive the user to his/her preferred payment gateway. Maybe
through adaptation or some similar techinque and reusing available payment
gateways.

Sounds crazy to you?

&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2012-02-28T11:39:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1914">
    <title>Re: installing getpaid on Plone 4.1.4</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1914</link>
    <description>&lt;pre&gt;Hi Eric,
we are running Getpaid SVN checkout via buildout/mr.developer  
successfully with Plone 4.1.2 and Patrick Gerken has updated the  
getpaid.ogone adapter to work with the current Ogone API in the svn.

There should be not so much difference between 4.1.2 and 4.1.4 the  
main issue was the step to 4.1.x.

We see some real flaws in the product that needs fixing (including  
some doumentation of the overdesigned code dungeon) and I tried to  
document some issues in the tracker (there may be mistakes related to  
the revision, I need to update them).

But due to the german Plone Konferenz and the accident of Patrick  
during the setup of the confererence venue (broken leg) the current  
state of progress may be not released/reflected in the SVN.

Can you describe the use case (payment method, country, tax and  
shipping requirements etc.) of your project?

If I find the time I try to publish our setup here. But there will be  
some delay. In the meantime feel free to ask a particular question on  
the l&lt;/pre&gt;</description>
    <dc:creator>Armin Stroß-Radschinski</dc:creator>
    <dc:date>2012-02-28T11:16:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1913">
    <title>Re: installing getpaid on Plone 4.1.4</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1913</link>
    <description>&lt;pre&gt;I think you're missing the versions = versions line in your [buildout]
section but I can't tell since you didn't paste base.cfg which you extend.
Also make sure nothing in your versions.cfg overwrites GetPaid pins.

Also try: grep Get bin/instance
You should see sth like: "...Products.PloneGetPaid-0.10.4-py2.6.egg"

I'm running GetPaid with Plone 4.2b2 and it seems OK (not in production
yet).

Regards
Davi Lima

2012/2/28 Noe Nieto &amp;lt;nnieto-kKH1Z9J5XbBWk0Htik3J/w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;


&lt;/pre&gt;</description>
    <dc:creator>Davi Lima</dc:creator>
    <dc:date>2012-02-28T10:47:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1912">
    <title>Re: installing getpaid on Plone 4.1.4</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1912</link>
    <description>&lt;pre&gt;2012/2/27 Eric Jahn &amp;lt;eric-ss6iczGzdLdeoWH0uzbU5w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;

I've been running Plone 4.1.3 for some months now with GetPaid. I can
install it and play with it.




ZMI?

What about the Plone Control Panel?
What do you mean with "nothing"?

Did you tried: Plone Control Panel -&amp;gt; Install Add-ons -&amp;gt; GetPaid for Plone
-&amp;gt; Install ?


and no error messages when I run buildout.


Did you see something like: "getting distribution for
Products.PloneGetPaid"?





&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2012-02-28T10:34:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1911">
    <title>installing getpaid on Plone 4.1.4</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1911</link>
    <description>&lt;pre&gt;Hello, has anyone been able to get getpaid running on the latest
stable version of Plone?

I started with a fresh unified installer build and my buildout is
attached.  Nothing shows up under Control Panel-&amp;gt; Products in the ZMI,
and no error messages when I run buildout.  I followed the install
instruction at: https://code.google.com/p/getpaid/wiki/InstallingGetPaid
exactly (except for some differences between the structure of the
buildout in the instructions and the one that comes with the unified
installer.

My buildout is here: http://ejahn.net/files/buildout.cfg

Thank you for any insight!  -Eric

&lt;/pre&gt;</description>
    <dc:creator>Eric Jahn</dc:creator>
    <dc:date>2012-02-28T05:11:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1910">
    <title>Re: How to enable multiple payment processors?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1910</link>
    <description>&lt;pre&gt;Any idea on how to make this happen?

---
Noe

2012/1/20 David Glick &amp;lt;dglick-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;




&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2012-01-20T18:36:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1909">
    <title>Re: How to enable multiple payment processors?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1909</link>
    <description>&lt;pre&gt;That's not supported in getpaid as far as I know.

On Jan 20, 2012, at 10:21 AM, Noe Nieto wrote:


&lt;/pre&gt;</description>
    <dc:creator>David Glick</dc:creator>
    <dc:date>2012-01-20T18:25:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1908">
    <title>Re: subversion access</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1908</link>
    <description>&lt;pre&gt;Thanks a lot!

2012/1/20 David Glick &amp;lt;dglick-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;




&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2012-01-20T18:24:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1907">
    <title>How to enable multiple payment processors?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1907</link>
    <description>&lt;pre&gt;Hi all

How do I enable multiple payment processors with latest PloneGetPaid and 
Plone 4.1?

--
Noe

&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2012-01-20T18:21:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1906">
    <title>Re: subversion access</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1906</link>
    <description>&lt;pre&gt;Nevermind. Googlecode was failing

&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2012-01-20T18:16:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1905">
    <title>Re: subversion access</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1905</link>
    <description>&lt;pre&gt;Sure, you should have access now.

On Jan 20, 2012, at 10:09 AM, Noe Nieto wrote:


&lt;/pre&gt;</description>
    <dc:creator>David Glick</dc:creator>
    <dc:date>2012-01-20T18:13:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1904">
    <title>subversion access</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1904</link>
    <description>&lt;pre&gt;Hi.

I have some updated spanish translations I want to commit to getpaid.core 
and Products.PloneGetPaid. Can I have commit access?

---
Noe

&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2012-01-20T18:09:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1903">
    <title>Re: Error: Couldn't find a distribution for 'yoma.batching==0.2.2-getpaid'.</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1903</link>
    <description>&lt;pre&gt;Did you add this to find-links in [buildout] section?

http://getpaid.googlecode.com/files/yoma.batching-0.2.2-getpaid.zip

---
Noe

2011/12/18 Adrigen &amp;lt;adrigen-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;




&lt;/pre&gt;</description>
    <dc:creator>Noe Nieto</dc:creator>
    <dc:date>2011-12-19T17:25:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1902">
    <title>Error: Couldn't find a distribution for 'yoma.batching==0.2.2-getpaid'.</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1902</link>
    <description>&lt;pre&gt;Does this mean a repository is down?

&lt;/pre&gt;</description>
    <dc:creator>Adrigen</dc:creator>
    <dc:date>2011-12-19T05:41:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1901">
    <title>Re: getpaid.ploneformgen – Getpaid Adapter ignores getpaid.ogone and displays explicit CrediCard Interface</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1901</link>
    <description>&lt;pre&gt;getpaid.formgen supports a single-page checkout mode (which includes all 
the billing fields) and a mode that simply adds item(s) to the cart and 
then redirects to the standard getpaid checkout wizard. If you're using 
an off-site processor like ogone then you need to choose the latter mode.
David

&lt;/pre&gt;</description>
    <dc:creator>David Glick</dc:creator>
    <dc:date>2011-12-01T19:15:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1900">
    <title>getpaid.ploneformgen – Getpaid Adapter ignores getpaid.ogone and displays explicit CrediCard Interface</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1900</link>
    <description>&lt;pre&gt;We have the issue that the getpaid.ploneformgen – Getpaid Adapter ignores 
getpaid.ogone and displays an explicit CreditCard Interface to enter the 
CardData. This is not acceptable (see below).

Is anyone using getpaid.ploneformgen or getpaid.ogone aware of this issue. 
How can I expect to work around this. I am not fully understanding the 
mechanisms of getpaid.ploneformgen due to lack of documentation. I am 
reading the code, but get no grip on it for now.

Background of PCI certification limitations
======================================
Due to PCI certification limitations, processing CreditCard data details 
inside getpaid is not appropriate for use with pament abstractor services 
like e.g. Paypal and Ogone. 

If you want to process CreditCard data details directly inside getpaid you 
need a PCI certification process with annual audits to confirm to the 
standards the CreditCard companies restrict you to.

This can be avoided by using an inbetween Payment Processor like in our 
case Ogone. Ogone tak&lt;/pre&gt;</description>
    <dc:creator>Armin Stroß-Radschinski</dc:creator>
    <dc:date>2011-12-01T11:56:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1899">
    <title>flatrateshipping configuration?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1899</link>
    <description>&lt;pre&gt;I'm looking at the flatrateshipping module but I don't see a user interface 
for its configuration. Does the config UI exist? Thanks.

&lt;/pre&gt;</description>
    <dc:creator>Daniel Holth</dc:creator>
    <dc:date>2011-08-17T14:37:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1898">
    <title>Re: What is the status of PloneGetPaid</title>
    <link>http://permalink.gmane.org/gmane.comp.web.zope.plone.getpaid.devel/1898</link>
    <description>&lt;pre&gt;not yet come back  :(
more and more worrying ...

On 3/11/11, gmail &amp;lt;movieextras.kevin-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>danielle davout</dc:creator>
    <dc:date>2011-04-30T09:39:49</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.web.zope.plone.getpaid.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.zope.plone.getpaid.devel</link>
  </textinput>
</rdf:RDF>

