![]() |
|
|
Change By:
|
christophe dehaudt
(04/Apr/14 7:14 AM)
|
Description:
|
I would like to use ${FILE:mypath/xxx.html} to create the same rich content for all my jobs. Using this will allow me to have a unique place when i can change the content and will be apply to all the job
The problem is that i want also to have variable interpolation
Like JENKINS-21333, i believe the problem can be solved at the same place
RichTextPublisher.java (line 165)
Matcher matcher = FILE_VAR_PATTERN.matcher(text); int start = 0; while (matcher.find(start)) { String fileName = matcher.group(2); <- HERE for 213333
fileName
= replaceVars(matcher.group(2), vars);
FilePath filePath = new FilePath(build.getWorkspace(), fileName); if (filePath.exists()) { String value = filePath.readToString(); if (matcher.group(1).length() != 4) { // Group is file_sl value = value.replace("\n", "").replace("\r", ""); } vars.put(String.format("%s:%s", matcher.group(1), fileName), value);
<-- HERE instead of value => replaceVars(value, vars)
} start = matcher.end(); }
can we do something like
Is it possible to have those 2 bugs fixed?
Thanks in advance
Xtof
|
|
|
|
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
|
--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit
https://groups.google.com/d/optout.