Edgewall Software

Changes between Version 4 and Version 5 of TracChangeset


Ignore:
Timestamp:
Aug 24, 2004, 1:39:01 PM (20 years ago)
Author:
Christopher Lenz <cmlenz@…>
Comment:

Updated to 0.8 functionality

Legend:

Unmodified
Added
Removed
Modified
  • TracChangeset

    v4 v5  
    11= Trac Changeset Module =
     2
    23Trac has a built-in functionality for visualizing diffs - changes to files.
    3 
    4 Test
    54
    65== The Changeset View ==
     
    1413=== Changeset Header ===
    1514
    16 The diff body shows an overview of the whole changeset.
     15The header shows an overview of the whole changeset.
    1716Here you will find information such as:
    1817
    19  * Revision -- The unique revision ID for this changeset.
    20  * Timestamp -- When the changeset was commited.
    21  * Author -- Who commited the changeset.
    22  * Message -- A brief description from the author (the commit log message).
    23  * Files -- A list of files affected by this changeset.
     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
    2422
    2523In front of each listed file, you'll find  a colored rectangle. The color
     
    2826 * Green: Added
    2927 * Red: Removed
    30  * Orange: Modified
     28 * Yellow: Modified
    3129
    3230The color legend is located below the header as a reminder.
    3331
    3432=== Diff View ===
    35 Below the header is the main part of the changeset, the diff view.
    3633
    37 Each file is shown in a separate section, divided by a dashed line in the
    38 center. This is a '''side-by-side''' view showing only the portions of the file
    39 affected by this changeset.
     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):
    4035
    41 On the left hand side are the contents of the old version of the file, on the
    42 right side the new. To visualize the difference between the old and new
    43 version, each block of lines altered by the changeset has a colored
    44 background. The color reflect the change, and the meaning the same as in the
    45 header (see above).
     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
    4642
    4743----