Upstream version 8.36.161.0
[platform/framework/web/crosswalk.git] / src / third_party / chromite / licensing / about_credits.tmpl
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5 <title>Credits</title>
6 <style>
7 body {
8   font-family:Helvetica,Arial,sans-serif;
9   background-color:white;
10   font-size:84%;
11   max-width:1020px;
12 }
13 .page-title {
14   font-size:164%;
15   font-weight:bold;
16 }
17 .product {
18   background-color:#c3d9ff;
19   overflow:auto;
20   padding:2px;
21   margin-top:16px;
22   border-radius:5px;
23 }
24 .product .title {
25   font-size:110%;
26   font-weight:bold;
27   float:left;
28   margin:3px;
29 }
30 .product .homepage {
31   text-align:right;
32   float:right;
33   margin:3px;
34 }
35 .product .homepage:after {
36   content:" - ";
37 }
38 .product .show {
39   text-align:right;
40   float:right;
41   margin:3px;
42 }
43 .licence {
44   clear:both;
45   background-color:#e8eef7;
46   padding:16px;
47   border-radius:3px;
48   display:none;
49 }
50 .licence pre {
51   white-space: pre-wrap
52 }
53 .licence h3 {
54   margin-top:0px;
55 }
56 .license-packages {
57   font-size:80%;
58 }
59 </style>
60 <script>
61 //<![CDATA[
62 function toggle(o) {
63   var licence = o.nextSibling;
64
65   while (licence.className != 'licence') {
66     if (!licence) return false;
67     licence = licence.nextSibling;
68   }
69   return toggleblock(licence, o);
70 }
71
72 function toggleblock(licence, o) {
73   if (licence.style && licence.style.display == 'block') {
74     licence.style.display = 'none';
75     o.innerHTML = 'show license text';
76   } else {
77     licence.style.display = 'block';
78     o.innerHTML = 'hide license text';
79   }
80   return false;
81 }
82
83 function toggleall() {
84   var a = window.document.getElementsByClassName('licence');
85   for (var i = 0; i < a.length; i++) {
86     toggleblock(a[i], a[i].previousSibling.previousSibling.previousSibling.previousSibling);
87   }
88   return false;
89 }
90 //]]>
91 </script>
92 </head>
93 <body>
94 <span class="page-title" style="float:left;">Credits</span>
95 <span style="float:right">
96 <a href="javascript:toggleall()">Toggle All</a>
97 <a href="javascript:window.print();">Print</a>
98 </span>
99 <div style="clear:both; overflow:auto;">
100 <h2>List of Packages used in Google Chrome OS:</h2>
101 <!-- Chromium <3s the following projects -->
102 {{entries}}
103 </div>
104
105 <h2>List of Shared Licenses used in Google Chrome OS:</h2>
106 {{licenses}}
107
108 <!-- Note that some packages included above are used during build, but not
109 shipped with ChromeOS proper /merlin -->
110 </body>
111 </html>