I want the Confluence desktop UI on tablets but the mobile UI on phones

Thomas Alfred
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 1, 2013

Is this possible without recompiling com.atlassian.confluence.plugins.mobile.MobileUtils ?

I'm looking at this code in particular:

private static final Pattern MOBILE_USER_AGENT_REGEX = Pattern.compile("(iPhone;|iPad;|iPhone Simulator;|iPod;|Linux; U; Android)");
  private static final Pattern ANDROID_CHROME = Pattern.compile("Chrome/[.\\d]* Mobile");
  private static final Pattern OLD_ANDROID = Pattern.compile("Linux; U; Android (?:[23]\\.\\d|4\\.0\\.[12])");

...

  public static boolean isSupportedUserAgent(HttpServletRequest request)
  {
    String userAgent = request.getHeader("user-agent");

    return (StringUtils.isNotBlank(userAgent)) && (!OLD_ANDROID.matcher(userAgent).find()) && ((MOBILE_USER_AGENT_REGEX.matcher(userAgent).find()) || (ANDROID_CHROME.matcher(userAgent).find()));
  }

1 answer

0 votes
Liz Canham January 22, 2014

This is exactly what we'd like to do as well.

We had display problems when viewing our site on a mobile device, for example unable to show images and some macros would not display the content, but found by *disabling* the Confluence Mobile plugin, it now displays perfectly on IOS devices, but is now squished in the top-left corner on Android devices.

If you found any solution or workarounds, please can you share?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events