Skip to content

Commit

Permalink
[FIXED JENKINS-20403] view selected file failed
Browse files Browse the repository at this point in the history
  • Loading branch information
imod committed Nov 4, 2013
1 parent b926025 commit f8db77d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
Expand Up @@ -31,7 +31,6 @@ THE SOFTWARE.

<f:form method="" action="">
<f:section title="${%Script details}" name="config">
${instance} - ${config}
<j:choose>
<j:when test="${config.class.name == 'org.jenkinsci.lib.configprovider.model.Config'}">
<st:include page="show-config.jelly" from="${instance}" />
Expand Down
Expand Up @@ -26,7 +26,6 @@ THE SOFTWARE.

<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">

<style type="text/css">
div.credentialssection {
border-bottom: 1px solid black;
Expand Down
Expand Up @@ -9,7 +9,15 @@


<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">
<style type="text/css">
div.credentialssection {
border-bottom: 1px solid black;
}
</style>

<j:set var="descriptor" value="${config.descriptor}"/>
<j:set var="instance" value="${config}"/>

<f:entry title="${%Name}">
<f:textbox readonly="readonly" name="config.name" value="${config.name}" />
</f:entry>
Expand Down
Expand Up @@ -26,7 +26,6 @@ THE SOFTWARE.

<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" >

<style type="text/css">
div.credentialssection {
border-bottom: 1px solid black;
Expand Down
Expand Up @@ -9,7 +9,15 @@


<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">
<style type="text/css">
div.credentialssection {
border-bottom: 1px solid black;
}
</style>

<j:set var="descriptor" value="${config.descriptor}"/>
<j:set var="instance" value="${config}"/>

<f:entry title="${%Name}">
<f:textbox readonly="readonly" name="config.name" value="${config.name}" />
</f:entry>
Expand Down

0 comments on commit f8db77d

Please sign in to comment.