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

« back to all changes in this revision

Viewing changes to ivle/webapp/submit/submit-late.html

  • Committer: David Coles
  • Date: 2010-07-28 10:52:48 UTC
  • mfrom: (1791.2.10 mediahandlers)
  • Revision ID: coles.david@gmail.com-20100728105248-zvbn9g72v1nsskvd
A series of HTML5 based media handlers using the <audio> and <video> tags.  
This replaces the previous page that just showed a download link (which is 
already available on the menu).

Also solves issue where media files were downloaded by the client twice (once 
in an AJAX request intended only for text).

Known issues:
    * Bug #588285: External BHO will not be able to play media due to not
      having IVLE cookie.
    * Bug #610745: Does not correctly preview revisions
    * Bug #610780: Ogg media does not work in Chromium

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html xmlns="http://www.w3.org/1999/xhtml"
 
2
      xmlns:py="http://genshi.edgewall.org/">
 
3
  <head>
 
4
    <title>Submit project - late</title>
 
5
  </head>
 
6
  <body>
 
7
    <h1>Submit project - late</h1>
 
8
    <div id="ivle_padding">
 
9
      <form action="" method="post">
 
10
        <input type="hidden" name="project" value="${project.id}" />
 
11
        <input type="hidden" name="late" value="yes" />
 
12
        <p class="late_submission"><strong>This submission has not yet been
 
13
        completed.</strong></p>
 
14
        <p>You are about to submit ${project.name} for ${offering.subject.name}.</p>
 
15
        <p>The project deadline has already passed. If you choose to continue,
 
16
        <span class="late_submission"><strong>your submission will be
 
17
        considered late</strong></span>. This may incur a late penalty, at the
 
18
        discretion of the subject coordinator, even if you have already
 
19
        submitted on time.</p>
 
20
        <p>You may resubmit this project again at any time, but a new submission
 
21
        will overwrite any made earlier, and further submissions may incur an
 
22
        increased penalty.</p>
 
23
        <input type="submit" value="Submit Late" />
 
24
      </form>
 
25
    </div>
 
26
  </body>
 
27
</html>