index.php
6.37 KB
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
152
153
<?
include("php/base.inc");
$menucl=new base();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>steffers.org</TITLE>
<META name="keywords" lang="de"
content="Programmierung, programmierung, programmieren, 3D, 3d, 3D-Grafik, 3D-grafik, Grafik, grafik, Java, java, C/C++, C, C++, Dokumentation, Dokumentationen">
<META name="keywords" lang="en"
content="programming, 3D, 3D-graphics, graphics, Java, java, C/C++, C, C++, documentation, documentations">
<META name="description" lang="de"
content="Der Anfang einer kompletten Einführung in C/C++ programmierung. Sie soll alle Aspekte der Programmierung unter C, C++ und Java behandeln und in einer kleine Applikation enden, die den Anfang einer 3D-Engine bildet.">
<META name="description" lang="en"
content="The beginning of a complete introduction in C/C++ programming. It should cover all aspects of programming in C, C++ and Java and result in a small application, that is the beginning of a small 3D-engine.">
<META name="author"
content="Georg Steffers">
<META name="robots"
content="index,follow">
<META name="date"
content="2001-02-26T23:00:00+01:00">
<META http-equiv="keywords"
content="programming, 3D, 3D-graphics, graphics, Java, java, C/C++, C, C++, documentation, documentations">
<META http-equiv="description"
content="The beginning of a complete introduction in C/C++ programming. It should cover all aspects of programming in C, C++ and Java and result in a small application, that is the beginning of a small 3D-engine.">
<META http-equiv="Content-Type"
content="text/html">
<!--BASE HREF="http://www.steffers.org/smain/"-->
<BASE HREF="http://localhost/~georg/smain/">
<LINK rev=made href="mailto:georg@steffers.org">
<LINK rel="stylesheet" href="css/style.css">
<script language="JavaScript1.2">
<!--
if(navigator.appName=='Netscape' &&
navigator.appVersion.charAt(0)=='4')
browser='NS';
else
if(navigator.appName=='Microsoft Internet Explorer' &&
navigator.appVersion.charAt(0)>='4') {
browser='IE';
var layers=document.all.tags('DIV');
}
else {
browser='DOM';
var layers=document.getElementsByTagName('DIV');
}
function newWin(url) {
openWindow = window.open(url,'Webcam','resizable=no,\
scrollbars=auto, menubar=no,\
toolbar=no,location=no,\
width=400,height=300');
openWindow.moveTo(20,20);
}
function tooltip_on(id, num) {
if(browser=='IE')
layers[num].style.visibility='visible';
else if(browser=='NS')
window.document.layers[num].visibility='visible';
else
document.getElementById(id).style.visibility='visible';
}
function tooltip_off(id, num) {
if(browser=='IE')
layers[num].style.visibility='hidden';
else if(browser=='NS')
window.document.layers[num].visibility='hidden';
else
document.getElementById(id).style.visibility='hidden';
}
function showdir(regexp, regexp2) {
if(browser=='DOM' || browser=='IE') {
for(i=0; i<layers.length; i++) {
if(layers[i].id.match(regexp))
layers[i].style.display='block';
if(layers[i].id.match(regexp2))
layers[i].style.display='none';
}
}
// Problem beim NS 4: layers mit display='none' tauchen nicht in
// der Liste document.layers auf. Evtl. kann ich im NS auch die
// DIV-Liste durchgehen...spaeter mal schauen
}
function hidedir(regexp, regexp2) {
if(browser=='DOM' || browser=='IE') {
for(i=0; i<layers.length; i++) {
if(layers[i].id.match(regexp))
layers[i].style.display='none';
if(layers[i].id.match(regexp2))
layers[i].style.display='block';
}
}
// Problem beim NS 4: layers mit display='none' tauchen nicht in
// der Liste document.layers auf. Evtl. kann ich im NS auch die
// DIV-Liste durchgehen...spaeter mal schauen
}
// -->
</script>
</HEAD>
<BODY bgcolor="#FFFFFF">
<?
$url=parse_url($HTTP_REFERER);
// echo $url["host"]."<br>\n";
?>
<? $menucl->site_header(); ?>
<TABLE width="770" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD width="160" valign="top">
<? $menucl->menu(); ?>
</TD>
<TD width="610" valign="top">
<TABLE width="610" border="0" cellspacing="0"
cellpadding="0">
<TR>
<TD width="610" class="maintopbg">
<IMG align="left" src="images/maintop.png"
vspace="0" hspace="0" width="388" height="2"></TD>
</TR>
</TABLE>
<TABLE width="610" border="0" cellspacing="0"
cellpadding="0">
<TR>
<TD width="15" height="15">
<IMG src="images/bow.png" width="15" height="15"></TD>
<TD width="595" height="15"> </TD>
</TR>
<TR>
<TD width="15">
<IMG SRC="images/trans.gif" width="15" height="1"></TD>
<TD width="595" valign="top">
<? $menucl->page(); ?></TD>
</TR>
</TABLE>
</TD>
<TD> </TD>
</TR>
</TABLE>
</BODY>
</HTML>