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

« back to all changes in this revision

Viewing changes to core/src/main/resources/lib/layout/stopButton.jelly

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-02-17 17:11:13 UTC
  • mfrom: (5.1.11 experimental)
  • Revision ID: package-import@ubuntu.com-20130217171113-eooiq8e14nie0h3v
Tags: 1.480.3+dfsg-1~exp1
* New upstream release (Closes: #700761, #679616):
  - d/control: Versioned BD jenkins-remoting >= 2.22.
  - d/control: Versioned BD jenkins-winstone >= 0.9.10-jenkins-42.
  - d/control: Versioned BD stapler >= 1.198.
  - d/maven.ignoreRules: Ignore new slave-launcher modules until
    packaged.
  - Refreshed patches.
  - Fixes the following security vulnerabilities:
    CVE-2013-0327, CVE-2013-0328, CVE-2013-0329, CVE-2013-0330,
    CVE-2013-0331
* d/control: Versioned BD trilead-putty-extension (>= 1.2)
  (Closes: #698834).
* d/control: Add net-tools and procps dependencies to jenkins
  (Closes: #698835).
* d/rules,control, *.upstart.in: Rejig upstart/init configurations now
  that debhelper does the right thing across Debian/Ubuntu.
* d/rules,plugin_parent.pom.in: Drop as good plugin parent pom now
  provided upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
The MIT License
 
4
 
 
5
Copyright 2013 Jesse Glick.
 
6
 
 
7
Permission is hereby granted, free of charge, to any person obtaining a copy
 
8
of this software and associated documentation files (the "Software"), to deal
 
9
in the Software without restriction, including without limitation the rights
 
10
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
11
copies of the Software, and to permit persons to whom the Software is
 
12
furnished to do so, subject to the following conditions:
 
13
 
 
14
The above copyright notice and this permission notice shall be included in
 
15
all copies or substantial portions of the Software.
 
16
 
 
17
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
18
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
19
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
20
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
21
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
22
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
23
THE SOFTWARE.
 
24
-->
 
25
 
 
26
<?jelly escape-by-default='true'?>
 
27
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:i="jelly:fmt">
 
28
    <st:documentation>
 
29
        Creates a clickable “Stop” button.
 
30
        <st:attribute name="href" use="required">
 
31
            Link target. Relative to the current page.
 
32
        </st:attribute>
 
33
        <st:attribute name="alt" use="required">
 
34
            Alt text for image.
 
35
        </st:attribute>
 
36
    </st:documentation>
 
37
    <a href="${href}" onclick="new Ajax.Request(this.href); return false">
 
38
        <img src="${imagesURL}/16x16/stop.png" alt="${alt}" height="16" width="16"/>
 
39
    </a>
 
40
</j:jelly>