Wiki source code of V-NET Guide
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | = Demo = | ||
2 | |||
3 | = Video = | ||
4 | |||
5 | {{velocity output="false"}} | ||
6 | #set ($docextras = []) | ||
7 | |||
8 | #set ($videoCards = [ | ||
9 | { | ||
10 | 'title': $services.localization.render('WECON V-NET Basic Function: 1 Software Download&Install'), | ||
11 | 'topics': [ | ||
12 | $services.localization.render('language:english'), | ||
13 | $services.localization.render('How to get Wecon V-NET software') | ||
14 | ], | ||
15 | 'url': 'https://www.youtube.com/embed/7xzyyRURDfE', | ||
16 | 'duration': '3 min' | ||
17 | }, | ||
18 | { | ||
19 | 'title': $services.localization.render('WECON V-NET Basic Function: 2 Account Registration&V-Box Binding'), | ||
20 | 'topics': [ | ||
21 | $services.localization.render('language:english'), | ||
22 | $services.localization.render('How to register a V-NET account,How to bind the V-BOX') | ||
23 | ], | ||
24 | 'url': 'https://www.youtube.com/embed/wKs1ZlRtMNM', | ||
25 | 'duration': '3 min' | ||
26 | }, | ||
27 | { | ||
28 | 'title': $services.localization.render('WECON V-NET Basic Function: 3 Real time Data&Historical Data'), | ||
29 | 'topics': [ | ||
30 | $services.localization.render('language:english'), | ||
31 | $services.localization.render('add real-time points,add historical points,record trigger type') | ||
32 | ], | ||
33 | 'url': 'https://www.youtube.com/embed/7CPDrRb94BA', | ||
34 | 'duration': '7 min' | ||
35 | }, | ||
36 | { | ||
37 | 'title': $services.localization.render('WECON V-NET Basic Function: 4 Alarm Function'), | ||
38 | 'topics': [ | ||
39 | $services.localization.render('language:english'), | ||
40 | $services.localization.render('How to use alarm function,add alarm monitoring point,alarm type') | ||
41 | ], | ||
42 | 'url': 'https://www.youtube.com/embed/ueyAIdWyQdU', | ||
43 | 'duration': '6 min' | ||
44 | }, | ||
45 | { | ||
46 | 'title': $services.localization.render('WECON V-NET Basic Function: 5 Lua Script Function'), | ||
47 | 'topics': [ | ||
48 | $services.localization.render('language:english'), | ||
49 | $services.localization.render('How to use Lua Script function?') | ||
50 | ], | ||
51 | 'url': 'https://www.youtube.com/embed/6pwo14E0OeQ', | ||
52 | 'duration': '5 min' | ||
53 | }, | ||
54 | { | ||
55 | 'title': $services.localization.render('WECON V-NET Basic Function: 6 Configuration'), | ||
56 | 'topics': [ | ||
57 | $services.localization.render('language:english'), | ||
58 | $services.localization.render('Introduction to the configuration interface') | ||
59 | ], | ||
60 | 'url': 'https://www.youtube.com/embed/PTIHcpFRPH0', | ||
61 | 'duration': '5 min' | ||
62 | }, | ||
63 | { | ||
64 | 'title': $services.localization.render('WECON V-NET Basic Function: 7 Pass-through'), | ||
65 | 'topics': [ | ||
66 | $services.localization.render('language:english'), | ||
67 | $services.localization.render('Introduction to the Pass-through, serial passthrough, VPN passthrough') | ||
68 | ], | ||
69 | 'url': 'https://www.youtube.com/embed/vLDu41_Wg30?list=PL_Bpnb2RgakvYq_Ypk9bydIP7lUfkTDBN', | ||
70 | 'duration': '8 min' | ||
71 | }, | ||
72 | { | ||
73 | 'title': $services.localization.render('WECON V-NET Special Function: 1 Email&Status Push'), | ||
74 | 'topics': [ | ||
75 | $services.localization.render('language:english'), | ||
76 | $services.localization.render('How to set email? How to use status push?') | ||
77 | ], | ||
78 | 'url': 'https://www.youtube.com/embed/3SO4tu8t0CM', | ||
79 | 'duration': '6 min' | ||
80 | }, | ||
81 | { | ||
82 | 'title': $services.localization.render('WECON V-NET Special Function: 2 Template Function'), | ||
83 | 'topics': [ | ||
84 | $services.localization.render('language:english'), | ||
85 | $services.localization.render('How to use template function?') | ||
86 | ], | ||
87 | 'url': 'https://www.youtube.com/embed/SDRva-dPkzY?list=PL_Bpnb2RgakvYq_Ypk9bydIP7lUfkTDBN', | ||
88 | 'duration': '7 min' | ||
89 | } | ||
90 | ]) | ||
91 | |||
92 | #macro (helpVideoCard $data) | ||
93 | <div class="videoCard"> | ||
94 | <iframe src="$data.url" allowfullscreen title="$escapetool.xml($data.title)" role="presentation" ></iframe> | ||
95 | <div class="videoCard-body"> | ||
96 | <div class="videoCard-title"> | ||
97 | $escapetool.xml($data.title) | ||
98 | </div> | ||
99 | <ul> | ||
100 | #foreach ($topic in $data.topics) | ||
101 | <li>$topic</li> | ||
102 | #end | ||
103 | </ul> | ||
104 | </div> | ||
105 | <div class="videoCard-footer"> | ||
106 | $services.icon.renderHTML('play') | ||
107 | <a href="$data.url">$services.localization.render('help.videos.watch')</a> | ||
108 | <span class="videoCard-duration"> | ||
109 | $escapetool.xml($data.duration) | ||
110 | </span> | ||
111 | </div> | ||
112 | </div> | ||
113 | #end | ||
114 | {{/velocity}} | ||
115 | |||
116 | {{velocity}} | ||
117 | {{html clean="false"}} | ||
118 | #set ($discard = $xwiki.ssx.use('Help.Videos.WebHome')) | ||
119 | <div class="row"> | ||
120 | #foreach ($card in $videoCards) | ||
121 | ## See http://getbootstrap.com/css/#grid-responsive-resets . | ||
122 | #if ($foreach.index > 0 && $foreach.index % 2 == 0) | ||
123 | <div class="clearfix visible-sm-block "></div> | ||
124 | #end | ||
125 | #if ($foreach.index > 0 && $foreach.index % 3 == 0) | ||
126 | <div class="clearfix visible-md-block visible-lg-block"></div> | ||
127 | #end | ||
128 | <div class="col-xs-12 col-sm-6 col-md-4"> | ||
129 | #helpVideoCard($card) | ||
130 | </div> | ||
131 | #end | ||
132 | </div> | ||
133 | {{/html}} | ||
134 | (% class="lead" %) | ||
135 | [[$services.localization.render('help.videos.more')>>https://www.youtube.com/user/Wecon2004/playlists]] | ||
136 | {{/velocity}} | ||
137 | |||
138 | = FAQ = | ||
139 | |||
140 | = Download = | ||
141 | |||
142 | == Software == | ||
143 | |||
144 | **V-BOX PC software and APP download link:**[[http:~~/~~/www.we-con.com.cn/en/download_45_0_0_0_0_0_0_1.html>>url:http://www.we-con.com.cn/en/download_45_0_0_0_0_0_0_1.html]] | ||
145 | |||
146 | **OPC tool link: **[[http:~~/~~/www.we-con.com.cn/en/download_45_0_0_0_0_0_0_1.html>>url:http://www.we-con.com.cn/en/download_45_0_0_0_0_0_0_1.html]] | ||
147 | |||
148 | (% class="lead" %) | ||
149 | Manual | ||
150 | |||
151 | (% class="lead" %) | ||
152 | Web link | ||
153 | |||
154 | V-BOX Web(V-NET) visit website: | ||
155 | |||
156 | **Chinese server:** [[http:~~/~~/v-box.net>>url:http://v-box.net/]] | ||
157 | |||
158 | **Europe server:** [[https:~~/~~/eu.v-box.net>>url:http://eu.v-box.net/]] | ||
159 | |||
160 | **Asean server: **[[https:~~/~~/asean.v-box.net>>url:http://asean.v-box.net/]] | ||
161 | |||
162 | **Chinese server:** [[http:~~/~~/api.v-box.net>>url:http://api.v-box.net/]] | ||
163 | |||
164 | **Europe server:** [[http:~~/~~/api.eu.v-box.net>>url:http://eu.api.v-box.net/]] | ||
165 | |||
166 | **Asean server: **[[http:~~/~~/api.asean.v-box.net>>url:http://asean.api.v-box.net/]] |