Skip to content
Snippets Groups Projects
  1. Oct 12, 2018
  2. Oct 13, 2018
  3. Sep 06, 2018
  4. Oct 10, 2017
    • muxator's avatar
      build: make install in "/doc" failed if the destination dir contained spaces · b584ed1b225d
      muxator authored
      This and the following commits try to add the necessary quoting in the build
      scripts to make the process more robust.
      
      The target for now is rendering "make deb" successful even when the base
      directory contains spaces (eg. "/opt/mercu rial").
      The build process should succeed without scattering files in spurious
      directories (eg.: "/opt/mercu/usr/bin/hg").
      b584ed1b225d
  5. May 28, 2017
  6. May 13, 2017
  7. Oct 22, 2016
  8. Oct 07, 2016
  9. May 14, 2016
  10. Jun 20, 2016
    • Katsunori FUJIWARA's avatar
      check-code: detect "missing _() in ui message" more exactly · 844f72885fb9
      Katsunori FUJIWARA authored
      Before this patch, "missing _() in ui message" rule overlooks
      translatable message, which starts with other than alphabet.
      
      To detect "missing _() in ui message" more exactly, this patch
      improves the regexp with assumptions below.
      
        - sequence consisting of below might precede "translatable message"
          in same string token
      
          - formatting string, which starts with '%'
          - escaped character, which starts with 'b' (as replacement of '\\'), or
          - characters other than '%', 'b' and 'x' (as replacement of alphabet)
      
        - any string tokens might precede a string token, which contains
          "translatable message"
      
      This patch builds an input file, which is used to examine "missing _()
      in ui message" detection, before '"$check_code" stringjoin.py' in
      test-contrib-check-code.t, because this reduces amount of change churn
      in subsequent patch.
      
      This patch also applies "()" instead of "_()" on messages below to
      hide false-positives:
      
        - messages for ui.debug() or debug commands/tools
          - contrib/debugshell.py
          - hgext/win32mbcs.py (ui.write() is used, though)
          - mercurial/commands.py
            - _debugchangegroup
            - debugindex
            - debuglocks
            - debugrevlog
            - debugrevspec
            - debugtemplate
      
        - untranslatable messages
          - doc/gendoc.py (ReST specific text)
          - hgext/hgk.py (permission string)
          - hgext/keyword.py (text written into configuration file)
          - mercurial/cmdutil.py (formatting strings for JSON)
      844f72885fb9
  11. May 16, 2016
  12. May 12, 2016
  13. May 07, 2016
    • Sean Farley's avatar
      hg-ssh: copy doc string to man page · 7b52cb384c38
      Sean Farley authored
      This corrects a warning from lintian that we're shipping an executable without
      a man page. Since there is a doc string in the text, let's use that for the man
      page.
      7b52cb384c38
  14. Apr 16, 2016
  15. Jan 12, 2016
  16. Mar 03, 2016
  17. Feb 11, 2016
    • Katsunori FUJIWARA's avatar
      doc: translate from :hg:`help config.SECTION` to a valid link to hgrc.5.html · 18c6b271579b
      Katsunori FUJIWARA authored
      Before this patch, ":hg:`help config.SECTION`" in online help text is
      translated to a link to "hg.1.html#config.SECTION" in HTML
      unintentionally.
      
      This patch translates from :hg:`help config.SECTION` in online help
      text to a valid link to "hgrc.5.html#SECTION" in HTML.
      
      This patch ignores element(s) under "SECTION" (e.g. "ITEM" of
      ":hg:`help config.SECTION.ITEM`"), because there is no way to refer
      directly to it in HTML, yet.
      18c6b271579b
    • Katsunori FUJIWARA's avatar
      doc: translate from :hg:`help config` to a valid link to hgrc.5.html · 63eae465095e
      Katsunori FUJIWARA authored
      Before this patch, ":hg:`help config`" in online help text is
      translated to a link to "hg.1.html#config" in HTML, even though actual
      "hg help config" shows not help for "hg config" command but "config"
      help topic, and all of current ":hg:`help config`" expects the latter.
      
      This patch translates from ":hg:`help config`" in online help text to
      a link to "hgrc.5.html" in HTML as expected.
      
      This patch also allows ":hg:`help -c COMMAND`" style to link
      "hg.1.html#COMMAND" for readability.
      63eae465095e
  18. Feb 10, 2016
    • Katsunori FUJIWARA's avatar
      docchecker: use indentation of 4 spaces · c00f67c15c5a
      Katsunori FUJIWARA authored
      This is fixing for 'must indent 4 spaces' check-code rule.
      
      check-code has overlooked this, because a file isn't recognized as one
      to be checked (this problem is fixed by subsequent patch).
      c00f67c15c5a
    • Katsunori FUJIWARA's avatar
      docchecker: remove naked except clause · 72b02b498b35
      Katsunori FUJIWARA authored
      This is fixing for 'naked except clause' check-code rule.
      
      check-code has overlooked this, because a file isn't recognized as one
      to be checked (this problem is fixed by subsequent patch).
      72b02b498b35
  19. Jan 18, 2016
  20. Jan 12, 2016
  21. Jan 06, 2016
  22. Dec 17, 2015
  23. Dec 23, 2015
  24. Dec 22, 2015
  25. Dec 12, 2015
    • Gregory Szorc's avatar
      doc: make gendoc.py module import policy aware · 6fbf1159a85a
      Gregory Szorc authored
      Without this, running gendoc.py during an install without C modules
      available (via `make local`) will result in an import failure because
      the default module load policy insists on C modules.
      
      We also remove the sys.path adjustment because it is no longer needed
      since our magic importer handles things.
      6fbf1159a85a
  26. Nov 25, 2015
  27. Oct 20, 2015
  28. Oct 16, 2015
  29. Sep 30, 2015
  30. Sep 26, 2015
  31. Sep 27, 2015
Loading