| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | libnm: make the the use of GInitable mandatory | Dan Winship | 2014-08-01 | 4 | -4/+4 |
| | | | | | | | | | | | | Remove _nm_object_ensure_inited(), etc; objects that implement GInitable are now mandatory-to-init(). Remove constructor() implementations that sometimes return NULL; do all the relevant checking in init() instead. Make nm_client_new() and nm_remote_settings_new() take a GCancellable and a GError**. | ||||
| * | all: port everything to libnm | Dan Winship | 2014-08-01 | 8 | -41/+39 |
| | | | | | | | | | | | | Since the API has not changed at this point, this is mostly just a matter of updating Makefiles, and changing references to the library name in comments. NetworkManager cannot link to libnm due to the duplicated type/symbol names. So it links to libnm-core.la directly, which means that NetworkManager gets a separate copy of that code from libnm.so. Everything else links to libnm. | ||||
| * | examples: add Python dbus example indicating if WWAN is the default connection | Dan Williams | 2014-06-20 | 2 | -1/+80 |
| | | |||||
| * | examples: add Python D-Bus and GI examples for updating IPv4 setting method | Dan Williams | 2014-06-10 | 4 | -2/+182 |
| | | |||||
| * | examples: fix Makefile.am to include all Python examples for distribution | Jiří Klimeš | 2014-03-07 | 1 | -1/+1 |
| | | |||||
| * | example: simplify get-active-connections.py by using ID and Type properties | Jiří Klimeš | 2014-03-05 | 1 | -16/+3 |
| | | |||||
| * | examples: add a GOI Python example for getting active connections | Jiří Klimeš | 2014-03-03 | 2 | -1/+49 |
| | | |||||
| * | examples: also print type of active connections | Jiří Klimeš | 2014-03-03 | 1 | -1/+1 |
| | | |||||
| * | examples: a Python GOI example for adding connections persistent vs. not saved | Jiří Klimeš | 2014-01-24 | 2 | -1/+103 |
| | | |||||
| * | examples: update get_ips.py python example for DNS information | Jiří Klimeš | 2014-01-23 | 1 | -4/+40 |
| | | |||||
| * | examples: add an python example (using GI) getting device IPs | Jiří Klimeš | 2014-01-16 | 2 | -1/+129 |
| | | |||||
| * | docs: update documentation links | William Jon McCann | 2013-12-17 | 2 | -2/+2 |
| | | | | | Various GNOME services moved around so links need updating. | ||||
| * | examples: update examples for new device types | Jiří Klimeš | 2013-11-29 | 1 | -1/+6 |
| | | |||||
| * | examples: add an python example (using GI) showing Wi-Fi networks | Jiří Klimeš | 2013-09-26 | 2 | -1/+75 |
| | | |||||
| * | examples: use GLib.MainLoop instead of deprecated GObject.MainLoop in python | Jiri Popelka | 2013-09-24 | 3 | -6/+6 |
| | | | | | | jklimes: made the change for new firewall-zone.py example as well. | ||||
| * | examples: group python examples - dbus vs. gi | Jiří Klimeš | 2013-09-24 | 16 | -14/+17 |
| | | | | | | Move examples using dbus-python ('dbus' module) and GObject introspection into their own directories. | ||||
| * | examples: add a python example getting/setting zone property using GI | Jiří Klimeš | 2013-09-24 | 2 | -1/+89 |
| | | |||||
| * | trivial: minor code cleanup in examples/python | Thomas Haller | 2013-08-06 | 3 | -7/+7 |
| | | | | | | | | There where cases, where TAB was mixed with SPACES. Replace TAB with SPACES. Additionally, make the script nm-state.py executable Signed-off-by: Thomas Haller <thaller@redhat.com> | ||||
| * | libnm-util: Fix transfer annotations of nm_{connection,setting}_need_secrets() | Martin Pitt | 2013-04-19 | 1 | -4/+2 |
| | | | | | | | | | | | | The various need_secrets() implementation do allocate a fresh GPtrArray, but add static strings to them without dup'ing. Thus callers must _not_ free the array elements, only the array itself. Adjust documentation and annotations accordingly. Also adjust the corresponding comment in the goi-list-connections.py example. https://bugzilla.gnome.org/show_bug.cgi?id=698175 | ||||
| * | examples: fix nm-state.py example | Jiří Klimeš | 2012-12-07 | 1 | -3/+18 |
| | | |||||
| * | examples: fix python example file names in EXTRA_DIST | Jiří Klimeš | 2012-09-24 | 1 | -1/+2 |
| | | |||||
| * | examples: fix add-system-connection.py -> add-connection.py rename | Jiří Klimeš | 2012-09-24 | 1 | -1/+1 |
| | | | | | | It fixes 'make dist' that fails otherwise. Found by pavlix. | ||||
| * | examples: port update-secrets example to NM 0.9 API | Jiří Klimeš | 2012-08-29 | 1 | -37/+32 |
| | | |||||
| * | examples: add IP converting functions and rename add-system-connection.py | Jiří Klimeš | 2012-08-24 | 1 | -6/+21 |
| | | |||||
| * | examples: update examples for new device types | Jiří Klimeš | 2012-08-24 | 1 | -3/+7 |
| | | |||||
| * | examples: add a python GObject Introspection example | Jiří Klimeš | 2012-06-13 | 2 | -1/+66 |
| | | | | | It demonstrates getting NMIP4Config object after activating a device. | ||||
| * | examples: add simply python GObject Introspection example | Dan Williams | 2012-06-11 | 2 | -1/+54 |
| | | | | | | | | | | | | | 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 | ||||
| * | examples: correct a comment in list-devices.py example | Jiří Klimeš | 2011-09-20 | 1 | -1/+1 |
| | | |||||
| * | examples: fix list-connections.py to work with 0.9's GetSecrets() API | Jiří Klimeš | 2011-09-20 | 1 | -18/+16 |
| | | |||||
| * | examples: add python example for listing devices | Dan Williams | 2011-09-15 | 2 | -3/+76 |
| | | |||||
| * | examples: fix up active connection example | Dan Williams | 2011-08-06 | 1 | -7/+17 |
| | | |||||
| * | examples: make some examples executable | Dan Williams | 2011-08-05 | 3 | -0/+0 |
| | | |||||
| * | examples: new example for printing active connection list | Dan Williams | 2011-08-05 | 2 | -1/+48 |
| | | |||||
| * | use /usr/bin/env instead of /bin/env | Michael Biebl | 2011-03-29 | 8 | -8/+8 |
| | | |||||
| * | examples: port system wifi example to NM 0.9 | Dan Williams | 2011-03-02 | 1 | -4/+3 |
| | | |||||
| * | examples: simplify system wifi connection example | Dan Williams | 2011-03-02 | 1 | -2/+1 |
| | | |||||
| * | examples: new example for adding system WPA EAP-TLS wifi connection | Dan Williams | 2011-03-02 | 2 | -0/+66 |
| | | |||||
| * | Merge remote-tracking branch 'origin/rm-userset' | Dan Williams | 2011-02-12 | 4 | -26/+20 |
| |\ | | | | | | | There; it's merged. Yay! | ||||
| | * | Merge remote branch 'origin/master' into rm-userset | Dan Williams | 2011-01-12 | 1 | -2/+2 |
| | |\ | |||||
| | * | | NetworkMangerSettings -> NetworkManager.Settings | Daniel Gnoutcheff | 2010-08-07 | 4 | -12/+12 |
| | | | | | | | | | | | | | | | | | | | | | | Just for consistency, make settings related stuff live under the org.freedesktop.NetworkManager namespace, rather than its own org.freedesktop.NetworkManagerSettings namespace. Renames are done for DBus interface names, DBus object paths, and polkit actions. | ||||
| | * | | DBus: merge NetworkManger{,SystemSettings} | Daniel Gnoutcheff | 2010-08-07 | 3 | -7/+7 |
| | | | | | | | | | | | | | | | | | | | | | | Remove the org.freedesktop.NetworkManagerSystemSettings bus name and have everybody talk to org.freedesktop.NetworkManager. Now that we have a single settings service that's embedded in the main daemon, we don't need separate names anymore. | ||||
| | * | | examples: update for user settings removal | Daniel Gnoutcheff | 2010-08-07 | 3 | -15/+9 |
| | | | | | | | | | | | | | | | | Some of the example code broke when we removed user settings services. Oops! | ||||
| * | | | examples: add update secrets example | Jiří Klimeš | 2011-01-31 | 1 | -0/+121 |
| | |/ |/| | |||||
| * | | examples: fix querying active connections | Dan Williams | 2010-11-23 | 1 | -3/+3 |
| |/ | |||||
| * | examples: add device disconnect example | Dan Williams | 2010-07-14 | 2 | -1/+64 |
| | | |||||
| * | examples: fix a prefix | Jiří Klimeš | 2010-05-06 | 1 | -1/+1 |
| | | |||||
| * | examples: add example printing out all BSSIDs we can see | Dan Williams | 2010-04-29 | 2 | -1/+80 |
| | | |||||
| * | examples: add example for listing connections | Dan Williams | 2010-04-28 | 2 | -1/+116 |
| | | |||||
| * | examples: add Tambet's VPN auto-activate example | Dan Williams | 2010-02-24 | 1 | -0/+152 |
| | | |||||
| * | examples: add license headers | Dan Williams | 2010-02-24 | 2 | -0/+34 |
| | | |||||
