1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
/*----------------------------------------------------------------------------
| Copyright (c) 1999 Jochen Loewer (loewerj@hotmail.com)
+-----------------------------------------------------------------------------
|
| A DOM implementation for Tcl using James Clark's expat XML parser
|
|
| The contents of this file are subject to the Mozilla Public License
| Version 2.0 (the "License"); you may not use this file except in
| compliance with the License. You may obtain a copy of the License at
| http://www.mozilla.org/MPL/
|
| Software distributed under the License is distributed on an "AS IS"
| basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
| License for the specific language governing rights and limitations
| under the License.
|
| The Original Code is tDOM.
|
| The Initial Developer of the Original Code is Jochen Loewer
| Portions created by Jochen Loewer are Copyright (C) 1998, 1999
| Jochen Loewer. All Rights Reserved.
|
| Contributor(s):
|
|
| written by Jochen Loewer
| April, 1999
|
\---------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
| Includes
|
\---------------------------------------------------------------------------*/
#include <tcl.h>
#include <dom.h>
#include <tdom.h>
#include <tcldom.h>
#include <tclpull.h>
#include <schema.h>
#include <nodecmd.h>
extern TdomStubs tdomStubs;
/*
*----------------------------------------------------------------------------
*
* Tdom_Init --
*
* Initialization routine for loadable module
*
* Results:
* None.
*
* Side effects:
* Defines "expat"/"dom" commands in the interpreter.
*
*----------------------------------------------------------------------------
*/
EXTERN int
Tdom_Init (
Tcl_Interp *interp /* Interpreter to initialize. */
) {
#ifdef USE_TCL_STUBS
if (Tcl_InitStubs(interp, "8.4", 0) == NULL) {
return TCL_ERROR;
}
#endif
domModuleInitialize();
#ifdef TCL_THREADS
tcldom_initialize();
#endif /* TCL_THREADS */
#ifndef TDOM_NO_UNKNOWN_CMD
Tcl_Eval(interp, "rename unknown unknown_tdom");
Tcl_CreateObjCommand(interp, "unknown", tcldom_unknownCmd, NULL, NULL );
#endif
Tcl_CreateObjCommand(interp, "dom", tcldom_DomObjCmd, NULL, NULL );
Tcl_CreateObjCommand(interp, "domDoc", tcldom_DocObjCmd, NULL, NULL );
Tcl_CreateObjCommand(interp, "domNode", tcldom_NodeObjCmd, NULL, NULL );
Tcl_CreateObjCommand(interp, "tdom", TclTdomObjCmd, NULL, NULL );
#ifndef TDOM_NO_EXPAT
Tcl_CreateObjCommand(interp, "expat", TclExpatObjCmd, NULL, NULL );
Tcl_CreateObjCommand(interp, "xml::parser", TclExpatObjCmd, NULL, NULL );
#endif
#ifndef TDOM_NO_PULL
Tcl_CreateObjCommand(interp, "tdom::pullparser", tDOM_PullParserCmd, NULL, NULL );
#endif
Tcl_CreateObjCommand(interp, "tdom::fsnewNode", tDOM_fsnewNodeCmd, NULL, NULL );
Tcl_CreateObjCommand(interp, "tdom::fsinsertNode", tDOM_fsinsertNodeCmd, NULL, NULL );
nodecmd_init(interp);
#ifndef TDOM_NO_SCHEMA
tDOM_SchemaInit (interp);
#endif
#ifdef USE_TCL_STUBS
Tcl_PkgProvideEx(interp, PACKAGE_NAME, PACKAGE_VERSION,
(ClientData) &tdomStubs);
#else
Tcl_PkgProvide(interp, PACKAGE_NAME, PACKAGE_VERSION);
#endif
return TCL_OK;
}
EXTERN int
Tdom_SafeInit (
Tcl_Interp *interp
) {
return Tdom_Init (interp);
}
/*
* Load the AOLserver stub. This allows the library
* to be loaded as AOLserver module.
*/
#if defined (NS_AOLSERVER)
# include "aolstub.cpp"
#endif
|