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

Side by Side Diff: android_webview/tools/licenses_notice.tmpl

Issue 786323004: [Android WebView] Generate the OSS licenses notice using jinja2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | android_webview/tools/webview_licenses.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <!-- Generated content. Do not edit. -->
3 {% autoescape true %}
4 <html>
5 <head>
6 <meta charset="utf-8">
7 <title>Credits</title>
8 <style type="text/css">
9 .projects-list { margin-left: 1em; }
10 .license-block { border-top: 20px solid white; }
11 .project-url { font-family: monospace; }
12 .license { background-color: #eeeeee; padding: 10px; }
13 </style>
14 </head>
15 <body>
16 <ul>
17 {% for entry in entries %}
18 <li class="projects-list"><a href="#{{ entry.toc_href }}">{{ entry.name }}</a> </li>
19 {% endfor %}
20 </ul>
21 <div>
22 {% for entry in entries %}
23 <div class="license-block">
24 <a name="{{ entry.toc_href }}"></a>
25 <div><b>Library:</b> {{ entry.name }}</div>
26 <div><b>Homepage:</b> <span class="project-url">{{ entry.url }}</span></div>
27 <div><b>Notice:</b></div>
28 <pre class="license">{{ entry.license }}</pre>
29 </div>
30 {% endfor %}
31 </div>
32 </body>
33 </html>
34 {% endautoescape %}
OLDNEW
« no previous file with comments | « no previous file | android_webview/tools/webview_licenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698