Hi,
My company has given me a rather cool project:
I have to provide them with an open-source python-based point-of-sale /
cash register system that can integrate with their existing ERP backend.
The project will include development to ensure that the features they
require are included in the op
On Thu, 27 Jan 2005, Cameron Laird wrote:
In article <[EMAIL PROTECTED]>,
Andreas Pauley <[EMAIL PROTECTED]> wrote:
Hi,
My company has given me a rather cool project:
I have to provide them with an open-source python-based point-of-sale /
cash register system that can integrat
On Thu, 27 Jan 2005, Peter Hansen wrote:
Andreas Pauley wrote:
My company has given me a rather cool project:
I have to provide them with an open-source python-based point-of-sale /
cash register system that can integrate with their existing ERP backend.
Do you have information about the
On Thu, 27 Jan 2005, Evan Simpson wrote:
You may want to check out the Spread Toolkit, at www.spread.org, whose Python
wrapper lives at http://www.python.org/other/spread/doc.html. It's used by
the Zope Replication Service, for example.
Cheers,
Evan @ 4-am
Thanks a lot, I need components like t
Hi all,
I'm starting with a Point of Sale system (QT gui, MySQL db) and I'm
wondering if there are any user management/user security modules available
that can be reused independently of the specific system that you write.
I think something similar to the roles & permission scheme of Zope would
On Mon, 28 Feb 2005, Andreas Pauley wrote:
Hi all,
I'm starting with a Point of Sale system (QT gui, MySQL db) and I'm wondering
if there are any user management/user security modules available that can be
reused independently of the specific system that you write.
I think something
Hi all,
I've started writing use cases for my open source point of sale system (my
first attempt at use cases).
http://qualitypos.qbcon.com/
If anyone here has experience with either use cases or point of sale
systems, feel free to comment or criticize.
Regards,
Andreas
--
http://mail.pytho
Hi all,
I'm trying to implement a Python equivalent of a C# method that encrypts
a string.
My Python attempt is in the attached file, but does not return the same
value as the C# method (see below).
Any hints?
Thanks,
Andreas
The C# method:
public static string Encrypt(string decrypted)
{
the original plaintext value.
As for padding, the C# method uses characters '\x01' to '\x07' for padding.
If there are 3 padding characters needed (eg with a password of 5
chars), then three '\x03' chars will be used.
Similarly, a 2-ch