CD or DVD discs.', array(_r('https://wiki.mageia.org/en/Writing_CD_and_DVD_images')), ' '); ?>
USB drive.', array('href="' . _r('https://wiki.mageia.org/en/Installation_Media#Dump_Mageia_ISO_on_a_USB_flash_drive') . '"'));
echo '
';
_g('To
dump a Mageia installation ISO on a USB stick, you may try one of several tools:', array(''),'p');
echo '
- ';
_g('For Linux, IsoDumper, available inside repo. Or any tools based on %sdd%s.', array('', ''), ' ');
_g('Unetbootin is not supported.', null, 'span class="warn"'); ?>
wiki for your options.', array(_r('https://wiki.mageia.org/en/Dump_Mageia_ISO_on_a_USB_flash_drive_-_Alternative_tools')), 'li'); ?>
UEFI, a procedure is available in the wiki.', 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*/))) ;?>
%s | ',$url, $name);
$table .= sprintf('
%s | ',$url , $torrent ? 'torrent': '');
$table .= sprintf('
%s | ',$magnet , $magnet ? 'magnet': '');
$table .= sprintf('
%s | '. PHP_EOL, $size);
return $table;
};
foreach ($ini as $section => $values) {
$version = $values['name'][7];
$name = $values['name'];
$torrent = $values['torrent'];
$magnet = $values['magnet'];
$size = $values['size'];
if ($version == $stableVersion){
$tables .= doTheTable($section, $name, $torrent, $magnet, $size);
}elseif ($version == $cauldron){
$tablec .= doTheTable($section, $name, $torrent, $magnet, $size);
}else{
$tablea .= doTheTable($section, $name, $torrent, $magnet, $size);
}
};
function allDiv($version, $table, $show){
$div = sprintf('
'. PHP_EOL,$version, $version, $version);
$div .= sprintf('
' . PHP_EOL, $version, $show, $version);
$div .= '
';
$div .= sprintf('iso | torrent | magnet | size |
' . PHP_EOL);
$div .= sprintf('%s
' . PHP_EOL, $table);
echo $div . '
'. PHP_EOL;
}
echo '
';
allDiv('Stable', $tables, 'show');
allDiv('Unstable', $tablec);
allDiv('Archives', $tablea);
?>