• Mobile Device Support

    From WINSERVER SUPPORT@1:124/5013 to All on Thu Jan 31 19:12:06 2019
    Date: Sat, 10 Nov 2012 11:40:07 -0400
    From: WINSERVER SUPPORT
    To: all
    Subject: Mobile Device Support
    Newsgroups: win.server.program
    Message-ID: <1352565540.32.0@winserver.com>
    X-Mailer: Wildcat! Interactive Net Server v7.0.454.5
    Lines: 42

    Well, I see something simple for people to try to get your web site
    MOBILE ready. Its a start, but it works with the following meta header:

    <meta name="viewport" content="width=device-width, initial-scale=1" />

    This helps to begin the scaling correctly for all devices, including
    desktop browsers. Its not perfect but at least the buttons and text
    are bigger. Pages will be changes in in there to accomodate mobile
    devices.

    I did this in the several pages:

    @IF BROWSER.PLATFORM = "iphone"@
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    @ENDIF@

    This will test for a iPhone browser. What I need to know is what browser.xxxxxxxx properties are available for the android devices
    (i.e. google stuff). You can test the browser on your device by
    going to:

    http://beta.winserver.com/public/UserBrowserStatus.wct

    and tell me what it says for your device web access to this page for
    the following:

    BROWSER.VERSION =
    BROWSER.NAME =
    BROWSER.PLATFORM =

    thanks



    --
    Hector, Engineering & Technical Support
    Santronics Software, Inc.
    http://www.santronics.com (sales)
    http://www.winserver.com (support)
    http://www.winserver.com/AupInfo (Online AUP Help)
    Office: 305-248-3204
    --- Platinum Xpress/Win/WINServer v3.1
    * Origin: Prison Board BBS Mesquite Tx //telnet.RDFIG.NET www. (1:124/5013)
  • From JOHN GUILLORY@1:124/5013 to All on Thu Jan 31 19:12:12 2019
    Date: Sat, 11 Mar 2017 15:54:07 -0500
    From: JOHN GUILLORY
    To: All
    Subject: Mobile Device Support
    Newsgroups: win.server.program
    Message-ID: <1489284412.32.0@winserver.com>
    X-Mailer: Wildcat! Interactive Net Server v7.0.454.5
    Lines: 22

    I did this in the several pages:

    @IF BROWSER.PLATFORM = "iphone"@
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" /> @ENDIF@

    http://beta.winserver.com/public/UserBrowserStatus.wct

    Mozilla/5.0 (Linux; Android 6.0; HTC One A9 Build/MRA58k) Apple
    Webkit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile
    Safari/537.36

    Special Safari/Chrome Macro Testing
    browser.safari = true
    browser.chrome = true
    browser.firefox = false
    browser.iphone = false
    browser.facebook = false
    browser.fblc = false
    browser.ipad = false
    --- Platinum Xpress/Win/WINServer v3.1
    * Origin: Prison Board BBS Mesquite Tx //telnet.RDFIG.NET www. (1:124/5013)
  • From JOHN KIDWELL@1:124/5013 to All on Thu Jan 31 19:12:12 2019
    Date: Fri, 01 Dec 2017 11:05:54 -0500
    From: JOHN KIDWELL
    To: JOHN GUILLORY
    Subject: RE: Mobile Device Support
    Newsgroups: win.server.program
    Message-ID: <1512144354.32.1489284412@winserver.com>
    References: <1489284412.32.0@winserver.com>
    X-Mailer: Wildcat! Interactive Net Server v7.0.454.5
    Lines: 44

    On 3/11/2017 3:54 PM, JOHN GUILLORY wrote to All:

    I did this in the several pages:

    @IF BROWSER.PLATFORM = "iphone"@
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" /> @ENDIF@

    http://beta.winserver.com/public/UserBrowserStatus.wct

    Mozilla/5.0 (Linux; Android 6.0; HTC One A9 Build/MRA58k) Apple Webkit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile
    Safari/537.36

    Special Safari/Chrome Macro Testing
    browser.safari = true
    browser.chrome = true
    browser.firefox = false
    browser.iphone = false
    browser.facebook = false
    browser.fblc = false
    browser.ipad = false

    I did the following a long time ago, maybe it can help:
    <script language="JavaScript">
    <!--

    var message="";
    ///////////////////////////////////
    function clickIE() {if (document.all) {(message);return false;}}
    function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) {
    if (e.which==2||e.which==3) {(message);return false;}}}
    if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

    document.oncontextmenu=new Function("return false")
    // -->
    </script>
    </head>

    John Kidwell
    --- Platinum Xpress/Win/WINServer v3.1
    * Origin: Prison Board BBS Mesquite Tx //telnet.RDFIG.NET www. (1:124/5013)