Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Removed cruft for versions not supported anymore. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | schema |
Files: | files | file ages | folders |
SHA3-256: |
13fe3aff35067a080703c25dd5ee3fb3 |
User & Date: | rolf 2019-08-06 23:31:30 |
Context
2019-08-11
| ||
01:35 | Added xsd like boolean text constraint. check-in: c24f4e9aeb user: rolf tags: schema | |
2019-08-06
| ||
23:35 | Removed cruft for versions not supported anymore. check-in: 0117b3be8d user: rolf tags: trunk | |
23:31 | Removed cruft for versions not supported anymore. check-in: 13fe3aff35 user: rolf tags: schema | |
23:11 | Fixed bug introduced with prefixns: the shortcuts from prefixns are only used for schema definiton; they mean nothing for prefix/namespace in the xml input. check-in: 40671ee8c3 user: rolf tags: schema | |
Changes
Changes to generic/tcldom.c.
396 396 SetTdomNodeFromAny 397 397 }; 398 398 399 399 /*---------------------------------------------------------------------------- 400 400 | Prototypes for procedures defined later in this file: 401 401 | 402 402 \---------------------------------------------------------------------------*/ 403 -#if (TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION <= 3) 404 -/* 405 - * Before Tcl 8.4, Tcl_VarTraceProc and Tcl_CmdDeleteProc were not 406 - * CONST84'ified. When compiling with -DTCL_NO_DEPRECATED, CONST84 is 407 - * gone, therefore we can't use the function type definitions of 408 - * Tcl_VarTraceProc and Tcl_CmdDeleteProc for these old version. 409 - * 410 - */ 411 -static char * tcldom_docTrace( 412 - ClientData clientData, Tcl_Interp *interp, 413 - const char *part1, const char *part2, int flags); 414 -static void tcldom_docCmdDeleteProc(ClientData clientData); 415 -#else 416 403 static Tcl_VarTraceProc tcldom_docTrace; 417 404 static Tcl_CmdDeleteProc tcldom_docCmdDeleteProc; 418 -#endif 419 405 420 406 static void tcldom_treeAsJSON(Tcl_Obj *jstring, domNode *node, 421 407 Tcl_Channel channel, int indent, 422 408 int level, 423 409 int inside); 424 410 425 411 #ifdef TCL_THREADS