Home | History | Annotate | Download | only in rss

Lines Matching defs:buildURL

54  *   buildURL   - URL of the build being added to the feed - eg., http://servername/path/to/project/branch/buildID/
129 private String buildURL;
190 public void setBuildURL(String buildURL) {
191 if (isNullString(buildURL))
194 { this.buildURL = buildURL; }
349 // <link href=\"" + buildURL + "\"/>
351 elem.setAttribute("href", !isNullString(buildURL) ? buildURL : projectVersionString); //$NON-NLS-1$
354 // <id>" + buildURL + "</id>
356 elem.setTextContent(!isNullString(buildURL) ? buildURL : projectVersionString);
374 if (!isNullString(buildURL)) {
375 build.setAttribute("href",buildURL); //$NON-NLS-1$
526 buildURL = varSub(buildURL);
568 * variable substitution in URLs - eg., replace %%branch%% and %%buildID%% in buildURL