Changes for page PLC Editor

Last modified by Leo Wei on 2024/09/14 17:38

From version 1.1
edited by Leo Wei
on 2022/06/08 12:57
Change comment: Imported from XAR
To version 2.1
edited by Stone Wu
on 2022/07/28 11:05
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.admin
1 +XWiki.Stone
Content
... ... @@ -1,2 +1,141 @@
1 +{{velocity}}
2 +$xwiki.ssx.use('Download.WebHome')
3 +(%class="download-options"%)(((
4 +(%class="col-xs-12 download-container download-option version-option border-cyan fa-icon fa-list-alt"%)(((
5 +=== [[Download>>enterprise:UserGuide.WebHome]] ===
6 +Dedicated for standard users of the wiki. It contains a Getting Started Guide and a reference to the [[Features>>platform:Features.WebHome]], in addition to videos and tutorials.
7 +(%class="version-footer"%)(((
8 +[[Learn>>enterprise:UserGuide.WebHome||class="btn btn-info]]
9 +)))
10 +)))
11 +(%class="col-xs-12 download-container download-option version-option border-blue fa-icon fa-table"%)(((
12 +=== [[Demo>>platform:AdminGuide.WebHome]] ===
13 +Provides general information for administrators that need to customize and administer their XWiki installation (authentication, DB, performance tuning, etc.)
14 +(%class="version-footer"%)(((
15 +[[Administer>>platform:AdminGuide.WebHome||class="btn btn-primary]]
16 +)))
17 +)))
18 +(%class="col-xs-12 download-container download-option version-option border-green fa-icon fa-code"%)(((
19 +=== [[Instructions>>platform:DevGuide.WebHome]] ===
20 +Details how to develop in-wiki applications or how to integrate other software with XWiki. Contains details on how to insert scripts into XWiki pages.
21 +(%class="version-footer"%)(((
22 +[[Develop>>platform:DevGuide.WebHome||class="btn btn-success]]
23 +)))
24 +)))
25 +)))
26 +(%class="noitems"%)If you need more help with your wiki or you'd like to get in touch with the community please visit the [[Support>>xwiki:Main.Support]] for more information. If you still have a question after reading these guides, check our [[FAQ>>xwiki:FAQ.WebHome]].
27 +----
28 +== Projects and Extensions ==
29 +The XWiki.org web site is organized by [[projects and extensions>>xwiki:Main.Forge]], each having their own site. Every site holds the documentation for its projects:
30 +* [[Documentation for Extensions>>extensions:Main.WebHome]]
31 +* [[Documentation for Snippets>>snippets:Main.WebHome]]
32 +* [[Documentation for XWiki Rendering>>rendering:Main.WebHome]]
33 +* [[Documentation for XWiki Commons>>commons:Main.WebHome]]
34 +You can also check [[external articles and documentation about XWiki>>Main.ExternalLinks]].
35 +Information regarding the Open Source development of the XWiki Platform itself or to XWiki related projects and extensions can be found on the [[Development>>dev:Main.WebHome]] wiki and on the [[Contrib>>contrib:Main.WebHome]] wiki.
36 +{{/velocity}}
1 1  
38 += Video =
2 2  
40 +{{velocity output="false"}}
41 +#set ($docextras = [])
42 +
43 +#set ($videoCards = [
44 +{
45 + 'title': $services.localization.render('1.WECON LX3V series PLC Introduction'),
46 + 'topics': [
47 + $services.localization.render('language:english'),
48 + $services.localization.render('PLC Unit/Module/Software feature/Application')
49 + ],
50 + 'url': 'https://www.youtube.com/embed/MILpsFH2oMw?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj',
51 + 'duration': '14 min'
52 +},
53 +{
54 + 'title': $services.localization.render('2.WECON LX3V PLC port instuction '),
55 + 'topics': [
56 + $services.localization.render('language:English'),
57 + $services.localization.render('PLC IO/Module/BD/COM port intruction')
58 + ],
59 + 'url': 'https://www.youtube.com/embed/nfKthG_LjCI',
60 + 'duration': '7 mins'
61 +},
62 +{'title': $services.localization.render('1.Software download&install'),
63 + 'topics': [
64 + $services.localization.render('language:english'),
65 + $services.localization.render('Software download&install')
66 + ],
67 + 'url': 'https://www.youtube.com/embed/vJEMWxb9U50?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj',
68 + 'duration': '3 min'
69 +},
70 +{'title': $services.localization.render('2.Create a new project&compile&simulate&download'),
71 + 'topics': [
72 + $services.localization.render('language:english'),
73 + $services.localization.render('Create a new project&compile&simulate&download')
74 + ],
75 + 'url': 'https://www.youtube.com/embed/KPbik_hEPlE',
76 + 'duration': '6 min'
77 +},
78 +
79 +{'title': $services.localization.render('3.Device discription Timer'),
80 + 'topics': [
81 + $services.localization.render('language:english'),
82 + $services.localization.render('Device discription Timer')
83 + ],
84 + 'url': 'https://www.youtube.com/embed/3f3ze-9WT1Q?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj',
85 + 'duration': '5 min'
86 +},
87 +{'title': $services.localization.render('4.Device description counter'),
88 + 'topics': [
89 + $services.localization.render('language:english'),
90 + $services.localization.render('Device description counter')
91 + ],
92 + 'url': 'https://www.youtube.com/embed/vgjaF44eGjA?list=PL_Bpnb2RgaktC29Y36bYN2ECXWP_hBOsj',
93 + 'duration': '4 min'
94 +}
95 +])
96 +
97 +#macro (helpVideoCard $data)
98 + <div class="videoCard">
99 + <iframe src="$data.url" allowfullscreen title="$escapetool.xml($data.title)" role="presentation" ></iframe>
100 + <div class="videoCard-body">
101 + <div class="videoCard-title">
102 + $escapetool.xml($data.title)
103 + </div>
104 + <ul>
105 + #foreach ($topic in $data.topics)
106 + <li>$topic</li>
107 + #end
108 + </ul>
109 + </div>
110 + <div class="videoCard-footer">
111 + $services.icon.renderHTML('play')
112 + <a href="$data.url">$services.localization.render('help.videos.watch')</a>
113 + <span class="videoCard-duration">
114 + $escapetool.xml($data.duration)
115 + </span>
116 + </div>
117 + </div>
118 +#end
119 +{{/velocity}}
120 +
121 +{{velocity}}
122 +{{html clean="false"}}
123 +#set ($discard = $xwiki.ssx.use('Help.Videos.WebHome'))
124 +<div class="row">
125 + #foreach ($card in $videoCards)
126 + ## See http://getbootstrap.com/css/#grid-responsive-resets .
127 + #if ($foreach.index > 0 && $foreach.index % 2 == 0)
128 + <div class="clearfix visible-sm-block "></div>
129 + #end
130 + #if ($foreach.index > 0 && $foreach.index % 3 == 0)
131 + <div class="clearfix visible-md-block visible-lg-block"></div>
132 + #end
133 + <div class="col-xs-12 col-sm-6 col-md-4">
134 + #helpVideoCard($card)
135 + </div>
136 + #end
137 +</div>
138 +{{/html}}
139 +
140 +[[$services.localization.render('help.videos.more')>>https://www.youtube.com/user/Wecon2004/playlists]]
141 +{{/velocity}}