
This creates a new destination directory based on the Cr-Commit-Position of the top local commit, and updates the index.html file to cover all found commit positions. Run with "-h" to see command line options. Bug: 923149 Change-Id: I6bbef88f6472ae78ee67f153d62acd0874ed1297 Reviewed-on: https://chromium-review.googlesource.com/c/1459928 Commit-Queue: Klaus Weidner <klausw@chromium.org> Reviewed-by: Brian Sheedy <bsheedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#630468}
17 lines
307 B
HTML
17 lines
307 B
HTML
<!doctype html>
|
|
<html>
|
|
<body>
|
|
<h1>Test revisions</h1>
|
|
<ul>
|
|
{% for item in items %}
|
|
<li>
|
|
{{ item.text }}
|
|
{% for link in item.links %}
|
|
<a href="{{ link.href }}">{{ link.anchor }}</a>
|
|
{% endfor %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|