Imported Upstream version 2.7.4

This commit is contained in:
Laurent Bigonville 2016-07-18 02:11:41 +02:00
parent fd413a3168
commit c9cb2187ee
290 changed files with 7473 additions and 2607 deletions

View file

@ -132,10 +132,18 @@ Response:
- 'RW': this variable may be set to another value with SET
- 'ENUM': an enumerated type, which supports a few specific values
- 'STRING:n': this is a string of maximum length n
- 'RANGE': this is an integer, comprised in the range (see LIST RANGE)
- 'RANGE': this is an numeric, either integer or float, comprised in the range (see LIST RANGE)
- 'NUMBER': this is a simple numeric value, either integer or float
ENUM, STRING and RANGE are usually associated with RW, but not always.
The default <type>, when omitted, is integer.
The default <type>, when omitted, is numeric, so either integer or float. Each
driver is then responsible for handling values as either integer or float.
Note that float values are expressed using decimal (base 10) english-based
representation, so using a dot, in non-scientific notation. So hexadecimal,
exponents, and comma for thousands separator are forbidden.
For example: "1200.20" is valid, while "1,200.20" and "1200,20" are invalid.
This replaces the old "VARTYPE" command.