Changes between Initial Version and Version 1 of TracChangeset


Ignore:
Timestamp:
02/23/05 16:07:38 (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracChangeset

    v1 v1  
     1= Trac Changeset Module = 
     2[[TracGuideToc]] 
     3 
     4Trac has a built-in functionality for visualizing diffs - changes to files. 
     5 
     6== The Changeset View == 
     7 
     8When viewing a commited changeset, such as when clicking a changeset 
     9[wiki:TracLinks TracLink] or a changeset event-line in the  
     10[wiki:TracTimeline timeline], Trac will display what changes this current set of patches imposes. 
     11 
     12The changeset view consists of two parts, the '''header''' and the '''diff view'''. 
     13 
     14=== Changeset Header === 
     15 
     16The header shows an overview of the whole changeset. 
     17Here you will find information such as: 
     18 
     19 * Timestamp -- When the changeset was commited 
     20 * Author -- Who commited the changeset 
     21 * Message -- A brief description from the author (the commit log message) 
     22 * Files -- A list of files affected by this changeset 
     23 
     24In front of each listed file, you'll find  a colored rectangle. The color 
     25indicates how the file is affected by the changeset. 
     26  
     27 * Green: Added 
     28 * Red: Removed 
     29 * Yellow: Modified 
     30 
     31The color legend is located below the header as a reminder. 
     32 
     33=== Diff View === 
     34 
     35Below the header is the main part of the changeset, the diff view. Each file is shown in a separate section, each of which will contain only the regions of the file that are affected by the changeset. There are two different styles of displaying the diffs: ''inline'' or ''side-by-side'' (you can switch between those styles using the preferences form): 
     36 
     37 * The ''inline'' style shows the changed regions of a file underneath eachother. A region removed from the file will be colored red, an added region will be colored green. If a region was modified, the old version is displayed above the new version. Line numbers on the left side indicate the exact position of the change in both the old and the new version of the file. 
     38 * The ''side-by-side'' style shows the old version of the left and the new version on the right (this will typically require more screen width than the inline style.) Added and removed regions will be colored in the same way as with the inline style (green and red, respectively), but modified regions will have a yellow background. 
     39 
     40In addition, various advanced options are available in the preferences form for adjusting the display of the diffs: 
     41 * You can set how many lines are displayed before and after every change 
     42 * You can toggle whether blank lines, case changes and white space changes are ignored, thereby letting you find the functional changes more quickly 
     43 
     44---- 
     45See also: TracGuide, TracBrowser