Changes for page OrderTemplate

Last modified by Manoeuvring with Difficulty on 2024/01/25 10:18

From version 1.1
edited by Manoeuvring with Difficulty
on 2023/12/03 06:13
Change comment: There is no comment for this version
To version 5.2
edited by Manoeuvring with Difficulty
on 2024/01/25 08:31
Change comment: Update property hidden

Summary

Details

Page properties
Tags
... ... @@ -1,0 +1,1 @@
1 +ordertemplate
Content
... ... @@ -1,17 +13,6 @@
1 -= Overview =
2 -
3 -
4 -= Configuration =
5 -
6 -
7 -= Applications =
8 -
9 -
10 -= Issues =
11 -
12 -
13 13  (% class="box floatinginfobox" %)
14 14  (((
3 +(% class="responsive-table" %)
15 15  |(% colspan="2" %)(((
16 16  == OrderName ==
17 17  )))
... ... @@ -18,11 +18,66 @@
18 18  |(% colspan="2" %)[[image:order_wait.png||data-xwiki-image-style-alignment="center" height="32" width="32"]]
19 19  |(% style="width:132px" %)Category|(% style="width:277px" %)Navigation/Combat/Trade/Miscellaneous
20 20  |(% style="width:132px" %)Instruction Method|(% style="width:277px" %)Order/Default Behaviour/Assignment
21 -|(% style="width:132px" %)Skill|(% style="width:277px" %)(((
10 +|(% style="width:132px" %)[[Skill>>doc:X4 Foundations Wiki.Manual and Guides.Objects in the Game Universe.Equipment.Crew.WebHome]]|(% style="width:277px" %)(((
22 22  ★☆☆☆☆
23 23  )))
24 24  |(% style="width:132px" %)Ship|(% style="width:277px" %)Any
25 25  |(% style="width:132px" %)Commander|(% style="width:277px" %)Any/Ship/Station
26 -|(% style="width:132px" %)Mimic|(% style="width:277px" %)Yes/No
27 -|(% style="width:132px" %)Repeat Order|(% style="width:277px" %)Yes/No
15 +|(% style="width:132px" %)[[Mimic>>doc:X4 Foundations Wiki.Manual and Guides.Objects in the Game Universe.Orders, Behaviours and Assignments.Mimic.WebHome]]|(% style="width:277px" %)Yes/No
16 +|(% style="width:132px" %)[[Repeat Order>>doc:X4 Foundations Wiki.Manual and Guides.Objects in the Game Universe.Orders, Behaviours and Assignments.Repeat Orders.WebHome]]|(% style="width:277px" %)Yes/No
28 28  )))
18 +
19 += Overview =
20 +
21 +
22 += Configuration =
23 +
24 +
25 += Skill Effects =
26 +
27 +
28 += Applications =
29 +
30 +
31 +== Example ==
32 +
33 +
34 += Caveats =
35 +
36 +
37 += Related =
38 +
39 +----
40 +
41 +(% style="text-align:center" %)
42 +**Combat**
43 +{{velocity}}#set ($references = $services.query.xwql("from doc.object(XWiki.TagClass) as tag where 'combat' member of tag.tags").execute())
44 +#foreach($reference in $references)
45 + #set ($document = $xwiki.getDocument($reference))
46 + #set ($label = $document.getTitle())
47 + [[$label>>$reference]] | ##
48 +#end{{/velocity}}
49 +
50 +----
51 +
52 +(% style="text-align:center" %)
53 +**Queued Orders**
54 +{{velocity}}#set ($references = $services.query.xwql("from doc.object(XWiki.TagClass) as tag where 'order' member of tag.tags").execute())
55 +#foreach($reference in $references)
56 + #set ($document = $xwiki.getDocument($reference))
57 + #set ($label = $document.getTitle())
58 + [[$label>>$reference]] | ##
59 +#end{{/velocity}}
60 +
61 +
62 +
63 +(% style="text-align:center" %)
64 +**Queued Orders**
65 +{{velocity}}#set ($tags = $services.query.xwql("select distinct obj.tags from Document doc").execute())
66 +$tags
67 +#set ($references = $services.query.xwql("from doc.object(XWiki.TagClass) as tag where 'order' member of tag.tags").execute())
68 +#foreach($reference in $references)
69 + #set ($document = $xwiki.getDocument($reference))
70 + #set ($label = $document.getTitle())
71 + [[$label>>$reference]] | ##
72 +#end{{/velocity}}