Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{velocity}} | ||
2 | $xwiki.ssx.use('Download.WebHome') | ||
3 | (%class="download-options"%)((( | ||
4 | (%class="col-xs-12 download-container download-option version-option border-blue fa-icon fa-desktop"%)((( | ||
5 | = [[Manual>>V-BOX.V-Net.Manual.WebHome]] = | ||
6 | Provides users with online viewing of Manuals of Wecon V-NET, Cloud SCADA and software help. | ||
7 | (%class="version-footer"%)((( | ||
8 | [[V-NET Platform>>V-BOX.V-Net.Manual.01 V-NET Platform.WebHome||class="btn btn-primary]] [[Software Help>>V-BOX.V-Net.Manual.4 Cloud SCADA.WebHome||class="btn btn-primary]] [[More>>V-BOX.V-Net.Manual.WebHome||class="btn btn-primary]] | ||
9 | ))) | ||
10 | ))) | ||
11 | (%class="col-xs-12 download-container download-option version-option border-cyan fa-icon fa-download"%)((( | ||
12 | =[[Download>>V-BOX.V-Net.Download.WebHome]]= | ||
13 | Provides users with manuals, hardwares, and softwares downloads. | ||
14 | (%class="version-footer"%)((( | ||
15 | [[Manual>>V-BOX.V-Net.Download.Manual.WebHome||class="btn btn-info]] [[Hardware>>V-BOX.V-Net.Download.Repair.WebHome||class="btn btn-info]] [[Software>>V-BOX.V-Net.Download.6\.Software.WebHome||class="btn btn-info]] | ||
16 | ))) | ||
17 | ))) | ||
18 | (%class="col-xs-12 download-container download-option version-option border-green fa-icon fa-table"%)((( | ||
19 | = [[Demo>>V-BOX.V-Net.Training.WebHome]] = | ||
20 | Provides users with demonstrations about Wecon V-NET. | ||
21 | (%class="version-footer"%)((( | ||
22 | [[More>>V-BOX.V-Net.Training.WebHome||class="btn btn-success]] | ||
23 | ))) | ||
24 | ))) | ||
25 | ))) | ||
26 | {{/velocity}} | ||
27 | |||
28 | = [[FAQ>>doc:V-BOX.FAQ.WebHome]] = | ||
29 | |||
30 | A frequently asked questions (FAQ) list is often used in articles, websites, email lists, and online forums where common questions tend to recur. [[More FAQs>>doc:V-BOX.FAQ.WebHome]] | ||
31 | |||
32 | * [[What is the difference between vbox register time and server time?>>https://docs.we-con.com.cn/bin/view/V-BOX/FAQ/What%20is%20the%20difference%20between%20vbox%20register%20time%20and%20server%20time]] | ||
33 | * [[How to judge vbox is online with a address?>>https://docs.we-con.com.cn/bin/view/V-BOX/FAQ/How%20to%20judge%20vbox%20is%20online%20with%20a%20address]] | ||
34 | * ((( | ||
35 | [[How to export and download OpenCloud configuration into vbox?>>https://docs.we-con.com.cn/bin/view/V-BOX/FAQ/How%20to%20export%20and%20download%20OpenCloud%20configuration%20into%20vbox]] | ||
36 | ))) | ||
37 | |||
38 | = Video = | ||
39 | |||
40 | {{velocity output="false"}} | ||
41 | #set ($docextras = []) | ||
42 | |||
43 | #set ($videoCards = [ | ||
44 | { | ||
45 | 'title': $services.localization.render('WECON OpenCloud: 1 OpenCloud introduce'), | ||
46 | 'topics': [ | ||
47 | $services.localization.render('What is WECON OpenCloud platform?') | ||
48 | ], | ||
49 | 'url': 'https://www.youtube.com/embed/BE3kJyxugbo', | ||
50 | 'duration': '3 min' | ||
51 | }, | ||
52 | { | ||
53 | 'title': $services.localization.render('WECON OpenCloud: 2 Access Configuration'), | ||
54 | 'topics': [ | ||
55 | $services.localization.render('How to send access configuration to vbox?') | ||
56 | ], | ||
57 | 'url': 'https://www.youtube.com/embed/zBUjQtLpa1w?list=PL_Bpnb2RgakvYq_Ypk9bydIP7lUfkTDBN', | ||
58 | 'duration': '6 min' | ||
59 | }, | ||
60 | { | ||
61 | 'title': $services.localization.render('WECON OpenCloud: 3 End-user Account Management'), | ||
62 | 'topics': [ | ||
63 | $services.localization.render('What is end-user account? How to add or delete end-user account?') | ||
64 | ], | ||
65 | 'url': 'https://www.youtube.com/embed/LrU4mwoFK2k', | ||
66 | 'duration': '6 min' | ||
67 | }, | ||
68 | { | ||
69 | 'title': $services.localization.render('WECON OpenCloud : 4 Model Redefinition'), | ||
70 | 'topics': [ | ||
71 | $services.localization.render('language:english'), | ||
72 | $services.localization.render('Introduction of model redefinition') | ||
73 | ], | ||
74 | 'url': 'https://www.youtube.com/embed/mAdGS29F74A?list=PL_Bpnb2RgakvYq_Ypk9bydIP7lUfkTDBN', | ||
75 | 'duration': '5 min' | ||
76 | } | ||
77 | |||
78 | ]) | ||
79 | |||
80 | #macro (helpVideoCard $data) | ||
81 | <div class="videoCard"> | ||
82 | <iframe src="$data.url" allowfullscreen title="$escapetool.xml($data.title)" role="presentation" ></iframe> | ||
83 | <div class="videoCard-body"> | ||
84 | <div class="videoCard-title"> | ||
85 | $escapetool.xml($data.title) | ||
86 | </div> | ||
87 | <ul> | ||
88 | #foreach ($topic in $data.topics) | ||
89 | <li>$topic</li> | ||
90 | #end | ||
91 | </ul> | ||
92 | </div> | ||
93 | <div class="videoCard-footer"> | ||
94 | $services.icon.renderHTML('play') | ||
95 | <a href="$data.url">$services.localization.render('help.videos.watch')</a> | ||
96 | <span class="videoCard-duration"> | ||
97 | $escapetool.xml($data.duration) | ||
98 | </span> | ||
99 | </div> | ||
100 | </div> | ||
101 | #end | ||
102 | {{/velocity}} | ||
103 | |||
104 | {{velocity}} | ||
105 | {{html clean="false"}} | ||
106 | #set ($discard = $xwiki.ssx.use('Help.Videos.WebHome')) | ||
107 | <div class="row"> | ||
108 | #foreach ($card in $videoCards) | ||
109 | ## See http://getbootstrap.com/css/#grid-responsive-resets . | ||
110 | #if ($foreach.index > 0 && $foreach.index % 2 == 0) | ||
111 | <div class="clearfix visible-sm-block "></div> | ||
112 | #end | ||
113 | #if ($foreach.index > 0 && $foreach.index % 3 == 0) | ||
114 | <div class="clearfix visible-md-block visible-lg-block"></div> | ||
115 | #end | ||
116 | <div class="col-xs-12 col-sm-6 col-md-4"> | ||
117 | #helpVideoCard($card) | ||
118 | </div> | ||
119 | #end | ||
120 | </div> | ||
121 | {{/html}} | ||
122 | |||
123 | [[$services.localization.render('help.videos.more')>>https://www.youtube.com/user/Wecon2004/playlists]] | ||
124 | {{/velocity}} |