Wiki source code of User's Guide
Version 74.1 by Ecaterina Moraru (Valica) on 2017/08/22
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{velocity output="false"}} | ||
2 | $xwiki.ssx.use('xwiki:Main.Documentation') | ||
3 | $xwiki.ssx.use('enterprise:UserGuide.WebHome') | ||
4 | {{/velocity}} | ||
5 | |||
6 | (% class="row cards" %) | ||
7 | ((( | ||
8 | (% class="col-xs-12 col-sm-6 col-md-4 cards-container fa-icon fa-arrow-circle-o-right" %) | ||
9 | ((( | ||
10 | {{html wiki="true" clean="false"}} | ||
11 | <div class="card card1"> | ||
12 | <div class="card-body"> | ||
13 | <h4 class="card-title">[[Getting Started>>GettingStarted.WebHome]]</h4> | ||
14 | <p class="card-text">Start by reading the Getting Started Guide.</p> | ||
15 | </div> | ||
16 | </div> | ||
17 | {{/html}} | ||
18 | ))) | ||
19 | |||
20 | (% class="col-xs-12 col-sm-6 col-md-4 cards-container" %) | ||
21 | ((( | ||
22 | {{html wiki="true" clean="false"}} | ||
23 | <div class="card card1"> | ||
24 | <div class="card-body"> | ||
25 | <h4 class="card-title">[[Features>>Main.Features]]</h4> | ||
26 | <p class="card-text">In order to learn how to use XWiki, browse through the different features. Each feature page describes how to use the feature.</p> | ||
27 | </div> | ||
28 | </div> | ||
29 | {{/html}} | ||
30 | ))) | ||
31 | |||
32 | (% class="col-xs-12 col-sm-6 col-md-4 cards-container" %) | ||
33 | ((( | ||
34 | {{html wiki="true" clean="false"}} | ||
35 | <div class="card card1"> | ||
36 | <div class="card-body"> | ||
37 | <h4 class="card-title">[[Playground>>playground:Main.WebHome]]</h4> | ||
38 | <p class="card-text">At the same time as you follow the guides we recommend that you try out what you learn on the Playground. This is a XWiki instance that we've set up for you so that you can easily discover the joys of using a wiki.</p> | ||
39 | </div> | ||
40 | </div> | ||
41 | {{/html}} | ||
42 | ))) | ||
43 | ))) | ||
44 | |||
45 | == Videos == | ||
46 | |||
47 | |||
48 | {{velocity output="false"}} | ||
49 | #set ($docextras = []) | ||
50 | |||
51 | #set ($videoCards = [{ | ||
52 | 'title': 'Getting Started Playlist', | ||
53 | 'topics': [ | ||
54 | 'by Andrea Russo (6 videos)' | ||
55 | ], | ||
56 | 'url': 'https://www.youtube.com/embed/videoseries?list=PLDTVnijo0RsLaBGPqz2hmZDWXZrFn79ps', | ||
57 | 'duration': '29 min' | ||
58 | }, { | ||
59 | 'title': 'Edit a Page', | ||
60 | 'topics': [ | ||
61 | 'by Silvia Macovei' | ||
62 | ], | ||
63 | 'url': 'https://www.youtube.com/embed/aOWbopEw5i4', | ||
64 | 'duration': '0:16 min' | ||
65 | }, { | ||
66 | 'title': 'Create a Nested Page', | ||
67 | 'topics': [ | ||
68 | 'by Silvia Macovei' | ||
69 | ], | ||
70 | 'url': 'https://www.youtube.com/embed/MXxfvcOOQjw', | ||
71 | 'duration': '0:20 min' | ||
72 | }, { | ||
73 | 'title': 'Create a Terminal Page', | ||
74 | 'topics': [ | ||
75 | 'by Silvia Macovei' | ||
76 | ], | ||
77 | 'url': 'https://www.youtube.com/embed/XlO-4SXSs0k', | ||
78 | 'duration': '0:28 min' | ||
79 | }, { | ||
80 | 'title': 'View the History of a Page', | ||
81 | 'topics': [ | ||
82 | 'by Silvia Macovei' | ||
83 | ], | ||
84 | 'url': 'https://www.youtube.com/embed/3yqlLN8dZhw', | ||
85 | 'duration': '0:25 min' | ||
86 | }, { | ||
87 | 'title': 'Basic Editing with the GWT Wysiwyg Editor', | ||
88 | 'topics': [ | ||
89 | 'by Silvia Macovei' | ||
90 | ], | ||
91 | 'url': 'https://www.youtube.com/embed/IK-n76406-A', | ||
92 | 'duration': '0:37 min' | ||
93 | }, { | ||
94 | 'title': 'Insert Links in a Page Using the GWT Wysiwyg Editor', | ||
95 | 'topics': [ | ||
96 | 'by Silvia Macovei' | ||
97 | ], | ||
98 | 'url': 'https://www.youtube.com/embed/wbyl0VxDzXQ', | ||
99 | 'duration': '1:22 min' | ||
100 | }, { | ||
101 | 'title': 'Insert Images in a Page Using the GWT Wysiwyg Editor', | ||
102 | 'topics': [ | ||
103 | 'by Silvia Macovei' | ||
104 | ], | ||
105 | 'url': 'https://www.youtube.com/embed/pxkM0Me6t8s', | ||
106 | 'duration': '0:33 min' | ||
107 | }]) | ||
108 | |||
109 | #macro (helpVideoCard $data) | ||
110 | <div class="videoCard"> | ||
111 | <iframe src="$data.url" allowfullscreen></iframe> | ||
112 | <div class="videoCard-body"> | ||
113 | <div class="videoCard-title"> | ||
114 | $escapetool.xml($data.title) | ||
115 | </div> | ||
116 | <ul> | ||
117 | #foreach ($topic in $data.topics) | ||
118 | <li>$topic</li> | ||
119 | #end | ||
120 | </ul> | ||
121 | </div> | ||
122 | <div class="videoCard-footer"> | ||
123 | $services.icon.renderHTML('play') | ||
124 | <a href="$data.url"> Play</a> | ||
125 | <span class="videoCard-duration"> | ||
126 | $escapetool.xml($data.duration) | ||
127 | </span> | ||
128 | </div> | ||
129 | </div> | ||
130 | #end | ||
131 | {{/velocity}} | ||
132 | |||
133 | {{velocity}} | ||
134 | {{html clean="false"}} | ||
135 | #set ($discard = $xwiki.ssx.use('playground:Help.Videos.WebHome')) | ||
136 | <div class="row"> | ||
137 | #foreach ($card in $videoCards) | ||
138 | ## See http://getbootstrap.com/css/#grid-responsive-resets . | ||
139 | #if ($foreach.index > 0 && $foreach.index % 2 == 0) | ||
140 | <div class="clearfix visible-sm-block "></div> | ||
141 | #end | ||
142 | #if ($foreach.index > 0 && $foreach.index % 3 == 0) | ||
143 | <div class="clearfix visible-md-block visible-lg-block"></div> | ||
144 | #end | ||
145 | <div class="col-xs-12 col-sm-6 col-md-4"> | ||
146 | #helpVideoCard($card) | ||
147 | </div> | ||
148 | #end | ||
149 | </div> | ||
150 | {{/html}} | ||
151 | {{/velocity}} | ||
152 | |||
153 | Older resources: | ||
154 | |||
155 | * [[XWiki's main features in 10 slides>>UserGuide.Diaporama]] | ||
156 | * [[Creating tables using the WYSIWYG editor>>attach:table_wysiwyg.swf||rel="__blank"]] | ||
157 | * [[Making modifications to a table using the WYSIWYG editor>>attach:tablemodification_wysiwyg.swf||rel="__blank"]] | ||
158 | * [[Viewing page history and rolling back an older version>>attach:history_wysiwyg.swf||rel="__blank"]] | ||
159 | * [[Creating a new Space>>attach:createspace_wysiwyg.swf||rel="__blank"]] | ||
160 | * [[Attaching files to a page>>attach:files_wysiwyg.swf||rel="__blank"]] | ||
161 | * [[Attaching a file using the WYSIWYG editor>>attach:attachfile_wysiwyg.swf||rel="__blank"]] | ||
162 | * [[Attaching an image using the WYSIWYG editor>>attach:attachimage_wysiwyg.swf||rel="__blank"]] |