<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/NetworkManager.git/contrib/scripts/NM-log, branch th/fix-python-test</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>platform: add routing-rule add/delete netlink functions</title>
<updated>2019-03-13T08:03:59+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2019-03-05T11:13:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=9992ac1cf83bd8657aef23a828c4dc3048d7b915'/>
<id>9992ac1cf83bd8657aef23a828c4dc3048d7b915</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: set shift for less in NM-log</title>
<updated>2019-03-13T08:03:58+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2019-03-05T14:04:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=bfd6d608e2cc8cf0f96063ecd2262339ce3d8a6e'/>
<id>bfd6d608e2cc8cf0f96063ecd2262339ce3d8a6e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: adjust NM-log for changes to platform logging</title>
<updated>2018-12-30T14:17:11+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2018-12-29T01:32:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=cce3c0c63db39156c2dd8fd192231d388f17bbee'/>
<id>cce3c0c63db39156c2dd8fd192231d388f17bbee</id>
<content type='text'>
Fixes: 8f107f5c00258c7a4fb780a25f299af6f116f575
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: 8f107f5c00258c7a4fb780a25f299af6f116f575
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: adjust NM-log for changes to platform logging</title>
<updated>2018-10-23T10:03:59+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2018-10-23T10:03:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=6978558e8c3adb518b07988a5de5bf52fa8bc260'/>
<id>6978558e8c3adb518b07988a5de5bf52fa8bc260</id>
<content type='text'>
Fixes: 8f107f5c00258c7a4fb780a25f299af6f116f575
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: 8f107f5c00258c7a4fb780a25f299af6f116f575
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: add -h option to NM-log</title>
<updated>2018-02-12T12:06:49+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2018-02-12T09:53:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=3d4181294508d4493355afd06d4f56ea47bba9d9'/>
<id>3d4181294508d4493355afd06d4f56ea47bba9d9</id>
<content type='text'>
Pass "-h" to highlight individual words.
"-h" stands for "highlight".

  $ NM-log -h wlan0 j
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Pass "-h" to highlight individual words.
"-h" stands for "highlight".

  $ NM-log -h wlan0 j
</pre>
</div>
</content>
</entry>
<entry>
<title>platform: merge nm_platform_*_delete() delete functions</title>
<updated>2017-12-11T09:30:26+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2017-11-29T12:10:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=7573594a2182d141e85b5fc1cb376b7e78a40853'/>
<id>7573594a2182d141e85b5fc1cb376b7e78a40853</id>
<content type='text'>
It only makes sense to call delete() with NMPObjects that
we obtained from the platform cache. Otherwise, if we didn't
get it from the cache in the first place, we wouldn't know
what to delete.

Hence, the input argument is (almost) always an NMPObject
in the first place. That is different from add(), where
we might create a new specific NMPlatform* instance on the
stack. For add() it makes slightly more sense to have different
functions depending on the type. For delete(), it doesn't.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It only makes sense to call delete() with NMPObjects that
we obtained from the platform cache. Otherwise, if we didn't
get it from the cache in the first place, we wouldn't know
what to delete.

Hence, the input argument is (almost) always an NMPObject
in the first place. That is different from add(), where
we might create a new specific NMPlatform* instance on the
stack. For add() it makes slightly more sense to have different
functions depending on the type. For delete(), it doesn't.
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib: use less in NM-log to pre-process input</title>
<updated>2017-11-21T14:14:32+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2017-11-21T13:54:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=8649fcf02ad0646ebbf2daea2ededd0ee4a5745a'/>
<id>8649fcf02ad0646ebbf2daea2ededd0ee4a5745a</id>
<content type='text'>
GNU less supports filters. That makes it nice to use instead of cat.
Also, less is well suited for output to a pipe.

With this, `NM-log nm-log.txt.gz` works as you would expect
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GNU less supports filters. That makes it nice to use instead of cat.
Also, less is well suited for output to a pipe.

With this, `NM-log nm-log.txt.gz` works as you would expect
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/scripts: fix coloring for platform messages in NM-log for old logs</title>
<updated>2017-10-03T13:35:56+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2017-10-03T13:35:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=102a58bb623a7df214e3127d70cba114584a211e'/>
<id>102a58bb623a7df214e3127d70cba114584a211e</id>
<content type='text'>
Older logfiles contain

  platform: route: adding or updating IPv4 route: 10.1.0

Hightlight that too.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Older logfiles contain

  platform: route: adding or updating IPv4 route: 10.1.0

Hightlight that too.
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/scripts: update coloring for platform messages in NM-log (2)</title>
<updated>2017-09-25T16:36:08+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2017-09-25T16:35:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=18f53a8b308d97a0b5be2d2269a9f4f2f976f7ca'/>
<id>18f53a8b308d97a0b5be2d2269a9f4f2f976f7ca</id>
<content type='text'>
Fixes: 9344013977bee9d17413a4ab18ad13a4b2244ac3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: 9344013977bee9d17413a4ab18ad13a4b2244ac3
</pre>
</div>
</content>
</entry>
<entry>
<title>contrib/scripts: update coloring for platform messages in NM-log</title>
<updated>2017-09-25T13:13:02+00:00</updated>
<author>
<name>Thomas Haller</name>
<email>thaller@redhat.com</email>
</author>
<published>2017-09-25T12:54:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/NetworkManager.git/commit/?id=9344013977bee9d17413a4ab18ad13a4b2244ac3'/>
<id>9344013977bee9d17413a4ab18ad13a4b2244ac3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
