1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 2 /* 3 * This file is part of the LibreOffice project. 4 * 5 * This Source Code Form is subject to the terms of the Mozilla Public 6 * License, v. 2.0. If a copy of the MPL was not distributed with this 7 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 8 * 9 * This file incorporates work covered by the following license notice: 10 * 11 * Licensed to the Apache Software Foundation (ASF) under one or more 12 * contributor license agreements. See the NOTICE file distributed 13 * with this work for additional information regarding copyright 14 * ownership. The ASF licenses this file to you under the Apache 15 * License, Version 2.0 (the "License"); you may not use this file 16 * except in compliance with the License. You may obtain a copy of 17 * the License at http://www.apache.org/licenses/LICENSE-2.0 . 18 */ 19 20 #ifndef INCLUDED_XMLOFF_XMLNMSPE_HXX 21 #define INCLUDED_XMLOFF_XMLNMSPE_HXX 22 23 #include <sal/types.h> 24 25 // current namespaces 26 // These namespaces have the same index in the namespace table as prefix used. 27 // If a namespace is added, XML_OLD_NAMESPACE_BASE has to be adjusted! 28 // * standard ODF elements and attributes 29 constexpr sal_uInt16 XML_NAMESPACE_OFFICE = 0; 30 constexpr sal_uInt16 XML_NAMESPACE_STYLE = 1; 31 constexpr sal_uInt16 XML_NAMESPACE_TEXT = 2; 32 constexpr sal_uInt16 XML_NAMESPACE_TABLE = 3; 33 constexpr sal_uInt16 XML_NAMESPACE_DRAW = 4; 34 constexpr sal_uInt16 XML_NAMESPACE_FO = 5; 35 constexpr sal_uInt16 XML_NAMESPACE_XLINK = 6; 36 constexpr sal_uInt16 XML_NAMESPACE_DC = 7; 37 constexpr sal_uInt16 XML_NAMESPACE_META = 8; 38 constexpr sal_uInt16 XML_NAMESPACE_NUMBER = 9; 39 constexpr sal_uInt16 XML_NAMESPACE_PRESENTATION = 10; 40 constexpr sal_uInt16 XML_NAMESPACE_SVG = 11; 41 constexpr sal_uInt16 XML_NAMESPACE_CHART = 12; 42 constexpr sal_uInt16 XML_NAMESPACE_DR3D = 13; 43 constexpr sal_uInt16 XML_NAMESPACE_MATH = 14; 44 constexpr sal_uInt16 XML_NAMESPACE_FORM = 15; 45 constexpr sal_uInt16 XML_NAMESPACE_SCRIPT = 16; 46 constexpr sal_uInt16 XML_NAMESPACE_CONFIG = 17; 47 constexpr sal_uInt16 XML_NAMESPACE_DB = 18; 48 constexpr sal_uInt16 XML_NAMESPACE_XFORMS = 19; 49 constexpr sal_uInt16 XML_NAMESPACE_SMIL = 20; 50 constexpr sal_uInt16 XML_NAMESPACE_ANIMATION = 21; 51 constexpr sal_uInt16 XML_NAMESPACE_XML = 22; 52 constexpr sal_uInt16 XML_NAMESPACE_XHTML = 23; 53 constexpr sal_uInt16 XML_NAMESPACE_GRDDL = 24; 54 // * formula attribute values (standard ODF) 55 constexpr sal_uInt16 XML_NAMESPACE_OF = 25; // OpenFormula aka ODFF 56 // * event attribute values (standard W3C) 57 constexpr sal_uInt16 XML_NAMESPACE_DOM = 26; 58 // * XForms attribute values (standard W3C) 59 constexpr sal_uInt16 XML_NAMESPACE_XSD = 27; 60 constexpr sal_uInt16 XML_NAMESPACE_XSI = 28; 61 // * following 3 namespaces are used for non-standard attribute values and non-ODF XML 62 constexpr sal_uInt16 XML_NAMESPACE_OOO = 29; // lots of attributes, settings.xml, non-ODF XML 63 constexpr sal_uInt16 XML_NAMESPACE_OOOW = 30; // formula attribute values 64 constexpr sal_uInt16 XML_NAMESPACE_OOOC = 31; // formula attribute values 65 // non-ODF XML namespaces 66 constexpr sal_uInt16 XML_NAMESPACE_BLOCKLIST = 32; 67 constexpr sal_uInt16 XML_NAMESPACE_FRAMEWORK = 33; 68 constexpr sal_uInt16 XML_NAMESPACE_TCD = 34; // text conversion dictionary 69 constexpr sal_uInt16 XML_NAMESPACE_DLG = 35; 70 constexpr sal_uInt16 XML_NAMESPACE_REPORT = 36; 71 constexpr sal_uInt16 XML_NAMESPACE_VERSIONS_LIST = 37; 72 // OOo extension digital signatures, used in ODF 1.1 73 constexpr sal_uInt16 XML_NAMESPACE_DSIG_OOO = 38; 74 // ODF 1.2 digital signature namespaces 75 constexpr sal_uInt16 XML_NAMESPACE_DSIG = 39; 76 constexpr sal_uInt16 XML_NAMESPACE_DS = 40; 77 constexpr sal_uInt16 XML_NAMESPACE_XADES132 = 41; 78 constexpr sal_uInt16 XML_NAMESPACE_XADES141 = 42; 79 // OOXML digital signature extension namespaces, also based on xmldsig-core 80 constexpr sal_uInt16 XML_NAMESPACE_MDSSI = 43; 81 constexpr sal_uInt16 XML_NAMESPACE_MSODIGSIG = 44; 82 83 // namespaces for ODF extended formats 84 constexpr sal_uInt16 XML_NAMESPACE_EXT_BASE = 50; 85 constexpr sal_uInt16 XML_NAMESPACE_OFFICE_EXT = XML_NAMESPACE_EXT_BASE + 0; 86 constexpr sal_uInt16 XML_NAMESPACE_TABLE_EXT = XML_NAMESPACE_EXT_BASE + 1; 87 constexpr sal_uInt16 XML_NAMESPACE_CHART_EXT = XML_NAMESPACE_EXT_BASE + 2; 88 constexpr sal_uInt16 XML_NAMESPACE_DRAW_EXT = XML_NAMESPACE_EXT_BASE + 3; 89 constexpr sal_uInt16 XML_NAMESPACE_CALC_EXT = XML_NAMESPACE_EXT_BASE + 4; 90 constexpr sal_uInt16 XML_NAMESPACE_LO_EXT = XML_NAMESPACE_EXT_BASE + 5; 91 92 // experimental ODF extended namespaces 93 constexpr sal_uInt16 XML_NAMESPACE_FIELD = XML_NAMESPACE_EXT_BASE + 6; 94 constexpr sal_uInt16 XML_NAMESPACE_CSS3TEXT = XML_NAMESPACE_EXT_BASE + 7; // CSS Text Level 3 95 constexpr sal_uInt16 XML_NAMESPACE_FORMX = XML_NAMESPACE_EXT_BASE + 8; // form interop extensions 96 97 98 // namespaces for OOo formats 99 constexpr sal_uInt16 XML_NAMESPACE_OOO_BASE = 60; 100 constexpr sal_uInt16 XML_NAMESPACE_OFFICE_OOO = XML_NAMESPACE_OOO_BASE + 0; 101 constexpr sal_uInt16 XML_NAMESPACE_META_OOO = XML_NAMESPACE_OOO_BASE + 1; 102 constexpr sal_uInt16 XML_NAMESPACE_STYLE_OOO = XML_NAMESPACE_OOO_BASE + 2; 103 constexpr sal_uInt16 XML_NAMESPACE_NUMBER_OOO = XML_NAMESPACE_OOO_BASE + 3; 104 constexpr sal_uInt16 XML_NAMESPACE_TEXT_OOO = XML_NAMESPACE_OOO_BASE + 4; 105 constexpr sal_uInt16 XML_NAMESPACE_TABLE_OOO = XML_NAMESPACE_OOO_BASE + 5; 106 constexpr sal_uInt16 XML_NAMESPACE_DRAW_OOO = XML_NAMESPACE_OOO_BASE + 6; 107 constexpr sal_uInt16 XML_NAMESPACE_DR3D_OOO = XML_NAMESPACE_OOO_BASE + 7; 108 constexpr sal_uInt16 XML_NAMESPACE_PRESENTATION_OOO = XML_NAMESPACE_OOO_BASE + 8; 109 constexpr sal_uInt16 XML_NAMESPACE_PRESENTATION_OASIS = XML_NAMESPACE_OOO_BASE + 9; // only used for some config files in sd/ 110 constexpr sal_uInt16 XML_NAMESPACE_CHART_OOO = XML_NAMESPACE_OOO_BASE + 10; 111 constexpr sal_uInt16 XML_NAMESPACE_CONFIG_OOO = XML_NAMESPACE_OOO_BASE + 12; 112 constexpr sal_uInt16 XML_NAMESPACE_FORM_OOO = XML_NAMESPACE_OOO_BASE + 13; 113 constexpr sal_uInt16 XML_NAMESPACE_SCRIPT_OOO = XML_NAMESPACE_OOO_BASE + 14; 114 constexpr sal_uInt16 XML_NAMESPACE_ANIMATION_OOO = XML_NAMESPACE_OOO_BASE + 15; 115 116 constexpr sal_uInt16 XML_NAMESPACE_COMPAT_BASE = 80; 117 constexpr sal_uInt16 XML_NAMESPACE_SVG_COMPAT = XML_NAMESPACE_COMPAT_BASE + 0; 118 constexpr sal_uInt16 XML_NAMESPACE_FO_COMPAT = XML_NAMESPACE_COMPAT_BASE + 1; 119 constexpr sal_uInt16 XML_NAMESPACE_SMIL_COMPAT = XML_NAMESPACE_COMPAT_BASE + 2; 120 121 constexpr sal_uInt16 XML_NAMESPACE_OASIS_BASE = 90; 122 constexpr sal_uInt16 XML_NAMESPACE_DB_OASIS = XML_NAMESPACE_OASIS_BASE + 0; 123 constexpr sal_uInt16 XML_NAMESPACE_REPORT_OASIS = XML_NAMESPACE_OASIS_BASE + 1; 124 125 // namespaces used in the technical preview (SO 5.2) 126 constexpr sal_uInt16 XML_OLD_NAMESPACE_BASE = 100; 127 constexpr sal_uInt16 XML_NAMESPACE_FO_SO52 = XML_OLD_NAMESPACE_BASE + 0; 128 constexpr sal_uInt16 XML_NAMESPACE_XLINK_SO52 = XML_OLD_NAMESPACE_BASE + 1; 129 constexpr sal_uInt16 XML_NAMESPACE_OFFICE_SO52 = XML_OLD_NAMESPACE_BASE + 2; 130 constexpr sal_uInt16 XML_NAMESPACE_STYLE_SO52 = XML_OLD_NAMESPACE_BASE + 3; 131 constexpr sal_uInt16 XML_NAMESPACE_TEXT_SO52 = XML_OLD_NAMESPACE_BASE + 4; 132 constexpr sal_uInt16 XML_NAMESPACE_TABLE_SO52 = XML_OLD_NAMESPACE_BASE + 5; 133 constexpr sal_uInt16 XML_NAMESPACE_META_SO52 = XML_OLD_NAMESPACE_BASE + 6; 134 constexpr sal_uInt16 XML_NAMESPACE_DRAW_SO52 = XML_OLD_NAMESPACE_BASE + 7; 135 constexpr sal_uInt16 XML_NAMESPACE_NUMBER_SO52 = XML_OLD_NAMESPACE_BASE + 8; 136 constexpr sal_uInt16 XML_NAMESPACE_PRESENTATION_SO52 = XML_OLD_NAMESPACE_BASE + 9; 137 constexpr sal_uInt16 XML_NAMESPACE_CHART_SO52 = XML_OLD_NAMESPACE_BASE + 10; 138 constexpr sal_uInt16 XML_NAMESPACE_SMIL_SO52 = XML_OLD_NAMESPACE_BASE + 11; 139 140 #endif // INCLUDED_XMLOFF_XMLNMSPE_HXX 141 142 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 143