diff --git a/README b/README index e947ffb..595ff29 100644 --- a/README +++ b/README @@ -1,3 +1,4 @@ CodeMirror: https://codemirror.net/ license MIT sha1.js: https://www.movable-type.co.uk/scripts/sha1.html license MIT -pako 2.0.3 https://github.com/nodeca/pako license (MIT AND Zlib) +pako 2.0.3: pako.min.js from https://github.com/nodeca/pako license (MIT AND Zlib) +Viz.js v2.1.2: viz.js and viz-lite.js from https://github.com/mdaines/viz.js license MIT diff --git a/git-tutorial.css b/git-tutorial.css index 1726be5..5196f19 100644 --- a/git-tutorial.css +++ b/git-tutorial.css @@ -6,13 +6,14 @@ article#git-tutorial { position: absolute; top:0; left:0.5em; transition: right, #git-tutorial .lines { position: absolute; z-index: 2000; } #git-tutorial textarea, #git-tutorial .CodeMirror { width: 100%; font-size: 1.2rem; border: thin solid black; } #git-tutorial table { table-layout: fixed; width: 100%; font-size: 100%; font-family: monospace; min-width: 41em; } +#git-tutorial pre.log { border: thin solid gray; padding: 0.3em; font-size: 100%; font-family: monospace; box-sizing: border-box; } #git-tutorial td.cell-contents, #git-tutorial th.cell-contents { font-family: monospace; } article#git-tutorial p, article#git-tutorial h1 { max-width: 63rem; } #git-tutorial td, #git-tutorial th { padding-left: 0.3em; padding-right: 0.3em; } #git-tutorial td.cell-contents, #git-tutorial th.cell-contents { width: 36em; } article#git-tutorial { left: calc(50% - ( 17.4em / 2 ) - ( 63rem / 2 ) ); right:18.4em; max-width: 63rem; } -article#git-tutorial table { width: 77rem; margin-left: calc( ( ( 63rem - 77rem ) / 2 ) ); } +article#git-tutorial table, #git-tutorial pre.log { width: 77rem; margin-left: calc( ( ( 63rem - 77rem ) / 2 ) ); } #git-tutorial #toc { right:0; } #git-tutorial #toc:hover { border-left: 1px solid gray; } @@ -20,7 +21,7 @@ article#git-tutorial table { width: 77rem; margin-left: calc( ( ( 63rem - 77rem #git-tutorial td, #git-tutorial th { padding-left: 0.3em; padding-right: 0.3em; } #git-tutorial td.cell-contents, #git-tutorial th.cell-contents { width: 36em; } article#git-tutorial { left:0.5em; right:18.4em; max-width: 63rem; } - article#git-tutorial table { width: 100%; margin-left: auto; } + article#git-tutorial table, #git-tutorial pre.log { width: 100%; margin-left: auto; } #git-tutorial #toc { right:0; } #git-tutorial #toc:hover { border-left: 1px solid gray; } } @@ -29,7 +30,7 @@ article#git-tutorial table { width: 77rem; margin-left: calc( ( ( 63rem - 77rem #git-tutorial td, #git-tutorial th { padding-left: 0; padding-right: 0; } #git-tutorial td.cell-contents, #git-tutorial th.cell-contents { width: 34em; } article#git-tutorial { left:0.5em; right: 7em; max-width: 63rem; } - article#git-tutorial table { width: 100%; margin-left: auto; } + article#git-tutorial table, #git-tutorial pre.log { width: 100%; margin-left: auto; } #git-tutorial #toc { right: -11em; } #git-tutorial #toc:hover { border-left: 5px solid gray; } } @@ -38,7 +39,7 @@ article#git-tutorial table { width: 77rem; margin-left: calc( ( ( 63rem - 77rem #git-tutorial td, #git-tutorial th { padding-left: 0; padding-right: 0; } #git-tutorial td.cell-contents, #git-tutorial th.cell-contents { width: 30em; } article#git-tutorial { left:0.5em; right:6em; max-width: 63rem; } - article#git-tutorial table { width: 100%; margin-left: auto; } + article#git-tutorial table, #git-tutorial pre.log { width: 100%; margin-left: auto; } #git-tutorial #toc { right: -12em; } #git-tutorial #toc:hover { border-left: 5px solid gray; } } @@ -94,4 +95,4 @@ article#git-tutorial .onlytoc { display: none; } #git-tutorial .trivia { opacity: 80%; border: thin solid slategrey; margin: 1em; padding: 0.3em; } #git-tutorial .trivia:before { content: "Trivia"; border-bottom: thin solid slategrey; display: block; text-align: center; } #git-tutorial .trivia table { min-width: 90%; max-width: 90%; width: 90%; margin-left: auto; margin-right: auto; } -/*#git-tutorial .trivia table td.cell-contents, #git-tutorial .trivia table th.cell-contents { width: 30%; }*/ \ No newline at end of file +/*#git-tutorial .trivia table td.cell-contents, #git-tutorial .trivia table th.cell-contents { width: 30%; }*/ diff --git a/git-tutorial.js b/git-tutorial.js index cb49f1d..4924789 100644 --- a/git-tutorial.js +++ b/git-tutorial.js @@ -529,7 +529,7 @@ var ___script_log_header = '' + 'var console = (function(real_console) {\n' + ' return {\n' + ' log: function() {\n' - + ' ___log[___log.length] = arguments;\n' + + ' ___log[___log.length] = Array.from(arguments);\n' + ' real_console.log.apply(console, arguments);\n' + ' },\n' + ' assert: real_console.assert,\n' @@ -537,8 +537,40 @@ var ___script_log_header = '' + '})(window.console);\n' + '\n'; +function ___file_contents_to_graphviz(s) { + try { + var inflated = pako.inflate(___stringToUint8Array(s)); + } catch(e) { + var inflated = false; + } + if (inflated) { + var id=___global_unique_id++; + return { + html: + '' + + 'deflated:' + + ___specialchars_and_colour_and_hex(___uint8ArrayToString(inflated)) + + '' + + ' ', + td: function(td) { td.classList.add('deflate-toggle'); td.setAttribute('onclick', '___deflated_click('+id+')'); } + }; + } else { + return { html: ___specialchars_and_colour_and_hex(s), td: function() {} }; + } +} + +function ___filesystem_to_graphviz(filesystem, previous_filesystem) { + return "digraph graph_view {" + + 'a -> b' + + "}"; +} + function ___eval_result_to_string(filesystem, previous_filesystem, log) { - return '
' + log.map(function(l) { return l.map(function (x) { return x.toString(); }).join(', '); }).join('\n') + '' + var loghtml = '
' + log.map(function(l) { return l.map(function (x) { return x.toString(); }).join(', '); }).join('\n') + '' + return (log.length > 0 ? '
Console output:
' + loghtml : '') + + Viz(___filesystem_to_graphviz(filesystem, previous_filesystem), "svg") + ___filesystem_to_string(filesystem, false, previous_filesystem); } function ___git_eval(current) { @@ -559,7 +591,6 @@ function ___git_eval(current) { + 'document.getElementById("out" + current).innerHTML = ___eval_result_to_string(filesystem, ___previous_filesystem, ___log);\n' + 'filesystem;\n'; try { - document.getElementById('debug').innerText = script; eval(script); } catch (e) { // Stack traces usually include :line:column diff --git a/index.html b/index.html index fd9fe40..72bdb19 100644 --- a/index.html +++ b/index.html @@ -2,12 +2,18 @@After creating the branch, we show how the file .git/refs/heads/main
can be overwritten
+using git branch -f