Message105577
| 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 |
|