Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: chrome/common/extensions/docs/server2/templates/private/footer.html

Issue 10826173: Extensions Docs Server: Proper path handling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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> 12 <script>
13 window.bootstrap = { 13 window.bootstrap = {
14 {{?is_apps}} 14 {{?is_apps}}
15 api_names: {{*api_list.apps.chrome}}.concat( 15 api_names: {{*api_list.apps.chrome}}.concat(
16 {{*api_list.apps.experimental}}), 16 {{*api_list.apps.experimental}}),
17 branchInfo: {{*branchInfo}}
18 {{:is_apps}} 17 {{:is_apps}}
19 api_names: {{*api_list.extensions.chrome}}.concat( 18 api_names: {{*api_list.extensions.chrome}}.concat(
20 {{*api_list.extensions.experimental}}), 19 {{*api_list.extensions.experimental}}),
20 {{/is_apps}}
21 branchInfo: {{*branchInfo}} 21 branchInfo: {{*branchInfo}}
22 {{/is_apps}}
23 }; 22 };
24 </script> 23 </script>
25 <script src="{{static}}/js/branch.js" type="text/javascript"></script> 24 <script src="{{static}}/js/branch.js" type="text/javascript"></script>
26 <script src="{{static}}/js/sidebar.js" type="text/javascript"></script> 25 <script src="{{static}}/js/sidebar.js" type="text/javascript"></script>
27 <script src="{{static}}/js/prettify.js" type="text/javascript"></script> 26 <script src="{{static}}/js/prettify.js" type="text/javascript"></script>
28 <script src="{{static}}/js/filter.js" type="text/javascript"></script> 27 <script src="{{static}}/js/filter.js" type="text/javascript"></script>
29 <script> 28 <script>
30 (function() { 29 (function() {
31 // Auto syntax highlight all pre tags. 30 // Auto syntax highlight all pre tags.
32 var preElements = document.getElementsByTagName('pre'); 31 var preElements = document.getElementsByTagName('pre');
(...skipping 28 matching lines...) Expand all
61 var customSearchControl = new google.search.CustomSearchControl( 60 var customSearchControl = new google.search.CustomSearchControl(
62 '007539736102453916271:q8_wzmg0804', customSearchOptions); 61 '007539736102453916271:q8_wzmg0804', customSearchOptions);
63 customSearchControl.setResultSetSize( 62 customSearchControl.setResultSetSize(
64 google.search.Search.FILTERED_CSE_RESULTSET); 63 google.search.Search.FILTERED_CSE_RESULTSET);
65 customSearchControl.draw('cse'); 64 customSearchControl.draw('cse');
66 }, true); 65 }, true);
67 </script> 66 </script>
68 <script type="text/javascript">google.load("elements", "1", {packages: "tran sliteration"});</script> 67 <script type="text/javascript">google.load("elements", "1", {packages: "tran sliteration"});</script>
69 </div> 68 </div>
70 </div> 69 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698