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 authored and aldaris committed Feb 22, 2015
1 parent 053c2c6 commit b5a870d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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,18 +1,18 @@
<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="${%Use v2 API}" help="${rootURL}/plugin/hipchat/help-globalConfig-hipChatServer.html">
<f:entry title="${%Use v2 API}" help="/plugin/hipchat/help-globalConfig-hipChatServer.html">
<f:checkbox name="hipchat.v2Enabled" checked="${descriptor.v2Enabled}"/>
</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 b5a870d

Please sign in to comment.