Skip to content
Snippets Groups Projects
  1. Apr 01, 2011
  2. Oct 26, 2010
    • Adrian Lang's avatar
      Fix SafeFN-encoded file names · 8bddd94e
      Adrian Lang authored
      SafeFN encoding now always end the encoding block by appending a dot at the end of the file name. This is necessary since the file name may get an extension which is not encoded.
      8bddd94e
  3. Apr 04, 2010
    • Christopher Smith's avatar
    • Christopher Smith's avatar
      class for safely encoding filenames · 70e083ce
      Christopher Smith authored
      This class tries to satisfy the following requirements:
      
        * all ASCII alphanumeric chars in the input should stay the same
          ASCII alphanumeric chars in the output
        * the resulting string should be as short as possible
        * the operation needs to be reversable without any data loss
        * the resulting ASCII string should be case insensitive
        * there should be no restriction on the input length
        * the whole UTF-8 range should be allowed
      
      using it creates a way to store UTF-8 in filenames even if the
      underlying filesystem does not support UTF-8. It is also pretty
      robust when files are moved between various filesystems and it
      creates shorter filenames than the currently used urlencoding.
      70e083ce
Loading