From 5afee521993976299f54e13155ec9291858d1b13 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 27 Jan 2009 15:54:11 -0800 Subject: [PATCH] Internet Explorer version 6, begone! --- NEWS | 2 ++ static/html/enable JavaScript.html | 15 --------------- static/html/supported browsers.html | 8 ++++---- static/js/Wiki.js | 2 ++ 4 files changed, 8 insertions(+), 19 deletions(-) diff --git a/NEWS b/NEWS index 66d5bed..3293dc3 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,8 @@ * Start a search: Ctrl-slash * Save the current note: Ctrl-space * Fixed various bugs related to the subscription page. + * Dropped support for Internet Explorer version 6. But version 7+ is still + fully supported! 1.5.12: December 30, 2008 * Fixed a bug in which clicking on the notebook rename text field ended the diff --git a/static/html/enable JavaScript.html b/static/html/enable JavaScript.html index 44a32b6..a9f0e5d 100644 --- a/static/html/enable JavaScript.html +++ b/static/html/enable JavaScript.html @@ -39,21 +39,6 @@ support in various web browsers. It only takes a few seconds.
  • Return to the page that required JavaScript, and then click the reload button or press the F5 key to reload the page.
  • -Internet Explorer 6 - -
      -
    1. Click Tools on the menu at the top of your browser window.
    2. -
    3. Click Internet Options.
    4. -
    5. Click the Security tab.
    6. -
    7. Click the Custom Level... button.
    8. -
    9. Scroll down to the Scripting section.
    10. -
    11. Under the Active scripting heading, click Enable.
    12. -
    13. Click the OK button.
    14. -
    15. If you're prompted to confirm, click the Yes button.
    16. -
    17. Click the OK button.
    18. -
    19. Return to the page that required JavaScript, and then click the refresh button or press the F5 key to reload the page.
    20. -
    - Internet Explorer 7
      diff --git a/static/html/supported browsers.html b/static/html/supported browsers.html index bb27391..d8ab06d 100644 --- a/static/html/supported browsers.html +++ b/static/html/supported browsers.html @@ -6,10 +6,10 @@ so not all browsers will work for editing your wiki. Supported browsers include:

      diff --git a/static/js/Wiki.js b/static/js/Wiki.js index c0b9784..64e00c2 100644 --- a/static/js/Wiki.js +++ b/static/js/Wiki.js @@ -53,6 +53,8 @@ function Wiki( invoker ) { if ( OPERA ) unsupported_agent = "Opera"; + else if ( MSIE6 ) + unsupported_agent = "Microsoft Internet Explorer version 6"; if ( unsupported_agent ) this.display_message( "Luminotes does not currently support the " + unsupported_agent + " web browser for editing. If possible, please use a recent version of Firefox, Internet Explorer, Chrome, or Safari instead. Sorry for the inconvenience." );