Skip to content

Commit

Permalink
Fix path to help files
Browse files Browse the repository at this point in the history
  • Loading branch information
retoo committed Feb 21, 2015
1 parent f481949 commit df21c68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<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">

<f:section title="${%HipChat Notifications}">
<f:entry title="${%Project Room}">
<f:entry title="${%Project Room}" help="/plugin/hipchat/help-projectConfig-hipChatRoom.html">
<f:textbox name="hipchat.room" value="${instance.room}" />
</f:entry>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,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">
<f:section title="${%Global HipChat Notifier Settings}">
<f:entry title="${%HipChat Server}" help="${rootURL}/plugin/hipchat/help-globalConfig-hipChatServer.html">
<f:entry title="${%HipChat Server}" help="/plugin/hipchat/help-globalConfig-hipChatServer.html">
<f:textbox name="hipchat.server" default="api.hipchat.com" value="${descriptor.server}" />
</f:entry>
<f:entry title="${%API Token}" help="${rootURL}/plugin/hipchat/help-globalConfig-hipChatToken.html">
<f:entry title="${%API Token}" help="/plugin/hipchat/help-globalConfig-hipChatToken.html">
<f:textbox name="hipchat.token" value="${descriptor.token}" />
</f:entry>
<f:entry title="${%Room}" help="${rootURL}/plugin/hipchat/help-globalConfig-hipChatRoom.html">
<f:entry title="${%Room}" help="/plugin/hipchat/help-globalConfig-hipChatRoom.html">
<f:textbox name="hipchat.room" value="${descriptor.room}" />
</f:entry>
<f:entry title="${%Send As}" help="${rootURL}/plugin/hipchat/help-globalConfig-hipChatSendAs.html">
<f:entry title="${%Send As}" help="/plugin/hipchat/help-globalConfig-hipChatSendAs.html">
<f:textbox name="hipchat.sendAs" default="Jenkins" value="${descriptor.sendAs}" />
</f:entry>
<f:validateButton method="sendTestNotification" title="${%Test configuration}" progress="${%Testing...}"
Expand Down

0 comments on commit df21c68

Please sign in to comment.