summaryrefslogtreecommitdiffstats
path: root/docs/html/search.jd
blob: 979964bd94d87a9d8480f5ee2ac60d7a0d9a87b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
page.title=Search Results
@jd:body


<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
      google.load('search', '1');

      function OnLoad() {
        document.getElementById("search_autocomplete").style.color = "#000";

        // create search control
        searchControl = new google.search.SearchControl();

        // use our existing search form and use tabs when multiple searchers are used
        drawOptions = new google.search.DrawOptions();
        drawOptions.setDrawMode(google.search.SearchControl.DRAW_MODE_TABBED);
        drawOptions.setInput(document.getElementById("search_autocomplete"));

        // configure search result options
        searchOptions = new google.search.SearcherOptions();
        searchOptions.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
        searchOptions.setRoot(document.getElementById("leftSearchControl"));

        // configure searcher options
        searcher = new google.search.WebSearch();
        searcher.setUserDefinedLabel("Android Developers");
        searcher.setSiteRestriction("001283715400630100512:ggqrtvkztwm");
 
        searchControl.addSearcher(searcher, searchOptions);
        searchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);
        searchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
        searchControl.setNoResultsString(google.search.SearchControl.NO_RESULTS_DEFAULT_STRING);

        // upon ajax search, refresh the url and search title
        searchControl.setSearchStartingCallback(this, function(control, searcher, query) {
            temp = location.href.split('#');
            url = temp ? temp[0] : location.href;
            location.href = url + '#q=' + query;
            document.getElementById("searchTitle").innerHTML = "search results for <em>" + query + "</em>"
        });

        searchControl.draw(null, drawOptions);

        // execute a search upon page load, from url hash query
        if (location.href.indexOf("#q=") != -1) {
          url = location.href.split("#q=");
          searchControl.execute(decodeURI(url[1]));
        }
      }

      google.setOnLoadCallback(OnLoad, true);
</script>

  <div id="mainBodyFixed" style="width:auto; margin:20px">
          <h2 id="searchTitle">search results</h2>
          <img src="{@docRoot}assets/images/hr_gray_main.jpg" />
          <div><br /></div>
          <div id="leftSearchControl" class="search-control">Loading...</div>
  </div>