... |
... |
@@ -1,41 +1,39 @@ |
1 |
1 |
{{velocity}} |
2 |
|
-#set($request = $request) |
3 |
|
-#if($request.getParameter("submitIncident")) |
4 |
|
- #set($headline = $request.getParameter("headline")) |
5 |
|
- #set($url = $request.getParameter("url")) |
6 |
|
- #set($desc = $request.getParameter("description")) |
|
2 |
+## Just display formatted text, don't try to modify the page |
|
3 |
+#set($headline = "$!wikimacro.parameters.headline") |
|
4 |
+#set($url = "$!wikimacro.parameters.url") |
|
5 |
+#set($description = "$!wikimacro.parameters.description") |
|
6 |
+#set($image = "$!wikimacro.parameters.image") |
7 |
7 |
|
8 |
|
-#set($block = ''' |
9 |
|
-(% style="margin-bottom:20px; width:100%" %) |
10 |
|
-|[[image:PLACEHOLDER.jpg||alt="image" data-xwiki-image-style="thumbnail-clickable" style="border:1px solid #cccccc" width="200"]]| |
|
8 |
+## Display a nice preview with clean styling |
|
9 |
+<div style="border:1px solid #ddd; border-radius:5px; margin:10px 0; padding:15px; background-color:#f9f9f9;"> |
|
10 |
+ <h3 style="margin-top:0; color:#333;">Incident Preview</h3> |
|
11 |
+ <div style="display:flex; margin-bottom:15px;"> |
|
12 |
+ <div style="width:200px; margin-right:15px;"> |
|
13 |
+ #if($image && $image != "") |
|
14 |
+ <img src="$xwiki.getAttachmentURL($image)" width="200" style="border:1px solid #ccc;"/> |
|
15 |
+ #else |
|
16 |
+ <div style="width:200px; height:150px; background:#eee; display:flex; align-items:center; justify-content:center; border:1px solid #ccc;"> |
|
17 |
+ No image |
|
18 |
+ </div> |
|
19 |
+ #end |
|
20 |
+ </div> |
|
21 |
+ <div> |
|
22 |
+ <h3 style="margin-top:0;"><a href="$url">$headline</a></h3> |
|
23 |
+ <p>$description</p> |
|
24 |
+ <p><a href="$url">Read More</a></p> |
|
25 |
+ </div> |
|
26 |
+ </div> |
11 |
11 |
|
12 |
|
-=== [[${headline}>>${url}]] === |
|
28 |
+ <div style="margin-top:20px; background-color:#f0f0f0; padding:15px; border:1px solid #ddd; border-radius:4px;"> |
|
29 |
+ <h4 style="margin-top:0;">Wiki Syntax (Copy this to your page)</h4> |
|
30 |
+ <textarea style="width:100%; height:150px; font-family:monospace; padding:10px;">(% style="margin-bottom:20px; width:100%" %) |
|
31 |
+|#if($image && $image != "")[[image:$image||data-xwiki-image-style="thumbnail-clickable" style="border:1px solid #ccc" width="200"]]#{else}No image provided.#{end}| |
13 |
13 |
|
14 |
|
-${desc} |
15 |
|
-[[Read More>>${url}]] |
16 |
|
-''') |
|
33 |
+=== [[$headline>>$url]] === |
17 |
17 |
|
18 |
|
- |
19 |
|
- #set($doc = $xwiki.getDocument($doc.fullName)) |
20 |
|
- #set($content = $doc.getContent()) |
21 |
|
- $doc.setContent("${content}\n\n${block}") |
22 |
|
- $doc.save() |
23 |
|
- |
24 |
|
- <div class=\"xwiki-messages xwiki-successmessage\">Incident added to page.</div> |
25 |
|
-#end |
26 |
|
- |
27 |
|
-<form method="post"> |
28 |
|
- <h3>Add Incident</h3> |
29 |
|
- <label>Headline:</label><br/> |
30 |
|
- <input type="text" name="headline" style="width:100%" /><br/><br/> |
31 |
|
- |
32 |
|
- <label>URL:</label><br/> |
33 |
|
- <input type="text" name="url" style="width:100%" /><br/><br/> |
34 |
|
- |
35 |
|
- <label>Description:</label><br/> |
36 |
|
- <textarea name="description" rows="4" style="width:100%"></textarea><br/><br/> |
37 |
|
- |
38 |
|
- <input type="submit" name="submitIncident" value="Submit Incident" /> |
39 |
|
-</form> |
|
35 |
+$description |
|
36 |
+[[Read More>>$url]]</textarea> |
|
37 |
+ </div> |
|
38 |
+</div> |
40 |
40 |
{{/velocity}} |
41 |
|
- |