<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/NetworkManager.git/examples/python/Makefile.am, branch th/printf</title>
<subtitle>gitlab.freedesktop.org: NetworkManager/NetworkManager.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/'/>
<entry>
<title>examples: group python examples - dbus vs. gi</title>
<updated>2013-09-24T10:52:33+00:00</updated>
<author>
<name>Jiří Klimeš</name>
<email>jklimes@redhat.com</email>
</author>
<published>2013-09-24T10:35:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=8a04ab9135e6905d376cdbe95cf4fc6910e337c1'/>
<id>8a04ab9135e6905d376cdbe95cf4fc6910e337c1</id>
<content type='text'>
Move examples using dbus-python ('dbus' module) and GObject introspection into
their own directories.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move examples using dbus-python ('dbus' module) and GObject introspection into
their own directories.
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: add a python example getting/setting zone property using GI</title>
<updated>2013-09-24T10:48:55+00:00</updated>
<author>
<name>Jiří Klimeš</name>
<email>jklimes@redhat.com</email>
</author>
<published>2013-09-24T10:18:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=217cb5fbca79bd21f5305ba8911be37c81fc4c8a'/>
<id>217cb5fbca79bd21f5305ba8911be37c81fc4c8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: fix python example file names in EXTRA_DIST</title>
<updated>2012-09-24T11:22:24+00:00</updated>
<author>
<name>Jiří Klimeš</name>
<email>jklimes@redhat.com</email>
</author>
<published>2012-09-24T11:22:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=784af2215961f2ae5b2dd2de73d0f7870c94ea94'/>
<id>784af2215961f2ae5b2dd2de73d0f7870c94ea94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: fix add-system-connection.py -&gt; add-connection.py rename</title>
<updated>2012-09-24T10:59:09+00:00</updated>
<author>
<name>Jiří Klimeš</name>
<email>jklimes@redhat.com</email>
</author>
<published>2012-09-24T10:56:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=033e8d2a777d4dc3217f6b4836c23fba6390b00c'/>
<id>033e8d2a777d4dc3217f6b4836c23fba6390b00c</id>
<content type='text'>
It fixes 'make dist' that fails otherwise.
Found by pavlix.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It fixes 'make dist' that fails otherwise.
Found by pavlix.
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: add a python GObject Introspection example</title>
<updated>2012-06-13T11:28:43+00:00</updated>
<author>
<name>Jiří Klimeš</name>
<email>jklimes@redhat.com</email>
</author>
<published>2012-06-13T11:19:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=495fae7a7b4c707f603df74e2f1ac4d4ab7b093e'/>
<id>495fae7a7b4c707f603df74e2f1ac4d4ab7b093e</id>
<content type='text'>
It demonstrates getting NMIP4Config object after activating a device.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It demonstrates getting NMIP4Config object after activating a device.
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: add simply python GObject Introspection example</title>
<updated>2012-06-11T19:46:33+00:00</updated>
<author>
<name>Dan Williams</name>
<email>dcbw@redhat.com</email>
</author>
<published>2012-06-11T19:46:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=53f6539f54c6c49dcb53de8d1e3cdb3a6a84c960'/>
<id>53f6539f54c6c49dcb53de8d1e3cdb3a6a84c960</id>
<content type='text'>
Unfortunately since libnm-glib/libnm-util make heavy use of
GHashTable and GValue, functions that deal with these types
can't be used from Python when using GObject Introspection,
since pygobject can't handle conversion between python types
and GValue/GHashTable very well.  You'll likely encounter
assertions like:

ERROR:pygi-argument.c:1755:_pygi_argument_to_object: assertion failed: (g_type_info_get_tag (key_type_info) != GI_TYPE_TAG_VOID)
Aborted
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Unfortunately since libnm-glib/libnm-util make heavy use of
GHashTable and GValue, functions that deal with these types
can't be used from Python when using GObject Introspection,
since pygobject can't handle conversion between python types
and GValue/GHashTable very well.  You'll likely encounter
assertions like:

ERROR:pygi-argument.c:1755:_pygi_argument_to_object: assertion failed: (g_type_info_get_tag (key_type_info) != GI_TYPE_TAG_VOID)
Aborted
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: add python example for listing devices</title>
<updated>2011-09-15T16:13:38+00:00</updated>
<author>
<name>Dan Williams</name>
<email>dcbw@redhat.com</email>
</author>
<published>2011-09-15T16:13:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=e92043c4d542ecd7f81f14cd3fdf85a8afc3e4b3'/>
<id>e92043c4d542ecd7f81f14cd3fdf85a8afc3e4b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: new example for printing active connection list</title>
<updated>2011-08-05T13:55:14+00:00</updated>
<author>
<name>Dan Williams</name>
<email>dcbw@redhat.com</email>
</author>
<published>2011-08-05T13:55:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=dab37276d2baee6508894f25c2517b6cbdd2d90f'/>
<id>dab37276d2baee6508894f25c2517b6cbdd2d90f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: new example for adding system WPA EAP-TLS wifi connection</title>
<updated>2011-03-03T05:36:07+00:00</updated>
<author>
<name>Dan Williams</name>
<email>dcbw@redhat.com</email>
</author>
<published>2011-03-01T21:11:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=56bbc139bdf118bb43580761d7b90262484924f7'/>
<id>56bbc139bdf118bb43580761d7b90262484924f7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>examples: add device disconnect example</title>
<updated>2010-07-15T00:49:20+00:00</updated>
<author>
<name>Dan Williams</name>
<email>dcbw@redhat.com</email>
</author>
<published>2010-07-15T00:49:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=72399bfa2cab6de881518b4b473c5b2a76f058b8'/>
<id>72399bfa2cab6de881518b4b473c5b2a76f058b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
