index.tpl 3.51 KB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
		"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<title>Test Page for Apache Installation</title>
	</head>
	
	<body>
		<p>If you can see this, it means that the installation of the <a
		href="http://www.apache.org/foundation/preFAQ.html">Apache web server</a>
		software on this system was successful. You may now add content to this
		directory and replace this page.</p>
		
		<hr style="width: <# 100 #>%; height: 3px;" />
		
		<h2 style="text-align: center">Seeing this instead of the website you expected?</h2>
		
		<# "[Ausdruck 5 + 5] " + (5 + 5) + eol #>

		<# if (! 'HALLO' == 'HALLO'): #>
			<p>This page is here because the site administrator has changed the 
			configuration of this web server. Please <strong>contact the person
			responsible for maintaining this server with questions.</strong>
			The Apache Software Foundation, which wrote the web server software
			this site administrator is using, has nothing to do with
			maintaining this site and cannot help resolve configuration
			issues.</p>
		<# end #>
		
		<#
			if (! (12 < 13 && 12 < 10))
			
			:
				"[Zuweisung yahoo = 15] " + eol; yahoo = 15;
				"[Ausdruck yahoo] " + yahoo + eol;

			end

			"[Ausdruck 10 % 3] " + (10 % 3) + eol;;;;
			"[Ausdruck 12.3 - 18] " + (12.3 - 18) + eol;
			"[Ausdruck -47.78] " + -47.78 + eol;
			"[Ausdruck 'HALLO'] " + 'HALLO' + eol;
			'[Ausdruck -"WALLO"] ' + -"WALLO" + eol;
			"[Ausdruck 'hokus ' + 'pokus'] " + ('hokus ' + 'pokus') + eol;

			repeat (bla count=10)
				"[Ausdruck 32.56 * 10] " + 32.56 * 10 + eol;

			"[Zuweisung a = 250]" + eol; a = 250;
			"[Zuweisung b=3.4-0.9]" + eol; b=3.4-0.9;
			'[Zuweisung z="bla" + "bla"]' + eol; z="bla" + "bla";

			"[Ausdruck a] " + a + eol;
			"[Ausdruck a*10 + a*2] " + (a*10 + a*2) + eol;

			"[Zuweisung a = -'Georg']" + eol; a = -'Georg';
			"[Ausdruck -a] " + -a + eol;
			"[Ausdruck a] " + a + eol;

			if (a == b)
				"[Ausdruck 152 - 38] " + (152 - 38) + eol;
			else
				"[Ausdruck 'Harry' + -'hcsriH'] " + 'Harry' + -'hcsriH' + eol;

			foreach (harry as key, val): end

			"[Zuweisung jo ['terror'][12] = 53] " + eol; jo ['terror'][12] = 53;
			"[Zuweisung onken = 'Falada']" + eol; onken = 'Falada';
			"[Ausdruck onken + jo ['terror'][12]] " + (onken + jo['terror'][12]) + eol;
			"[Zuweisung toll[42] = 'Jedi']" + eol; toll[42] = 'Jedi';
			"[Ausdruck -toll[42]] " + -toll[42] + eol;

			"[Zuweisung harry = 12.0]" + eol; harry = 12.0;
			"[Ausdruck harry*32] " + (harry*32) + eol;
			"[Zuweisung dieter = 0]" + eol; dieter = 0;
			"[Ausdruck 12.4+dieter] " + (12.4+dieter) + eol;
			"[Zuweisung bonbon = 0.12]" + eol; bonbon = 0.12;
			'[Ausdruck "Knall"+bonbon] ' + "Knall"+bonbon + eol;
			"[Zuweisung mann = 'Mann']" + eol; mann = 'Mann';
			"[Zuweisung oh = '-o-']" + eol; oh = '-o-';
			"[Ausdruck mann+oh+mann] " + (mann+oh+mann) + eol;
			'[Ausdruck 13 + "5"] ' + (13 + "5") + eol;
			'[Ausdruck "Hallo" + 12] ' + ("Hallo" + 12) + eol;
			'[Ausdruck b + (int) "32"] ' + (b + (int) "32") + eol;
		#>

		<hr style="width: 100%; height: 3px;" />
		
		<# repeat (hoho count=100) #>
			<p>The Apache documentation is available 
			<a href="http://httpd.apache.org/docs-2.0/">online</a> or has been installed
			<a href="/manual/">locally</a>.</p>

		<# foreach (jokus as key, val): #>
			<p>You are free to use the image below on an Apache-powered web
			server. Thanks for using Apache!</p>
		<# end #>
		
		<div style="text-align: center"><img src="apache_pb.gif" alt="" /></div>
	</body>
</html>