' + specials.html + '
', td: specials.td };
+ }
+
+}
function ___format_entry(previous_filesystem, x) {
var previous_filesystem = previous_filesystem || {};
var tr = document.createElement('tr');
@@ -434,13 +499,9 @@ function ___format_entry(previous_filesystem, x) {
var td_contents = document.createElement('td');
tr.appendChild(td_contents);
td_contents.classList.add('cell-contents');
- if (x[1] === null) {
- td_contents.innerHTML = 'Directory';
- } else {
- var specials = ___specialchars_and_colour_and_hex_and_zlib(x[1]);
- td_contents.innerHTML = '' + specials.html + '
';
- specials.td(td_contents);
- }
+ var html_and_function = ___format_contents(x[1]);
+ td_contents.innerHTML = html_and_function.html;
+ html_and_function.td(td_contents);
return tr;
}
@@ -487,7 +548,7 @@ function ___filesystem_to_table(fs, previous_filesystem) {
function ___filesystem_to_string(fs, just_table, previous_filesystem) {
var entries = ___sort_filesystem_entries(fs);
var id = ___global_unique_id++;
- var html = '' + ___format_filepath(entries[i][0]) + ' |
---|
' + ___format_contents(entries[i][1]).html + ' |
' + 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); + var table = ___filesystem_to_string(filesystem, quiet, previous_filesystem); + var gv = ___filesystem_to_graphview(filesystem, previous_filesystem); + var html = (log.length > 0 ? 'Console output:
' + loghtml : '') + + gv.html + + table; + document.getElementById(id).innerHTML = '