1. 20 5月, 2008 1 次提交
  2. 07 1月, 2008 1 次提交
    • D
      Documentation: rename gitlink macro to linkgit · 5162e697
      Dan McGee 提交于
      Between AsciiDoc 8.2.2 and 8.2.3, the following change was made to the stock
      Asciidoc configuration:
      
      @@ -149,7 +153,10 @@
       # Inline macros.
       # Backslash prefix required for escape processing.
       # (?s) re flag for line spanning.
      -(?su)[\\]?(?P<name>\w(\w|-)*?):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])=
      +
      +# Explicit so they can be nested.
      +(?su)[\\]?(?P<name>(http|https|ftp|file|mailto|callto|image|link)):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])=
      +
       # Anchor: [[[id]]]. Bibliographic anchor.
       (?su)[\\]?\[\[\[(?P<attrlist>[\w][\w-]*?)\]\]\]=anchor3
       # Anchor: [[id,xreflabel]]
      
      This default regex now matches explicit values, and unfortunately in this
      case gitlink was being matched by just 'link', causing the wrong inline
      macro template to be applied. By renaming the macro, we can avoid being
      matched by the wrong regex.
      Signed-off-by: NDan McGee <dpmcgee@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      5162e697
  3. 18 12月, 2007 1 次提交
  4. 01 9月, 2007 1 次提交
  5. 29 8月, 2007 1 次提交
    • J
      git-daemon(1): assorted improvements. · bdd73795
      Junio C Hamano 提交于
      Jari Aalto noticed a handful places in git-daemon documentation
      that need to be improved.
      
       * --inetd makes --pid-file to be ignored, in addition to --user
         and --group
      
       * receive-pack service was not described at all.  We should, if
         only to warn about the security implications of it.
      
       * There was no example of per repository configuration.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      bdd73795
  6. 01 8月, 2007 1 次提交
  7. 07 6月, 2007 1 次提交
    • J
      War on whitespace · a6080a0a
      Junio C Hamano 提交于
      This uses "git-apply --whitespace=strip" to fix whitespace errors that have
      crept in to our source files over time.  There are a few files that need
      to have trailing whitespaces (most notably, test vectors).  The results
      still passes the test, and build result in Documentation/ area is unchanged.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      a6080a0a
  8. 25 1月, 2007 1 次提交
  9. 27 10月, 2006 2 次提交
  10. 26 10月, 2006 1 次提交
  11. 28 9月, 2006 1 次提交
    • J
      Cleaned up git-daemon virtual hosting support. · dd467629
      Jon Loeliger 提交于
      Standardized on lowercase hostnames from client.
      
      Added interpolation values for the IP address, port and
      canonical hostname of the server as it is contacted and
      named by the client and passed in via the extended args.
      
      Added --listen=host_or_ipaddr option suport.  Renamed port
      variable as "listen_port" correspondingly as well.
      
      Documented mutual exclusivity of --inetd option with
          --user, --group, --listen and --port options.
      
      Added compat/inet_pton.c from Paul Vixie as needed.
      
      Small memory leaks need to be cleaned up still.
      Signed-off-by: NJon Loeliger <jdl@jdl.com>
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      dd467629
  12. 21 9月, 2006 1 次提交
  13. 07 9月, 2006 1 次提交
  14. 28 8月, 2006 1 次提交
  15. 23 8月, 2006 1 次提交
  16. 28 7月, 2006 1 次提交
  17. 04 6月, 2006 1 次提交
  18. 10 3月, 2006 1 次提交
  19. 06 2月, 2006 1 次提交
    • J
      daemon: extend user-relative path notation. · 603968d2
      Junio C Hamano 提交于
      Earlier, we made --base-path to automatically forbid
      user-relative paths, which was probably a mistake.  This
      introduces --user-path (or --user-path=path) option to control
      the use of user-relative paths independently.  The latter form
      of the option can be used to restrict accesses to a part of each
      user's home directory, similar to "public_html" some webservers
      supports.
      
      If we're invoked with --user-path=FOO option, then a URL of the
      form git://~USER/PATH/... resolves to the path HOME/FOO/PATH/...,
      where HOME is USER's home directory.
      
      [jc: This is much reworked by me so bugs are mine, but the
       original patch was done by Mark Wooding.]
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      603968d2
  20. 08 1月, 2006 1 次提交
  21. 06 1月, 2006 1 次提交
  22. 22 11月, 2005 2 次提交
  23. 17 11月, 2005 1 次提交
  24. 15 11月, 2005 1 次提交
  25. 21 10月, 2005 1 次提交
  26. 11 10月, 2005 1 次提交
  27. 25 9月, 2005 2 次提交
  28. 21 9月, 2005 1 次提交
  29. 30 8月, 2005 1 次提交
  30. 23 8月, 2005 1 次提交