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
|
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2007 1&1 Internet AG, Germany, http://www.1and1.org
License:
LGPL: http://www.gnu.org/licenses/lgpl.html
EPL: http://www.eclipse.org/org/documents/epl-v10.php
See the LICENSE file in the project's top-level directory for details.
Authors:
* Sebastian Werner (wpbasti)
* Andreas Ecker (ecker)
************************************************************************ */
/* ************************************************************************
************************************************************************ */
qx.OO.defineClass("qx.xml.Namespace",
{
SVG : "http://www.w3.org/2000/svg",
SMIL : "http://www.w3.org/2001/SMIL20/",
MML : "http://www.w3.org/1998/Math/MathML",
CML : "http://www.xml-cml.org",
XLINK : "http://www.w3.org/1999/xlink",
XHTML : "http://www.w3.org/1999/xhtml",
XUL : "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
XBL : "http://www.mozilla.org/xbl",
FO : "http://www.w3.org/1999/XSL/Format",
XSL : "http://www.w3.org/1999/XSL/Transform",
XSLT : "http://www.w3.org/1999/XSL/Transform",
XI : "http://www.w3.org/2001/XInclude",
XFORMS : "http://www.w3.org/2002/01/xforms",
SAXON : "http://icl.com/saxon",
XALAN : "http://xml.apache.org/xslt",
XSD : "http://www.w3.org/2001/XMLSchema",
DT: "http://www.w3.org/2001/XMLSchema-datatypes",
XSI : "http://www.w3.org/2001/XMLSchema-instance",
RDF : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
RDFS : "http://www.w3.org/2000/01/rdf-schema#",
RSS1 : "http://purl.org/rss/1.0/modules/content/",
DC : "http://purl.org/dc/elements/1.1/",
DCQ: "http://purl.org/dc/qualifiers/1.0",
SOAPENV : "http://schemas.xmlsoap.org/soap/envelope/",
WSDL : "http://schemas.xmlsoap.org/wsdl/",
ADOBESVGEXTENSIONS : "http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
});
|