This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author cgohlke
Recipients amaury.forgeotdarc, atuining, cgohlke, hnrqbaggio, janssen, loewis
Date 2010-05-12.08:08:30
SpamBayes Score 0.016419152
Marked as misclassified No
Message-id <1273651714.81.0.478197092407.issue1128@psf.upfronthosting.co.za>
In-reply-to
Content
A slightly different patch is attached to issue7639, which generates short names more similar to Windows/NTFS:
 
http://bugs.python.org/file15898/msilib_make_short.diff

Here are some short names created with the msilib_make_short patch, which are identical to the short names created by the Windows NTFS file system:

foo.txt             ->  FOO.TXT
foo.2.txt           ->  FOO2~1.TXT
someLongName.txt    ->  SOMELO~1.TXT
someLongerName.txt  ->  SOMELO~2.TXT

For comparison, the msilib-2 patch generates these short names:

foo.txt             ->  FOO.TXT
foo.2.txt           ->  FOO.2.TXT    <- different from NTFS
someLongName.txt    ->  SOMELO~1.TXT
someLongerName.txt  ->  SOMELO~2.TXT
History
Date User Action Args
2010-05-12 08:08:35cgohlkesetrecipients: + cgohlke, loewis, amaury.forgeotdarc, atuining, janssen, hnrqbaggio
2010-05-12 08:08:34cgohlkesetmessageid: <1273651714.81.0.478197092407.issue1128@psf.upfronthosting.co.za>
2010-05-12 08:08:32cgohlkelinkissue1128 messages
2010-05-12 08:08:31cgohlkecreate