Changes between Version 232 and Version 233 of WikiStart
- Timestamp:
- 08/19/19 14:20:18 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v232 v233 74 74 }} 75 75 }}} 76 77 * The issueValues contains a dictionary with issues. Each issue is indicated by a name (a string), followed by a column (:) and then a dictionary. The dictionary can contain either a discrete valueset or a number valueset 78 * a discrete valueset looks like "values", a column and then a list of discrete values (all strings) 79 * a number valueset contains a range of numbers and looks like {{{ {"range":[12.2,12.6,0.3]} }}} so "range:" followed by a list of 3 values. The first value is the minimum value in the range, the second the maximum value in the range, and the third the step value. This example range thus contains 12.2 and 12.5 (the next one would be 12.8 but that is already outside the range). 76 80 77 81 When describing the domain, the set of allowed values has to be given. A domain looks like this … … 90 94 91 95 * The name is just a string. Our reference implementation of the profiles server additionally requires that the name must match the filename and directory name when placed on the profiles server. So your directory must be domainsrepo/jobs and the filename must be jobs.json. 92 * The issueValues contains a dictionary with issues. Each issue is indicated by a name (a string), followed by a column (:) and then a dictionary. The dictionary can contain either a discrete valueset or a number valueset 93 * a discrete valueset looks like "values", a column and then a list of discrete values (all strings) 94 * a number valueset contains a range of numbers and looks like {{{ {"range":[12.2,12.6,0.3]} }}} so "range:" followed by a list of 3 values. The first value is the minimum value in the range, the second the maximum value in the range, and the third the step value. This example range thus contains 12.2 and 12.5 (the next one would be 12.8 but that is already outside the range). 96 95 97 96 98 If you write a java-based party, these objects may already have been converted to Java objects. Please check [source:issuevalue/src/main/java/geniusweb/issuevalue] for conversion details.