You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-3-lib/pym/calculate/contrib/spyne/const/xml_ns.py

64 lines
2.0 KiB

#
# spyne - Copyright (C) Spyne contributors.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
#
# This module is DEPRECATED. Use ``spyne.const.xml``.
xml = 'http://www.w3.org/XML/1998/namespace'
xsd = 'http://www.w3.org/2001/XMLSchema'
xsi = 'http://www.w3.org/2001/XMLSchema-instance'
wsa = 'http://schemas.xmlsoap.org/ws/2003/03/addressing'
xop = 'http://www.w3.org/2004/08/xop/include'
soap = 'http://schemas.xmlsoap.org/wsdl/soap/'
wsdl = 'http://schemas.xmlsoap.org/wsdl/'
xhtml = 'http://www.w3.org/1999/xhtml'
plink = 'http://schemas.xmlsoap.org/ws/2003/05/partner-link/'
soap11_enc = 'http://schemas.xmlsoap.org/soap/encoding/'
soap11_env = 'http://schemas.xmlsoap.org/soap/envelope/'
soap12_env = 'http://www.w3.org/2003/05/soap-envelope'
soap12_enc = 'http://www.w3.org/2003/05/soap-encoding'
const_nsmap = {
'xml': xml,
'xs': xsd,
'xsi': xsi,
'plink': plink,
'soap': soap,
'wsdl': wsdl,
'soap11enc': soap11_enc,
'soap11env': soap11_env,
'soap12env': soap12_env,
'soap12enc': soap12_enc,
'wsa': wsa,
'xop': xop,
}
const_prefmap = None
def regen_prefmap():
global const_prefmap
const_prefmap = dict([(b, a) for a, b in const_nsmap.items()])
regen_prefmap()
schema_location = {
xsd: 'http://www.w3.org/2001/XMLSchema.xsd',
}
class DEFAULT_NS(object):
pass