Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
433 ddelon 1
<?php
2
	$message = $this->GetMessage();
3
	$user = $this->GetUser();
4
?>
5
 
6
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
7
<html>
8
 
9
 
10
<head>
11
<title><?php echo $this->GetWakkaName().":".$this->GetPageTag(); ?></title>
12
<?php if ($this->GetMethod() != 'show')
13
    echo "<meta name=\"robots\" content=\"noindex, nofollow\"/>\n";?>
14
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
15
<meta name="keywords" content="<?php echo $this->GetConfigValue("meta_keywords") ?>" />
16
<meta name="description" content="<?php echo  $this->GetConfigValue("meta_description") ?>" />
17
<link rel="stylesheet" type="text/css" media="screen" href="wakka.basic.css" />
18
<style type="text/css" media="all"> @import "wakka.css";</style>
19
<script type="text/javascript">
20
	function fKeyDown()	{ if (event.keyCode == 9) {
21
					event.returnValue= false;
22
					document.selection.createRange().text = String.fromCharCode(9) } }
23
</script>
24
</head>
25
 
26
 
27
<body <?php echo (!$user || ($user["doubleclickedit"] == 'Y')) && ($this->GetMethod() == "show") ? "ondblclick=\"document.location='".$this->href("edit")."';\" " : "" ?>
28
	<?php echo $message ? "onLoad=\"alert('".$message."');\" " : "" ?>
29
>
30
 
31
 
32
<h1 class="wiki_name"><?php echo $this->config["wakka_name"] ?></h1>
33
 
34
 
35
<h1 class="page_name">
36
	<a href="<?php echo $this->config["base_url"] ?>RechercheTexte&amp;phrase=<?php echo urlencode($this->GetPageTag()); ?>">
37
	<?php echo $this->GetPageTag(); ?>
38
	</a>
39
</h1>
40
 
41
 
42
<div class="header">
43
	<?php echo $this->ComposeLinkToPage($this->config["root_page"]); ?> ::
44
	<?php echo  $this->config["navigation_links"] ? $this->Format($this->config["navigation_links"])." :: \n" : "" ?>
45
	Vous ĂȘtes <?php echo $this->Format($this->GetUserName()); if ($user = $this->GetUser()) echo " (<a href=\"".$this->config["base_url"] ."ParametresUtilisateur&amp;action=logout\">DĂ©connexion</a>)\n"; ?>
46
</div>