__init__.py
Go to the documentation of this file.
1 # -*- Python -*-
2 # -*- coding: utf-8 -*-
3 
4 '''rtsprofile
5 
6 Copyright (C) 2009-2010
7  Geoffrey Biggs
8  RT-Synthesis Research Group
9  Intelligent Systems Research Institute,
10  National Institute of Advanced Industrial Science and Technology (AIST),
11  Japan
12  All rights reserved.
13 Licensed under the Eclipse Public License -v 1.0 (EPL)
14 http://www.opensource.org/licenses/eclipse-1.0.txt
15 
16 File: __init__.py
17 
18 Library for parsing the RtsProfile XML (such as that produced by the
19 RTSystemEditor tool) into an easy-to-navigate Python data structure.
20 
21 '''
22 
23 __version__ = '$Revision: $'
24 # $Source$
25 
26 
27 RTSPROFILE_VERSION = '1.0.0'
28 RTSPROFILE_SPEC_VERSION = '0.2'
29 RTS_NS = 'http://www.openrtp.org/namespaces/rts'
30 RTS_NS_S = 'rts:'
31 RTS_EXT_NS = 'http://www.openrtp.org/namespaces/rts_ext'
32 RTS_EXT_NS_S = 'rtsExt:'
33 RTS_EXT_NS_YAML = 'rtsExt::'
34 
35 
36 # vim: tw=79
37 


rtsprofile
Author(s): Geoffrey Biggs
autogenerated on Fri Jun 7 2019 21:52:35