Fixed macroman<->latin1 conversion. Some chars don't

exist in latin1, but at least the roundtrip results in the
same macroman characters.
This commit is contained in:
Jack Jansen 2001-05-17 12:45:13 +00:00
parent dfebe90c4c
commit 6f84ed5afc
48 changed files with 234 additions and 232 deletions

View file

@ -791,7 +791,7 @@ class Metrowerks_Shell_Suite:
class Access_Paths(aetools.ComponentItem):
"""Access Paths - Contains the definitions of a project¹s access (search) paths."""
"""Access Paths - Contains the definitions of a projectÕs access (search) paths."""
want = 'PATH'
class User_Paths(aetools.NProperty):
"""User Paths - To add an access path for the source files."""
@ -814,7 +814,7 @@ class Flash_delay(aetools.NProperty):
which = 'ED01'
want = 'long'
class Dynamic_scroll(aetools.NProperty):
"""Dynamic scroll - Display a window¹s contents as you move the scroll box."""
"""Dynamic scroll - Display a windowÕs contents as you move the scroll box."""
which = 'ED02'
want = 'bool'
class Balance(aetools.NProperty):
@ -1111,14 +1111,14 @@ class filetype(aetools.NProperty):
"""filetype - What kind of file is this ?"""
which = 'SrcT'
want = 'SrcT'
# repeated property name The file¹s name
# repeated property disk_file The file¹s location on disk
# repeated property name The fileÕs name
# repeated property disk_file The fileÕs location on disk
class codesize(aetools.NProperty):
"""codesize - The size of this file¹s code."""
"""codesize - The size of this fileÕs code."""
which = 'CSiz'
want = 'long'
class datasize(aetools.NProperty):
"""datasize - The size of this file¹s data."""
"""datasize - The size of this fileÕs data."""
which = 'DSiz'
want = 'long'
class up_to_date(aetools.NProperty):
@ -1172,7 +1172,7 @@ class system_heap(aetools.NProperty):
want = 'bool'
class Target_Settings(aetools.ComponentItem):
"""Target Settings - Contains the definitions of a project¹s target."""
"""Target Settings - Contains the definitions of a projectÕs target."""
want = 'TARG'
class Linker(aetools.NProperty):
"""Linker - The name of the current linker."""
@ -1624,8 +1624,8 @@ _Enum_SrcT = {
_Enum_PPrm = {
'absolute' : 'Abso', # An absolute path name, including volume name.
'project_relative' : 'PRel', # A path relative to the current project¹s folder.
'shell_relative' : 'SRel', # A path relative to the CodeWarrior<EFBFBD> folder.
'project_relative' : 'PRel', # A path relative to the current projectÕs folder.
'shell_relative' : 'SRel', # A path relative to the CodeWarriorŽ folder.
'system_relative' : 'YRel', # A path relative to the system folder
}