0 Votes

Changes for page SubmitIncidentMacro

Last modified by Ryan C on 2025/06/08 05:22

From version 3.36
edited by Ryan C
on 2025/06/08 05:18
Change comment: There is no comment for this version
To version 3.14
edited by Ryan C
on 2025/06/08 04:37
Change comment: There is no comment for this version

Summary

Details

XWiki.WikiMacroClass[0]
Macro code
... ... @@ -1,18 +1,27 @@
1 1  {{velocity}}
2 2  #set($headline = "$!wikimacro.parameters.headline")
3 -#set($desc = "$!wikimacro.parameters.description")
4 4  #set($url = "$!wikimacro.parameters.url")
5 -#set($image = "$!wikimacro.parameters.image")
4 +#set($description = "$!wikimacro.parameters.description")
5 +#set($imageParam = "$!wikimacro.parameters.image")
6 6  
7 -## Enforce https:// if user forgot it
8 -#if(!$url.startsWith("http"))
9 - #set($url = "https://$url")
7 +## Build incident block with careful escaping
8 +#set($block = '(% style="margin-bottom:20px; width:100%" %)')
9 +#set($block = "$block\n")
10 +
11 +#if($imageParam && $imageParam != "")
12 + #set($block = "$block|[[image:$imageParam||data-xwiki-image-style=\"thumbnail-clickable\" style=\"border:1px solid #ccc\" width=\"200\"]]| \n")
13 +#else
14 + #set($block = "$block|No image provided.| \n")
10 10  #end
11 11  
12 -(% style="margin-bottom:20px; width:100%" %)
13 -|[[image:$image||data-xwiki-image-style="thumbnail-clickable" width="200" style="border:1px solid #ccc;"]]|
14 -=== $headline ===
15 -**$desc**\\
16 -[[Read More>>url:$url||target="_blank"]]
17 -{{/velocity}}
17 +#set($block = "$block\n=== [[$headline>>$url]] ===\n\n")
18 +#set($block = "$block$description\n\n[[Read More>>$url]]")
18 18  
20 +## Append to current document
21 +#set($doc = $xwiki.getDocument($doc.fullName))
22 +#set($content = $doc.getContent())
23 +$doc.setContent("$content\n\n$block")
24 +$doc.save()
25 +
26 +<div class="alert alert-success">Incident added successfully to the page.</div>
27 +{{/velocity}}