Skip to content
Snippets Groups Projects
  1. May 11, 2016
  2. May 13, 2016
  3. Apr 20, 2016
  4. May 05, 2016
  5. May 16, 2016
  6. May 06, 2016
  7. May 17, 2016
  8. May 11, 2016
  9. May 06, 2016
  10. Apr 05, 2016
  11. May 12, 2016
  12. May 16, 2016
  13. May 12, 2016
    • Katsunori FUJIWARA's avatar
      help: search section of help topic by translated section name correctly · aaabed77791a
      Katsunori FUJIWARA authored
      Before this patch, "hg help topic.section" might show unexpected
      section of help topic in some encoding.
      
      It applies str.lower() instead of encoding.lower(str) on translated
      message to search section case-insensitively, but some encoding uses
      0x41(A) - 0x5a(Z) as the second or later byte of multi-byte character
      (for example, ja_JP.cp932), and str.lower() causes unexpected result.
      
      To search section of help topic by translated section name correctly,
      this patch replaces str.lower() by encoding.lower(str) for both query
      string (in commands.help()) and translated help text (in
      minirst.getsections()).
      3.8.2
      aaabed77791a
    • Katsunori FUJIWARA's avatar
      patch: show lower-ed translated message correctly · 9d38a2061fd8
      Katsunori FUJIWARA authored
      Before this patch, patch.filterpatch() shows meaningless translation
      of help message for chunk selection in some encoding.
      
      It applies str.lower() instead of encoding.lower(str) on translated
      message, but some encoding uses 0x41(A) - 0x5a(Z) as the second or
      later byte of multi-byte character (for example, ja_JP.cp932), and
      str.lower() causes unexpected result.
      
      To show lower-ed translated message correctly, this patch replaces
      str.lower() by encoding.lower(str).
      9d38a2061fd8
    • Pulkit Goyal's avatar
      py3: make i18n/posplit use print_function · 90d84e1e427a
      Pulkit Goyal authored
      90d84e1e427a
    • Pulkit Goyal's avatar
      py3: make i18n/posplit use absolute_import · c5057b7780dc
      Pulkit Goyal authored
      c5057b7780dc
    • Augie Fackler's avatar
      wireproto: optimize handling of large batch responses · 7996c3acc33b
      Augie Fackler authored
      Now that batch can be used by remotefilelog, the quadratic string
      copying this was doing was actually disastrous. In my local testing,
      fetching a 56 meg file used to take 3 minutes, and now takes only a
      few seconds.
      7996c3acc33b
  14. May 05, 2016
Loading