~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to notes/old/karlnotes

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-12-13 17:57:16 UTC
  • mfrom: (1.1.6 upstream) (0.1.3 etch)
  • Revision ID: james.westby@ubuntu.com-20061213175716-2ysv6z4w5dpa2r2f
Tags: 1.4.2dfsg1-2ubuntu1
* Merge with Debian unstable; remaining changes:
  - Create pot file on build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
This code is for creating and interpreting `vcdiff'.  
2
 
 
3
 
The full specification of the vcdiff format is in the draft RFC
4
 
(draft-korn-vcdiff-01.txt), and some discussion of how to *generate*
5
 
diffs may be found there as well.
6
 
 
7
 
This README provides an informal summary of how we implement vcdiff,
8
 
in three sections:
9
 
 
10
 
   1. The vcdiff format and how to use it.
11
 
   2. Generating vcdiffs.
12
 
 
13
 
 
14
 
 
15
 
1. The vcdiff format and how to use it.
16
 
=======================================
17
 
 
18
 
 *** holy cow i'm at home reading the paper.  -kff ***
19
 
 
20
 
 
21
 
 
22
 
 
23
 
 
24
 
 
25
 
 
26
 
 
27
 
 
28
 
 
29
 
 
30
 
A vdiff consists of a 4 byte header, followed by a series of
31
 
"sections".  Each section is 
32
 
 
33
 
   A 4 byte header -- the letters "VCD" with their eighth bits set,
34
 
   then a format version number:
35
 
 
36
 
      byte 1         byte 2           byte 3        byte 4
37
 
      ----------     ----------       ----------    -------------------
38
 
      0xd6           0xc3             0xc4          0x0
39
 
      `V' + 1<<7     `C' + 1<<7       `D' + 1<<7    Version (currently 0)
40
 
 
41
 
   
42
 
 
43
 
 
44
 
 
45
 
2. Generating vcdiffs.
46
 
======================
47