1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
<head>
<meta name="description" content="A powerful but easy to use and small-footprint text mode editor with extensive Unicode and CJK encoding support.">
<meta name="keywords" content="editor, text mode editor, programmers editor, programming editor, Unicode editor, UTF-8 editor, Unicode text editor, UTF-8 text editor, Unicode text mode editor, UTF-8 text mode editor, text mode Unicode editor, text mode UTF-8 editor, text mode HTML editor, CJK editor">
<meta name="robots" content="index">
<title>mined 2000</title>
<style type="text/css">
<!--
a {text-decoration: none;}
tr.link {cursor: pointer;}
.oldlink {background-color: #4080F0;}
.darklink {background-color: #4D6DC9;}
.bluelink {background-color: #7080DD;}
.link {background-color: #FFF500;
border-style: solid; border-color: #B045A3; border-width: 1px;
}
.active {background-color: #FFCC00;
border-style: solid; border-color: #B045A3; border-width: 1px;
}
.selected {background-color: #FFBB00;
border-style: solid; border-color: #B045A3; border-width: 1px;
}
.selecting {background-color: #E09000;
border-style: inset; border-color: #B045A3; border-width: 1px;
}
-->
</style>
<script language="JavaScript">
var selected_node;
function select (name) {
if (selected_node) {
selected_node.className = 'link';
}
selected_node = document.getElementById (name);
if (selected_node) {
selected_node.className = 'selected';
}
}
function activate (node) {
node.className = 'active';
}
function deactivate (node) {
if (node == selected_node) {
node.className = 'selected';
} else {
node.className = 'link';
}
}
function press (node) {
node.className = 'selecting';
}
function release (node) {
if (node == selected_node) {
node.className = 'selected';
} else {
node.className = 'link';
}
}
function load (node) {
/* node.className = 'selected'; would reduce flickering */
top.frames.mined.location = node.id + ".html";
}
</script>
</head>
<!body bgcolor=#33CCCC>
<!body bgcolor=#CC3300>
<!body bgcolor=#B045A3 onLoad="select (top.selected_item);">
<body bgcolor=#63509A onLoad="select (top.selected_item);">
<table xwidth=100% width=160 cellpadding=4 cellspacing=4>
<tr>
<td height=10>
</td>
</tr>
<tr class=link>
<td class=link id=overview onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=overview.html><font color=black><b>
Overview</b></font></a></td>
</tr>
<tr class=link>
<td class=link id=features onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=features.html><font color=black><b>
Features</b></font></a></td>
</tr>
<tr class=link>
<td class=link id=design onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=design.html><font color=black><b>
Design Principles</b></font></a></td>
</tr>
<tr>
<td height=10>
</td>
</tr>
<tr class=link>
<td class=link id=unicode onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=unicode.html><font color=black><b>
Unicode Howto</b></font></a></td>
</tr>
<tr class=link>
<td class=link id=mined onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=mined.html><font color=black><b>
Mined Manual</b></font></a></td>
</tr>
<tr class=link>
<td class=link id=mnemodoc onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=mnemodoc.html><font color=black><b>
Character Mnemos</b></font></a></td>
</tr>
<tr>
<td height=10>
</td>
</tr>
<tr class=link>
<td class=link id=download onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=download.html><font color=black><b>
Download</b></font></a></td>
</tr>
<tr class=link>
<td class=link id=changes onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=changes.html><font color=black><b>
Change Log</b></font></a></td>
</tr>
<tr class=link>
<td class=link id=contact onClick="load (this);" onMouseOver="activate (this);" onMouseOut="deactivate (this);" onMouseDown="press (this);" onMouseUp="release (this);">
<a target=mined href=contact.html><font color=black><b>
Mailing List</b></font></a></td>
</tr>
</table>
</body>
|