[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-30 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum closed an issue as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 ver 2.45 released  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-35669  
 
 
  email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
Change By: 
 David van Laatum  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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 

[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-30 Thread scm_issue_l...@java.net (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 SCM/JIRA link daemon commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Code changed in jenkins User: David van Laatum Path: src/main/resources/hudson/plugins/emailext/templates/html.jelly http://jenkins-ci.org/commit/email-ext-plugin/ad60d8e4cc1f1f608591cfbaea541ffe12e22fbc Log: JENKINS-35669   being double escaped in changesets table of jelly html email template  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-30 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Thanks Pierre-Gildas MILLON! That actually looks good Ill apply and release that  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-28 Thread pg.mil...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Pierre-Gildas MILLON commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 A temporary workaround is to copy html.jelly in $JENKINS_HOMEemail-templates and apply the following patch : 

 
diff --git a/src/main/resources/hudson/plugins/emailext/templates/html.jelly b/src/main/resources/hudson/plugins/emailext/templates/html.jelly
index 4683313..4065668 100644
--- a/src/main/resources/hudson/plugins/emailext/templates/html.jelly
+++ b/src/main/resources/hudson/plugins/emailext/templates/html.jelly
@@ -1,4 +1,7 @@
 
+
+]>
 
 
 
@@ -18,7 +21,6 @@ TD.test_failed { color:red; }
 TD.console { font-family:Courier New; }
 
 
-
 
 
 
@@ -56,14 +58,14 @@ TD.console { font-family:Courier New; }
   
   
   
-${spc}Revision ${cs.commitId?:cs.revision?:cs.changeNumber} by
+Revision ${cs.commitId?:cs.revision?:cs.changeNumber} by
   ${aUser!=null?aUser.displayName:cs.author.displayName}: 
   (${cs.msgAnnotated})
  
   
   
 
-  ${spc}${p.editType.name}
+  ${p.editType.name}
   ${p.path}
 
   
 

  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this 

[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-27 Thread patrick.perm...@dmc.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Patrick Julian commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Thanks!  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-26 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 It looks like its double escaping the entitys. Am thinking of implementing templates in pipeline jobs this weekend so Ill probably attempt to figure this out again as part of that  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-26 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 My last comment was saying I am seeing it to   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-26 Thread patrick.perm...@dmc.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Patrick Julian edited a comment on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Anything I can provide here additionally, in order to help? (I didn't really get what you meant by your last comment)  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-07-26 Thread patrick.perm...@dmc.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Patrick Julian commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Anything I can provide here additionally, in order to help?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-06-14 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Now that I think about it the work jenkins is doing it too  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-06-14 Thread patrick.perm...@dmc.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Patrick Julian commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Not sure, as I am completely new here. In the changelogs I saw JENKINS-25719 which looks similar. That one also has some duplicate issues assigned. Hope that helps...  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-06-14 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Only just taken over as maintainer is all   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.


[JIRA] (JENKINS-35669) email-ext-plugin shows HTML entities as plaintext in HTML email output

2016-06-13 Thread da...@vanlaatum.id.au (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David van Laatum commented on  JENKINS-35669  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: email-ext-plugin shows HTML entities as plaintext in HTML email output   
 

  
 
 
 
 

 
 Will try to take a look when I get home from work do you have a previous jira?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
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.