Go to the documentation of this file.00001
00002
00003
00004 '''rtsprofile
00005
00006 Copyright (C) 2009-2010
00007 Geoffrey Biggs
00008 RT-Synthesis Research Group
00009 Intelligent Systems Research Institute,
00010 National Institute of Advanced Industrial Science and Technology (AIST),
00011 Japan
00012 All rights reserved.
00013 Licensed under the Eclipse Public License -v 1.0 (EPL)
00014 http://www.opensource.org/licenses/eclipse-1.0.txt
00015
00016 File: __init__.py
00017
00018 Library for parsing the RtsProfile XML (such as that produced by the
00019 RTSystemEditor tool) into an easy-to-navigate Python data structure.
00020
00021 '''
00022
00023 __version__ = '$Revision: $'
00024
00025
00026
00027 RTSPROFILE_VERSION = '1.0.0'
00028 RTSPROFILE_SPEC_VERSION = '0.2'
00029 RTS_NS = 'http://www.openrtp.org/namespaces/rts'
00030 RTS_NS_S = 'rts:'
00031 RTS_EXT_NS = 'http://www.openrtp.org/namespaces/rts_ext'
00032 RTS_EXT_NS_S = 'rtsExt:'
00033 RTS_EXT_NS_YAML = 'rtsExt::'
00034
00035
00036
00037