Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-10066] JellyTagException after Jenkins upgrade with no
restart
  • Loading branch information
kohsuke committed Jun 29, 2011
1 parent c563b0c commit d741fd9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -70,6 +70,9 @@
<li class=bug>
Fixed the double escaping problem in the update center error message
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10081">issue 10081</a>)
<li class=bug>
Fixed JellyTagException in the manage page after Jenkins upgrade
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-10066">issue 10066</a>)
<li class=rfe>
Groovy script console is now syntax highlighted.
<li class=rfe>
Expand Down
Expand Up @@ -29,7 +29,7 @@ THE SOFTWARE.
<j:set var="upJob" value="${app.updateCenter.hudsonJob}" />
<j:choose>
<j:when test="${upJob.status.success}">
${%UpgradeComplete(ucData.core.version)}
${%UpgradeComplete(ucData.core.version,rootURL)}
</j:when>
<j:when test="${upJob!=null}">
${%UpgradeProgress(ucData.core.version,rootURL+'/updateCenter/')}
Expand Down
Expand Up @@ -22,5 +22,5 @@

NewVersionAvailable=New version of Jenkins ({0}) is available for <a href="{1}">download</a> \
(<a href="http://jenkins-ci.org/changelog.html">changelog</a>).
UpgradeComplete=Upgrade to Jenkins {0} is complete, awaiting <a href="${rootURL}/safeRestart">restart</a>.
UpgradeComplete=Upgrade to Jenkins {0} is complete, awaiting <a href="{1}/safeRestart">restart</a>.
UpgradeProgress=Upgrade to Jenkins {0} is <a href="{1}">in progress or failed</a>.
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

UpgradeComplete=Aktualisierung auf Jenkins {0} abgeschlossen. <a href="${rootURL}/safeRestart">Neustart von Jenkins</a> erforderlich.
UpgradeComplete=Aktualisierung auf Jenkins {0} abgeschlossen. <a href="{1}/safeRestart">Neustart von Jenkins</a> erforderlich.
UpgradeProgress=Aktualisierung auf Jenkins {0} <a href="{1}">in Arbeit oder fehlgeschlagen</a>.
NewVersionAvailable=\
Eine neue Version von Jenkins ({0}) kann <a href="{1}">heruntergeladen</a> werden \
Expand Down

0 comments on commit d741fd9

Please sign in to comment.