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
|
<?php
define('HLANG', true);
define('ALIGNMENT', 'Center');
require '../../langs.php';
$dictionary = read_translation_file($locale, array('documentation', 'common_footer'));
require 'doc.php';
$rtl = is_locale_rtl($locale);
?><!DOCTYPE html>
<html <?php echo $rtl ? 'dir="rtl"' : 'dir="ltr"'?> lang="<?php echo $locale; ?>">
<head>
<meta charset="utf-8">
<title><?php _g('Mageia Documentation\'s Archive')?></title>
<meta name="description" content="<?php _g('Documentation for previous releases of Mageia distribution and its tools.')?>">
<meta name="keywords" content="<?php _g('doc,documentation,help,guide,installer,installation,mageia,linux')?>">
<?php echo common_header(); ?>
<?php include '../../analytics.php'; ?>
<?php echo $rtl ? '<style> caption { text-align: right; } </style>' : ''?>
</head>
<body class="doc" <?php echo $rtl ? 'style="text-align: right;"' : ''?>>
<?php echo $hsnav; ?>
<h1 id="mgnavt"><?php _g('Mageia Documentation\'s Archive')?></h1>
<div id="doc" class="yui-t7" style="margin-bottom: 0px;">
<div id="bd" role="main">
<div class="yui-g">
<div class="para donate" style="padding-top: 2em;">
<h2><?php _g('Some More documentation')?></h2>
<p><?php _g('Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life.')?><br/>
<?php _g('If you are looking for the current versions, see <a href="index.php">here</a>.')?></p>
<?php _g('Documentation built using the <a href="%s">Calenco tool from NeoDoc</a>.', 'http://www.neodoc.biz/', 'p')?>
<hr>
<h3>Mageia 6</h3>
<div class="row">
<div class="col">
<?php doc_list(_r('Installer'), 'installer', 6); ?>
</div>
<div class="col">
<?php doc_list(_r('Control Center'), 'control_center', 6); ?>
</div>
<div class="col">
<?php doc_list(_r('Installation from LIVE medium'), 'draklive', 6); ?>
</div>
<div class="col">
<?php doc_list(_r('Network installation'), 'netinstall', 6); ?>
</div>
</div>
<hr>
<h3>Mageia 5</h3>
<div class="row">
<div class="col">
<?php doc_list(_r('Installer'), 'installer', 5); ?>
</div>
<div class="col">
<?php doc_list(_r('Control Center'), 'control_center', 5); ?>
</div>
<div class="col">
<?php doc_list(_r('Installation from LIVE medium'), 'draklive', 5); ?>
</div>
</div>
<hr>
<h3>Mageia 4</h3>
<div class="row">
<div class="col">
<?php doc_list(_r('Installer'), 'installer', 4);
?>
</div>
<div class="col">
<p style="margin-left: 2em;"><?php doc_list(_r('Control Center'), 'control_center', 4);
?></p>
</div>
</div
<hr style="clear: both;">
<h3>Mageia 3</h3>
<div class="row">
<div class="col">
<p style="margin-left: 2em;"><?php
doc_list(_r('Installer'), 'installer', 3);
?></p>
</div>
<div class="col">
<p style="margin-left: 2em;"><?php
doc_list(_r('Control Center'), 'control_center', 3);
?></p>
</div>
</div>
<hr style="clear: both;">
<h3>Mageia 2</h3>
<div class="row">
<div class="col">
<p><?php
doc_list(_r('Installer'), 'installer', 2);
?></p>
</div>
</div>
</div>
</div>
</div>
</div>
<?php echo common_footer($locale); ?>
</body>
</html>
|