Projects tagged ‘diff’ and ‘difference’


Jump to tag:

Projects tagged ‘diff’ and ‘difference’

Filtered by Project Tags diff difference

Refine results Project Tags compare (7) comparison (6) java (6) patch (4) 2-way (4) 3-way (3) merge (3) differences (3) viewer (3) csharp (2) xml (2) c (1)

[11 total ]

617 Users
   

The GNU diffutils are comprised of diff, diff3, sdiff, and cmp, utilities for showing differences between files. The manual also documents patch, which uses diff output to update files.
Created over 2 years ago.

107 Users
   

Meld is a visual diff and merge tool. You can compare two or three files and edit them in place (diffs update dynamically). You can compare two or three folders and launch file comparisons. You can ... [More] browse and view a working copy from popular version control systems such such as CVS, Subversion, Bazaar-ng and Mercurial. [Less]
Created over 3 years ago.

64 Users
   

KDiff3 is a graphical text difference analyzer for up to 3 input files, provides character-by-character analysis and a text merge tool with integrated editor. It can also compare and merge directories. Platform-independant.
Created over 3 years ago.

6 Users
   

Daisy Diff is a Java library that diffs (compares) HTML files. Added and removed words are highlighted and changes to the styling are annotated. This project was a Google Summer of Code project ... [More] for DaisyCMS. Features * Works with badly formed HTML that can be found "in the wild". * The diffing is more specialized in HTML than XML tree differs. Changing part of a text node will not cause the entire node to be changed. * In addition to the default visual diff, HTML source can be diffed coherently. * Provides easy to understand descriptions of the changes. * Allow easy browsing of the modifications through keyboard shortcuts. [Less]
Created over 2 years ago.

1 Users

DotDiff is a small Xml Compare Library, allowing the developer to compare 2 Xml files. It supports mearging of any differences into a single file, or the generation of a diff gram. Comes with a small test UI
Created 10 months ago.

0 Users

The Project was moved. New place is http://code.google.com/p/java-diff-utils/
Created 4 months ago.

0 Users

Thunar context menu extension to launch file/directory comparison tools.
Created about 1 year ago.

0 Users

This is a package of a few classes that allow you to find differences between two strings and store the resulting diffs compactly in a database. There are two ways of comparing strings: by characters ... [More] or by sequences of characters belonging to the same type. I.e. sequences of letters, punctuation marks, digits, etc. In the frameworks of this project, such sequences are called "cars" and the string, that is broken down to "cars" is called a "Train". [Less]
Created 11 months ago.

0 Users

The Diff Match and Patch libraries offer robust algorithms to perform the operations required for synchronizing plain text. Diff: Compare two blocks of plain text and efficiently return a list of ... [More] differences. Diff Demo Match: Given a search string, find its best fuzzy match in a block of plain text. Weighted for both accuracy and location. Match Demo Patch: Apply a list of patches onto plain text. Use best-effort to apply patch even when the underlying text doesn't match. Patch Demo Currently available in Java, JavaScript, C++, C# and Python. Regardless of language, each library features the same API and the same functionality. All versions also have comprehensive test harnesses. Public UsersGoogle Documents MobWrite Collabedit PatchworkEditor WhiteRoom Mozilla Bespin Your project here... AlgorithmsThis library implements Myer's diff algorithm which is generally considered to be the best general-purpose diff. A layer of pre-diff speedups and post-diff cleanups surround the diff algorithm, improving both performance and output quality. This library also implements a Bitap matching algorithm at the heart of a flexible matching and patching strategy. [Less]
Created about 1 year ago.

0 Users

Diff Utils library is an OpenSource library for performing the comparison operations between texts: computing diffs, applying patches, generating unified diffs or parsing them, generating diff output ... [More] for easy future displaying (like side-by-side view) and so on. Main reason to build this library was the lack of easy-to-use libraries with all the usual stuff you need while working with diff files. Originally it was inspired by JRCS library and it's nice design of diff module. Main Featurescomputing the difference between two texts. capable to hand more than plain ascci. Arrays or List of any type that implements hashCode() and equals() correctly can be subject to differencing using this library patch and unpatch the text with the given patch parsing the unified diff format producing human-readable differences Coming eventuallysupport for inline diffs in output helpers for showing side-by-side, line-by-line diffs or text with inter-line and intra-line change highlights customization of diff algorithm for better experience while computing diffs between strings (ignoring blank lines or spaces, etc) generating the output in unified diff format. Handing other formats (CVS). AlgoritmsThis library implements Myer's diff algorithm. But it can easily replaced by any other which is better for handing your texts. I have plan to add implementation of some in future. [Less]
Created 3 months ago.