Cleaning up app names, descriptions and categories.

Change-Id: I684fdf23fcd8a8078d82bc6ff5e3d1af664b20c2
This commit is contained in:
Thomas Vachuska 2017-08-28 10:47:48 -07:00
parent 4070c04945
commit c98aa2a8a8
12 changed files with 47 additions and 38 deletions

View File

@ -5,9 +5,10 @@ BUNDLES = [
'//apps/faultmanagement/fmweb:onos-apps-faultmanagement-fmweb', '//apps/faultmanagement/fmweb:onos-apps-faultmanagement-fmweb',
] ]
onos_app ( onos_app(
title = 'Fault Management', title = 'Fault Management',
description = 'ONOS fault management application', description = 'Provides managements of alarms. Stores retrieved alarms from devices. ' +
'Offers CLI, UI and REST integration to obtain and display them from ONOS.',
category = 'Monitoring', category = 'Monitoring',
url = 'https://wiki.onosproject.org/display/ONOS/Fault+Management', url = 'https://wiki.onosproject.org/display/ONOS/Fault+Management',
included_bundles = BUNDLES, included_bundles = BUNDLES,

View File

@ -20,9 +20,10 @@ osgi_jar_with_tests(
onos_app( onos_app(
app_name = 'org.onosproject.netconfsb', app_name = 'org.onosproject.netconfsb',
title = 'NETCONF Device Configuration', title = 'NETCONF Protocol Subsystem',
category = 'Protocol', category = 'Protocol',
url = 'http://onosproject.org', url = 'http://onosproject.org',
description = 'Extension to allow ONOS to configure NETCONF devices.', description = 'Exposes APIs to establish NETCONF connections to devices and to send and receive ' +
'messages and asynchronous notifications over such connection.',
required_apps = APPS, required_apps = APPS,
) )

View File

@ -5,8 +5,8 @@ BUNDLES = [
] ]
onos_app ( onos_app (
title = 'Network Trouble-Shooter', title = 'Network Troubleshooter',
description = 'ONOS Network Trouble-Shooting utility', description = 'Provides various network troubleshooting utilities.',
category = 'Utility', category = 'Utility',
url = 'https://wiki.onosproject.org/display/ONOS/Network+TroubleShooting+Module', url = 'https://wiki.onosproject.org/display/ONOS/Network+TroubleShooting+Module',
included_bundles = BUNDLES, included_bundles = BUNDLES,

View File

@ -11,7 +11,7 @@ osgi_jar_with_tests (
onos_app ( onos_app (
title = 'PCEP Protocol API', title = 'PCEP Protocol API',
category = 'Traffic Steering', category = 'Protocol',
url = 'http://onosproject.org', url = 'http://onosproject.org',
description = 'PCEP protocol API.', description = 'PCEP protocol API.',
) )

View File

@ -69,7 +69,7 @@ def yang_model(
onos_app ( onos_app (
app_name = app_name, app_name = app_name,
title = title, title = title,
category = 'Model', category = 'Models',
url = url, url = url,
description = description, description = description,
required_apps = [ 'org.onosproject.yang' ], required_apps = [ 'org.onosproject.yang' ],

View File

@ -17,7 +17,7 @@ osgi_jar(
onos_app ( onos_app (
app_name = 'org.onosproject.drivers.p4runtime', app_name = 'org.onosproject.drivers.p4runtime',
title = 'P4 Runtime Drivers', title = 'P4Runtime Drivers',
category = 'Drivers', category = 'Drivers',
url = 'http://onosproject.org', url = 'http://onosproject.org',
description = 'Adds support for devices using P4 Runtime protocol.', description = 'Adds support for devices using P4 Runtime protocol.',

View File

@ -33,6 +33,8 @@ onos_app (
title = 'gRPC Protocol Subsystem', title = 'gRPC Protocol Subsystem',
category = 'Protocol', category = 'Protocol',
url = 'http://onosproject.org', url = 'http://onosproject.org',
description = 'ONOS gRPC protocol subsystem', description = 'Exposes APIs to setup, manage and teardown gRPC Managed channels with devices. ' +
'Also offers channel observer registration and removal capabilities. ' +
'The exposed APis abstract low level channel operations.',
included_bundles = BUNDLES, included_bundles = BUNDLES,
) )

View File

@ -13,10 +13,12 @@ EXCLUDED_BUNDLES = [
onos_app ( onos_app (
title = 'NETCONF Provider', title = 'NETCONF Provider',
category = 'Provider', category = 'Provider',
url = 'http://onosproject.org', url = 'https://wiki.onosproject.org/display/ONOS/NETCONF',
included_bundles = BUNDLES, included_bundles = BUNDLES,
excluded_bundles = EXCLUDED_BUNDLES, excluded_bundles = EXCLUDED_BUNDLES,
description = 'NETCONF protocol southbound providers.', description = 'Provides means for ONOS to discover and trigger the initial handshake procedure ' +
'with NETCONF from information given by network configuration.' +
'Also provides capabilities for receiving asynchronous alarm notifications from devices.',
required_apps = [ 'org.onosproject.faultmanagement'], required_apps = [ 'org.onosproject.faultmanagement'],
) )

View File

@ -17,7 +17,7 @@ onos_app (
app_name = 'org.onosproject.openflow-base', app_name = 'org.onosproject.openflow-base',
title = 'OpenFlow Base Provider', title = 'OpenFlow Base Provider',
category = 'Provider', category = 'Provider',
url = 'http://onosproject.org', url = 'https://wiki.onosproject.org/display/ONOS/OpenFlow',
description = 'Provides the base suite of device, flow and packet providers that rely on the ' + description = 'Provides the base suite of device, flow and packet providers that rely on the ' +
'OpenFlow protocol to interact with network devices.', 'OpenFlow protocol to interact with network devices.',
included_bundles = BUNDLES, included_bundles = BUNDLES,

View File

@ -12,8 +12,9 @@ onos_app (
app_name = 'org.onosproject.restsb', app_name = 'org.onosproject.restsb',
title = 'REST Provider', title = 'REST Provider',
category = 'Provider', category = 'Provider',
url = 'http://onosproject.org', url = 'https://wiki.onosproject.org/display/ONOS/REST',
included_bundles = BUNDLES, included_bundles = BUNDLES,
description = 'REST protocol southbound providers.', description = 'Provides means for ONOS to discover the existence of a REST API enabled device ' +
'or proxy for multiple devices from information given by network configuration.',
) )

View File

@ -13,7 +13,8 @@ onos_app (
app_name = 'org.onosproject.snmp', app_name = 'org.onosproject.snmp',
title = 'SNMP Provider', title = 'SNMP Provider',
category = 'Provider', category = 'Provider',
url = 'http://onosproject.org', url = 'https://wiki.onosproject.org/display/ONOS/SNMP',
included_bundles = BUNDLES, included_bundles = BUNDLES,
description = 'SNMP providers.', description = 'Provides means for ONOS to discover and trigger the initial handshake procedure ' +
'with SNMP enabled devices from information given by network configuration.',
) )

View File

@ -7,7 +7,8 @@ onos_app (
app_name = 'org.onosproject.tl1', app_name = 'org.onosproject.tl1',
title = 'TL1 Provider', title = 'TL1 Provider',
category = 'Provider', category = 'Provider',
url = 'http://onosproject.org', url = 'https://wiki.onosproject.org/display/ONOS/TL1',
included_bundles = BUNDLES, included_bundles = BUNDLES,
description = 'TL1 protocol southbound providers.', description = 'Provides means for ONOS to discover and trigger the initial handshake procedure ' +
'with TL1 enable devices from information given by network configuration.',
) )