-
Notifications
You must be signed in to change notification settings - Fork 4
Data Types for Configuration Files
jbvsmo edited this page Sep 8, 2014
·
1 revision
These are the data types accepted on all configuration files for DSS.
Accepted values (Case insensitive): True
/False
, Yes
/No
, On
/Off
, 1
/0
.
enabled = true
color = off
Any number (including integer numbers) to be parsed as a 64-bit float number.
ratio = 1.7
mass = 1.83e-2
sleep = 15
Any integer number (not limited to 32 or 64 bits).
timeout = 10
delay = -5
Comma or space-separated list of elements. Each element is treated as its own data type inferred by evaluation of literal content (e.g.: 1
-> integer, 1.0
-> float, 'foo'
-> string, [1, 2, 3]
-> list). If the content cannot be inferred, it will be treated as a string.
options = foo, bar, baz
number_lists = [1, 2, 3] [4, 5, 6]
colors = red, blue, "light green", #fff, orange
The same as list but in multiple lines (a list of lists).
streams =
foo, [123, 456], "Stream 1"
xyz, [999, 555], "Stream 2"
Space separated list of strings.
options = abc def ghi
Default mode for acquiring content as unicode string. No processing done except whitespace on beginning and end will be trimmed.
test = hello
url = http://foo.bar:8080/baz/1234