~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/filesystem/browser/template.html

  • Committer: William Grant
  • Date: 2010-07-03 11:03:10 UTC
  • mto: This revision was merged to the branch mainline in revision 1797.
  • Revision ID: grantw@unimelb.edu.au-20100703110310-tz76n9kb367wua3r
Use req.unparsed_uri instead of req.uri -- req.uri doesn't contain the query string.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
</head>
7
7
<body>
8
8
  <div id="topbar">
9
 
    <h1 id="path">
10
 
      <py:for each="segment in paths">/<a href="${segment['href_path']}" title="Navigate to ${segment['nav_path']}">${segment['path']}</a></py:for><py:if test="isdir">/</py:if><py:if test="revno is not None"> (revision ${revno})</py:if>
11
 
    </h1>
12
9
    <div id="actions">
13
10
      <span id="actions1">
14
11
        <a id="act_open" class="disabled">Open</a> :
59
56
            enctype="multipart/form-data" method="post">
60
57
          <span style="display:none" id="uploadpanel">
61
58
            <label for="upload_file">Upload file:</label>
62
 
            <input type="hidden" value="putfile" name="action" />
 
59
            <input type="hidden" value="putfiles" name="action" />
63
60
            <input type="hidden" value="" name="path" />
64
61
            <input type="file" name="data" id="upload_file" />
65
62
            <input type="checkbox" checked="checked" value="true" name="unpack" id="unpack" />
66
 
            <label title="Extract files and directories from a ZIP file if one is uploaded" for="unpack">Unpack ZIP</label>
 
63
            <label title="Extract files and directories from a ZIP file if one is uploaded" for="unpack">Unzip</label>
67
64
            <input type="button" onclick="show_uploadpanel(false)" value="Cancel" />
68
65
            <input type="submit" value="Upload" />
69
66
          </span>