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
|
<?php
define('HLANG', true);
require '../../langs.php';
require 'locales.php';
$_t = i18n::get_strings($_t, $locale, $i18n_fallback_rules);
?><!DOCTYPE html>
<html dir="ltr" lang="<?php echo $locale ?>">
<head>
<meta charset="utf-8">
<title><?php _e('About Mageia'); ?></title>
<meta name="description" content="<?php _e('Mageia is a Free Software, community-led project. Learn more about it.')?>">
<meta name="keywords" content="<?php _e('mageia, mageia.org, about, mission, contacts, governance, values, timeline')?>">
<meta name="author" content="Mageia">
<link rel="stylesheet" type="text/css" href="/g/style/all.css">
<?php include '../../analytics.php'; ?>
</head>
<body class="about">
<?php echo $hsnav; ?>
<h1 id="mgnavtitle"><?php _e('About Mageia')?></h1>
<div id="doc" class="yui-t7">
<div id="bd" role="main">
<div class="yui-g"><div class="para" style="padding-top: 2em;">
<p>Mageia is a GNU/Linux-based, Free Software operating system,
supported by a nonprofit organisation (<a href="#mageia.org">Mageia.Org</a>)
of recognized and elected contributors.</p>
<p>Our mission: build great tools for people.
<p>Further than just delivering a secure, stable and sustainable operating system,
the goal is to set up a stable and trustable governance
to direct collaborative projects.</p>
<p>To date, Mageia:</p>
<ul class="hl">
<li><a href="2010-sept-announcement.html">started in September 2010 as a fork</a>
of Mandriva Linux,</li>
<li>gathered <a href="../community/">hundreds of careful individuals and several companies worldwide</a>,
coproducing the infrastructure (hardware and software),
the distribution itself (developing, packaging, translating, chasing bugs, etc.),
<a href="http://wiki.mageia.org/">documentation</a>,
<a href="../downloads/">delivery</a> and <a href="../support/">support</a>,
using Free Software tools;</li>
<li>released <a href="../1/">its first stable release in June 2011</a>;</li>
<li>is <a href="../2/">on the path of delivering its second release in May 2012</a>.</li>
</ul>
<!--
<ul>
<li>Overview</li>
<li>Mission</li>
<li>Projects</li>
<li>News</li>
<li>Contacts</li>
<li>Supporters</li>
<li>Governance: ...</li>
<li>Values</li>
<li>Code of conduct</li>
<li>Mageia.Org: ...</li>
<li>History/Timeline</li>
</ul>
-->
<hr>
<h2>Learn more about Mageia</h2>
<ul>
<li><a href="./values/">Values</a></li>
<li><a href="./code-of-conduct/">Code of conduct</a></li>
<li><a href="/en/about/policies/">Policies</a></li>
<li><a href="/en/thank-you/">Thanks!</a></li>
</ul>
<hr>
<h3 id="mageia.org">Mageia.Org</h3>
<p>is the French, Paris-based legal structure supporting the Mageia project.
Learn more about it:</p>
<ul>
<li><a href="./constitution/">Mageia.Org's legal constitution</a>
and <a href="https://wiki.mageia.org/en/Org">governance</a> rules;</li>
<li>association members;</li>
<li><a href="/en/about/reports/">financial reports</a>.</li>
</ul>
<hr>
<h3>Media & artwork</h3>
<ul>
<li><a href="/en/about/media/">Logo, CD covers files, media files</a>.</li>
<li><a href="/en/charter.html">Current graphics charter</a>.</li>
</ul>
</div></div>
</div>
</div>
</body>
</html>
|