Changes between Initial Version and Version 1 of SystemChangeset


Ignore:
Timestamp:
07/26/05 09:53:58 (19 years ago)
Author:
joe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SystemChangeset

    v1 v1  
     1= System Changeset Module = 
     2 
     3This system has a built-in functionality for visualizing diffs - changes to files. 
     4 
     5== The Changeset View == 
     6 
     7When viewing a commited changeset, such as when clicking a changeset 
     8[wiki:SystemLinks SystemLink] or a changeset event-line in the  
     9[wiki:SystemTimeline timeline], Trac will display what changes this current set of patches imposes. 
     10 
     11The changeset view consists of two parts, the '''header''' and the '''diff view'''. 
     12 
     13=== Changeset Header === 
     14 
     15The header shows an overview of the whole changeset. 
     16Here you will find information such as: 
     17 
     18 * Timestamp -- When the changeset was commited 
     19 * Author -- Who commited the changeset 
     20 * Message -- A brief description from the author (the commit log message) 
     21 * Files -- A list of files affected by this changeset 
     22 
     23In front of each listed file, you'll find  a colored rectangle. The color 
     24indicates how the file is affected by the changeset. 
     25  
     26 * Green: Added 
     27 * Red: Removed 
     28 * Yellow: Modified 
     29 
     30The color legend is located below the header as a reminder. 
     31 
     32=== Diff View === 
     33 
     34Below 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): 
     35 
     36 * 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. 
     37 * 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. 
     38 
     39In addition, various advanced options are available in the preferences form for adjusting the display of the diffs: 
     40 * You can set how many lines are displayed before and after every change 
     41 * You can toggle whether blank lines, case changes and white space changes are ignored, thereby letting you find the functional changes more quickly 
     42 
     43---- 
     44See also: SystemGuide, SystemBrowser