1. 09 7月, 2007 2 次提交
  2. 04 7月, 2007 3 次提交
    • P
      gitk: Remove the unused stopfindproc function · d36d385e
      Paul Mackerras 提交于
      This was a hangover from before the "Files" and "Pickaxe" parts of
      the Find function were moved to the highlight facility in commit
      60f7a7dc.  It serves no useful
      purpose any more, so this removes it.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      d36d385e
    • P
      gitk: Fix bug in the anc_or_desc routine · 69c0b5d2
      Paul Mackerras 提交于
      I missed the case where both nodes have no children and therefore
      have no incoming arcs.  This fixes it.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      69c0b5d2
    • P
      gitk: Fix the find and highlight functions · 4fb0fa19
      Paul Mackerras 提交于
      This reworks the way that the "Find" button (and the /, ?, ^F, and ^G
      keys) works.  Previously, pressing the "Find" button would cause gitk
      to go off and scan through every commit to see which commits matched,
      and the user interface was completely unreponsive during that time.
      Now the searching is done in chunks using the scheduler, so the UI
      still responds, and the search stops as soon as a matching commit is
      found.
      
      The highlighting of matches using a yellow background is now done in
      the commit-drawing code and the highlighting code.  This ensures that
      all the commits that are visible that match are highlighted without
      the search code having to find them all.
      
      This also fixes a bug where previously-drawn commits that need to be
      highlighted were not being highlighted.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      4fb0fa19
  3. 28 6月, 2007 2 次提交
  4. 26 6月, 2007 1 次提交
    • P
      gitk: Add a progress bar to show progress while resetting · 706d6c3e
      Paul Mackerras 提交于
      Since git reset now gets chatty while resetting, we were getting errors
      reported when a reset was done using the "reset branch to here" menu
      item.  With this we now read the progress messages from git reset and
      update a progress bar.  Because git reset outputs the progress messages
      to standard error, and Tcl treats messages to standard error as error
      messages, we have to invoke git reset via a shell and redirect standard
      error into standard output.
      
      This also fixes a bug in computing descendent heads when head ids
      are changed via a reset.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      706d6c3e
  5. 23 6月, 2007 16 次提交
    • P
      gitk: Improve handling of whitespace and special chars in filenames · 9396cd38
      Paul Mackerras 提交于
      The main thing here is better parsing of the diff --git lines in the
      output of git diff-tree -p.  We now cope with filenames in quotes with
      special chars escaped.  If the filenames contain spaces they aren't
      quoted, however, which can create difficulties in parsing.  We get
      around the difficulties by detecting the case when the filename hasn't
      changed (chop the part after "diff --git " in two and see if the halves
      match apart from a/ in one and b/ in the other), and if it hasn't
      changed, we just use one half.  If the filename has changed we wait
      for the "rename from" and "rename to" lines, which give the old and
      new filenames unambiguously.
      
      This also improves the parsing of the output of git diff-tree.
      Instead of using lindex to extract the filename, we take the part from
      the first tab on, and if it starts with a quote, we use [lindex $str 0]
      to remove the quotes and convert the escapes.
      
      This also gets rid of some unused tagging of the diff text, uses
      [string compare] instead of [regexp] in some places, and fixes the
      regexp for detecting the @@ hunk-separator lines (the regexp wasn't
      accepting a single number, as in "-0,0 +1" for example).
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      9396cd38
    • P
      gitk: Fix bug causing nearby tags/heads to sometimes not be displayed · f3326b66
      Paul Mackerras 提交于
      When we compute descendent heads and descendent/ancestor tags, we
      cache the results.  We need to be careful to invalidate the cache
      when we add stuff to the graph.  Also make sure that when we cache
      descendent heads for a node we only cache the heads that are actually
      descendents of that node.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      f3326b66
    • P
      gitk: Limit how often we change the canvas scrolling region · a2c22362
      Paul Mackerras 提交于
      For some unknown reason, changing the scrolling region on the canvases
      provokes multiple milliseconds worth of computation in the X server,
      and this can end up slowing gitk down significantly.  This works around
      the problem by limiting the rate at which we update the scrolling region
      after the first 100 rows to at most 2 per second.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      a2c22362
    • P
      gitk: Add a "reset branch to here" row context-menu operation · 6fb735ae
      Paul Mackerras 提交于
      This adds an entry to the menu that comes up when the user does a
      right-click on a row.  The new entry allows the user to reset the
      currently checked-out head to the commit for the row that they did
      the right-click on.  The user has to select what type of reset to
      do, and confirm the reset, via a dialog box that pops up.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      6fb735ae
    • P
      gitk: Get rid of the childlist variable · 6a90bff1
      Paul Mackerras 提交于
      The information in childlist is a duplicate of what's in the children
      array, and it wasn't being accessed often enough to be really worth
      keeping the list around as well.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      6a90bff1
    • P
      gitk: Speed up the reading of references · 62d3ea65
      Paul Mackerras 提交于
      We were doing two execs for each tag - one to map the tag ID to a
      commit ID and one to read the contents of the tag for later display.
      This speeds up the process by not reading the contents of the tag
      (instead it is read later if needed), and by using the -d flag to
      git show-ref, which gives us refs/tags/foo^{} lines which give us
      the commit ID.  Also this uses string operations instead of regexps.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      62d3ea65
    • P
      gitk: Show local uncommitted changes as a fake commit · 219ea3a9
      Paul Mackerras 提交于
      If there are local changes in the repository, i.e., git-diff-index HEAD
      produces some output, then this optionally displays an extra row in
      the graph as a child of the HEAD commit (but with a red circle to
      indicate that it's not a real commit).  There is a checkbox in the
      preferences window to control whether gitk does this or not.
      
      Clicking on the extra row shows the diffs between the working directory
      and the HEAD (using git diff-index -p).  The right-click menu on the
      extra row allows the user to generate a patch containing the local diffs,
      or to display the diffs between the working directory and any commit.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      219ea3a9
    • P
      gitk: New algorithm for drawing the graph lines · 322a8cc9
      Paul Mackerras 提交于
      This only draws as much of the graph lines as is visible.  This can
      happen by adding coordinates on to an existing graph line or by
      creating a new line.  This means that we only need to have laid out
      and optimized as much of the graph as is actually visible in order to
      draw it, including the lines (previously we didn't draw a graph
      line until we had laid out and optimized to the end of a segment of
      the line, i.e. down to a down-arrow or to the row where the line's
      commit is displayed).  This also lets us get rid of the linesegends
      list, and gives us an easy workaround for the X server bug that
      causes long lines to be misdrawn.  This also gets rid of the use
      of rowoffsets in drawlineseg et al.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      322a8cc9
    • P
      gitk: Store ids in rowrangelist and idrowranges rather than row numbers · 66e46f37
      Paul Mackerras 提交于
      This removes the need for insertrow to go through rowrangelist and
      idrowranges and adjust a lot of entries.  The first entry for a given
      id is now the row number of the first child, not that row number + 1,
      and rowranges compensates for that so its callers didn't have to
      change.  This adds a ranges argument to drawlineseg so that we can
      avoid calling rowranges a second time inside drawlineseg (all its
      callers already called rowranges).
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      66e46f37
    • P
      gitk: Disable the head context menu entries for the checked-out branch · 00609463
      Paul Mackerras 提交于
      Neither the "check out this branch" nor the "remove this branch"
      menu item can be used on the currently-checked out branch, so disable
      them.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      00609463
    • P
      gitk: Cope with commit messages with carriage-returns and initial blank lines · 43c25074
      Paul Mackerras 提交于
      In some repositories imported from other systems we can get carriage
      return characters in the commit message, which leads to a multi-line
      headline being displayed in the summary window, which looks bad.
      Also some commit messages start with one or more blank lines, which
      leads to an empty headline.  This fixes these problems.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      43c25074
    • P
      gitk: Implement a simple scheduler for the compute-intensive stuff · 7eb3cb9c
      Paul Mackerras 提交于
      This allows us to do compute-intensive processing, such as laying out
      the graph, relatively efficiently while also having the GUI be
      reasonably responsive.  The problem previously was that file events
      were serviced before X events, so reading from another process which
      supplies data quickly (hi git rev-list :) could mean that X events
      didn't get processed for a long time.
      
      With this, gitk finishes laying out the graph slightly sooner and
      still responds to the GUI while doing so.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      7eb3cb9c
    • P
      gitk: Improve the behaviour of the initial selection · e507fd48
      Paul Mackerras 提交于
      It used to be that if you clicked on a line while gitk was still drawing
      stuff, it would immediately re-select the first line of the display.
      This fixes that.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      e507fd48
    • P
      3fc4279a
    • P
      gitk: Don't try to list large numbers of tags or heads in the details pane · 0a4dd8b8
      Paul Mackerras 提交于
      With some large repositories, a commit can end up on thousands of
      branches, which results in an extremely long "Branches:" line in the
      details window, and that results in the window being extremely slow
      to scroll.
      
      This fixes it by just showing "many (N)" after "Branches:", "Follows:"
      or "Precedes:", where N is the number of heads or tags.  The limit
      is currently set at 20 but could be made configurable (and the "many"
      could be a link to pop up a window listing them all in case anyone
      really wants to know).
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      0a4dd8b8
    • P
      gitk: New infrastructure for working out branches & previous/next tags · e11f1233
      Paul Mackerras 提交于
      Instead of working out descendent heads and descendent & ancestor
      branches in a two-pass algorithm, this reads and stores a simplified
      version of the graph topology, and works out descendent/ancestor
      tags and descendent heads on demand (with a bit of caching).
      
      The advantages of this are, first, that we now don't have to use
      --topo-order on the git rev-list process.  Secondly, we don't have
      to re-read the whole graph when tags or heads change or even when
      the graph changes.  Since we can cope with parents coming before
      children, we can update the graph by running a git rev-list with
      arguments that just give us the new commits, and merge the new
      commits into the simplified graph.
      
      The graph is simplified in the sense that commits with exactly one
      parent and one child (which is >90% of them in most cases) are grouped
      together into arcs joining nodes or 'branch/merge points', which are
      the commits that don't have exactly 1 parent and 1 child.  This reduces
      the size of the graph substantially and decreases the time to traverse
      it correspondingly.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      e11f1233
  6. 22 5月, 2007 4 次提交
  7. 19 4月, 2007 1 次提交
  8. 01 4月, 2007 2 次提交
  9. 21 3月, 2007 1 次提交
  10. 12 3月, 2007 1 次提交
  11. 15 2月, 2007 6 次提交
  12. 13 1月, 2007 1 次提交