For Windows and Mac clients, you can define an Internet search engine for use with Open Mobile. If enabled, users will be able to perform Internet searches directly in Open Mobile. To enable search, select it in the Open Mobile Portal. Then, upload a search file, which is an HTML file formatted as follows:

  • The file must be self-contained, requiring no additional resources uploaded, but may reference external or internet resources. It should not refer to itself, as the upload process may change the filename.
  • Maximum size of the search window in Open Mobile is 319 pixels wide by 125 pixels high.
  • Specify html { overflow: auto } in the CSS line to prevent the vertical scrollbar from showing.
  • Avoid the use of any scripts, if possible.

An example search file is shown below:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>MySearchPage</title>
    <meta name="created" content="Wed, 28 Apr 2010 22:28:23 GMT" />
  <meta name="description" content="" />
  <meta name="keywords" content="" />
  <style type="text/css">
  html {
        overflow: auto;
  }
  <!--
.body {
	height: 125px;
	width: 319px;
	background-color: #EFEFEF;
	color: #000000;
	max-width: 319px;
	max-height: 125px;
}
-->
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000" leftmargin="0px" topmargin="0px">
<div class="body">
<form action="http://www.google.com/cse" id="cse-search-box" target="_blank">
  <div>
    <input type="hidden" name="cx" value="013516449520835724295:3fa3ka1eqy4" />
    <input type="hidden" name="ie" value="UTF-8" />
    <input type="text" name="q" size="31" />
    <input type="submit" name="sa" value="Search" />
  </div>
</form>
<script type="text/javascript" src="http://www.google.com/cse/brand?form=cse-search-box&amp;lang=en"></script>
</div>
</body>
</html>
 

©2015 iPass Inc. All rights reserved. Terms of Use