|
Revision 1650, 0.8 kB
(checked in by benjamin, 2 years ago)
|
adding frameset management to alternc-doc
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
$gopage=(isset($_REQUEST["gopage"]))?$_REQUEST["gopage"]:""; |
|---|
| 4 |
$goanchor=(isset($_REQUEST["goanchor"]))?$_REQUEST["goanchor"]:""; |
|---|
| 5 |
|
|---|
| 6 |
?><?php echo "<?"; ?>xml version="1.0" encoding="UTF-8" standalone="no"?> |
|---|
| 7 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 8 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 9 |
<head> |
|---|
| 10 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|---|
| 11 |
<title>AlternC - Documentation Administrateur</title> |
|---|
| 12 |
|
|---|
| 13 |
<link xmlns="" rel="stylesheet" href="docbook.css" type="text/css" /> |
|---|
| 14 |
</head> |
|---|
| 15 |
<frameset cols="300px,*"> |
|---|
| 16 |
<frame src="menu.html<?php if ($gopage) echo "#".$gopage."_".$goanchor; ?>" name="left" id="left"> |
|---|
| 17 |
<frame src="<?php if ($gopage) echo $gopage."#".$goanchor; else echo "index.html"; ?>" name="right" id="right"> |
|---|
| 18 |
</frameset> |
|---|
| 19 |
</html> |
|---|
| 20 |
|
|---|