Home | History | Annotate | Download | only in rss

Lines Matching refs:branch

50  *   branch     - build's branch, eg., 2.2.0
54 * buildURL - URL of the build being added to the feed - eg., http://servername/path/to/project/branch/buildID/
94 * JUnitTestURL - URL of the build's JUnit test results - eg., http://servername/path/to/project/branch/buildID/testResults.php
95 * performanceTestURL - URL of the build's performance tests - eg., http://servername/path/to/project/branch/buildID/performance/performance.php
96 * APITestURL - URL of the build's API test results - eg., http://servername/path/to/project/branch/buildID/testResults.php
126 private String branch;
172 public void setBranch(String branch) {
173 if (isNullString(branch))
176 { this.branch = branch; }
337 (buildAlias.startsWith(branch) ?
339 buildAlias + " (" + branch + "." + buildID + ")") : // Foobar (2.2.0.S200605051234) //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
340 branch + SP + buildID); // 2.2.0.S200605051234 //$NON-NLS-1$
344 // <title>[announce] " + project + SP + branch + SP + buildID + " is available</title>
568 * variable substitution in URLs - eg., replace %%branch%% and %%buildID%% in buildURL
574 return urlstring.replaceAll(Messages.getString("RSSFeedAddEntryTask.BranchKeyword"), branch).replaceAll(Messages.getString("RSSFeedAddEntryTask.BuildIDKeyword"), buildID).replaceAll(Messages.getString("RSSFeedAddEntryTask.BuildAliasKeyword"), buildAlias); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$