Changes for page Help

Last modified by Drunk Monkey on 2025-03-18 08:50

From version 3.1
edited by Drunk Monkey
on 2021-04-30 04:57
Change comment: Install extension [org.xwiki.platform:xwiki-platform-help-ui/13.3]
To version 5.1
edited by Drunk Monkey
on 2025-03-18 08:50
Change comment: Install extension [org.xwiki.platform:xwiki-platform-help-ui/17.1.0]

Summary

Details

Page properties
Hidden
... ... @@ -1,1 +1,1 @@
1 -true
1 +false
Content
... ... @@ -2,23 +2,13 @@
2 2  
3 3  {{velocity output="false"}}
4 4  #macro (display4Cards $cards)
5 - <div class="row">
5 + <ul class="card-list">
6 6   #foreach ($card in $cards)
7 - ## See http://getbootstrap.com/css/#grid-responsive-resets .
8 - #if ($foreach.index > 0 && $foreach.index % 2 == 0)
9 - <div class="clearfix visible-sm-block "></div>
10 - #end
11 - #if ($foreach.index > 0 && $foreach.index % 3 == 0)
12 - <div class="clearfix visible-md-block"></div>
13 - #end
14 - #if ($foreach.index > 0 && $foreach.index % 4 == 0)
15 - <div class="clearfix visible-lg-block"></div>
16 - #end
17 - <div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
7 + <li class='card'>
18 18   #helpExampleCard($card)
19 - </div>
9 + </li>
20 20   #end
21 - </div>
11 + </ul>
22 22  #end
23 23  
24 24  #set ($howToCards = [{
... ... @@ -64,8 +64,8 @@
64 64  #set ($featureCards = [{
65 65   'icon': 'fa fa-pencil',
66 66   'title': $services.localization.render('help.edit.title'),
67 - 'description': $services.localization.render('help.edit.description',["<a href='https://platform.xwiki.org/xwiki/bin/view/Features/PageEditing' class='wikiexternallink'>",'</a>',"<a href='$xwiki.getURL('XWiki.XWikiSyntax')'>"]),
68 - 'documentation': 'https://platform.xwiki.org/xwiki/bin/view/Features/PageEditing',
57 + 'description': $services.localization.render('help.edit.description',["<a href='https://www.xwiki.org/xwiki/bin/view/Documentation/UserGuide/Features/PageEditing' class='wikiexternallink'>",'</a>',"<a href='$xwiki.getURL('XWiki.XWikiSyntax')'>"]),
58 + 'documentation': 'https://www.xwiki.org/xwiki/bin/view/Documentation/UserGuide/Features/PageEditing',
69 69   'examples': $xwiki.getURL('Sandbox.WebHome', 'edit', 'editor=wysiwyg')
70 70  }, {
71 71   'icon': 'fa fa-file-text-o',
... ... @@ -89,19 +89,19 @@
89 89   'icon': 'fa fa-sitemap',
90 90   'title': $services.localization.render('help.organization.title'),
91 91   'description': $services.localization.render('help.organization.description'),
92 - 'documentation': 'https://platform.xwiki.org/xwiki/bin/view/Features/ContentOrganization/',
82 + 'documentation': 'https://www.xwiki.org/xwiki/bin/view/Documentation/UserGuide/Features/ContentOrganization/',
93 93   'examples': $xwiki.getURL('Main.AllDocs', 'view', 'view=tree')
94 94  }, {
95 95   'icon': 'fa fa-history',
96 96   'title': $services.localization.render('help.history.title'),
97 97   'description': $services.localization.render('help.history.description'),
98 - 'documentation': 'https://platform.xwiki.org/xwiki/bin/view/Features/VersionControl',
88 + 'documentation': 'https://www.xwiki.org/xwiki/bin/view/Documentation/UserGuide/Features/VersionControl',
99 99   'examples': $historyURL
100 100  }, {
101 101   'icon': 'fa fa-download',
102 102   'title': $services.localization.render('help.import.title'),
103 103   'description': $services.localization.render('help.import.description'),
104 - 'documentation': 'https://platform.xwiki.org/xwiki/bin/view/Features/Imports'
94 + 'documentation': 'https://www.xwiki.org/xwiki/bin/view/Documentation/UserGuide/Features/Imports'
105 105  }])
106 106  {{/velocity}}
107 107