Cleanup of mostly asset files

- Fixes for all files
 - constexpr cleanup
 - Cosmetic changes
 - Remove punctuation from the end of messages
This commit is contained in:
Alexander Bock
2022-07-28 17:21:59 +02:00
parent 0494343a58
commit 163ac4dcef
928 changed files with 2834 additions and 2858 deletions

View File

@@ -44,32 +44,32 @@ namespace {
constexpr openspace::properties::Property::PropertyInfo ServerProcessEnabledInfo = {
"ServerProcessEnabled",
"Enable Server Process",
"Enable the node js based process used to serve the Web GUI."
"Enable the node js based process used to serve the Web GUI"
};
constexpr openspace::properties::Property::PropertyInfo AddressInfo = {
"Address",
"Address",
"The network address to use when connecting to OpenSpace from the Web GUI."
"The network address to use when connecting to OpenSpace from the Web GUI"
};
constexpr openspace::properties::Property::PropertyInfo PortInfo = {
"Port",
"Port",
"The network port to use when serving the Web GUI over HTTP."
"The network port to use when serving the Web GUI over HTTP"
};
constexpr openspace::properties::Property::PropertyInfo WebSocketInterfaceInfo = {
"WebSocketInterface",
"WebSocket Interface",
"The identifier of the websocket interface to use when communicating."
"The identifier of the websocket interface to use when communicating"
};
constexpr openspace::properties::Property::PropertyInfo ServerProcessEntryPointInfo =
{
"ServerProcessEntryPoint",
"Server Process Entry Point",
"The node js command to invoke."
"The node js command to invoke"
};
constexpr openspace::properties::Property::PropertyInfo DirectoriesInfo = {
@@ -77,24 +77,23 @@ namespace {
"Directories",
"Directories from which to to serve static content, as a string list "
"with entries expressed as pairs, where every odd is the endpoint name and every "
"even is the directory.",
"even is the directory",
};
constexpr openspace::properties::Property::PropertyInfo DefaultEndpointInfo = {
"DefaultEndpoint",
"Default Endpoint",
"The 'default' endpoint. "
"The server will redirect http requests from / to /<DefaultEndpoint>",
"The 'default' endpoint. The server will redirect http requests from / to "
"/<DefaultEndpoint>"
};
constexpr openspace::properties::Property::PropertyInfo ServedDirectoriesInfo = {
"ServedDirectories",
"ServedDirectories",
"Directories that are currently served. This value is set by the server process, "
"as a verification of the actually served directories. For example, an onChange "
"callback can be registered to this, to reload browsers when the server is ready."
"Manual changes to this property have no effect."
"callback can be registered to this, to reload browsers when the server is "
"ready. Manual changes to this property have no effect"
};
struct [[codegen::Dictionary(WebGuiModule)]] Parameters {