mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-25 00:05:16 +00:00
OK, try it this way...
This commit is contained in:
3889
docs/PDCurses.md
3889
docs/PDCurses.md
File diff suppressed because it is too large
Load Diff
@@ -1,6 +0,0 @@
|
||||
Hello world
|
||||
===========
|
||||
|
||||
Testing...
|
||||
|
||||
[PDCurses manual](PDCurses.md)
|
||||
72
docs/index.html
Normal file
72
docs/index.html
Normal file
@@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="keys" content="curses, text, user, interface, public,
|
||||
domain, free">
|
||||
<link rel="icon" href="favicon.ico" type="image/vnd.microsoft.icon">
|
||||
<link rel="stylesheet" href="mmbasic.css">
|
||||
<link rel="stylesheet" href="mmmain.css">
|
||||
<title>PDCurses - Public Domain Curses</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="maincontent">
|
||||
|
||||
<h1>Public Domain Curses</h1>
|
||||
|
||||
Stable: <a href="https://github.com/wmcbrine/PDCurses/releases/tag/3.6">v3.6</a><br>
|
||||
Beta: <a href="https://github.com/wmcbrine/PDCurses">See git repository</a>
|
||||
|
||||
<p><strong>PDCurses</strong> is a public domain curses library for DOS,
|
||||
OS/2, Windows console, X11 and SDL, implementing most of the functions
|
||||
available in X/Open and System V R4 curses. It supports many compilers
|
||||
for these platforms. The X11 port lets you recompile existing text-mode
|
||||
curses programs to produce native X11 applications.</p>
|
||||
|
||||
<p>PDCurses is distributed mainly as source code, but some pre-compiled
|
||||
libraries may be available. See the <a
|
||||
href="https://sourceforge.net/projects/pdcurses/files/">
|
||||
downloads page</a> for a list.</p>
|
||||
|
||||
<p>There's a low-traffic mailing list for announcements and discussion.
|
||||
To subscribe, email the <a href="mailto:majordomo@lightlink.com">list
|
||||
server</a>, with the first line of the body of the message containing:</p>
|
||||
|
||||
<p>subscribe pdcurses-l</p>
|
||||
|
||||
<p>or you can read <a
|
||||
href="https://www.mail-archive.com/pdcurses-l@lightlink.com/">the mailing
|
||||
list archive.</a></p>
|
||||
|
||||
<hr>
|
||||
|
||||
<address>
|
||||
Page by Mark Hessling and <a
|
||||
href="http://wmcbrine.com/">William McBrine.</a>
|
||||
Last updated: Dec 17 2018
|
||||
</address>
|
||||
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
|
||||
<div id="navbar">
|
||||
|
||||
<div id="toplogo"><img src="pdc64.png" width="64" height="64"
|
||||
alt="PDCurses"></div>
|
||||
|
||||
<ul>
|
||||
<!-- <li><a href="doc/index.html">Docs</a></li> -->
|
||||
<li><a href="https://github.com/wmcbrine/PDCurses">GitHub Page</a></li>
|
||||
<li><a href="https://sourceforge.net/projects/pdcurses">SourceForge Page</a></li>
|
||||
<li><a href="http://www.opengroup.org/onlinepubs/007908799/cursesix.html">X/Open Curses</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
6
docs/mmbasic.css
Normal file
6
docs/mmbasic.css
Normal file
@@ -0,0 +1,6 @@
|
||||
/* Squash the list for NN4 (and cover an IE6 bug with "outside") */
|
||||
|
||||
#navbar ul { display: inline }
|
||||
#navbar li { list-style: none outside; display: inline }
|
||||
|
||||
a { text-decoration: underline }
|
||||
1
docs/mmmain.css
Normal file
1
docs/mmmain.css
Normal file
@@ -0,0 +1 @@
|
||||
@import url("mmreal.css");
|
||||
80
docs/mmreal.css
Normal file
80
docs/mmreal.css
Normal file
@@ -0,0 +1,80 @@
|
||||
body { color: black; background: white; font-family: Helvetica, sans-serif }
|
||||
html, body, div#navbar { height: 100%; margin: 0; padding: 0 }
|
||||
|
||||
div#navbar { color: black; background: #ccf }
|
||||
|
||||
a { text-decoration: none }
|
||||
|
||||
a:link { color: blue; background: white }
|
||||
a:visited { color: navy; background: white }
|
||||
a:hover { color: red; background: #ffc; text-decoration: underline }
|
||||
a[name]:hover { color: black; background: #ccf }
|
||||
|
||||
img { border: 0 }
|
||||
|
||||
div#navbar {
|
||||
width: 8em;
|
||||
position: fixed;
|
||||
overflow: auto;
|
||||
top: 0;
|
||||
left: 0
|
||||
}
|
||||
|
||||
div#navbar ul { margin: 0; padding: 0 }
|
||||
|
||||
div#navbar li {
|
||||
display: block;
|
||||
margin: .3em;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
div#navbar li a {
|
||||
display: block;
|
||||
font-size: small;
|
||||
margin: 0;
|
||||
padding: .15em
|
||||
}
|
||||
|
||||
div#maincontent { margin-left: 8em; padding: .5em }
|
||||
|
||||
h2 {
|
||||
border-bottom: 2px solid #ccf;
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
div#maincontent ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
div#maincontent ul li {
|
||||
margin: .3em;
|
||||
padding: .15em
|
||||
}
|
||||
|
||||
div#maincontent ul li a { font-weight: bold }
|
||||
|
||||
div#toplogo {
|
||||
text-align: center;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em
|
||||
}
|
||||
|
||||
address {
|
||||
border-top: 1px dotted;
|
||||
padding-top: 3px
|
||||
}
|
||||
|
||||
hr { display: none }
|
||||
|
||||
table, th, td { border: 1px dotted }
|
||||
td, th { text-align: left; padding-left: .15em }
|
||||
th { font-weight: bold; padding-right: .15em }
|
||||
td { padding-left: .5em }
|
||||
|
||||
/* IE6 junk: */
|
||||
|
||||
@media screen {
|
||||
* html { overflow: hidden }
|
||||
* html body { overflow: auto }
|
||||
* html div#navbar { position: absolute }
|
||||
}
|
||||
BIN
docs/pdc64.png
Normal file
BIN
docs/pdc64.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 277 B |
Reference in New Issue
Block a user