Tagged Questions
1
vote
0answers
80 views
Calculating the difference in percentage of two HTML files
I'm writing a tool in php which compares HTML files and shows the differences. Now I'm looking for an efficient way to calculate the difference in percentage between two HTML files. These files can be ...
0
votes
2answers
46 views
Identify added or removed text in HTML files using Perl
My problem boils down to, I have multiple versions of the same HTML page, and I want to know if this page has changed using Perl. These files contain html/javascript and written English. The changes ...
14
votes
3answers
535 views
Building an HTML Diff/Patch Algorithm
A description of what I'm going to accomplish:
Input 2 (N is not essential) HTML documents.
Standardize the HTML format
Diff the two documents -- external styles are not important but anything ...
2
votes
1answer
140 views
Can I diff HTML by its semantic or structure? [closed]
For example, I want the following to be considered same.
<div id="div" class="txt">
Foo bar
</div>
and
<div class="txt" id="div" >Foo ...
0
votes
3answers
165 views
how to get html text differences like svn?
I am using PEAR text_diff class to get comparison of text. It works correct for plain text, but when I try to compare text with HTML tags, It gives wrong result
is there any way to compare two HTML ...
1
vote
1answer
160 views
HTML Diff tool API
I'm looking for an api that will visually show html difference for both structure, characters/words, and style. This tool must also support double byte characters and be flexible enough for me to add ...
1
vote
4answers
795 views
how to using python to diff two html files
i want use python to diff two html files:
example :
html_1 = """
<p>i love it</p>
"""
html_2 = """
<h2>i love it </p>
"""
the diff file will like this :
diff_html = """
...
1
vote
1answer
123 views
hot to use python diff html
is there a way diff html as bellow ?
html_1 = "<h1>text<h1>"
html_2 = "<h2>text<h2>"
use google's diff_prettyHtml will not work correctly .
i will say that 1 change to 2:
...
4
votes
1answer
478 views
In python, produce HTML highlighting the differences of two simple strings
I need to highlight the differences between two simple strings with python, enclosing the differing substrings in a HTML span attribute. So I'm looking for a simple way to implement the function ...
8
votes
1answer
477 views
Diff between two HTML chunks: structural instead of lines/chars?
I'm looking for a JavaScript diff engine that will return the difference in the structure of two chunks of HTML. That is, instead of, "at this line, at such and such character, something happened", ...
2
votes
2answers
330 views
Detect percentage of difference between HTML pages
Suppose I have 2 HTML sources. I want to compare these and if they differ more than a given percentage value I want to do something with the new HTML.
For example, if the 2 HTML pages differ 5% or ...
2
votes
1answer
132 views
Remove redundant CSS properties between 2 or more CSS files
I have 2 CSS files that have redundant CSS properties set between them.
For example, in foo.css:
#test {
border: 0;
font-size: 16px;
}
in bar.css:
#test {
border: 0;
font-size: ...
2
votes
2answers
291 views
Highlight edits made to a text by the user in Javascript
I'm trying to create an editable text field in a page which highlights the edits made by the user to the text as it is being edited. For instance, text inserted or changed by the user should appear ...
4
votes
1answer
562 views
Are there any javascript libs for creating a nice structured (tree) diff for HTML?
I'm trying to come up with a solution to power a "history view" mechanism that we are using throughout a site. For the UI of this history view I'd like to show the user what changes occurred between ...
0
votes
1answer
70 views
template removal/detection/difference utility for HTML and other text
I remember reading a while back on some random website about a program that would look at multiple pages on an HTML site and detect the differences/similarities between the pages to automatically ...
3
votes
2answers
1k views
Using a diff on a document containing HTML
I'm in the brainstorming process for a system that will be used to write and edit documents (think Google Docs, but without realtime collaboration). I will be using a WYSIWYG editor, so the documents ...
0
votes
1answer
227 views
What is the best wysiwig HTML editor producing pretty diffs in SVN history?
We have html documentation is SVN. Users write the documentation using wysiwyg editor NVU. The history diffs producing by NVU is really bad. I mean even when you change only one word in html file and ...
1
vote
1answer
239 views
compare 4 or more files
Is there a command line utility or a php/py script that will generate a html diff so that multiple files can be compared in order to compare 4 or more files.
Each of my files have max of 10k lines ...
0
votes
2answers
260 views
Firebug source and Mozilla Source difference
I have PHP generated HTML.
Firebug shows me this source:
<div class="module-header"><div class="module-header2"><div class="module-header3"><h3 class="module-title" ...
1
vote
1answer
102 views
Highlight/Format textareas
I'm looking to implement a live diff inside a webpage that preserves whitespace.
I've done something similar in the past using a combination of TinyMCE and JQuery in IE6 (required for that project) ...
1
vote
2answers
360 views
display gnu diff in HTML
Is there a lib i can use to diff between two pieces of code and display it in html? I am using diff - GNU diffutils version 2.7, C#, asp.net. I dont mind the code being in javascript.
I would like ...
4
votes
1answer
726 views
Is there any Rendered HTML Diff engine for .NET
There are some questions on SO about Html diff engines, but i cant find right answer. What i need is .NET library for comparing two rendered html strings and displaying diff (like SO renders ...
1
vote
2answers
79 views
Is there a tag in XHTML that you can put anywhere in the body - even inside TABLE elements?
I would like to be able to place an empty tag anywhere in my document as a marker that can be addressed by jQuery. However, it is important that the XHTML still validates.
To give you a bit of ...
6
votes
2answers
252 views
Is it possible to email the contents of vim using HTML
I like to view the current differences in the source files I'm working on with a command like:
vim <(svn diff -dub)
What I'd really like to be able to do is to email that colorized diff. I know ...
3
votes
4answers
2k views
Is there a JS diff library against htmlstring just like google-diff-match-patch on plain text?
Currently I am using google-diff-match-patch to implement a real-time editing tool, which can synchronize texts between multiple users. Everything works great when operations are only plain texts, ...
5
votes
1answer
2k views
Git-diff to HTML
I'm looking for a way to produce HTML files from a git-diff output, preferably using python. I've been looking at http://docs.python.org/library/difflib.html without being able to figure out how to ...
27
votes
4answers
8k views
Coloured diff to HTML
I enjoy using git diff --color-words to clearly see the words that have changed in a file.
However I want to share that diff with someone without git or a colour terminal for that matter. So does ...
13
votes
4answers
4k views
Generate pretty diff html in Python
I have two chunks of text that I would like to compare and see which words/lines have been added/removed/modified in Python (similar to a Wiki's Diff Output).
I have tried difflib.HtmlDiff but it's ...
2
votes
1answer
405 views
Any existing C# code (OSS) that will calculate diff between two strings and output html?
I need to compare two strings and output the diff in HTML (similar to MS Word "track changes"). Language is C#, this is (not surprisingly) a .NET web app. There are a few similar questions (like ...
11
votes
4answers
6k views
DIFF utility works for 2 files. How to compare more than 2 files at a time?
So the utility Diff works just like I want for 2 files, but I have a project that requires comparisons with more than 2 files at a time, maybe up to 10 at a time. This requires having all those files ...
1
vote
8answers
298 views
C# - how to download only the modified part of an HTML
I'm using C# + HttpWebRequest.
I have an HTML page I need to frequently check for updates.
Assuming I already have an older version of the HTML page (in a string for example), is there any way to ...
5
votes
3answers
376 views
How Show Revision History like Revisions
Walking the line here, I know, but... How does StackOverflow show the revision changes in the diff-like format they use.
I don't care about SO per-se, it's just a convenient way to describe my ...
20
votes
10answers
11k views
diff to html (diff2html) program [closed]
I'm looking for a "diff to html" program, which would generate a static html page from a given diff/patch file.
I've googled for it of course, but apart from some scripts I've found there's no "real ...
3
votes
4answers
1k views
Using diff to find the portions of many files that are the same? (bizzaro-diff, or inverse-diff)
Bizzaro-Diff!!!
Is there a away to do a bizzaro/inverse-diff that only displays the portions of a group of files that are the same? (I.E. way more than three files)
Odd question, I know...but I'm ...
0
votes
2answers
770 views
Javascipt library for syntax highlighting for code, then diffs, in HTML, at the line level?
Anyone know of a JS library that will allow me to syntax highlight a code block, then highlight line-level diffs? For example, in a subversion diff, I'd like to highlight the characters on the line ...
10
votes
17answers
2k views
Suggestions on how build an HTML Diff tool?
In this post I asked if there were any tools that compare the structure (not actual content) of 2 HTML pages. I ask because I receive HTML templates from our designers, and frequently miss minor ...
4
votes
5answers
688 views
Are there any tools out there to compare the structure of 2 web pages?
I receive HTML pages from our creative team, and then use those to build aspx pages. One challenge I frequently face is getting the HTML I spit out to match theirs exactly. I almost always end up ...
38
votes
12answers
9k views
Anyone have a diff algorithm for rendered HTML?
I'm interested in seeing a good diff algorithm, possibly in Javascript, for rendering a side-by-side diff of two HTML pages. The idea would be that the diff would show the differences of the rendered ...