aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
l---------af/71
l---------ar/71
l---------ast/71
l---------bg/71
l---------bn/71
l---------ca/71
l---------cs/71
l---------cy/71
l---------da/71
l---------de/71
l---------el/71
l---------en-gb/71
-rw-r--r--en/7/download_index.php526
-rw-r--r--en/7/index.php1
-rw-r--r--en/7/nav.php32
l---------eo/71
l---------es/71
l---------et/71
l---------eu/71
l---------fi/71
l---------fr/71
l---------hi/71
l---------hr/71
l---------hu/71
l---------ia/71
l---------id/71
l---------it/71
l---------ja/71
l---------lo/71
l---------lt/71
l---------lv/71
l---------nb/71
l---------nl/71
l---------pl/71
l---------pms/71
l---------pt-br/71
l---------pt/71
l---------ro/71
l---------ru/71
l---------sco/71
l---------sk/71
l---------sl/71
l---------sq/71
l---------sr/71
l---------sv/71
l---------tg/71
l---------th/71
l---------tr/71
l---------uk/71
l---------ur/71
l---------zh-cn/71
l---------zh-tw/71
52 files changed, 608 insertions, 0 deletions
diff --git a/af/7 b/af/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/af/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/ar/7 b/ar/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/ar/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/ast/7 b/ast/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/ast/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/bg/7 b/bg/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/bg/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/bn/7 b/bn/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/bn/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/ca/7 b/ca/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/ca/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/cs/7 b/cs/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/cs/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/cy/7 b/cy/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/cy/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/da/7 b/da/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/da/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/de/7 b/de/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/de/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/el/7 b/el/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/el/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/en-gb/7 b/en-gb/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/en-gb/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/en/7/download_index.php b/en/7/download_index.php
new file mode 100644
index 000000000..41480c96f
--- /dev/null
+++ b/en/7/download_index.php
@@ -0,0 +1,526 @@
+<?php
+
+$name = 'Mageia';
+$version = '7';
+$versionOld = '7'; //version for classical iso, no update since
+$release = '';
+$torrentavailable=true;
+$classical=true;
+$live=true;
+
+
+define('HLANG', true);
+define('ALIGNMENT', 'Center');
+
+require '../../langs.php';
+$dictionary = read_translation_file($locale, array('7', 'common_footer'));
+
+function get_mageia($name, $version, $release)
+{
+ $re = empty($release) ? $version : $version . '-' . $release;
+ return implode('-', array($name, $re));
+}
+
+function get_mageia_image_file_name($name, $version, $release, $variant = null, $arch, $medium, $ext)
+{
+ $va = empty($variant) ? $arch : $variant . '-' . $arch;
+ $re = empty($release) ? $va : $release . '-' . $va;
+
+ return implode('-', array($name, $version, $re)) . $ext;
+}
+
+function dl_link($name, $version, $release, $variant = null, $arch = 'i586', $medium, $torrent = false, $torrentavailable = true)
+{
+ switch ($arch) {
+ case "i586":
+ $bit = _r('32 bit');
+ break;
+ case "x86_64":
+ $bit = _r('64 bit');
+ break;
+ default:
+ $bit = '';
+ break;
+ }
+
+echo $torrent && !$torrentavailable ? sprintf(_t('forthcoming')) : sprintf('<a rel="nofollow" href="../downloads/get/?q=%s%s" title="%s">%s</a>',
+ get_mageia_image_file_name($name, $version, $release, $variant, $arch, $medium, '.iso'),
+ $torrent ? '&amp;torrent=1' : '',
+ implode(' ', array($name, $version, $release, $variant, $arch)),
+ $bit
+ );
+}
+
+function get_image($ttl, $src, $sty){
+ echo sprintf('<noscript><img class="lazy" src="%s" alt="%s" title="%s" style="%s" /></noscript>', $src, $ttl, $ttl, $sty);
+ echo sprintf('<img class="lazy" src="%s" alt="%s" title="%s" style="%s" />', $src, $ttl, $ttl, $sty);
+}
+
+?>
+<!DOCTYPE html>
+<html dir="ltr" lang="<?php echo $locale; ?>">
+<head>
+ <meta charset="utf-8">
+ <title><?php echo sprintf(_g('Download').' '. '%s %s %s', $name, $version, $release)?></title>
+ <meta name="description" content="<?php _g('Download %s DVD, LiveDVD, network install ISO images.', array("$name $version"))?>">
+ <meta name="keywords" content="<?php _g('mageia, %s, linux, free, download, iso, torrent, vm, http, ftp, rsync, bittorrent', array("$name $version"))?>">
+ <meta name="robots" content="index,nofollow,nosnippet">
+ <link rel="canonical" href="/<?php echo $locale.'/'.$version;?>/">
+ <?php echo common_header(); ?>
+ <?php include '../../analytics.php'; ?>
+ <style>
+
+input[type="radio"]:checked + label,.ui-button:active {
+ background: #2383C2;
+ background: -webkit-linear-gradient(top, #3494D3 0%, #2383C2 50%);
+ background: -moz-linear-gradient(top, #3494D3 0%, #2383C2 50%);
+ background: -o-linear-gradient(top, #3494D3 0%, #2383C2 50%);
+ background: linear-gradient(top, #3494D3 0%, #2383C2 50%);
+ color: white;
+}
+input[type="radio"], input[type="submit"], .popover-content {
+ display: none;
+}
+.warn {
+ color:#a00;
+}
+</style>
+</head>
+<body class="release downloads">
+ <?php echo $hsnav; ?>
+
+ <h1 id="mgnavt"><?php echo sprintf(_g('Download') . ' <strong>%s %s %s</strong>',$name, $version, $release)?></h1>
+ <?php include '../7/nav.php'; ?>
+ <div id="doc4" class="yui-t7" style="margin-bottom: 0px;">
+ <div id="bd" role="main">
+ <div class="yui-ge bb1 row">
+ <div class="yui-u first col-md-8">
+
+<noscript>
+<div class="para alert alert-info"><?php _g('It looks like you have JavaScript disable. Please <a href="%s">enable</a> it to have better render. At the <a href="%s">end</a> of this page there will be download link for you. But what is written between is important.',array('http://www.enable-javascript.com/','#Fclassical'),'p'); ?></div>
+<style>.pop{display: none;} .popover-content{display:block ;}</style>
+</noscript>
+
+<div class="para">
+ <?php // _g('But please remember that it will soon <a href="%s">reach EOL</a>.', array('../support/'), 'h2 class="warn"');
+ // _g('But please remember that it already <a href="%s">reached EOL</a>.', array(_not_yet('https://blog.mageia.org/en/2019/.../')), 'h2 class="warn"'); ?>
+ <p>
+ <?php _g('Mageia is provided as ISO image files that have to be written to blank <a href="%s">CD or DVD discs</a>.', array(_r('https://wiki.mageia.org/en/Writing_CD_and_DVD_images')), ' '); ?>
+ <br>
+ <?php _g('All ISOs can also be launched from a <a %s>USB drive</a>.', array('href="' . _r('https://wiki.mageia.org/en/Installation_Media#Dump_Mageia_ISO_on_a_USB_flash_drive') . '"'));
+ echo '</p>';
+ _g('To <a %s>dump</a> a Mageia installation ISO on a USB stick, you may try one of several tools:', array('href="#" data-tip="iso2usb" class="pop"'),'p');
+ echo '<ul><li>';
+ _g('For Linux, IsoDumper, available inside repo. Or any tools based on %sdd%s.', array('<span class="italic" >', '</span>'), ' ');
+ _g('Unetbootin is not supported.', null, 'span class="warn"'); ?>
+ </li>
+ <?php _g('For Windows please have a look on our <a href="%s">wiki</a> for your options.', array(_r('https://wiki.mageia.org/en/Dump_Mageia_ISO_on_a_USB_flash_drive_-_Alternative_tools')), 'li'); ?>
+ </ul>
+ <div id="iso2usbEx" class="popover-content"><p>
+ <?php _g('"Dumping" an image onto a flash device destroys any prior file-system in the partition; access to any data not destroyed will be lost, and partition capacity will be reduced to the image size. In other words, all prior data on the device is at risk.'); ?>
+ </p></div>
+ <p>
+ <?php _g('If you have <a href="%s">UEFI</a>, a procedure is available in the <a href="%s">wiki</a>.', array(_r('http://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface'),_r('https://wiki.mageia.org/en/Installing_on_systems_with_UEFI_firmware' /*this will be changed to tooltip, so no more url*/))) ;?>
+ </p>
+<?php
+// echo '<p>';
+// _g('Live Media and Network Installation Media have been updated to support new hardware.', null, ' ');
+// _g('They are called Mageia 7.1 release to distinguish them from the original Mageia 7 release.', null, ' ');
+// _g("Use these if the original Mageia 7 iso images are unable to boot on your hardware, or if you would like more up-to-date software while running in live mode.", null, ' ');
+// _g('Please take a look in the <a href="%s">documentation</a> for the appropriate media.', array('../doc/'), null, ' ');
+// _g("There's no need to reinstall if you have Mageia 7 installed and already have the latest updates installed.");
+// echo '</p>';
+?>
+</div>
+
+<div class="para" id="format">
+
+<?php if($classical == true){?>
+<div id="classicalEx" class="popover-content">
+ <?php _g('Classical Installation Flavours',null,'h2')?>
+
+ <?php _g('The Classical ISO is the traditional way to install Mageia directly. Take a look at the complete <a href="%s">documentation</a> for this installer.', array('../doc/'), 'p'); ?>
+ <p>
+ <?php _g('Up to 167 locales are supported:'); ?>
+ Deutsch, English, Español, Français, Italiano, Português, Svenska, Nederlands, Polski, Dansk, Pусский
+ <?php _g('and so much more!'); ?>
+ <a href="https://wiki.mageia.org/en/Available_locales" hreflang="en"><?php _g('See the comprehensive list')?></a>.
+ </p>
+ <p><?php
+ _g('These ISOs contains Free Software and some proprietary drivers.');
+ _g('You will be asked of which kind of Software you want to install.');
+ _g('The installer includes the capability of adding the online Mageia repositories during the installation, which means you can install even more packages than those available on the ISO.');?>
+ </p>
+
+ <?php _g('For 32 and 64bit, size of the ISOs is about %sGB.',array('4.1'),'p class="dlinfo"');?>
+
+</div>
+<?php } ?>
+
+
+<?php if($live == true){?>
+<div id="liveEx" class="popover-content">
+ <?php _g('LiveDVDs',null,'h3');?>
+
+ <?php _g('Live ISO\'s let you try %s without installation. You can run Mageia directly from a DVD or USB device, and try it using one of the graphical user interfaces such as GNOME, Plasma or Xfce.', array("$name $version"), 'p');
+ _g('If you are happy with the Mageia experience, you can then install it onto your hard drive from the Live media.', null, 'p');?>
+
+ <p><?php _g('Use LiveDVDs for fresh new installs ONLY.');?>
+ <span class="warn"><?php _g('DO NOT use these LiveDVDs to upgrade from the prior Mageia release!'); ?></span>
+ <?php _g('Use a classical installation and see <a href="%s" hreflang="en">upgrade guide</a>.', array($upgradeguide));?>
+ </p>
+
+ <?php _g('For LiveDVDs, size of the ISOs is about %sGB.',array('2.2 - 2.8'),'p class="dlinfo"');?>
+</div>
+<?php } ?>
+
+<div id="lanEx" class="popover-content">
+ <?php _g('Wired Network-based Installation CD',null,'h3');
+ _g('Download quickly and immediately boot into install mode from <em>wired</em> network or a local disk.',null,'p');
+ _g('Have a look in the <a href="%s">wiki</a> to get a list of possibilities.',array(_r('https://wiki.mageia.org/en/Boot.iso_install')),'p');
+
+ _g('Size of the ISOs is about 50MB.',null,'p class="dlinfo"');?>
+</div>
+
+<div class="d-sm-flex justify-content-center">
+ <?php if( $classical ){?><input type="radio" value="DVD" name="format" id="classical"/>
+ <label for="classical" class="btn btn-outline-primary" ><?php _g('Classic Installation', null, ' '); /*_g('(initial release 7)');*/ ?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="classical">?</a></label><?php }?>
+ <?php if($live){ ?><input type="radio" id="live" value="Live" name="format" />
+ <label for="live" class="btn btn-outline-primary"><?php _g('Live Media');?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="live">?</a></label><?php }?>
+ <input type="radio" id="lan" value="netinstall" name="format" />
+ <label for="lan" class="btn btn-outline-primary"><?php _g('Network Installation')?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="lan">?</a></label>
+</div>
+<?php if( !$live || !$classical ){?>
+<p style="margin-top:1.5em;" class="warn">
+ <?php if(!$live) {_g('LiveDVDs are not yet available.');}?>
+ <?php if(!$classical){ _g('Classical Installation flavours is not yet available.');}?>
+</p>
+<?php }?>
+</div>
+
+<?php if($live){ ?>
+
+<div class="para" id="desktop">
+ <?php _g('Desktop',null,'h2');?>
+
+ <div id="gnomeEx" class="popover-content">
+ <?php _g('GNOME Desktop',null,'h3');?>
+ <?php //get_image('GNOME', '/g/5/gnome.png', 'width: 100%');?>
+ </div>
+ <div id="kdeEx" class="popover-content">
+ <?php _g('Plasma Desktop',null,'h3');?>
+ <?php //get_image('PLASMA', '/g/5/kde.png', 'width: 100%');?>
+ </div>
+ <div id="xfceEx" class="popover-content">
+ <?php _g('Xfce Desktop',null,'h3');?>
+ <?php //get_image('PLASMA', '/g/5/kde.png', 'width: 100%');?>
+ </div>
+
+ <div class="d-sm-flex justify-content-center">
+ <input type="radio" id="kde" value="Plasma" name="desktop" />
+ <label for="kde" class="btn btn-outline-primary"><?php _g('Plasma Desktop')?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="kde">?</a></label>
+ <input type="radio" id="gnome" value="GNOME" name="desktop" />
+ <label for="gnome" class="btn btn-outline-primary"><?php _g('GNOME Desktop')?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="gnome">?</a></label>
+ <input type="radio" id="xfce" value="Xfce" name="desktop" />
+ <label for="xfce" class="btn btn-outline-primary"><?php _g('Xfce Desktop')?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="xfce">?</a></label>
+ </div>
+</div><?php }/*live*/?>
+
+<div class="para" id="nat">
+ <?php _g('Network installer',null,'h2');?>
+
+ <div id="freeEx" class="popover-content">
+ <?php _g('Network installer, Free Software CD', null,'h3');
+ _g('Contain only free software',null,'p')?>
+ </div>
+ <div id="nonfreeEx" class="popover-content">
+ <?php _g('Network installer + nonfree firmware CD', null,'h3');
+ _g('Contain nonfree drivers needed for some disc controllers, some network cards, etc.',null,'p')?>
+ </div>
+ <div class="d-sm-flex justify-content-center">
+ <input type="radio" id="free" value="-" name="nat" />
+ <label for="free" class="btn btn-outline-primary"><?php _g('Free Software CD')?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="free">?</a></label>
+ <input type="radio" id="nonfree" value="nonfree" name="nat" />
+ <label for="nonfree" class="btn btn-outline-primary"><?php _g('Nonfree Firmware CD')?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="nonfree">?</a></label>
+ </div>
+</div>
+
+<div class="para" id="arch">
+ <?php _g('Supported Architecture',null,'h2');?>
+ <div id='64bEx' class="popover-content">
+ <?php _g('64 bit',null,'h3');
+ _g('Most new computers support x86-64 (also known as AMD64 and Intel64), but some laptop processors and netbook processors do not support it.',null,'p')?>
+ </div>
+ <div id='32bEx' class="popover-content">
+ <?php _g('32 bit',null,'h3');
+ _g('This version runs on all PCs including those that support 64 Bit. If you have more than 3 GB of RAM you should prefer the 64 Bit version though.',null,'p')?>
+ </div>
+
+ <div class="d-sm-flex justify-content-center">
+ <input type="radio" id="32b" value="i586" name="arch" />
+ <label for="32b" class="btn btn-outline-primary"><?php _g('32 bit')?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="32b">?</a></label>
+ <input type="radio" id="64b" value="x86_64" name="arch" />
+ <label for="64b" class="btn btn-outline-primary"><?php _g('64 bit')?>
+ <a role="button" class="badge badge-pill badge-info text-white pop" data-tip="64b">?</a></label>
+ </div>
+</div>
+
+<div class="dllink para" id="dllink" >
+ <?php _g('Download Method',null,'h2');?>
+ <div id="directEx" class="popover-content">
+ <?php _g('Direct Link',null,'h3');
+ _g('You will be redirected to a HTTP or FTP mirror.',null,'p') ?>
+ </div>
+
+
+ <div id="torrentEx" class="popover-content">
+<?php if($torrentavailable){ ?>
+ <?php _g('BitTorrent',null,'h3');
+ _g('We recommend you to use <a href=%s>BitTorrent</a> for downloading as it usually give a higher speeds and more reliable download of large files.',array(_r('http://en.wikipedia.org/wiki/BitTorrent')),'p');?>
+<?php } else { echo _g('BitTorrent link are not yet available.',null, 'p style="margin-top:1.5em;" class="warn"'); } ?>
+ </div>
+
+ <div class="d-sm-flex justify-content-center">
+ <?php if($torrentavailable){ ?>
+ <a href="#" id="torrentlink" class="btn btn-outline-primary"><?php _g('BitTorrent')?>
+ <span class="badge badge-pill badge-info text-white pop" data-tip="torrent">?</span></a><?php }?>
+ <a href="#" id="directlink" class="btn btn-outline-primary" ><?php _g('Direct Link')?>
+ <span class="badge badge-pill badge-info text-white pop" data-tip="direct">?</span></a>
+ </div>
+</div>
+
+<noscript>
+<?php if ($classical){ ?>
+ <div class="para" id="Fclassical">
+ <h2><?php _g('Classical Installation Flavours')?></h2>
+ <table class="fr-table dlt2">
+ <thead>
+ <tr>
+ <th><?php _g('Format');?></th>
+ <th><?php _g('link');?></th>
+ <th><?php _g('BitTorrent');?></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <th class="name" >DVD 32bit<br>DVD 64bit</th>
+ <td>
+ <?php dl_link($name,$version,$release,null,'i586','DVD',false);
+ echo '<br>';
+ dl_link($name,$version,$release,null,'x86_64','DVD',false);
+ echo '</td><td>';
+ dl_link($name,$version,$release,null,'i586','DVD',true,$torrentavailable);
+ echo '<br>';
+ dl_link($name,$version,$release,null,'x86_64','DVD',true,$torrentavailable);?>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+<?php } ?>
+
+<?php if($live){ ?>
+ <div class="para" id="Flive">
+ <h2><?php _g('LiveDVDs');?></h2>
+ <table class="fr-table dlt2">
+ <thead>
+ <tr>
+ <th><?php _g('Desktop');?></th>
+ <th><?php _g('link');?></th>
+ <th><?php _g('BitTorrent');?></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <th class="name" style="width:60%">LiveDVD Plasma</th>
+ <td>
+ <?php
+ dl_link($name,$version,$release,'Live-Plasma','x86_64','',false);
+ echo '</td><td>';
+ dl_link($name,$version,$release,'Live-Plasma','x86_64','',true,$torrentavailable);?>
+ </td>
+ </tr>
+ <tr>
+ <th class="name">LiveDVD GNOME</th>
+ <td>
+ <?php
+ dl_link($name,$version,$release,'Live-GNOME','x86_64','DVD',false);
+ echo '</td><td>';
+ dl_link($name,$version,$release,'Live-GNOME','x86_64','DVD',true,$torrentavailable);?>
+ </td>
+ <tr>
+ <th class="name">LiveDVD Xfce</th>
+ <td>
+ <?php dl_link($name,$version,$release,'Live-Xfce','i586','DVD',false);
+ echo '<br>';
+ dl_link($name,$version,$release,'Live-Xfce','x86_64','DVD',false);
+ echo '</td><td>';
+ dl_link($name,$version,$release,'Live-Xfce','i586','DVD',true,$torrentavailable);
+ echo '<br>';
+ dl_link($name,$version,$release,'Live-Xfce','x86_64','DVD',true,$torrentavailable);?>
+ </td>
+ </tr>
+
+ </tbody>
+ </table>
+
+ </div>
+<?php }?>
+
+ <div class="para" id="Flan">
+ <h2><?php _g('Wired Network-based Installation CD')?></h2>
+
+ <table class="fr-table dlt2">
+ <thead>
+ <tr>
+ <th><?php _g('Format');?></th>
+ <th><?php _g('link');?></th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <th><?php _g('Network installer, Free Software CD')?></th>
+ <td><?php dl_link($name,$version,$release,'Netinstall','i586','CD',false);
+ echo '<br>';
+ dl_link($name,$version,$release,'netinstall','x86_64','CD',false);?>
+ </td>
+ </tr>
+ <tr>
+ <th><?php _g('Network installer + nonfree firmware CD')?><br>
+ <td><?php dl_link($name,$version,$release,'netinstall-nonfree','i586','CD',false);
+ echo '<br>';
+ dl_link($name,$version,$release,'netinstall-nonfree','x86_64','CD',false);?>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+</noscript>
+ </div>
+
+ <div class="yui-u col">
+ <div class="para mt-3">
+ <ul class="hl">
+ <li><a href=<?php echo sprintf('"%s">',$releasenotes); _g('Release notes')?></a></li>
+ <li><a href=<?php echo sprintf('"%s">',$errata); _g('More about known issues or limitation in installation and usage')?></a></li>
+ <?php _g('<a href="%s">Which to choose</a>', array(_r('https://wiki.mageia.org/en/Installation_Media')), 'li')?>
+ <?php _g('<a href="%s">Get ISO on USB flash drive</a>', array(_r('https://wiki.mageia.org/en/Installation_Media#Dump_Mageia_ISO_on_a_USB_flash_drive')),'li') ?>
+ <?php _g('Newcomer? <a href="%s">Here\'s a wiki page for you.</a>', array(_r('https://wiki.mageia.org/en/Newcomers_start_here')), 'li')?>
+ <?php _g('Help us on %s', array("<a href=\"../downloads/prerelease/\">$name 8</a>"), 'li')?>
+ <li><a href="../downloads/alternative/"><?php _g('Alternative downloads')?></a></li>
+ </ul>
+
+ <?php '<br>';
+/* _g('Looking for a stable release?', null, 'h3');
+ echo '<p>';
+ _g('It is <a href="%s">here</a>.', array('../downloads/'));
+ echo '</p';
+*/ _g('Upgrading<br>from %s ?', array('Mageia 6'), 'h3');
+ echo '<ul class="hl">';
+ _g('<strong>do not</strong> use LiveDVDs;', null, 'li');
+ _g('see the <a href="%s" hreflang="en">upgrade guide</a>', array($upgradeguide), 'li');
+ echo '</ul>';
+
+ ?>
+
+ </div>
+ <hr>
+ </div>
+ </div>
+ </div>
+ </div>
+<?php echo common_footer($locale); ?>
+<script>
+
+$(function () {
+
+
+$('.pop').each(function () {
+ $(this).popover({
+ html: true,
+ container: 'body',
+ trigger: 'manual',
+ placement: 'auto',
+ content: function () {
+ var id = $(this).data('tip')
+ return $('#' + id + 'Ex').html();
+ }
+ }).on('mouseenter', function () {
+ var _this = this;
+ $(this).popover('show');
+ $('.popover').on('mouseleave', function () {
+ $(_this).popover('hide');
+ });
+ }).on('mouseleave', function () {
+ var _this = this;
+ setTimeout(function () {
+ if (!$('.popover:hover').length) {
+ $(_this).popover('hide');
+ }
+ }, 300);
+ });
+});
+});
+
+function lazyload(){
+$('img.lazy').each(function(){
+ $(this)
+ .attr( 'src', $(this).data('src') )
+ .removeClass('hidden')
+ .removeAttr('data-src');
+});
+}
+
+ $('#arch,#nat,#desktop,#dllink').hide();
+ $('input[name=format]').click(function () {
+ $('#arch')[this.id == 'classical' ? 'slideDown' : 'slideUp']();
+ $('label[for="32b"]').show();
+ $('input[name="desktop"],input[name="nat"],input[name="arch"],input[name="dllink"]').prop('checked', false);
+ $('#desktop')[this.id == 'live' ? 'slideDown' : 'slideUp']();
+ $('#nat')[this.id == 'lan' ? 'slideDown' : 'slideUp']();
+ $('#dllink')[$('#lan,#live,#classical').is(':checked') ? 'slideUp' : 'slideDown']();
+ });
+
+ $('input[name=nat]').click(function () {
+ $('#arch')[ $('#free,#nonfree').is(':checked') ? 'slideDown' : 'slideUp']();
+ });
+
+ $('input[name=desktop]').click(function () {
+ $('#arch')[ $('#gnome,#kde,#xfce').is(':checked') ? 'slideDown' : 'slideUp']();
+ $('label[for="32b"]')[$('#gnome,#kde').is(':checked') ? 'hide' : 'show']()
+ lazyload();
+ });
+
+ $('input[name=arch]').click(function () {
+ $('#dllink')[$('#32b,#64b').is(':checked') ? 'slideDown' : 'slideUp']();
+ $('input[name="dllink"]').prop('checked', false);
+ $('#torrentlink')[$('#lan').is(':checked') ? 'hide' : 'show']();
+ });
+
+ $('#directlink,#torrentlink').hover(function () {
+ format = $('input[name=format]:checked').val();
+ desktop = $('input[name=desktop]:checked').val();
+ nat = (nat = $('input[name=nat]:checked').val()) == '-' ? '-' : '-' + nat + '-';
+ arch = $('input[name=arch]:checked').val();
+ getname ='<?php echo get_mageia($name, $version, $release)?>' + '-';
+<?php if($versionOld){ ?>
+ getnameOld ='<?php echo get_mageia($name, $versionOld, $release)?>' + '-';
+ file = $('#live').is(':checked') ? getname + format + '-' + desktop + '-' + arch + '.iso' : $('#classical').is(':checked') ? getnameOld + arch + '.iso' : getname + format + nat + arch + '-CD.iso';
+<?php }else{ ?>
+ file = $('#live').is(':checked') ? getname + format + '-' + desktop + '-' + arch + '.iso' : $('#classical').is(':checked') ? getname + arch + '.iso' : getname + format + nat + arch + '-CD.iso';
+<?php } ?>
+ file = (this.id == 'torrentlink') ? file + '&torrent=1' : file ;
+ $("a.btn").attr('href','../downloads/get/?q=' + file);
+ });
+</script>
+</body>
+</html>
diff --git a/en/7/index.php b/en/7/index.php
new file mode 100644
index 000000000..976733afa
--- /dev/null
+++ b/en/7/index.php
@@ -0,0 +1 @@
+<?php include '../7/download_index.php';
diff --git a/en/7/nav.php b/en/7/nav.php
new file mode 100644
index 000000000..bac0e9366
--- /dev/null
+++ b/en/7/nav.php
@@ -0,0 +1,32 @@
+<?php
+
+$releasenotes = '';
+$errata = '';
+$upgradeguide = '';
+
+$releasenotes = _r('https://wiki.mageia.org/en/Mageia_7_Release_Notes');
+$errata = _r('https://wiki.mageia.org/en/Mageia_7_Errata');
+$upgradeguide = _r('https://wiki.mageia.org/en/Mageia_7_Release_Notes#Upgrading_from_Mageia_6');
+
+$nav = array(
+// _r("https://wiki.mageia.org/en/Mageia_8_Development") => _r('Development roadmap'),
+// _r("https://wiki.mageia.org/en/FeatureMageia8_Review") => _r('Features review'),
+ $releasenotes => _r('Release notes'),
+ $errata => _r('Errata'),
+// "//bugs.mageia.org/" => _r('Bugs Reports'),
+);
+
+$sru = trim($_SERVER['REQUEST_URI']);
+
+$pnav = array();
+foreach ($nav as $k => $v) {
+ $pnav[] = sprintf('<li class="flex-sm-fill text-sm-center nav-item"><a href="%s"%s>%s</a></li>',
+ $k,
+ $k == $sru ? ' class="nav-link active"' : ' class="nav-link"',
+ $v);
+}
+$pnav = implode($pnav);
+
+echo <<<S
+<div id="mgnavsub"><ul id="mgnavsubl" class="nav nav-pills flex-column flex-sm-row justify-content-center">{$pnav}</ul></div>
+S;
diff --git a/eo/7 b/eo/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/eo/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/es/7 b/es/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/es/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/et/7 b/et/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/et/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/eu/7 b/eu/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/eu/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/fi/7 b/fi/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/fi/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/fr/7 b/fr/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/fr/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/hi/7 b/hi/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/hi/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/hr/7 b/hr/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/hr/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/hu/7 b/hu/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/hu/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/ia/7 b/ia/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/ia/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/id/7 b/id/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/id/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/it/7 b/it/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/it/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/ja/7 b/ja/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/ja/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/lo/7 b/lo/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/lo/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/lt/7 b/lt/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/lt/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/lv/7 b/lv/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/lv/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/nb/7 b/nb/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/nb/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/nl/7 b/nl/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/nl/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/pl/7 b/pl/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/pl/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/pms/7 b/pms/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/pms/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/pt-br/7 b/pt-br/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/pt-br/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/pt/7 b/pt/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/pt/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/ro/7 b/ro/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/ro/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/ru/7 b/ru/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/ru/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/sco/7 b/sco/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/sco/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/sk/7 b/sk/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/sk/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/sl/7 b/sl/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/sl/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/sq/7 b/sq/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/sq/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/sr/7 b/sr/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/sr/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/sv/7 b/sv/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/sv/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/tg/7 b/tg/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/tg/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/th/7 b/th/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/th/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/tr/7 b/tr/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/tr/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/uk/7 b/uk/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/uk/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/ur/7 b/ur/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/ur/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/zh-cn/7 b/zh-cn/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/zh-cn/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file
diff --git a/zh-tw/7 b/zh-tw/7
new file mode 120000
index 000000000..6709cf6fc
--- /dev/null
+++ b/zh-tw/7
@@ -0,0 +1 @@
+../en/7 \ No newline at end of file