OLD | NEW |
---|---|
1 <div id="gc-footer"> | 1 <div id="gc-footer"> |
2 <div class="text"> | 2 <div class="text"> |
3 <p> | 3 <p> |
4 Except as otherwise <a href="http://code.google.com/policies.html#restrict ions">noted</a>, | 4 Except as otherwise <a href="http://code.google.com/policies.html#restrict ions">noted</a>, |
5 the content of this page is licensed under the <a rel="license" href="http ://creativecommons.org/licenses/by/3.0/">Creative Commons | 5 the content of this page is licensed under the <a rel="license" href="http ://creativecommons.org/licenses/by/3.0/">Creative Commons |
6 Attribution 3.0 License</a>, and code samples are licensed under the | 6 Attribution 3.0 License</a>, and code samples are licensed under the |
7 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD License</a>. | 7 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD License</a>. |
8 </p> | 8 </p> |
9 <p> | 9 <p> |
10 ©2012 Google | 10 ©2012 Google |
11 </p> | 11 </p> |
12 <script src="{{static}}/js/branch.js" type="text/javascript"></script> | 12 <script src="{{static}}/js/branch.js" type="text/javascript"></script> |
13 <script src="{{static}}/js/sidebar.js" type="text/javascript"></script> | 13 <script src="{{static}}/js/sidebar.js" type="text/javascript"></script> |
14 <script src="{{static}}/js/prettify.js" type="text/javascript"></script> | 14 <script src="{{static}}/js/prettify.js" type="text/javascript"></script> |
15 <script src="{{static}}/js/filter.js" type="text/javascript"></script> | |
15 <script> | 16 <script> |
16 (function() { | 17 (function() { |
17 // Auto syntax highlight all pre tags. | 18 // Auto syntax highlight all pre tags. |
18 var preElements = document.getElementsByTagName('pre'); | 19 var preElements = document.getElementsByTagName('pre'); |
19 for (var i = 0; i < preElements.length; i++) | 20 for (var i = 0; i < preElements.length; i++) |
20 preElements[i].classList.add('prettyprint'); | 21 preElements[i].classList.add('prettyprint'); |
21 prettyPrint(); | 22 prettyPrint(); |
22 })(); | 23 })(); |
23 </script> | 24 </script> |
24 <script> | 25 <script> |
(...skipping 23 matching lines...) Expand all Loading... | |
48 google.setOnLoadCallback(function() { | 49 google.setOnLoadCallback(function() { |
49 var customSearchOptions = {}; | 50 var customSearchOptions = {}; |
50 var customSearchControl = new google.search.CustomSearchControl( | 51 var customSearchControl = new google.search.CustomSearchControl( |
51 '007539736102453916271:q8_wzmg0804', customSearchOptions); | 52 '007539736102453916271:q8_wzmg0804', customSearchOptions); |
52 customSearchControl.setResultSetSize( | 53 customSearchControl.setResultSetSize( |
53 google.search.Search.FILTERED_CSE_RESULTSET); | 54 google.search.Search.FILTERED_CSE_RESULTSET); |
54 customSearchControl.draw('cse'); | 55 customSearchControl.draw('cse'); |
55 }, true); | 56 }, true); |
56 </script> | 57 </script> |
57 <script type="text/javascript">google.load("elements", "1", {packages: "tran sliteration"});</script> | 58 <script type="text/javascript">google.load("elements", "1", {packages: "tran sliteration"});</script> |
58 <script>window.bootstrap = { branchInfo: {{*branchInfo}} };</script> | 59 <script> |
60 window.bootstrap = { | |
61 api_names: {{*api_list.chrome}}, | |
not at google - send to devlin
2012/07/30 10:14:25
what about experimental?
cduvall
2012/07/30 20:05:38
Done.
| |
62 branchInfo: {{*branchInfo}} | |
63 }; | |
64 </script> | |
59 </div> | 65 </div> |
60 </div> | 66 </div> |
OLD | NEW |