Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Experimental Search Engine

  • 06-03-2011 3:27pm
    #1
    Registered Users, Registered Users 2 Posts: 1,208 ✭✭✭


    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,740 ✭✭✭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