Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Gardening. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | schema |
Files: | files | file ages | folders |
SHA3-256: |
74cd3204f11b54d1e923b5142aa9f3e6 |
User & Date: | rolf 2020-03-14 02:48:04 |
Context
2020-03-14
| ||
03:25 | Added flag -ignorematched to the schema command submethod info expected. check-in: 0dc7c2f6cc user: rolf tags: schema | |
02:49 | Merged from schema. check-in: 4582355609 user: rolf tags: wip2 | |
02:48 | Gardening. check-in: 74cd3204f1 user: rolf tags: schema | |
02:45 | Fixed bug in case of missing required attributes w/ reportCmd. check-in: c24f9bedb3 user: rolf tags: schema | |
Changes
Changes to generic/schema.c.
3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 |
if (sdata->stack->pattern->numReqAttr) {
/* probeDomAttributes fills interp result with a msg
* which required attributes are missing in case of no
* reportCmd. In case of reportCmd
* probeDomAttributes() returns only error in the case
* of error in called scripts. */
if (probeDomAttributes (interp, sdata, NULL) != TCL_OK) {
/* fprintf (stderr, "HIER\n"); */
return TCL_ERROR;
}
}
}
}
if (sdata->stack->pattern->domKeys) {
|
< |
3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 |
if (sdata->stack->pattern->numReqAttr) { /* probeDomAttributes fills interp result with a msg * which required attributes are missing in case of no * reportCmd. In case of reportCmd * probeDomAttributes() returns only error in the case * of error in called scripts. */ if (probeDomAttributes (interp, sdata, NULL) != TCL_OK) { return TCL_ERROR; } } } } if (sdata->stack->pattern->domKeys) { |