From: Lars H. <lh...@us...> - 2005-03-08 13:34:35
|
Update of /cvsroot/tmapi-utils/tmapi-utils/utils In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2424/utils Modified Files: terminology.py tm4j2tmapi.py Log Message: Added License text Added more TM4J keywords Index: tm4j2tmapi.py =================================================================== RCS file: /cvsroot/tmapi-utils/tmapi-utils/utils/tm4j2tmapi.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tm4j2tmapi.py 6 Mar 2005 17:10:31 -0000 1.1 --- tm4j2tmapi.py 8 Mar 2005 13:34:20 -0000 1.2 *************** *** 1,3 **** --- 1,20 ---- #!/usr/bin/env python + + # + # Copyright 2005 TMAPI Utils / Lars Heuer + # + # Licensed under the Apache License, Version 2.0 (the "License"); + # you may not use this file except in compliance with the License. + # You may obtain a copy of the License at + # + # http://www.apache.org/licenses/LICENSE-2.0 + # + # Unless required by applicable law or agreed to in writing, software + # distributed under the License is distributed on an "AS IS" BASIS, + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + # See the License for the specific language governing permissions and + # limitations under the License. + # + """ The converter. Index: terminology.py =================================================================== RCS file: /cvsroot/tmapi-utils/tmapi-utils/utils/terminology.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** terminology.py 7 Mar 2005 00:55:58 -0000 1.10 --- terminology.py 8 Mar 2005 13:34:20 -0000 1.11 *************** *** 1,2 **** --- 1,17 ---- + # + # Copyright 2005 TMAPI Utils / Lars Heuer + # + # Licensed under the Apache License, Version 2.0 (the "License"); + # you may not use this file except in compliance with the License. + # You may obtain a copy of the License at + # + # http://www.apache.org/licenses/LICENSE-2.0 + # + # Unless required by applicable law or agreed to in writing, software + # distributed under the License is distributed on an "AS IS" BASIS, + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + # See the License for the specific language governing permissions and + # limitations under the License. + # """ Translation table TM4J term -> TMAPI term. *************** *** 109,112 **** --- 124,130 ---- 'SerializedTopicMap':'No equivalent', 'AssociationExtractor':'No equivalent', + 'IndexException':'No equivalent. May be translatable to TMAPIIndexException', + 'IndexManagerException':'No equivalent. May be translatable to TMAPIIndexException / TMAPIException', + 'TypeTester':'No equivalent', # Topic 'getSubject()':'Replaced just getSubject() -> getSubjectLocators(). ToDo: .iterator().next() or something', |