From e5e46f489e9d89bdecb4c4948b0d9627e33555cc Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Tue, 10 Jul 2012 11:15:23 +0200 Subject: core: merge `MMPluginBase' and `MMPlugin' There's no real point in maintaining a separate `MMPlugin' interface, as all the plugins will inherit from `MMPluginBase', so just merge them and simplify everything. --- docs/reference/api/ModemManager-overview.xml | 74 ++++++++++++++-------------- 1 file changed, 37 insertions(+), 37 deletions(-) (limited to 'docs/reference/api/ModemManager-overview.xml') diff --git a/docs/reference/api/ModemManager-overview.xml b/docs/reference/api/ModemManager-overview.xml index 55dbca49..dee7b5ae 100644 --- a/docs/reference/api/ModemManager-overview.xml +++ b/docs/reference/api/ModemManager-overview.xml @@ -99,8 +99,8 @@ launched as requested by the given plugin. - This filter is specified by the MM_PLUGIN_BASE_ALLOWED_VENDOR_IDS - property in the MMPluginBase object provided + This filter is specified by the MM_PLUGIN_ALLOWED_VENDOR_IDS + property in the MMPlugin object provided by the plugin. @@ -118,8 +118,8 @@ expected to work only with a given specific product of a given vendor. - This filter is specified by the MM_PLUGIN_BASE_ALLOWED_PRODUCT_IDS - property in the MMPluginBase object provided + This filter is specified by the MM_PLUGIN_ALLOWED_PRODUCT_IDS + property in the MMPlugin object provided by the plugin. @@ -130,8 +130,8 @@ any port detected with a subsystem not listed by the plugin. - This filter is specified by the MM_PLUGIN_BASE_ALLOWED_SUBSYSTEMS - property in the MMPluginBase object provided + This filter is specified by the MM_PLUGIN_ALLOWED_SUBSYSTEMS + property in the MMPlugin object provided by the plugin. @@ -142,8 +142,8 @@ any port detected being managed by a driver not listed by the plugin. - This filter is specified by the MM_PLUGIN_BASE_ALLOWED_DRIVERS - property in the MMPluginBase object provided + This filter is specified by the MM_PLUGIN_ALLOWED_DRIVERS + property in the MMPlugin object provided by the plugin. @@ -154,8 +154,8 @@ any port detected which doesn't expose any of the given tags. - This filter is specified by the MM_PLUGIN_BASE_ALLOWED_UDEV_TAGS - property in the MMPluginBase object provided + This filter is specified by the MM_PLUGIN_ALLOWED_UDEV_TAGS + property in the MMPlugin object provided by the plugin. @@ -186,8 +186,8 @@ AT or not. - This configuration is specified by the MM_PLUGIN_BASE_CUSTOM_INIT - property in the MMPluginBase object provided + This configuration is specified by the MM_PLUGIN_CUSTOM_INIT + property in the MMPlugin object provided by the plugin. @@ -198,8 +198,8 @@ AT serial ports. - This configuration is specified by the MM_PLUGIN_BASE_ALLOWED_AT - property in the MMPluginBase object provided + This configuration is specified by the MM_PLUGIN_ALLOWED_AT + property in the MMPlugin object provided by the plugin. @@ -211,8 +211,8 @@ in ports of the same device will get cancelled. - This configuration is specified by the MM_PLUGIN_BASE_ALLOWED_SINGLE_AT - property in the MMPluginBase object provided + This configuration is specified by the MM_PLUGIN_ALLOWED_SINGLE_AT + property in the MMPlugin object provided by the plugin. @@ -223,8 +223,8 @@ QCDM serial ports. - This configuration is specified by the MM_PLUGIN_BASE_ALLOWED_QCDM - property in the MMPluginBase object provided + This configuration is specified by the MM_PLUGIN_ALLOWED_QCDM + property in the MMPlugin object provided by the plugin. @@ -250,8 +250,8 @@ it can handle this modem. - This filter is specified by the MM_PLUGIN_BASE_ALLOWED_VENDOR_STRINGS - property in the MMPluginBase object provided + This filter is specified by the MM_PLUGIN_ALLOWED_VENDOR_STRINGS + property in the MMPlugin object provided by the plugin. @@ -268,8 +268,8 @@ expected to work only with a given specific product of a given vendor. - This filter is specified by the MM_PLUGIN_BASE_ALLOWED_PRODUCT_STRINGS - property in the MMPluginBase object provided + This filter is specified by the MM_PLUGIN_ALLOWED_PRODUCT_STRINGS + property in the MMPlugin object provided by the plugin. @@ -304,15 +304,15 @@ mm_plugin_create (void) return MM_PLUGIN ( g_object_new (MM_TYPE_PLUGIN_IRIDIUM, - MM_PLUGIN_BASE_NAME, "Example", + MM_PLUGIN_NAME, "Example", /* Next items are pre-probing filters */ - MM_PLUGIN_BASE_ALLOWED_SUBSYSTEMS, subsystems, - MM_PLUGIN_BASE_ALLOWED_VENDOR_IDS, vendor_ids, - MM_PLUGIN_BASE_ALLOWED_PRODUCT_IDS, product_ids, + MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems, + MM_PLUGIN_ALLOWED_VENDOR_IDS, vendor_ids, + MM_PLUGIN_ALLOWED_PRODUCT_IDS, product_ids, /* Next items are probing sequence setup */ - MM_PLUGIN_BASE_ALLOWED_AT, TRUE, + MM_PLUGIN_ALLOWED_AT, TRUE, /* No post-probing filters */ NULL)); @@ -332,17 +332,17 @@ mm_plugin_create (void) return MM_PLUGIN ( g_object_new (MM_TYPE_PLUGIN_IRIDIUM, - MM_PLUGIN_BASE_NAME, "Example", + MM_PLUGIN_NAME, "Example", /* Next items are pre-probing filters */ - MM_PLUGIN_BASE_ALLOWED_SUBSYSTEMS, subsystems, + MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems, /* Next items are probing sequence setup */ - MM_PLUGIN_BASE_ALLOWED_AT, TRUE, + MM_PLUGIN_ALLOWED_AT, TRUE, /* Next items are post-probing filters */ - MM_PLUGIN_BASE_VENDOR_STRINGS, vendor_strings, - MM_PLUGIN_BASE_PRODUCT_STRINGS, product_strings, + MM_PLUGIN_VENDOR_STRINGS, vendor_strings, + MM_PLUGIN_PRODUCT_STRINGS, product_strings, NULL)); } @@ -381,15 +381,15 @@ mm_plugin_create (void) return MM_PLUGIN ( g_object_new (MM_TYPE_PLUGIN_NOKIA, - MM_PLUGIN_BASE_NAME, "Example", + MM_PLUGIN_NAME, "Example", /* Next items are pre-probing filters */ - MM_PLUGIN_BASE_ALLOWED_SUBSYSTEMS, subsystems, - MM_PLUGIN_BASE_ALLOWED_VENDOR_IDS, vendor_ids, + MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems, + MM_PLUGIN_ALLOWED_VENDOR_IDS, vendor_ids, /* Next items are probing sequence setup */ - MM_PLUGIN_BASE_CUSTOM_INIT, custom_init, - MM_PLUGIN_BASE_ALLOWED_AT, TRUE, + MM_PLUGIN_CUSTOM_INIT, custom_init, + MM_PLUGIN_ALLOWED_AT, TRUE, /* No post-probing filters */ NULL)); -- cgit v1.2.3-70-g09d2