-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Printer profiles: documentation and samples
- Loading branch information
1 parent
4cabd74
commit b9ec529
Showing
26 changed files
with
146 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ The executable component is in the agent folder; see the README file in that dir | |
License | ||
------- | ||
|
||
Copyright 2021 Matthew R. Wilson <[email protected]> | ||
Copyright 2021-2022 Matthew R. Wilson <[email protected]> | ||
|
||
This file is part of virtual1403 | ||
<https://github.com/racingmars/virtual1403>. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,10 @@ | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"> | ||
<style type="text/css"> | ||
div#website { display: none; } | ||
img.profilesample { | ||
border-top: 1px black solid; | ||
border-left: 1px black solid; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
@@ -21,7 +25,7 @@ | |
</body> | ||
<footer class="footer"> | ||
<div class="content has-text-centered"> | ||
<p><strong>Virtual 1403</strong> © 2021 by Matthew R. Wilson and is <a href="https://github.com/racingmars/virtual1403">free software</a>. This service provided by moshix (<a href="https://www.youtube.com/channel/UCR1ajTWGiUtiAv8X-hpBY7w">YouTube</a> and <a href="https://github.com/moshix/">GitHub</a>). Font used in generated PDFs is <a href="https://1403.slantedhall.com/">1403 Vintage Mono</a> from Slanted Hall, used under license.<p> | ||
<p><strong>Virtual 1403</strong> © 2021–2022 by Matthew R. Wilson and is <a href="https://github.com/racingmars/virtual1403">free software</a>. This service provided by moshix (<a href="https://www.youtube.com/channel/UCR1ajTWGiUtiAv8X-hpBY7w">YouTube</a> and <a href="https://github.com/moshix/">GitHub</a>). Font used in some generated PDFs is <a href="https://1403.slantedhall.com/">1403 Vintage Mono</a> from Slanted Hall, used under license.<p> | ||
</div> | ||
</footer> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
{{template "base" .}} | ||
|
||
{{define "title"}}Available Printer Profiles{{end}} | ||
|
||
{{define "main"}} | ||
|
||
<p class="block"><a href="/">← Return Home</a></p> | ||
|
||
<div class="content"> | ||
<p>Virtual1403 provides several printer profiles to choose from. A profile is a combination of font, paper background, and form control. To use a profile, set the profile name in your agent config.yaml file, such as:</p> | ||
|
||
<pre> | ||
profile: "retro-blue" | ||
</pre> | ||
|
||
<p><strong>Note: you must use version 0.2.0 or later of the agent for the profile setting to work</strong>. <a href="https://github.com/racingmars/virtual1403/releases">Download the latest agent version here</a>.</p> | ||
|
||
<p>There are three font options, three paper background options, and the option to skip the first 5 lines on each page (typical form control from examples of output from MVS that we have seen) or print on all 66 lines.</p> | ||
|
||
<p><strong>Fonts</strong></p> | ||
<ul> | ||
<li>The "default" font is <a href="https://1403.slantedhall.com/">1403 Vintage Mono</a> from Slanted Hall.</li> | ||
<li>The "retro" font was built from <a href="http://ibm-1401.info/Sched2008December.html#1403-Font">scans of real 1403 printer output</a> at the Computer History Museum. This has a very limited character set, consistent with the default "A" chain of a real 1403, but missing the "&" character.</li> | ||
<li>The "modern" font is <a href="https://www.ibm.com/plex/">IBM Plex Mono</a>, and the modern profiles allow both upper- and lowercase letters.</li> | ||
</ul> | ||
|
||
<p><strong>Background</strong></p> | ||
<p>Each font is available on green- or blue-bar paper, or plain tractor-feed paper with no background printed.</p> | ||
|
||
<p><strong>Form Control</strong></p> | ||
<p>The "-noskip" version of each profile allows printing on each of the 66 printable lines on the page; profile without -noskip will skip the first 5 lines of each page so that the title line rests above the numbered page area.</p> | ||
</div> <!-- content --> | ||
|
||
<p><strong>Samples</strong></p> | ||
<table class="table"> | ||
<tr> | ||
<td> | ||
<p>default-green:</p> | ||
<img class="profilesample" src="/static/profiles/default-green-1.sample.small.png" alt="default-green profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>default-green-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/default-green-noskip-1.sample.small.png" alt="default-green-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<p>default-blue:</p> | ||
<img class="profilesample" src="/static/profiles/default-blue-1.sample.small.png" alt="default-blue profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>default-blue-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/default-blue-noskip-1.sample.small.png" alt="default-blue-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<p>default-plain:</p> | ||
<img class="profilesample" src="/static/profiles/default-plain-1.sample.small.png" alt="default-plain profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>default-plain-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/default-plain-noskip-1.sample.small.png" alt="default-plain-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td> | ||
<p>retro-green:</p> | ||
<img class="profilesample" src="/static/profiles/retro-green-1.sample.small.png" alt="retro-green profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>retro-green-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/retro-green-noskip-1.sample.small.png" alt="retro-green-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<p>retro-blue:</p> | ||
<img class="profilesample" src="/static/profiles/retro-blue-1.sample.small.png" alt="retro-blue profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>retro-blue-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/retro-blue-noskip-1.sample.small.png" alt="retro-blue-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<p>retro-plain:</p> | ||
<img class="profilesample" src="/static/profiles/retro-plain-1.sample.small.png" alt="retro-plain profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>retro-plain-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/retro-plain-noskip-1.sample.small.png" alt="retro-plain-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td> | ||
<p>modern-green:</p> | ||
<img class="profilesample" src="/static/profiles/modern-green-1.sample.small.png" alt="modern-green profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>modern-green-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/modern-green-noskip-1.sample.small.png" alt="modern-green-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<p>modern-blue:</p> | ||
<img class="profilesample" src="/static/profiles/modern-blue-1.sample.small.png" alt="modern-blue profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>modern-blue-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/modern-blue-noskip-1.sample.small.png" alt="modern-blue-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<p>modern-plain:</p> | ||
<img class="profilesample" src="/static/profiles/modern-plain-1.sample.small.png" alt="modern-plain profile sample" width="319" height="162"> | ||
</td> | ||
<td> | ||
<p>modern-plain-noskip:</p> | ||
<img class="profilesample" src="/static/profiles/modern-plain-noskip-1.sample.small.png" alt="modern-plain-noskip profile sample" width="319" height="162"> | ||
</td> | ||
</tr> | ||
</table> | ||
{{end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+39 KB
webserver/assets/static/profiles/default-blue-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+38.6 KB
webserver/assets/static/profiles/default-green-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.5 KB
webserver/assets/static/profiles/default-plain-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+38.6 KB
webserver/assets/static/profiles/modern-blue-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+38.2 KB
webserver/assets/static/profiles/modern-green-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.4 KB
webserver/assets/static/profiles/modern-plain-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+43.1 KB
webserver/assets/static/profiles/retro-blue-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+42.5 KB
webserver/assets/static/profiles/retro-green-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+14.5 KB
webserver/assets/static/profiles/retro-plain-noskip-1.sample.small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters