diff --git a/example/eventGenerator/bundle.js b/example/eventGenerator/bundle.js index 9a3a435c0f..b77c29e63f 100644 --- a/example/eventGenerator/bundle.js +++ b/example/eventGenerator/bundle.js @@ -32,7 +32,7 @@ define([ legacyRegistry.register("example/eventGenerator", { "name": "Event Message Generator", - "description": "Example of a component that produces event data.", + "description": "For development use. Creates sample event message data that mimics a live data stream.", "extensions": { "components": [ { @@ -49,8 +49,8 @@ define([ { "key": "eventGenerator", "name": "Event Message Generator", - "glyph": "f", - "description": "An event message generator", + "glyph": "\u0066", + "description": "For development use. Creates sample event message data that mimics a live data stream.", "features": "creation", "model": { "telemetry": {} diff --git a/example/generator/bundle.js b/example/generator/bundle.js index 0a055a1bae..323107561c 100644 --- a/example/generator/bundle.js +++ b/example/generator/bundle.js @@ -36,7 +36,7 @@ define([ legacyRegistry.register("example/generator", { "name": "Sine Wave Generator", - "description": "Example of a component that produces dataa.", + "description": "For development use. Generates example streaming telemetry data using a simple sine wave algorithm.", "extensions": { "components": [ { @@ -86,8 +86,8 @@ define([ { "key": "generator", "name": "Sine Wave Generator", - "glyph": "T", - "description": "A sine wave generator", + "glyph": "\u0054", + "description": "For development use. Generates example streaming telemetry data using a simple sine wave algorithm.", "features": "creation", "model": { "telemetry": { diff --git a/example/imagery/bundle.js b/example/imagery/bundle.js index 40d536e840..0cd7eed667 100644 --- a/example/imagery/bundle.js +++ b/example/imagery/bundle.js @@ -49,8 +49,9 @@ define([ { "key": "imagery", "name": "Example Imagery", - "glyph": "T", + "glyph": "\u00e3", "features": "creation", + "description": "For development use. Creates example imagery data that mimics a live imagery stream.", "model": { "telemetry": {} }, diff --git a/example/msl/bundle.js b/example/msl/bundle.js index 47ae45b42c..132878e296 100644 --- a/example/msl/bundle.js +++ b/example/msl/bundle.js @@ -54,7 +54,7 @@ define([ { "name": "Measurement", "key": "msl.measurement", - "glyph": "T", + "glyph": "\u0054", "model": {"telemetry": {}}, "telemetry": { "source": "rems.source", diff --git a/platform/core/bundle.js b/platform/core/bundle.js index 3c56e7e51b..e3a9b188a0 100644 --- a/platform/core/bundle.js +++ b/platform/core/bundle.js @@ -255,14 +255,14 @@ define([ { "key": "root", "name": "Root", - "glyph": "F" + "glyph": "\u0046" }, { "key": "folder", "name": "Folder", - "glyph": "F", + "glyph": "\u0046", "features": "creation", - "description": "Useful for storing and organizing domain objects.", + "description": "Create folders to organize other objects or links to objects.", "model": { "composition": [] } @@ -270,11 +270,11 @@ define([ { "key": "unknown", "name": "Unknown Type", - "glyph": "?" + "glyph": "\u003f" }, { "name": "Unknown Type", - "glyph": "?" + "glyph": "\u003f" } ], "capabilities": [ diff --git a/platform/features/clock/bundle.js b/platform/features/clock/bundle.js index dbc6d42e03..5536a92a1a 100644 --- a/platform/features/clock/bundle.js +++ b/platform/features/clock/bundle.js @@ -157,7 +157,8 @@ define([ { "key": "clock", "name": "Clock", - "glyph": "C", + "glyph": "\u0043", + "description": "A UTC-based clock that supports a variety of display formats. Clocks can be added to Display Layouts.", "features": [ "creation" ], @@ -212,7 +213,8 @@ define([ { "key": "timer", "name": "Timer", - "glyph": "õ", + "glyph": "\u00f5", + "description": "A timer that counts up or down to a datetime. Timers can be started, stopped and reset whenever needed, and support a variety of display formats. Each Timer displays the same value to all users. Timers can be added to Display Layouts.", "features": [ "creation" ], diff --git a/platform/features/layout/bundle.js b/platform/features/layout/bundle.js index 37a7990b99..38b7018921 100644 --- a/platform/features/layout/bundle.js +++ b/platform/features/layout/bundle.js @@ -58,7 +58,7 @@ define([ { "key": "layout", "name": "Display Layout", - "glyph": "L", + "glyph": "\u004c", "type": "layout", "template": layoutTemplate, "editable": true, @@ -82,28 +82,28 @@ define([ "items": [ { "method": "add", - "glyph": "+", + "glyph": "\u002b", "control": "menu-button", "text": "Add", "options": [ { "name": "Box", - "glyph": "à", + "glyph": "\u00e0", "key": "fixed.box" }, { "name": "Line", - "glyph": "â", - "key": "fixed.line" + "glyph": "\u00e2", + "key": "fixed.line" }, { "name": "Text", - "glyph": "ä", + "glyph": "\u00e4", "key": "fixed.text" }, { "name": "Image", - "glyph": "ã", + "glyph": "\u00e3", "key": "fixed.image" } ] @@ -119,22 +119,22 @@ define([ "options": [ { "name": "Move to Top", - "glyph": "^", + "glyph": "\u00eb", "key": "top" }, { "name": "Move Up", - "glyph": "^", + "glyph": "\u005e", "key": "up" }, { "name": "Move Down", - "glyph": "v", + "glyph": "\u005e", "key": "down" }, { "name": "Move to Bottom", - "glyph": "v", + "glyph": "\u00ee", "key": "bottom" } ] @@ -263,8 +263,8 @@ define([ { "key": "layout", "name": "Display Layout", - "glyph": "L", - "description": "A layout in which multiple telemetry panels may be displayed.", + "glyph": "\u004c", + "description": "Assemble other objects and components together into a reusable screen layout. Working in a simple canvas workspace, simply drag in the objects you want, position and size them. Save your design and view or edit it at any time.", "features": "creation", "model": { "composition": [] diff --git a/platform/features/pages/bundle.js b/platform/features/pages/bundle.js index 03ee4c5a07..bbc888d0f3 100644 --- a/platform/features/pages/bundle.js +++ b/platform/features/pages/bundle.js @@ -38,8 +38,8 @@ define([ { "key": "example.page", "name": "Web Page", - "glyph": "ê", - "description": "A component to display a web page or image with a valid URL. Can be added to a Display Layout.", + "glyph": "\u00ea", + "description": "Embed a web page or web-based image in a resizeable window component. Can be added to Display Layouts. Note that the URL being embedded must allow iframing.", "features": [ "creation" ], diff --git a/platform/features/table/bundle.js b/platform/features/table/bundle.js index 2084b5a879..48fd7c22e4 100644 --- a/platform/features/table/bundle.js +++ b/platform/features/table/bundle.js @@ -63,7 +63,7 @@ define([ "key": "table", "name": "Historical Telemetry Table", "glyph": "\ue604", - "description": "A table for displaying historic telemetry data", + "description": "A static table of all values over time for all included telemetry elements. Rows are timestamped data values for each telemetry element; columns are data fields. The number of rows is based on the range of your query. New incoming data must be manually re-queried for.", "features": "creation", "delegates": [ "telemetry" @@ -85,8 +85,7 @@ define([ "key": "rttable", "name": "Real-time Telemetry Table", "glyph": "\ue620", - "description": "A table for displaying real-time telemetry" + - " data", + "description": "A scrolling table of latest values for all included telemetry elements. Rows are timestamped data values for each telemetry element; columns are data fields. New incoming data is automatically added to the view.", "features": "creation", "delegates": [ "telemetry" diff --git a/platform/features/timeline/bundle.js b/platform/features/timeline/bundle.js index f298cb887e..b2c3a62584 100644 --- a/platform/features/timeline/bundle.js +++ b/platform/features/timeline/bundle.js @@ -139,8 +139,8 @@ define([ { "key": "timeline", "name": "Timeline", - "glyph": "S", - "description": "A container for arranging Timelines and Activities in time.", + "glyph": "\u0053", + "description": "A time-oriented container that lets you enclose and organize other Timelines and Activities. The Timeline view provides both tabular and Gantt views as well as resource utilization graphing of Activities.", "features": [ "creation" ], @@ -178,14 +178,14 @@ define([ { "key": "activity", "name": "Activity", - "glyph": "a", + "glyph": "\u0061", "features": [ "creation" ], "contains": [ "activity" ], - "description": "An action that takes place in time. You can define a start time and duration. Activities can be nested within other Activities, or within Timelines.", + "description": "An event or process that starts and ends at a discrete datetime. Activities can be nested in other Activities, and can be added to Timelines. Activity Modes can be added to an Activity to define its resource utilization over time.", "properties": [ { "name": "Start date/time", @@ -217,11 +217,11 @@ define([ { "key": "mode", "name": "Activity Mode", - "glyph": "A", + "glyph": "\u0041", "features": [ "creation" ], - "description": "Define resource utilizations over time, then apply to an Activity.", + "description": "When a sub-system utilizes Power or Communications resources over time, you can define those values in an Activity Mode. Activity Modes can then be linked to Activities to allow resource utilization graphing and estimating in a Timeline.", "model": { "resources": { "comms": 0, @@ -256,7 +256,7 @@ define([ { "key": "values", "name": "Values", - "glyph": "A", + "glyph": "\u0041", "template": valuesTemplate, "type": "mode", "uses": [ @@ -267,9 +267,9 @@ define([ { "key": "timeline", "name": "Timeline", - "glyph": "S", + "glyph": "\u0053", "type": "timeline", - "description": "A timeline view of Timelines and Activities.", + "description": "A time-oriented container that lets you enclose and organize other Timelines and Activities. The Timeline view provides both tabular and Gantt views as well as resource utilization graphing of Activities.", "template": timelineTemplate, "editable": true, "toolbar": { @@ -278,18 +278,18 @@ define([ "items": [ { "method": "add", - "glyph": "+", + "glyph": "\u002b", "control": "menu-button", "text": "Add", "options": [ { "name": "Timeline", - "glyph": "S", + "glyph": "\u0053", "key": "timeline" }, { "name": "Activity", - "glyph": "a", + "glyph": "\u0061", "key": "activity" } ] @@ -299,13 +299,13 @@ define([ { "items": [ { - "glyph": "é", - "description": "Graph resource utilization", + "glyph": "\u00e9", + "description": "Graph Resource Utilization", "control": "button", "method": "toggleGraph" }, { - "glyph": "A", + "glyph": "\u0041", "control": "dialog-button", "description": "Apply Activity Modes...", "title": "Apply Activity Modes", @@ -317,7 +317,7 @@ define([ "property": "modes" }, { - "glyph": "è", + "glyph": "\u00e8", "description": "Edit Activity Link", "title": "Activity Link", "control": "dialog-button", @@ -329,7 +329,7 @@ define([ "property": "link" }, { - "glyph": "G", + "glyph": "\u0047", "description": "Edit Properties...", "control": "button", "method": "properties" @@ -340,9 +340,9 @@ define([ "items": [ { "method": "remove", - "description": "Remove item", + "description": "Remove Item", "control": "button", - "glyph": "Z" + "glyph": "\u005a" } ] }