1. 17 Mar, 2019 1 commit
  2. 16 Mar, 2019 2 commits
  3. 15 Mar, 2019 12 commits
  4. 14 Mar, 2019 16 commits
  5. 13 Mar, 2019 3 commits
  6. 12 Mar, 2019 6 commits
    • Dridi Boukelmoune's avatar
      Style(9) and whitespace OCD, varnishtest edition · 70d5051f
      Dridi Boukelmoune authored
      See dd28fc73 for the whole story.
      70d5051f
    • Dridi Boukelmoune's avatar
      Style(9) and whitespace OCD · dd28fc73
      Dridi Boukelmoune authored
      Dealing with code style violations around the return keyword, I figured
      I could automate that fix, so I tried with my favourite refactoring tool
      and following those steps:
      
          $ cat >return.cocci <<EOF
          @@
          expression rv;
          @@
      
          - return rv;
          + return (rv);
          EOF
          $ spatch --dir . --in-place --sp-file return.cocci
      
      Unfortunately that leads to proper return statements having their return
      value enclosed twice, like `return ((rv))`. So a bit more steps to go:
      
          $ cat >rereturn.cocci <<EOF
          @@
          expression rv;
          @@
      
          - return ((rv));
          + return (rv);
          EOF
          $ spatch --dir . --in-place --sp-file rreeturn.cocci
      
      At this point you don't want to touch bundled code, right? So let's take
      care of libvgz and shout out to teken that saw no changes at all!
      
          $ git checkout -- lib/libvgz/
      
      The next step is to manually review all the changes, because Coccinelle
      is not aware of how we break lines and unbreaks them. That's quite
      tedious but I was waiting for someone and they are still late as I'm
      describing the whole process.
      
      Care was taken not to touch varnishtest to make it easier to sync with
      vtest. A dedicated patch will follow.
      dd28fc73
    • Dridi Boukelmoune's avatar
      Whitespace OCD · 248a9a50
      Dridi Boukelmoune authored
      248a9a50
    • Poul-Henning Kamp's avatar
      Varnish source files are utf-8 · aadeeabb
      Poul-Henning Kamp authored
      aadeeabb
    • Federico G. Schwindt's avatar
      More python3 changes · fe9ec92a
      Federico G. Schwindt authored
      fe9ec92a
    • Geoff Simmons's avatar
      Don't mention the catflap in "Upgrading". · 6fc0b3c7
      Geoff Simmons authored
      6fc0b3c7