html5/spec/diff Makefile,NONE,1.1 Overview.html,NONE,1.1

Update of /sources/public/html5/spec/diff
In directory hutz:/tmp/cvs-serv31304/diff

Added Files:
	Makefile Overview.html 
Log Message:
added subdir for diff with makefile for building it


--- NEW FILE: Overview.html ---
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<!-- when publishing, change bits marked ZZZ -->
<html lang="en-US-x-Hixie">
<head>
<meta name="generator" content=
"HTML Tidy for Linux (vers 1 September 2005), see www.w3.org">
<title>HTML 5</title>

<style type="text/css">
   dt, dfn { font-weight: bold; font-style: normal; }
   img.extra { float: right; }
   body ins, body del { display: block; }
   body * ins, body * del { display: inline; }
   pre, code { color: black; background: transparent; font-size: inherit; font-family: monospace; }
   pre strong { color: black; font: inherit; font-weight: bold; background: yellow; }
   pre em { font-weight: bolder; font-style: normal; }
   pre.idl :link, pre.idl :visited { color: inherit; background: transparent; }
   pre.idl { border: solid thin; background: #EEEEEE; color: black; padding: 0.5em; }
   table { border-collapse: collapse; border-style: hidden hidden none hidden; }
[...63882 lines suppressed...]
<p>Special thanks also to the Microsoft employees who first
implemented the event-based drag-and-drop mechanism, <code title=
"attr-contenteditable"><a href=
"#contenteditable0">contenteditable</a></code> , and other features
first widely deployed by the Windows Internet Explorer browser.</p>
<p>Special thanks and $10,000 to David Hyatt who came up with a
broken implementation of the <a href="#adoptionAgency">adoption
agency algorithm</a> that the editor had to reverse engineer and
fix before using it in the parsing section.</p>
<p>Thanks <ins class="diff-new">to the many sources that provided
inspiration for the examples used in the specification.</ins></p>
<p><ins class="diff-new">Thanks</ins> also <ins class=
"diff-new">to</ins> the Microsoft blogging community for some
ideas, to the attendees of the W3C Workshop on Web Applications and
Compound Documents for inspiration, and to the #mrt crew, the
#mrt.no crew, <ins class="diff-new">the #whatwg crew,</ins> and the
cabal for their ideas and support.</p>
</body>
</html>


--- NEW FILE: Makefile ---
WGET=wget
WGETFLAGS=

HTMLDIFFTOOL=http://www.w3.org/2007/10/htmldiff

OLDDRAFT=http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml5%2F
NEWDRAFT=http%3A%2F%2Fwww.w3.org%2Fhtml%2Fwg%2Fhtml5%2F

.PHONY: Overview.html

all: Overview.html

Overview.html:
	$(WGET) $(WGETFLAGS) "$(HTMLDIFFTOOL)?doc1=$(OLDDRAFT)&doc2=$(NEWDRAFT)" -O - > $@

Received on Friday, 6 June 2008 13:29:30 UTC