summaryrefslogtreecommitdiff
path: root/projects/wsdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2023-03-19 15:29:32 +0100
committerjaseg <git@jaseg.de>2023-03-19 15:29:32 +0100
commit3f1760b0a11bbb4ff425b9298a2a94a2fce44aae (patch)
tree9cbbb03d96f556d8601f9319032785ddbf24defc /projects/wsdiff
parent77469be23fe1777d776c0b0abd4c77f6e4080196 (diff)
parent490ca12809a2625549aae16311affdd546e9c201 (diff)
downloadblog-3f1760b0a11bbb4ff425b9298a2a94a2fce44aae.tar.gz
blog-3f1760b0a11bbb4ff425b9298a2a94a2fce44aae.tar.bz2
blog-3f1760b0a11bbb4ff425b9298a2a94a2fce44aae.zip
deploy.py auto-commit
Diffstat (limited to 'projects/wsdiff')
-rw-r--r--projects/wsdiff/index.html89
-rw-r--r--projects/wsdiff/latest.pngbin0 -> 136920 bytes
2 files changed, 89 insertions, 0 deletions
diff --git a/projects/wsdiff/index.html b/projects/wsdiff/index.html
new file mode 100644
index 0000000..e7deab5
--- /dev/null
+++ b/projects/wsdiff/index.html
@@ -0,0 +1,89 @@
+<!DOCTYPE html>
+<html><head>
+ <meta charset="utf-8">
+ <title>wsdiff | Home</title>
+ <meta name="description" content="">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="mobile-web-app-capable" content="yes">
+ <meta name="color-scheme" content="dark light">
+ <link rel="stylesheet" href="/style.css">
+</head>
+<body><nav>
+
+ <a href="/" title="Home">Home</a>
+ <a href="/blog/" title="Blog">Blog</a>
+ <a href="/projects/" title="Projects">Projects</a>
+ <a href="/about/" title="About">About</a>
+ <span class="spacer"></span>
+ <a href="https://git.jaseg.de/" title="cgit">cgit</a>
+ <a href="https://github.com/jaseg" title="Github">Github</a>
+ <a href="https://gitlab.com/neinseg" title="Gitlab">Gitlab</a>
+ <a href="https://chaos.social/jaseg" title="Mastodon">Mastodon</a>
+</nav>
+
+ <header>
+ <h1>wsdiff</h1>
+<ul class="breadcrumbs">
+ <li><a href="/">jaseg.de</a></li>
+ <li><a href="/projects/">Projects</a></li><li><a href="/projects/wsdiff/">wsdiff</a></li>
+</ul>
+
+ </header>
+ <main>
+ <div class="document">
+
+
+<p>wsdiff is a python script that produces a diff of two files or directories as a single, self-contained HTML file. The
+resulting diff works without Javascript and will automatically switch between inline and side-by-side formats depending
+on available screen space.</p>
+<div class="section" id="installation">
+<h2>Installation</h2>
+<pre class="code sh literal-block">
+<span class="lineno"></span><span class="line">$<span class="w"> </span>pip<span class="w"> </span>install<span class="w"> </span>wsdiff
+</span></pre>
+</div>
+<div class="section" id="usage">
+<h2>Usage</h2>
+<pre class="literal-block">
+<span class="lineno"></span><span class="line">usage: wsdiff [-h] [-b] [-s SYNTAX_CSS] [-l LEXER] [-L] [-t PAGETITLE]</span>
+<span class="lineno"></span><span class="line"> [-o OUTPUT] [--header] [--content]</span>
+<span class="lineno"></span><span class="line"> [old] [new]</span>
+<span class="lineno"></span><span class="line"></span>
+<span class="lineno"></span><span class="line">Given two source files or directories this application creates an html page</span>
+<span class="lineno"></span><span class="line">that highlights the differences between the two.</span>
+<span class="lineno"></span><span class="line"></span>
+<span class="lineno"></span><span class="line">positional arguments:</span>
+<span class="lineno"></span><span class="line"> old source file or directory to compare (&quot;before&quot; file)</span>
+<span class="lineno"></span><span class="line"> new source file or directory to compare (&quot;after&quot; file)</span>
+<span class="lineno"></span><span class="line"></span>
+<span class="lineno"></span><span class="line">options:</span>
+<span class="lineno"></span><span class="line"> -h, --help show this help message and exit</span>
+<span class="lineno"></span><span class="line"> -b, --open Open output file in a browser</span>
+<span class="lineno"></span><span class="line"> -s SYNTAX_CSS, --syntax-css SYNTAX_CSS</span>
+<span class="lineno"></span><span class="line"> Path to custom Pygments CSS file for code syntax</span>
+<span class="lineno"></span><span class="line"> highlighting</span>
+<span class="lineno"></span><span class="line"> -l LEXER, --lexer LEXER</span>
+<span class="lineno"></span><span class="line"> Manually select pygments lexer (default: guess from</span>
+<span class="lineno"></span><span class="line"> filename, use -L to list available lexers.)</span>
+<span class="lineno"></span><span class="line"> -L, --list-lexers List available lexers for -l/--lexer</span>
+<span class="lineno"></span><span class="line"> -t PAGETITLE, --pagetitle PAGETITLE</span>
+<span class="lineno"></span><span class="line"> Override page title of output HTML file</span>
+<span class="lineno"></span><span class="line"> -o OUTPUT, --output OUTPUT</span>
+<span class="lineno"></span><span class="line"> Name of output file (default: stdout)</span>
+<span class="lineno"></span><span class="line"> --header Only output HTML header with stylesheets and stuff,</span>
+<span class="lineno"></span><span class="line"> and no diff</span>
+<span class="lineno"></span><span class="line"> --content Only output HTML content, without header
+</span></pre>
+</div>
+<div class="section" id="example-output">
+<h2>Example Output</h2>
+<img alt="latest.png" src="latest.png" />
+</div>
+</div>
+ </main><footer>
+ Copyright © 2023 Jan Sebastian Götte
+ / <a href="http://jaseg.de/about/">About</a>
+ / <a href="http://jaseg.de/imprint/">Imprint</a>
+</footer>
+</body>
+</html>
diff --git a/projects/wsdiff/latest.png b/projects/wsdiff/latest.png
new file mode 100644
index 0000000..039fa46
--- /dev/null
+++ b/projects/wsdiff/latest.png
Binary files differ