1. 16 11月, 2006 1 次提交
    • S
      git-gui: Automatically update-index all included files before commit. · bbe3b3b9
      Shawn O. Pearce 提交于
      If the user has "Allow Partially Included Files" disabled (and most
      probably will as its the default setting) we should run update-index
      on every included file before commit to make sure that any changes
      made by the user since the last rescan will still be part of this
      commit.
      
      If we don't update-index every modified file the user will likely
      become confused when part of their changes were committed and other
      parts weren't; and those other parts won't show up until a later
      rescan occurs.  Since we don't rescan immediately after a commit
      this may be a while.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      bbe3b3b9
  2. 14 11月, 2006 6 次提交
    • S
      git-gui: Allow update_index to also run a script when it completes. · 04b39382
      Shawn O. Pearce 提交于
      Like rescan we also have cases where we need to perform a script
      after we have finished updating a number of files in the index.  By
      changing the parameter structure of update_index we can easily pass
      through any script we need to run afterwards, such as picking up
      in the middle of a commit, or finishing what is left of a rescan.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      04b39382
    • S
      git-gui: Provide an after-rescan script to rescan. · 8f52548a
      Shawn O. Pearce 提交于
      There are some situations where we need to run rescan and have it do
      more than just updating the status in the UI when its complete.  To
      help with that this changes the rescan procedure to take a script which
      it will run at the global level as soon as the rescan is done and the
      UI has finished updating with the results.  This is useful for example
      if we performed a rescan as part of a commit operation; we can go back
      to the commit where we left off when the rescan got initiated.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      8f52548a
    • S
      git-gui: Refactor update_status -> rescan. · 99058720
      Shawn O. Pearce 提交于
      Since we refer to the act of updating our memory structures with index
      and working directory differences as a rescan in the UI its probably
      a good idea to make the related procedures have the same name.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      99058720
    • S
      git-gui: Implemented multiple selection in file lists. · 24263b77
      Shawn O. Pearce 提交于
      Because I want to let users apply actions to more than one file at
      a time we really needed a concept of "the current selection" from
      the two file lists.
      
      Since I'm abusing a Tk text widget for the file displays I can't
      really use the Tk selection to track which files are picked and
      which aren't.  So instead we keep this in an array to tell us
      which paths are currently selected and we use an inverse fg/bg
      for the selected file display.  This is common most operating
      systems as a selection indicator.
      
      The selection works like most users would expect; single click will
      clear the selection and pick only that file, M1-click (aka Ctrl-click
      or Cmd-click) will toggle the one file in/out of the selection, and
      Shift-click will select the range between the last clicked file and
      the currently clicked file.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      24263b77
    • S
      git-gui: Narrow the no differences information message. · a37eee44
      Shawn O. Pearce 提交于
      On Mac OS X the no differences informational message was linewrapped
      at the wrong points due to the limited width of the system dialog,
      yet the LFs embedded in the message (where I linewrapped it manually)
      were also being honored.  This resulted in a very difficult to read
      paragraph of text.
      
      So this narrows the text down by another 10 columns or so, making it
      more readable.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      a37eee44
    • S
      git-gui: Refactor mouse clicking on file names/icons. · 7d0d289e
      Shawn O. Pearce 提交于
      I'm not a huge fan of putting the left and right mouse actions into
      the same procedure.  Originally this is how Paul had implemented the
      logic in gitool and I had carried some of that over into git-gui, but
      now that I'm getting ready to implement right mouse click features to
      act on files I really should split this apart.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      7d0d289e
  3. 13 11月, 2006 20 次提交
    • S
      git-gui: By default don't allow partially included files. · f7f8d322
      Shawn O. Pearce 提交于
      The concept of the Git index is confusing for many users, especially
      those who are newer to Git.
      
      Since git-gui is (at least partially) intended to be used by newer
      users who don't need the complexity of the index to be put in front
      of them early on, we should hide it by making any partially included
      file fully included as soon as we identify it.  To do this we just
      run a quick update_index pass on any file which differs both in the
      index and the working directory, as these files have already been
      at least partially included by the user.
      
      A new option has been added in the options dialog (gui.partialinclude)
      which lets the user enable accessing the index from git-gui.  This
      just disables the automatic update_index pass on partially included
      files.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      f7f8d322
    • S
      git-gui: Reverted file name text field to a label. · fce89e46
      Shawn O. Pearce 提交于
      So although a text field with a flat relief looks like a label on
      Windows it doesn't on Mac OS X.  The Aqua version of Tk is still
      drawing a border around the text field and that makes the diff pane
      header look pretty ugly.
      
      Earlier I had made the file name area into a text widget so the user
      could highlight parts of it and copy them onto the clipboard; but with
      the context menu being present this isn't quite as necessary as the user
      can copy the file name to the clipboard using that instead.  So although
      this is a small loss in functionality for non-Mac OS X systems I think it
      is still reasonable.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      fce89e46
    • S
      git-gui: Minor UI layout improvements for console windows. · 1e5c18fb
      Shawn O. Pearce 提交于
      Moved the Close button over to the lower right corner where our
      Cancel/Save buttons are in the options dialog.  This should fit
      better with our own look and feel as well as that of most apps
      on Mac OS X and Windows.
      
      Also set the lower status bar in a console window to indicate the
      process is working and that the user should wait for it to finish.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      1e5c18fb
    • S
      git-gui: Display status on left in diff header. · 3e7b0e1d
      Shawn O. Pearce 提交于
      Because the Tk pack layout manager gives all space to the right/bottom
      most widget during expand/contract of the frame we were adding and
      removing all space from the status area of the bar and not from the
      file name, which is what we actually wanted.
      
      A simple enough fix is to just put the status of the given file on
      the left side of the diff viewer header rather than on the right.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      3e7b0e1d
    • S
      git-gui: Correct language for M_/A_ status codes. · 135f76ed
      Shawn O. Pearce 提交于
      When I changed from 'check in' to 'include' I missed the human friendly
      status displayed in the right side of the diff viewer heading.  It was
      still reporting 'Checked in' for a fully included file, which is not
      what we wanted it to say.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      135f76ed
    • S
      git-gui: Allow the user to copy name of the file in the diff viewer. · c11b5f20
      Shawn O. Pearce 提交于
      There's a lot of reasons why the user might need to obtain the
      complete (or just part of) path of a file which they are currently
      viewing in the diff viewer pane.  So now we allow selection on this
      widget by using a text widget instead of a label.  We also offer a
      context menu which has actions for copying the selection or the entire
      value onto the clipboard.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      c11b5f20
    • S
      git-gui: Use a smaller pipe buffer for update-index. · 7f09cfaf
      Shawn O. Pearce 提交于
      When we shove a large number of files at update-index and they have
      very short path names we are likely going to fit a large number of
      them into the pipe buffer very early; thereby seeing a huge progress
      update followed by lots of waiting between progress updates due to
      the latency of update-index.
      
      Using a smaller buffer should help smooth out the progress updates
      as we are better able to keep tabs on the update-index process'
      progress through our list of paths.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      7f09cfaf
    • S
      git-gui: Sort the list of paths being updated in the index. · aaf1085a
      Shawn O. Pearce 提交于
      Its a little surprising to see the UI update the icons for files
      in random order, due to the fact that the files are updating in
      the order they appear within the array (which is based on a hash
      function and not order).  So sort the list of files before we send
      any to update-index so the order of operation is means something to
      the user.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      aaf1085a
    • S
      git-gui: Allow the user to control the number of context lines in a diff. · 358d8de8
      Shawn O. Pearce 提交于
      When displaying a diff the Git default of 3 line of context may not be
      enough for a user to see what has actually changed.  Consequently we
      set our own program default to 5 lines of context and then allow the
      user to adjust this on a per-repository and global level through our
      options dialog.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      358d8de8
    • S
      git-gui: Cleanup diff construction code to prepare for more options. · fd2656fd
      Shawn O. Pearce 提交于
      I'd like to allow the user to have more control over how we format
      the diff in the diff viewer; to that end we need to add additional
      options to the diff-index command line as we construct the command
      for execution.
      
      So cleanup the command handling code now to use lappend so we can
      come back and add in our additional options.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      fd2656fd
    • S
      git-gui: Reshow diff if we sent the file to update-index. · 2cbe5577
      Shawn O. Pearce 提交于
      We can't ask the diff viewer to recompute the diff until after our
      update-index child process terminates, as the diff programs need to
      be able to read the updated index in order to generate the correct
      diff.  This is actually why we prevent diffs from being generated
      while there is an update lock on the index, which is why we ignored
      our own show_diff invocation in the middle of the write_update_index
      event handler.
      
      So now we mark a flag if we identify that the file currently in the
      diff viewer was also sent to update-index; then later when the
      update-index process has terminated we update the diff viewer if
      the flag is true.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      2cbe5577
    • S
      git-gui: Always use eq/ne for string comparsions. · 043f7011
      Shawn O. Pearce 提交于
      This is one of those stupid Tcl mistakes that an experienced Tcl
      programmer just wouldn't make.  We should always use eq and ne to
      compare string values (and never == or !=) as when we use ==/!=
      Tcl will attempt to convert either side to numeric if one of the
      two sides looks like a numeric.  This could cause some trouble if
      a file named "1" exists and a different file named "1.0" also exists;
      their paths are equal according to == but not according to eq.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      043f7011
    • S
      git-gui: Added post-commit invocation after the commit is done. · c8ebafd8
      Shawn O. Pearce 提交于
      Since git-commit.sh invokes hooks/post-commit after running git rerere
      we should do the same if its available and executable.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      c8ebafd8
    • S
      git-gui: Remove the commit_active global variable. · 333b0c74
      Shawn O. Pearce 提交于
      We were originally trying to use $commit_active to tell us if there was
      a commit currently in progress, just so we didn't attempt to start a
      second (parallel) one by mistake.  But really the index lock handles
      this for us as it won't let us lock the index if it is already locked
      for update.  So this can't happen.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      333b0c74
    • S
      git-gui: Run the pre-commit hook in the background. · 4658b56f
      Shawn O. Pearce 提交于
      I started to notice on Windows that commits took a lot longer to get
      going than on my Mac OS X system.  The real reason is the repositories
      that I'm testing with on Windows all enabled the standard pre-commit hook
      while my test repository on Mac OS X doesn't have it executable (so its
      not running).  So the Windows repositories are spending this
      lag time running that hook.
      
      Now we run the pre-commit hook in the background, allowing the UI to
      update and tell the user we are busy doing things.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      4658b56f
    • S
      git-gui: Allow the user to disable diff stat summary during pull. · ebf336b9
      Shawn O. Pearce 提交于
      Because the pull diffstat summary can take as long as the pull itself
      some users may just choose to disable the summary and save themselves
      an extra few seconds during each pull.  This is especially true if the
      user really doesn't care about the other files being modified, as due
      to their project organizational structure they aren't really responsible
      for their content.
      
      This adds an option to the options panel which lets the user disable
      the diffstat summary (and thus we pass --no-summary to git-pull) but
      there does appear to be a bug in the config saving code where we did
      not set the local repo config differently from the global config.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      ebf336b9
    • S
      git-gui: Don't load the global options unless necessary. · 6bbd1cb9
      Shawn O. Pearce 提交于
      Since git-repo-config will supply us a union of both the global and
      the local repository configuration data when we invoke it during startup
      there is no reason to go get the global configuration with an extra call
      to repo-config unless the user is trying to view & edit all options in
      the options dialog.
      
      Since skipping this extra repo-config invocation save us a little bit of
      time its nice to be able to avoid it when we are invoked as git-citool
      and won't be running very long.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      6bbd1cb9
    • S
      git-gui: Hide non-commit related commands when invoked as git-citool. · 4ccdab02
      Shawn O. Pearce 提交于
      If the user is invoking us as git-citool then they want to perform a
      single commit and exit quickly.  Since we are about to be a very short
      lived process we should do what we can to avoid spending CPU time setting
      up menus which the user will never use, like the fetch/push/pull menus.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      4ccdab02
    • S
      git-gui: Correct bugs in font config handling. · 7b64d0b7
      Shawn O. Pearce 提交于
      Apparently Tcl is being helpful on Windows during exec and is throwing a
      \ in front of every { it finds in the string.  I'm guessing they think
      the value might be read by another Tcl program?  Anyway, Git faithfully
      stores the \{ sequence and sends it back that way to Tcl, at which point
      Tcl parses the list wrong and starts to break it in the middle of any
      element which contains spaces.  Therefore a list such as:
      
        -family {Times New Roman}
      
      gets broken up into the pairs:
      
        {-family \{Times}
        {New Roman}
      
      which is very incorrect.  So now we replace all { and } with "", at which
      point Tcl doesn't throw \ in front of the " on the way out to Git yet it
      reads it correctly as a list on the way back in.
      
      I also found and fixed a bug in the way we restored the fonts when the
      user presses Restore Defaults in the options dialog.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      7b64d0b7
    • S
      git-gui: Use 'after 1' to post UI rather than tkwait. · 4af2c384
      Shawn O. Pearce 提交于
      The tkwait visibility command and Windows doesn't seem to realize
      the window is visible, consequently we are never finishing our
      initialization by calling update_status.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      4af2c384
  4. 12 11月, 2006 13 次提交
    • S
      git-gui: Added Options... menu item to end of diff context menu. · 8009dcdc
      Shawn O. Pearce 提交于
      Since the font name can only be chosen from within the options dialog
      giving the user fast access to this dialog from within a context menu
      that already talks about increasing and decreasing the font size may
      help users to locate the font name setting as well.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      8009dcdc
    • S
      git-gui: Minor options dialog UI cleanups. · e01b4221
      Shawn O. Pearce 提交于
      Display the name of "this" repository rather than the quite ambiguous
      string "This".  The idea is that seeing the name of the directory the
      repository is stored in should help jog the user's memory about what
      they are setting options for.
      
      Also place the options dialog immediately over the git-gui main window
      when it gets opened.  This way the user isn't scrolling very far away
      to gain access to the window.  At least on my Mac OS X system not doing
      this makes the options dialog open rather far away, thus requiring lots
      of mouse activity to reach it.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      e01b4221
    • S
      git-gui: Supply progress feedback when running update-index. · 74e6b12f
      Shawn O. Pearce 提交于
      The git-update-index process can take a while to process a large
      number of files; for example my laptop would probably need almost
      an hour to chug through 20,000 modified files.  In these incredibly
      large cases the user should be given at least some feedback to let
      them know the application is still working on their behalf, even if
      it won't them do anything else (as the index is locked).
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      74e6b12f
    • S
      git-gui: Allow the user to manipulate the fonts from the options panel. · 92148d80
      Shawn O. Pearce 提交于
      This turned out to take a lot more time than I thought it would take;
      but now users can edit the main UI font and the diff/fixed with font
      by changing both the family name and/or the point size of the text.
      
      We save the complete Tk font specification to the user's ~/.gitconfig
      file upon saving options.  This is probably more verbose than it needs
      to be as there are many useless options recorded (e.g. -overstrike 0)
      that a user won't really want to use in this application. 
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      92148d80
    • S
      git-gui: Refactor options menu into an options dialog. · 51f4d16b
      Shawn O. Pearce 提交于
      I decided that the options menu was going to turn into a mess after
      a while as I start to add additional features to git-gui.  The better
      approach would be to create a dialog that lets the user edit the options,
      including their --global options.
      
      We also wisely let the user press Cancel (or destroy the window) to abort
      any sort of option editing session, without the options being changed.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      51f4d16b
    • S
      git-gui: Use arrow cursor rather than left_ptr. · 00f949fb
      Shawn O. Pearce 提交于
      Arrow is available on all Tk platforms and is mapped to the native
      system cursor on Windows and Mac OS X.  Consequently its the better
      cursor choice as it should match whatever the system has configured
      for the standard pointing thingy.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      00f949fb
    • S
      git-gui: Rename quitting global to is_quitting. · b5834d70
      Shawn O. Pearce 提交于
      This is a boolean value; naming it as such is a good thing.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      b5834d70
    • S
      git-gui: Improve right click context menu binding on all platforms. · 16fccd7a
      Shawn O. Pearce 提交于
      Apparently <Button-3> doesn't work on my single button PowerBook
      mouse under Mac OS X.  I'm guessing this is because Tk is stealing
      every event and doesn't realize that Control-Button-1 is actually
      supposed to invoke the context menu on this platform.
      
      So now we have a utility procedure is_MacOSX to guess if we are
      running on a Mac OS X system, and if so setup Control-Button-1 to
      also activate what Button-3 should have.  This does mean that I need
      to stay away from using Control-Button-1 as a binding in any other
      context.  Of course we should use $M1B for that, which is M1 (aka
      Command) on Mac OS X so that shouldn't prove to be a problem.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      16fccd7a
    • S
      git-gui: Make use of the Tk font system rather than faking it. · b4946930
      Shawn O. Pearce 提交于
      The native Tk font system is actually quite powerful and has the nice
      property that modifications to a named font are immediately reflected
      throughout all widgets currently displayed.  This really saves us
      from needing to write all of the reconfigure code as part of our font
      display.
      
      I also fixed the way we detect and apply the system font on the main
      UI widgets as although it worked on a Windows 2000 system it does not
      work at all on my Mac OS 10.4 system.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      b4946930
    • S
      git-gui: Refresh a file if it has an empty diff. · 16403d0b
      Shawn O. Pearce 提交于
      When the user has enabled the Trust File Modification Timestamp option
      then we may display a file as being modified yet that file may not have
      a difference.  When the user clicks on that file we wind up displaying
      an empty diff viewer, which makes no sense to the user.
      
      So instead if we get an empty diff and the user has this option enabled
      and the file's current state is _M (no change in index but the working
      file appears modified) then run a quick update-index on just that file
      and remove it from the list of modified files.  We also give the user
      a quick dialog stating we are removing it, and why.
      
      Usually I don't run into this situation when I have the Trust File
      Modification Timestamp option enabled, so its not that annoying to
      have a dialog pop open to remind me why there are no differences.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      16403d0b
    • S
      git-gui: Allow the user to change the diff viewer font size. · 2c26e6f5
      Shawn O. Pearce 提交于
      Because the diff area is one of the most important areas to be able to
      read users should be able to increase or decrease the size of the font
      used within that area.
      
      Currently we save that back to the global configuration, even if it
      may have originated from the local repository configuration.  This
      is probably going to be considered to be a bug by at least one user
      who wants some sort of different font within a given repository, but
      I'm just going to ignore the problem for now.
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      2c26e6f5
    • S
      git-gui: Honor system font and let user configure fonts. · f019c96a
      Shawn O. Pearce 提交于
      Rather than hardcoding our fonts to something that I thought was
      reasonable, guess font_ui off the font used by the system in the
      menu bar.  This way the application conforms by default to whatever
      the user's desktop is setup to.
      
      We also now let the user supply font configuration through their
      repository configuration as gui.fontui (the overall UI font) and
      gui.fontdiff (the font used for the diff viewer).
      Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
      f019c96a
    • S
      058803f4