mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-05 19:19:39 -06:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user