1. 14 Mar, 2017 2 commits
  2. 13 Mar, 2017 4 commits
  3. 12 Mar, 2017 5 commits
  4. 11 Mar, 2017 8 commits
  5. 10 Mar, 2017 3 commits
  6. 09 Mar, 2017 5 commits
  7. 08 Mar, 2017 7 commits
  8. 07 Mar, 2017 6 commits
    • Steve Brokenshire's avatar
      maketgz: Run updatemanpages.pl to update man pages · beff139d
      Steve Brokenshire authored
      maketgz now runs scripts/updatemanpages.pl to update the man pages .TH
      section to use the current date and curl/libcurl version.
      
      (TODO Section 3.1)
      
      Closes #1058
      beff139d
    • Steve Brokenshire's avatar
      gitignore: Ignore man page dist files · d960e570
      Steve Brokenshire authored
      Ignore man page dist files generated by scripts/updatemanpages.pl
      d960e570
    • Steve Brokenshire's avatar
    • Steve Brokenshire's avatar
    • Steve Brokenshire's avatar
      updatemanpages.pl: Update man pages to use current date and versions · 698aae27
      Steve Brokenshire authored
      Added script to update man pages to use the current date and
      curl/libcurl versions.
      
      updatemanpages.pl has three arrays: list of directories to look in,
      list of extensions to process, list of files to exclude from
      processing.
      
      Check man page in git repoistory using the date from the existing man
      page before updating to avoid updating the man page if no change is
      made.
      
      If data is received from the git command then update the man page with
      the current date and version otherwise leave alone.
      
      Applied patch from badger to make the date argument optional, change the
      git command used, added date argument to processfile subroutine and
      print to STDERR if no date is found in a man page.
      
      Added code to process the changed man page into a new man page with
      .dist added to the filename to keep the original source files unchanged.
      Updated POD documentation to reflect that the date argument optional.
      
      Code style is in line with CODE_STYLE.md.
      
      Directo...
      698aae27
    • Tatsuhiro Tsujikawa's avatar
      http2: Fix assertion error on redirect with CL=0 · 475c2583
      Tatsuhiro Tsujikawa authored
      This fixes assertion error which occurs when redirect is done with 0
      length body via HTTP/2, and the easy handle is reused, but new
      connection is established due to hostname change:
      
          curl: http2.c:1572: ssize_t http2_recv(struct connectdata *,
            int, char *, size_t, CURLcode *):
          Assertion `httpc->drain_total >= data->state.drain' failed.
      
      To fix this bug, ensure that http2_handle_stream is called.
      
      Fixes #1286
      Closes #1302
      475c2583