diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2022-03-04 16:34:52 +0100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-03-04 19:23:45 +0100 |
commit | 14c4c0253c51506caddb380c65fd56e0cf1060ab (patch) | |
tree | cd137987cb9d56df7146ba8825382b20fa6f8555 /doc | |
parent | 216a266a757399765e8c756b34d679d4f7135b68 (diff) | |
download | passt-14c4c0253c51506caddb380c65fd56e0cf1060ab.tar passt-14c4c0253c51506caddb380c65fd56e0cf1060ab.tar.gz passt-14c4c0253c51506caddb380c65fd56e0cf1060ab.tar.bz2 passt-14c4c0253c51506caddb380c65fd56e0cf1060ab.tar.lz passt-14c4c0253c51506caddb380c65fd56e0cf1060ab.tar.xz passt-14c4c0253c51506caddb380c65fd56e0cf1060ab.tar.zst passt-14c4c0253c51506caddb380c65fd56e0cf1060ab.zip |
README: Make it somewhat readable on mobile devices
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci.html | 19 | ||||
-rw-r--r-- | doc/demo_passt.html | 19 | ||||
-rw-r--r-- | doc/demo_pasta.html | 19 | ||||
-rw-r--r-- | doc/demo_podman.html | 19 |
4 files changed, 76 insertions, 0 deletions
diff --git a/doc/ci.html b/doc/ci.html new file mode 100644 index 0000000..46a6e48 --- /dev/null +++ b/doc/ci.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"/> +<title>Continuous integration test run</title> +<link rel="stylesheet" type="text/css" href="/static/asciinema-player.css" /> +<script src="/static/asciinema-player.min.js"></script> +</head> +<body style="margin: 0"> +<div id="ci" style="height: 100vh; width: 100vw"></div> +<script> +AsciinemaPlayer.create('/builds/latest/web/ci.cast', + document.getElementById('ci'), + { cols: 240, rows: 51, fit: "both", + preload: true, poster: 'npt:0:4' + }); +</script> +</body> +</html> diff --git a/doc/demo_passt.html b/doc/demo_passt.html new file mode 100644 index 0000000..1cef904 --- /dev/null +++ b/doc/demo_passt.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"/> +<title>demo: Overview of passt functionality</title> +<link rel="stylesheet" type="text/css" href="/static/asciinema-player.css" /> +<script src="/static/asciinema-player.min.js"></script> +</head> +<body style="margin: 0"> +<div id="demo_passt" style="height: 100vh; width: 100vw"></div> +<script> +AsciinemaPlayer.create('/builds/latest/web/demo_passt.cast', + document.getElementById('demo_pasta'), + { cols: 130, rows: 41, fit: "both", + preload: true, poster: 'npt:0:4' + }); +</script> +</body> +</html> diff --git a/doc/demo_pasta.html b/doc/demo_pasta.html new file mode 100644 index 0000000..dc4101b --- /dev/null +++ b/doc/demo_pasta.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"/> +<title>demo: Overview of pasta functionality</title> +<link rel="stylesheet" type="text/css" href="/static/asciinema-player.css" /> +<script src="/static/asciinema-player.min.js"></script> +</head> +<body style="margin: 0"> +<div id="demo_pasta" style="height: 100vh; width: 100vw"></div> +<script> +AsciinemaPlayer.create('/builds/latest/web/demo_pasta.cast', + document.getElementById('demo_pasta'), + { cols: 130, rows: 41, fit: "both", + preload: true, poster: 'npt:0:4' + }); +</script> +</body> +</html> diff --git a/doc/demo_podman.html b/doc/demo_podman.html new file mode 100644 index 0000000..33cd9e8 --- /dev/null +++ b/doc/demo_podman.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"/> +<title>demo: Overview of Podman operation with pasta</title> +<link rel="stylesheet" type="text/css" href="/static/asciinema-player.css" /> +<script src="/static/asciinema-player.min.js"></script> +</head> +<body style="margin: 0"> +<div id="demo_podman" style="height: 100vh; width: 100vw"></div> +<script> +AsciinemaPlayer.create('/builds/latest/web/demo_podman.cast', + document.getElementById('demo_podman'), + { cols: 130, rows: 41, fit: "both", + preload: true, poster: 'npt:0:4' + }); +</script> +</body> +</html> |