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

Side by Side Diff: appengine/isolate/templates/browse.html

Issue 2693953006: Isolate: Download files as their filename instead of hash (Closed)
Patch Set: Created 3 years, 10 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
OLDNEW
1 {% set title = 'Isolate Server' %} 1 {% set title = 'Isolate Server' %}
2 {% extends "isolate/base.html" %} 2 {% extends "isolate/base.html" %}
3 3
4 4
5 {% block headers %} 5 {% block headers %}
6 <style> 6 <style>
7 html, body { 7 html, body {
8 height: 95%; 8 height: 95%;
9 margin: 0; 9 margin: 0;
10 width: 100%; 10 width: 100%;
(...skipping 26 matching lines...) Expand all
37 Enter the namespace and digest of an object:<br> 37 Enter the namespace and digest of an object:<br>
38 <form id="form1" method="GET"> 38 <form id="form1" method="GET">
39 <input id="namespace" name="namespace" value="{{namespace}}" /><br> 39 <input id="namespace" name="namespace" value="{{namespace}}" /><br>
40 <input id="digest" name="digest" maxlength=40 size=40 value="{{digest}}" /> 40 <input id="digest" name="digest" maxlength=40 size=40 value="{{digest}}" />
41 <br> 41 <br>
42 <input type=submit value="Load item"/><br> 42 <input type=submit value="Load item"/><br>
43 </form> 43 </form>
44 <hr> 44 <hr>
45 45
46 <div id="iframe-entry"></div> 46 <div id="iframe-entry"></div>
47 <iframe id="content" class="use_all_space" sandbox="allow-same-origin allow-popu ps" src="/content?namespace={{namespace}}&digest={{digest}}"> 47 <iframe id="content" class="use_all_space" sandbox="allow-same-origin allow-popu ps"
48 src="/content?namespace={{namespace}}&digest={{digest}}{% if as is defin ed %}&as={{as}}{% endif %}">
48 </iframe> 49 </iframe>
49 {% endblock %} 50 {% endblock %}
OLDNEW
« appengine/isolate/handlers_frontend.py ('K') | « appengine/isolate/handlers_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698