From: <var...@us...> - 2021-01-02 20:28:07
|
Revision: 10219 http://sourceforge.net/p/phpwiki/code/10219 Author: vargenau Date: 2021-01-02 20:28:05 +0000 (Sat, 02 Jan 2021) Log Message: ----------- Internet Explorer is dead Modified Paths: -------------- trunk/README trunk/lib/config.php trunk/locale/it/pgsrc/NoteDiRilascio trunk/pgsrc/ReleaseNotes trunk/themes/Crao/crao.css trunk/themes/Crao/templates/actionbar.tmpl trunk/themes/MonoBook/themeinfo.php trunk/themes/blog/Kubrick.css trunk/themes/blog/templates/sidebar.tmpl Modified: trunk/README =================================================================== --- trunk/README 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/README 2021-01-02 20:28:05 UTC (rev 10219) @@ -13,7 +13,7 @@ * Opera >= 8 * Chrome >= 6 * Konqueror >= 3.5 -* Internet Explorer >= 9 +* Edge Additional docs: Modified: trunk/lib/config.php =================================================================== --- trunk/lib/config.php 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/lib/config.php 2021-01-02 20:28:05 UTC (rev 10219) @@ -58,34 +58,6 @@ } /** - * Browser Detection Functions - * - * @author: Reini Urban - */ -function browserAgent() -{ - static $HTTP_USER_AGENT = false; - if ($HTTP_USER_AGENT !== false) return $HTTP_USER_AGENT; - if (!$HTTP_USER_AGENT) - $HTTP_USER_AGENT = @$GLOBALS['HTTP_SERVER_VARS']['HTTP_USER_AGENT']; - if (!$HTTP_USER_AGENT) // CGI - $HTTP_USER_AGENT = @$GLOBALS['HTTP_ENV_VARS']['HTTP_USER_AGENT']; - if (!$HTTP_USER_AGENT) // local CGI testing - $HTTP_USER_AGENT = 'none'; - return $HTTP_USER_AGENT; -} - -function browserDetect($match) -{ - return (strpos(strtolower(browserAgent()), strtolower($match)) !== false); -} - -function isBrowserIE() -{ - return (browserDetect('Mozilla/') and browserDetect('MSIE')); -} - -/** * If $LANG is undefined: * Smart client language detection, based on our supported languages * HTTP_ACCEPT_LANGUAGE="de-at,en;q=0.5" Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-01-02 20:28:05 UTC (rev 10219) @@ -1,4 +1,4 @@ -Date: Mon, 28 Dec 2020 19:46:14 +0000 +Date: Sat, 2 Jan 2021 19:46:14 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -14,10 +14,11 @@ * PHP 7 compatible * Full HTML 5: Add HTML 5 <main> <header> <footer> <nav> in all themes. Add ARIA roles. * Flash is dead +* Internet Explorer is dead === Changes === * Add new button in Edit Toolbar: convert Tab Separated Values to Wikicreole table -* Update jQuery to 2.2.4: Internet Explorer <= 8 no longer supported +* Update jQuery to 2.2.4 * Pear: use ##mysqli## instead of ##mysql## * Update PEAR.php to release 1.10.12 * Update Pear DB library to 1.10.0 Modified: trunk/pgsrc/ReleaseNotes =================================================================== --- trunk/pgsrc/ReleaseNotes 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/pgsrc/ReleaseNotes 2021-01-02 20:28:05 UTC (rev 10219) @@ -1,4 +1,4 @@ -Date: Mon, 28 Dec 2020 19:46:14 +0000 +Date: Sat, 2 Jan 2021 19:46:14 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=ReleaseNotes; @@ -14,10 +14,11 @@ * PHP 7 compatible * Full HTML 5: Add HTML 5 <main> <header> <footer> <nav> in all themes. Add ARIA roles. * Flash is dead +* Internet Explorer is dead === Changes === * Add new button in Edit Toolbar: convert Tab Separated Values to Wikicreole table -* Update jQuery to 2.2.4: Internet Explorer <= 8 no longer supported +* Update jQuery to 2.2.4 * Pear: use ##mysqli## instead of ##mysql## * Update PEAR.php to release 1.10.12 * Update Pear DB library to 1.10.0 Modified: trunk/themes/Crao/crao.css =================================================================== --- trunk/themes/Crao/crao.css 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/themes/Crao/crao.css 2021-01-02 20:28:05 UTC (rev 10219) @@ -186,28 +186,8 @@ ****************************** *****ACTION-BUTTONS ****************************** - with special IE fix */ -div.ie-actionbuttons { - position: relative; - height: 22px; - right: 0; - bottom: 0; - margin: 0; - background-color: transparent; - background-image: url(images/BG.png); - background-repeat: no-repeat; - background-position: top right; - text-align: right; - vertical-align: bottom; - padding-left: 2em; - padding-right: 1em; - padding-top: 0.5ex; - padding-bottom: 0.5ex; - border: 0 none; -} - #actionbuttons { position: fixed; max-width: 30%; Modified: trunk/themes/Crao/templates/actionbar.tmpl =================================================================== --- trunk/themes/Crao/templates/actionbar.tmpl 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/themes/Crao/templates/actionbar.tmpl 2021-01-02 20:28:05 UTC (rev 10219) @@ -6,11 +6,7 @@ $EditB = Button("viewsource", _("View Source")); if (empty($revision)) $revision = $page->getCurrentRevision(false); ?> -<?php if (isBrowserIE()) { ?> -<div class="ie-actionbuttons"> -<?php } else { ?> <div id="actionbuttons"> -<?php } ?> <?php echo $EditB ?> <?php if ($user->isAdmin() or mayAccessPage('change',$page->getName())) { ?> <?php echo $SEP?><?php echo Button($page->get('locked') ? 'unlock' : 'lock') ?> Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/themes/MonoBook/themeinfo.php 2021-01-02 20:28:05 UTC (rev 10219) @@ -34,9 +34,6 @@ * Mediawiki 'monobook' style sheet for CSS2-capable browsers. * Copyright Gabriel Wicke - http://www.aulinx.de/ * See main.css for more. - * - * Problems with IE: signin is at the left. - * */ require_once 'lib/WikiTheme.php'; require_once 'themes/wikilens/themeinfo.php'; Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/themes/blog/Kubrick.css 2021-01-02 20:28:05 UTC (rev 10219) @@ -289,24 +289,6 @@ color: black; } -#moz-sidebar { - font: 1em 'Lucida Grande', Verdana, Arial, sans-serif; - margin-left: 560px; - position: absolute; - z-index: 2; - top: 270px; - /* top, right, bottom, left */ - padding: 0 10px 10px 0; - width: 155px; - background: white; -} - -#moz-sidebar ul li { - list-style-type: square; - padding-left: 0; - text-indent: 0; -} - #sidebar form { margin: 0; } @@ -527,11 +509,8 @@ /* End Images */ -/* Begin Lists +/* Begin Lists */ - Special stylized non-IE bullets - Do not work in Internet Explorer, which merely default to normal bullets. */ - html>body ul { margin-left: 0; padding: 0 0 0 30px; Modified: trunk/themes/blog/templates/sidebar.tmpl =================================================================== --- trunk/themes/blog/templates/sidebar.tmpl 2020-12-31 18:03:53 UTC (rev 10218) +++ trunk/themes/blog/templates/sidebar.tmpl 2021-01-02 20:28:05 UTC (rev 10219) @@ -1,8 +1,5 @@ +<div id="sidebar"> <?php -$id = isBrowserIE() ? 'sidebar' : 'moz-sidebar'; -?> -<div id="<?php echo $id?>"> -<?php /* Today's Blogs page for the current or admin user, if the subpage is defined. */ $UserCalPageTitle = $user->getId() . '/' . _("Blog"); $dbi = $request->getDbh(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |