Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Documentation updates for custom TH1 commands. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
874a4dac8cca5ac1e105d2a4e4c9232c |
| User & Date: | mistachkin 2018-09-11 17:47:59.464 |
Context
|
2018-09-12
| ||
| 12:32 | Moved a single-use variable interpolation inline with its use point. Also improved some comments. ... (check-in: 56db6170e8 user: wyoung tags: trunk) | |
|
2018-09-11
| ||
| 17:47 | Documentation updates for custom TH1 commands. ... (check-in: 874a4dac8c user: mistachkin tags: trunk) | |
| 14:29 | Compile openssl with option no-weak-ssl-ciphers (or -DOPENSSL_NO_WEAK_SSL_CIPHERS) Update custum Makefile.mingw ... (check-in: 58b7b4e51c user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/th_main.c.
| ︙ | ︙ | |||
1252 1253 1254 1255 1256 1257 1258 | Th_SetResult(interp, 0, 0); return rc; } /* ** TH1 command: styleHeader TITLE ** | | | 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 | Th_SetResult(interp, 0, 0); return rc; } /* ** TH1 command: styleHeader TITLE ** ** Render the configured style header for the selected skin. */ static int styleHeaderCmd( Th_Interp *interp, void *p, int argc, const char **argv, int *argl |
| ︙ | ︙ | |||
1277 1278 1279 1280 1281 1282 1283 |
return TH_ERROR;
}
}
/*
** TH1 command: styleFooter
**
| | | 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 |
return TH_ERROR;
}
}
/*
** TH1 command: styleFooter
**
** Render the configured style footer for the selected skin.
*/
static int styleFooterCmd(
Th_Interp *interp,
void *p,
int argc,
const char **argv,
int *argl
|
| ︙ | ︙ | |||
1302 1303 1304 1305 1306 1307 1308 |
return TH_ERROR;
}
}
/*
** TH1 command: styleScript
**
| | | 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 |
return TH_ERROR;
}
}
/*
** TH1 command: styleScript
**
** Render the configured JavaScript for the selected skin.
*/
static int styleScriptCmd(
Th_Interp *interp,
void *p,
int argc,
const char **argv,
int *argl
|
| ︙ | ︙ |
Changes to www/th1.md.
| ︙ | ︙ | |||
198 199 200 201 202 203 204 205 206 207 208 209 210 211 | * repository * searchable * setParameter * setting * stime * styleHeader * styleFooter * tclEval * tclExpr * tclInvoke * tclIsSafe * tclMakeSafe * tclReady * trace | > | 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | * repository * searchable * setParameter * setting * stime * styleHeader * styleFooter * styleScript * tclEval * tclExpr * tclInvoke * tclIsSafe * tclMakeSafe * tclReady * trace |
| ︙ | ︙ | |||
569 570 571 572 573 574 575 | process in system space. <a name="styleHeader"></a>TH1 styleHeader Command ------------------------------------------------- * styleHeader TITLE | | | > > > > > > > | 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 | process in system space. <a name="styleHeader"></a>TH1 styleHeader Command ------------------------------------------------- * styleHeader TITLE Render the configured style header for the selected skin. <a name="styleFooter"></a>TH1 styleFooter Command ------------------------------------------------- * styleFooter Render the configured style footer for the selected skin. <a name="styleScript"></a>TH1 styleScript Command ------------------------------------------------- * styleScript Render the configured JavaScript for the selected skin. <a name="tclEval"></a>TH1 tclEval Command ----------------------------------------- **This command requires the Tcl integration feature.** * tclEval arg ?arg ...? |
| ︙ | ︙ |