diff --git a/git-tutorial.css b/git-tutorial.css index d486b19..1121acb 100644 --- a/git-tutorial.css +++ b/git-tutorial.css @@ -10,7 +10,10 @@ article#git-tutorial { max-width: 63rem; position: absolute; right:18.4em; top:0 /* td.cell-path { } */ #git-tutorial td.cell-contents { font-family: monospace; width: 36em; } +#git-tutorial td { padding-left: 0.3em; padding-right: 0.3em; } + @media (max-width: 72em) { + #git-tutorial td { padding-left: 0; padding-right: 0; } #git-tutorial td.cell-contents { width: 34em; } article#git-tutorial { right: 7em; } #git-tutorial #toc { right: -11em; } @@ -18,6 +21,7 @@ article#git-tutorial { max-width: 63rem; position: absolute; right:18.4em; top:0 } @media (max-width: 63em) { + #git-tutorial td { padding-left: 0; padding-right: 0; } #git-tutorial td.cell-contents { width: 30em; } article#git-tutorial { right:6em; } #git-tutorial #toc { right: -12em; } @@ -38,6 +42,7 @@ article#git-tutorial { max-width: 63rem; position: absolute; right:18.4em; top:0 #git-tutorial .object-hash.hilite-dest { background: lightyellow; border-color: red; } #git-tutorial .object-hash { border: thin solid transparent; } #git-tutorial .space { text-decoration: underline; color: brown; opacity: 0.5; white-space: pre; } +#git-tutorial .deflate-toggle { cursor: pointer; } #git-tutorial .deflated { color: red; } #git-tutorial .directory { color: darkcyan; } #git-tutorial .error { color: orangered; } diff --git a/git-tutorial.js b/git-tutorial.js index dd53f28..f67a8f0 100644 --- a/git-tutorial.js +++ b/git-tutorial.js @@ -138,7 +138,7 @@ function ___hilite(src, dest) { var p3 = { left: x, top: yb }; var p4 = { left: xb, top: yb }; - var thickness = 2; + var thickness = 3; // line 1 l1.style.width = p2.left-p1.left; @@ -281,7 +281,7 @@ function ___specialchars_and_colour_and_hex_and_zlib(s) { } if (inflated) { var id=___global_unique_id++; - return '' + return '' + '' + 'deflated:' + ___specialchars_and_colour_and_hex(___uint8ArrayToString(inflated)) diff --git a/index.html b/index.html index 183158e..e95ede9 100644 --- a/index.html +++ b/index.html @@ -140,16 +140,17 @@ stored under a unique name. The unique name is obtained by hashing the contents of the file.

The objects stored in the GIT database are compressed with zlib (using the "deflate" compression method). The filesystem view shows -the deflated: followed by the uncompressed -data. Click on the file contents to toggle between this pretty-printed -view and the raw compressed data. +the marker deflated: followed by the +uncompressed data. Click on the file contents to toggle between this +pretty-printed view and the raw compressed data.

You will notice that the database does not contain the name of the @@ -189,7 +190,7 @@ hash_object(true, 'blob', false, 'src/main.scm');

zlib compression

-

The real implementation of GIT compresses objects with zlib. To +

GIT compresses objects with zlib. To view a zlib-compressed object in your terminal, simply write this declaration in your shell, and then call e.g. unzlib .git/objects/95/d318ae78cee607a77c453ead4db344fc1221b7

@@ -211,7 +212,7 @@ files, but it would be nice to also store the filenames. This is done by creating a tree object

A tree object can contain files (by associating the file's blob to its name), or directories (by associating the hash of other subtrees to their name). - The mode (100644 for the file and 40000) incidates the permissions, and is given in octal using the values used by *nix

+ The mode (100644 for the file and 40000 for the folder) incidates the permissions, and is given in octal using the values used by *nix

This function needs a small utility to convert hashes encoded in hexadecimal to a binary form.

@@ -756,7 +760,7 @@ function git_init() { for a more in-depth study of the index.