1. 26 7月, 2007 7 次提交
  2. 25 7月, 2007 13 次提交
  3. 24 7月, 2007 8 次提交
  4. 23 7月, 2007 2 次提交
    • J
      gitweb: Fix support for legacy gitweb config for snapshots · a781785d
      Jakub Narebski 提交于
      Earlier commit which cleaned up snapshot support and introduced
      support for multiple snapshot formats changed the format of
      $feature{'snapshot'}{'default'} (gitweb configuration) and
      gitweb.snapshot configuration variable (repository configuration).
      It supported old gitweb.snapshot values of 'gzip', 'bzip2' and 'zip'
      and tried to support, but failed to do that, old values of
      $feature{'snapshot'}{'default'}; at least those corresponding to
      old gitweb.snapshot values of 'gzip', 'bzip2' and 'zip', i.e.
        ['x-gzip', 'gz', 'gzip']
        ['x-bzip2', 'bz2', 'bzip2']
        ['x-zip', 'zip', '']
      
      This commit moves legacy configuration support out of feature_snapshot
      subroutine to separate filter_snapshot_fmts subroutine. The
      filter_snapshot_fmts is used on result on result of
      gitweb_check_feature('snapshot').  This way feature_snapshot deals
      _only_ with repository config.
      
      As a byproduct you can now use 'gzip' and 'bzip2' as aliases to 'tgz'
      and 'tbz2' also in $feature{'snapshot'}{'default'}, not only in
      gitweb.snapshot.
      
      While at it do some whitespace cleanup: use tabs for indent, but
      spaces for align.
      Noticed-by: NMatt McCutchen <hashproduct@gmail.com>
      Signed-off-by: NJakub Narebski <jnareb@gmail.com>
      Tested-by: NMatt McCutchen <hashproduct@gmail.com>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      a781785d
    • J
      fsck --lost-found: write blob's contents, not their SHA-1 · 16a7fcfe
      Johannes Schindelin 提交于
      When looking for a lost blob, it is much nicer to be able to grep
      through .git/lost-found/other/* than to write an inefficient loop
      over the file names.  So write the contents of the dangling blobs,
      not their object names.
      Signed-off-by: NJohannes Schindelin <johannes.schindelin@gmx.de>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      16a7fcfe
  5. 22 7月, 2007 6 次提交
  6. 21 7月, 2007 1 次提交
  7. 20 7月, 2007 3 次提交