2017-12-16 17:17:57 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2017-12-28 23:46:12 +00:00
|
|
|
<title>BlackBerry/TCL Firmware List</title>
|
|
|
|
<link rel="stylesheet" href="node_modules/material-components-web/dist/material-components-web.css"/>
|
|
|
|
<link rel="stylesheet" href="assets/material-icons.css"/>
|
|
|
|
<link rel="stylesheet" href="assets/style.css"/>
|
2017-12-16 17:17:57 +00:00
|
|
|
</head>
|
2017-12-28 23:46:12 +00:00
|
|
|
<body class="mdc-typography">
|
2017-12-16 17:17:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once __DIR__ . '/lib/autoloader.php';
|
|
|
|
|
|
|
|
use \TclUpdates\SQLiteReader;
|
|
|
|
|
|
|
|
$db = new SQLiteReader();
|
|
|
|
|
|
|
|
$allVars = $db->getAllVariants();
|
2017-12-16 18:42:24 +00:00
|
|
|
$unknowns = $db->getUnknownRefs();
|
|
|
|
if (count($unknowns) > 0) {
|
|
|
|
$variants = array();
|
|
|
|
foreach ($unknowns as $uref) {
|
|
|
|
$variants[$uref] = '';
|
|
|
|
}
|
|
|
|
$allVars['Unknown'] = array(
|
|
|
|
'Variants' => $variants,
|
|
|
|
);
|
|
|
|
}
|
2017-12-16 17:17:57 +00:00
|
|
|
|
2018-01-04 12:51:57 +00:00
|
|
|
$families = array_keys($allVars);
|
|
|
|
|
|
|
|
?>
|
|
|
|
<header class="mdc-toolbar mdc-toolbar--fixed">
|
|
|
|
<div class="mdc-toolbar__row">
|
|
|
|
<section class="mdc-toolbar__section mdc-toolbar__section--shrink-to-fit mdc-toolbar__section--align-start">
|
|
|
|
<span class="mdc-toolbar__title">BlackBerry/TCL Firmware List</span>
|
|
|
|
</section>
|
|
|
|
<section class="mdc-toolbar__section mdc-toolbar__section--align-end" role="toolbar">
|
|
|
|
<div>
|
|
|
|
<nav id="tab-bar" class="mdc-tab-bar mdc-tab-bar--indicator-accent">
|
|
|
|
<?php
|
|
|
|
|
|
|
|
foreach ($families as $i => $family) {
|
|
|
|
echo '<a class="mdc-tab' . (($i==0)?' mdc-tab--active':'') . '" href="#' . strtolower($family) . '" data-panel="family-' . strtolower($family) . '">' . $family . '</a>' . PHP_EOL;
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<span class="mdc-tab-bar__indicator"></span>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<div class="mdc-toolbar-fixed-adjust"></div>
|
|
|
|
<?php
|
|
|
|
|
2017-12-16 17:17:57 +00:00
|
|
|
foreach ($allVars as $family => $models) {
|
2017-12-29 15:25:57 +00:00
|
|
|
echo '<div id="family-' . strtolower($family) . '" class="panel" role="tabpanel">';
|
2017-12-16 17:17:57 +00:00
|
|
|
foreach ($models as $model => $variants) {
|
|
|
|
echo '<h2>' . $family . ' ' . $model . '</h2>' . PHP_EOL;
|
2017-12-16 18:42:24 +00:00
|
|
|
$allVersions = $db->getAllVersionsForModel($model);
|
|
|
|
echo '<table><tbody>';
|
2017-12-16 17:17:57 +00:00
|
|
|
foreach ($variants as $ref => $name) {
|
2017-12-17 18:57:39 +00:00
|
|
|
echo '<tr><td class="ref">';
|
|
|
|
if (mb_strlen($name) > 0) {
|
|
|
|
echo '<abbr title="' . $name . '">' . $ref . '</abbr>';
|
|
|
|
} else {
|
|
|
|
echo $ref;
|
|
|
|
}
|
|
|
|
echo '</td>';
|
2017-12-16 18:42:24 +00:00
|
|
|
$refVersions = $db->getAllVersionsForRef($ref);
|
2017-12-17 18:33:33 +00:00
|
|
|
$allOta = $db->getAllVersionsForRef($ref, $db::OTA_ONLY);
|
2017-12-16 18:42:24 +00:00
|
|
|
foreach ($allVersions as $v) {
|
|
|
|
if (in_array($v, $refVersions, true)) {
|
2017-12-17 18:33:33 +00:00
|
|
|
if (in_array($v, $allOta)) {
|
|
|
|
echo '<td>' . $v . '</td>';
|
|
|
|
} else {
|
2017-12-28 23:58:29 +00:00
|
|
|
echo '<td class="fullonly mdc-theme--secondary-dark">' . $v . '</td>';
|
2017-12-17 18:33:33 +00:00
|
|
|
}
|
2017-12-16 18:42:24 +00:00
|
|
|
} else {
|
2017-12-16 19:17:11 +00:00
|
|
|
echo '<td class="empty">- - -</td>';
|
2017-12-16 18:42:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
echo '</tr>' . PHP_EOL;
|
2017-12-16 17:17:57 +00:00
|
|
|
}
|
2017-12-16 18:42:24 +00:00
|
|
|
echo '</tbody></table>';
|
2017-12-16 17:17:57 +00:00
|
|
|
}
|
2017-12-29 15:25:57 +00:00
|
|
|
echo '</div>';
|
2017-12-16 17:17:57 +00:00
|
|
|
}
|
|
|
|
?>
|
2017-12-28 23:46:12 +00:00
|
|
|
</main>
|
2017-12-29 15:25:57 +00:00
|
|
|
<script type="text/javascript" src="node_modules/material-components-web/dist/material-components-web.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
window.mdc.autoInit();
|
|
|
|
window.tabBar = new mdc.tabs.MDCTabBar(document.querySelector('#tab-bar'));
|
|
|
|
|
|
|
|
function activatePanel(panelId)
|
|
|
|
{
|
|
|
|
var allPanels = document.querySelectorAll('.panel');
|
|
|
|
for (var i=0; i<allPanels.length; i++) {
|
|
|
|
var panel = allPanels[i];
|
|
|
|
if (panel.id == panelId) {
|
|
|
|
tabBar.activeTabIndex = i;
|
|
|
|
}
|
|
|
|
panel.style.display = (panel.id == panelId)?'block':'none';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.tabBar.listen('MDCTabBar:change', function(t) {
|
|
|
|
var nthChildIndex = t.detail.activeTabIndex;
|
|
|
|
var tabId = t.srcElement.id;
|
|
|
|
var tab = document.querySelector('#' + tabId + ' .mdc-tab:nth-child(' + (nthChildIndex + 1) + ')');
|
|
|
|
var panelId = tab.dataset.panel;
|
|
|
|
activatePanel(panelId);
|
|
|
|
});
|
|
|
|
|
|
|
|
var hash = location.hash;
|
|
|
|
if (hash.length > 1) {
|
|
|
|
activatePanel('family-' + hash.substring(1));
|
|
|
|
} else {
|
|
|
|
activatePanel('family-keyone');
|
|
|
|
}
|
|
|
|
</script>
|
2017-12-16 17:17:57 +00:00
|
|
|
</body>
|
|
|
|
</html>
|