~ubuntu-branches/ubuntu/saucy/jenkins/saucy

« back to all changes in this revision

Viewing changes to ui-samples-plugin/src/main/resources/jenkins/plugins/ui_samples/ProgressivelyRendered/index.jelly

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-01-10 09:50:50 UTC
  • mfrom: (5.1.10 experimental)
  • Revision ID: package-import@ubuntu.com-20130110095050-kj8xuw20gcfh62k3
Tags: 1.480.2+dfsg-1~exp1
* New upstream release (Closes: #696816, #697617):
  - d/control: Added new BD on libjbcrypt-java.
  - d/control: Versioned BD jenkins-winstone >= 0.9.10-jenkins-40.
  - d/control: Versioned BD jenkins-trilead-ssh2 >= 214-jenkins-1.
  - Fixes the following security vulnerabilities:
    CVE-2012-6072, CVE-2012-6073, CVE-2012-6072, CVE-2013-0158.
* Tidied lintian warnings.
* Bumped Standards-Version: 3.9.4, no changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
The MIT License
 
3
 
 
4
Copyright 2012 Jesse Glick.
 
5
 
 
6
Permission is hereby granted, free of charge, to any person obtaining a copy
 
7
of this software and associated documentation files (the "Software"), to deal
 
8
in the Software without restriction, including without limitation the rights
 
9
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
10
copies of the Software, and to permit persons to whom the Software is
 
11
furnished to do so, subject to the following conditions:
 
12
 
 
13
The above copyright notice and this permission notice shall be included in
 
14
all copies or substantial portions of the Software.
 
15
 
 
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
19
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
21
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
22
THE SOFTWARE.
 
23
-->
 
24
<?jelly escape-by-default='true'?>
 
25
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form" xmlns:s="/lib/samples">
 
26
  <s:sample title="Progressively Rendered">
 
27
    <p>
 
28
      Shows how to do something slow on the server while displaying progress.
 
29
    </p>
 
30
    <j:set var="number" value="${request.getParameter('number')}"/>
 
31
    <form method="POST" action=".">
 
32
        Enter a big number: <input name="number" type="text" value="${number}"/> <input name="Find Factors" type="submit"/>
 
33
    </form>
 
34
    <j:if test="${number != null}">
 
35
        <script>
 
36
            function display(r) {
 
37
                for (var i = 0; r.newfactors.length > i; i++) {
 
38
                    var li = document.createElement("li");
 
39
                    li.appendChild(document.createTextNode(r.newfactors[i]));
 
40
                    $(factors).appendChild(li);
 
41
                }
 
42
            }
 
43
        </script>
 
44
        <p>Factors of ${number}:</p>
 
45
        <l:progressiveRendering handler="${it.factor(number)}" callback="display" tooltip="Factoring…"/>
 
46
        <ul id="factors"/>
 
47
    </j:if>
 
48
 
 
49
  </s:sample>
 
50
</j:jelly>