1. 24 Jan, 2014 1 commit
    • Initial take on builtin drivers with multiline · a5a38643
      This extends the diff driver parser to support multiline driver
      definitions along with ! prefixing for negated matches.  This
      brings the driver function pattern parsing in line with core Git.
      
      This also adds an internal table of driver definitions and a
      fallback code path that will look in that table for diff drivers
      that are set with attributes without having a definition in the
      config file.  Right now, I just populated the table with a kind
      of simple HTML definition that is similar to the core Git def.
      Russell Belfer committed
  2. 12 Jun, 2013 1 commit
  3. 11 Jun, 2013 1 commit
    • Implement regex pattern diff driver · 5dc98298
      This implements the loading of regular expression pattern lists
      for diff drivers that search for function context in that way.
      This also changes the way that diff drivers update options and
      interface with xdiff APIs to make them a little more flexible.
      Russell Belfer committed
  4. 10 Jun, 2013 2 commits
    • Reorganize diff and add basic diff driver · 114f5a6c
      This is a significant reorganization of the diff code to break it
      into a set of more clearly distinct files and to document the new
      organization.  Hopefully this will make the diff code easier to
      understand and to extend.
      
      This adds a new `git_diff_driver` object that looks of diff driver
      information from the attributes and the config so that things like
      function content in diff headers can be provided.  The full driver
      spec is not implemented in the commit - this is focused on the
      reorganization of the code and putting the driver hooks in place.
      
      This also removes a few #includes from src/repository.h that were
      overbroad, but as a result required extra #includes in a variety
      of places since including src/repository.h no longer results in
      pulling in the whole world.
      Russell Belfer committed