<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sssd.git/src/python/pyhbac.c, branch sssd-1_5_13</title>
<subtitle>System Security Services Daemon [okos' clone]</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/'/>
<entry>
<title>pyhbac: Do not convert int to bool</title>
<updated>2011-08-04T18:15:18+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2011-08-04T17:56:08+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=bf80663f3f24d0561b40bfff8d188439a83d09b5'/>
<id>bf80663f3f24d0561b40bfff8d188439a83d09b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>HBAC rule validation Python bindings</title>
<updated>2011-08-01T16:18:35+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2011-07-30T10:57:24+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=d5a40850e1b9b5647a6f6cbfe59cb83403a03b37'/>
<id>d5a40850e1b9b5647a6f6cbfe59cb83403a03b37</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/943
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/943
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle allocation error in python HBAC bindings</title>
<updated>2011-08-01T16:18:34+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2011-07-26T09:02:26+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=f1453927ec63580e9d74279b71e3c6d4abe346e5'/>
<id>f1453927ec63580e9d74279b71e3c6d4abe346e5</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/934
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/934
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dead code from python HBAC bindings</title>
<updated>2011-08-01T16:18:34+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2011-07-26T09:00:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=d5278883effef0c96f3fd3032da1335fdf1613d7'/>
<id>d5278883effef0c96f3fd3032da1335fdf1613d7</id>
<content type='text'>
https://fedorahosted.org/sssd/ticket/935
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://fedorahosted.org/sssd/ticket/935
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix python HBAC bindings for python &lt;= 2.4</title>
<updated>2011-08-01T16:18:34+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2011-07-12T19:22:22+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=833eda9de40ad28e966f8f883dba8e187f8efd32'/>
<id>833eda9de40ad28e966f8f883dba8e187f8efd32</id>
<content type='text'>
Several parts of the HBAC python bindings did not work with old Python
versions, such as the one shipped in RHEL5.

The changes include:
* a compatibility wrapper around python set object
* PyModule_AddIntMacro compat macro
* Py_ssize_t compat definition
* Do not use PyUnicode_FromFormat
* several function prototypes and structures used to have "char
  arguments where they have "const char *" in recent versions.
  This caused compilation warnings this patch mitigates by using
  the discard_const hack on python 2.4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Several parts of the HBAC python bindings did not work with old Python
versions, such as the one shipped in RHEL5.

The changes include:
* a compatibility wrapper around python set object
* PyModule_AddIntMacro compat macro
* Py_ssize_t compat definition
* Do not use PyUnicode_FromFormat
* several function prototypes and structures used to have "char
  arguments where they have "const char *" in recent versions.
  This caused compilation warnings this patch mitigates by using
  the discard_const hack on python 2.4
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes for python HBAC bindings</title>
<updated>2011-08-01T16:18:34+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2011-07-12T15:27:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=38f5e997f02259107016543c9e60f35111cc9aab'/>
<id>38f5e997f02259107016543c9e60f35111cc9aab</id>
<content type='text'>
These changes were proposed during a review:
 * Change the signature of str_concat_sequence() to const char *
 * use a getsetter for HbacRule.enabled to allow string true/false and
   integer 1/0 in addition to bool
 * fix a minor memory leak (HbacRequest.rule_name)
 * remove overzealous discard consts
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These changes were proposed during a review:
 * Change the signature of str_concat_sequence() to const char *
 * use a getsetter for HbacRule.enabled to allow string true/false and
   integer 1/0 in addition to bool
 * fix a minor memory leak (HbacRequest.rule_name)
 * remove overzealous discard consts
</pre>
</div>
</content>
</entry>
<entry>
<title>Provide python bindings for the HBAC evaluator library</title>
<updated>2011-08-01T16:18:34+00:00</updated>
<author>
<name>Jakub Hrozek</name>
<email>jhrozek@redhat.com</email>
</author>
<published>2011-05-30T07:57:19+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/okos/public_git/sssd.git/commit/?id=370f890c7f3dc0186410b627e77ab393f51b09ee'/>
<id>370f890c7f3dc0186410b627e77ab393f51b09ee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
