Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.
Hi all, please see this major site announcement: https://www.boards.ie/discussion/2058427594/boards-ie-2026

Experimental Search Engine

  • 06-03-2011 03:27PM
    #1
    Registered Users, Registered Users 2, Paid Member Posts: 1,232 ✭✭✭


    Hi Folks

    I've just put an experimental search engine live. It only indexes mobile optimised websites, and to be honest the list it has indexed is still very small.

    But I'd appreciate if you added it to your mobile device and made any site suggestions too.

    http://www.msearch-beta.com


Comments

  • Registered Users, Registered Users 2 Posts: 7,742 ✭✭✭mneylon


    Some more information about it on the site would be helpful
    An "about" page would be useful


  • Registered Users, Registered Users 2 Posts: 1,802 ✭✭✭cormee


    bren2002 wrote: »
    Hi Folks

    I've just put an experimental search engine live. It only indexes mobile optimised websites, and to be honest the list it has indexed is still very small.

    But I'd appreciate if you added it to your mobile device and made any site suggestions too.

    http://www.msearch-beta.com

    Great idea.

    Does it actually spider for mobile sites or does it only list user-submitted sites?

    How come http://m.msearch-beta.com and http://mobile.msearch-beta.com don't point to the site? Although it's not strictly necessary it has become the convention for mobile sites so some users might expect it. I did.

    The interface isn't really designed for mobile devices, you need to have an eventlistner that detects a change of orientation on the device (ie. from landscape to portrait) and updates/refreshes the layout

    [HTML]<script type="application/x-javascript">

    addEventListener("load", function()
    {
    setTimeout(updateLayout, 0);
    }, false);

    var currentWidth = 0;

    function updateLayout()
    {
    if (window.innerWidth != currentWidth)
    {
    currentWidth = window.innerWidth;

    var orient = currentWidth == 320 ? "profile" : "landscape";
    document.body.setAttribute("orient", orient);
    setTimeout(function()
    {
    window.scrollTo(0, 1);
    }, 100);
    }
    }

    setInterval(updateLayout, 400);

    </script>[/HTML]


    You need to disable zooming

    [HTML]<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>[/HTML]

    You need to change the homepage from a table-based layout to divs.


Advertisement