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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
SetTdomNodeFromAny }; /*---------------------------------------------------------------------------- | Prototypes for procedures defined later in this file: | \---------------------------------------------------------------------------*/ #if (TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION <= 3) /* * Before Tcl 8.4, Tcl_VarTraceProc and Tcl_CmdDeleteProc were not * CONST84'ified. When compiling with -DTCL_NO_DEPRECATED, CONST84 is * gone, therefore we can't use the function type definitions of * Tcl_VarTraceProc and Tcl_CmdDeleteProc for these old version. * */ static char * tcldom_docTrace( ClientData clientData, Tcl_Interp *interp, const char *part1, const char *part2, int flags); static void tcldom_docCmdDeleteProc(ClientData clientData); #else static Tcl_VarTraceProc tcldom_docTrace; static Tcl_CmdDeleteProc tcldom_docCmdDeleteProc; #endif static void tcldom_treeAsJSON(Tcl_Obj *jstring, domNode *node, Tcl_Channel channel, int indent, int level, int inside); #ifdef TCL_THREADS |
< < < < < < < < < < < < < < |
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
SetTdomNodeFromAny }; /*---------------------------------------------------------------------------- | Prototypes for procedures defined later in this file: | \---------------------------------------------------------------------------*/ static Tcl_VarTraceProc tcldom_docTrace; static Tcl_CmdDeleteProc tcldom_docCmdDeleteProc; static void tcldom_treeAsJSON(Tcl_Obj *jstring, domNode *node, Tcl_Channel channel, int indent, int level, int inside); #ifdef TCL_THREADS |