-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTemplateEdit.html
658 lines (588 loc) · 26.2 KB
/
TemplateEdit.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
<!DOCTYPE html>
<html>
<head>
<meta content="text/html" charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title>Template Edit</title>
<link rel="stylesheet" href="./css/shkwak.css" type="text/css" />
<script language="JavaScript" type="text/javascript" src="./js/jquery-1.8.2.min.js"></script>
<script language="JavaScript" type="text/javascript" src="./js/base64.js"></script>
<script language="JavaScript" type="text/javascript" src="./js/shkwak.js"></script>
<script language="javascript">
var pre_content; //수정 전 content base64 값
var data_sha = "";
function GetFileList()
{
var owner = document.getElementById('gitUser').value;
var repo = document.getElementById('gitRepo').value;
var select = document.getElementById('selectbox');
var select_sub = document.getElementById('selectbox_sub');
/*selectbox option 삭제*/
select.options.length = 0; //option 전체삭제
var option_line = document.createElement('option');
option_line.value = option_line.text = "-----------";
select.add(option_line);
select_sub.options.length = 0; //option 전체삭제
var option_line = document.createElement('option');
option_line.value = option_line.text = "-----------";
select_sub.add(option_line);
if (owner == "" || repo == "")
{
alert("Insert Owner value and Repository value!");
}
else
{
jQuery.support.cors = true;
$.ajax({
url: "https://api.github.com/repos/" + owner + "/" + repo + "/contents",
type: "GET",
dataType: "json",
success: function (data) {
//jsonData = eval(data); //eval() : json 타입으로 변환해줌
//alert(data.length); //2!!! Good
var j = 1;
for (var i=0;i<data.length;i++)
{
//document.getElementById('box1').value += data[i].name + "\n";
var option = document.createElement('option');
//alert(data[i].type);
if (data[i].type == "dir")
{ //솔루션만 리스트업_2014-04-16_유진로봇 요청사항
option.value = option.text = data[i].name;
select.add(option);
/*--data_type 저장--*/
data_type[j] = data[i].type; //★
j++;
}
}
},
error: function (x, y, z) {
alert(x + "\n" + y + "\n" + z);
}
});
}
}
function GetFileList_sub()
{
var owner = document.getElementById('gitUser').value;
var repo = document.getElementById('gitRepo').value;
var select = document.getElementById('selectbox_sub');
var solution = document.getElementById('selectbox').value;
/*selectbox option 삭제*/
select.options.length = 0; //option 전체삭제
var option_line = document.createElement('option');
option_line.value = option_line.text = "-----------";
select.add(option_line);
if (owner == "" || repo == "")
{
alert("Insert Owner value and Repository value!");
}
else
{
jQuery.support.cors = true;
$.ajax({
url: "https://api.github.com/repos/" + owner + "/" + repo + "/contents/" + solution,
type: "GET",
dataType: "json",
success: function (data) {
//jsonData = eval(data); //eval() : json 타입으로 변환해줌
//alert(data.length); //2!!! Good
var j = 1;
for (var i=0;i<data.length;i++)
{
//document.getElementById('box1').value += data[i].name + "\n";
var option = document.createElement('option');
//alert(data[i].type);
if (data[i].type == "file")
{
option.value = option.text = data[i].name;
select.add(option);
/*--data_type 저장--*/
data_type_sub[j] = data[i].type; //★
j++;
}
}
},
error: function (x, y, z) {
alert(x + "\n" + y + "\n" + z);
}
});
}
}
function GetData(fileName)
{
var owner = document.getElementById('gitUser').value;
var repo = document.getElementById('gitRepo').value;
var select = document.getElementById('selectbox');
if (owner == "" || repo == "")
{
alert("Insert Owner value and Repository value!");
}
else
{
/*--select box index 넘버 가져오기--*/
//alert(select.selectedIndex); //GOOD!
//alert(data_type[select.selectedIndex]); //GOOD - file, dir
if (data_type[select.selectedIndex] == "dir")
{
GetFileList_sub(); //solution 폴더의 하위 파일을 다시 읽어오기
}
else if (data_type[select.selectedIndex] == "file")
{
jQuery.support.cors = true;
$.ajax({
url: "https://api.github.com/repos/" + owner + "/" + repo + "/contents/" + fileName,
type: "GET",
dataType: "json",
success: function (data) {
//jsonData = eval(data); //eval() : json 타입으로 변환해줌
document.getElementById('box_result').value = Base64.decode(data.content);
pre_content = Base64.decode(data.content);
data_sha = data.sha; //document.getElementById('box_sha').value = data.sha;
},
error: function (x, y, z) {
alert(x + "\n" + y + "\n" + z);
}
});
}
else
{
alert('해당 파일은 수정할 수 없습니다.');
}
}
}
function GetData_sub(fileName)
{
var owner = document.getElementById('gitUser').value;
var repo = document.getElementById('gitRepo').value;
//var select = document.getElementById('selectbox');
var solution = document.getElementById('selectbox').value;
var fileName = document.getElementById('selectbox_sub').value;
var str = ["launch", "service", "package", "CMakeLists"];
if (owner == "" || repo == "")
{
alert("Insert Owner value and Repository value!");
}
else
{
/*--js str 문자열 찾기--*/
//var str1 = "CMakeLists.txt"; var srt2 = "CMakeLists"; alert(str1.indexOf(srt2)); //0 -ok
for (var i=0;i<4;i++)
{ /*--Template Page 전환--*/
var result = fileName.indexOf(str[i]);
if (result > -1)
{ //솔루션 폴더 내의 파일선택에 따라 페이지 전환
pageChange(str[i]);
}
}
/*--select box index 넘버 가져오기--*/
//alert(select.selectedIndex); alert(data_type[select.selectedIndex]); //GOOD - file, dir
jQuery.support.cors = true;
$.ajax({
url: "https://api.github.com/repos/" + owner + "/" + repo + "/contents/" + solution + "/" + fileName,
type: "GET",
dataType: "json",
success: function (data) {
//jsonData = eval(data); //eval() : json 타입으로 변환해줌
document.getElementById('box_result').value = Base64.decode(data.content);
pre_content = Base64.decode(data.content);
//document.getElementById('box_sha').value = data.sha;
data_sha = data.sha;
},
error: function (x, y, z) {
alert(x + "\n" + y + "\n" + z);
}
});
}
}
function FileUpdate_sub()
{ //Required : message, content(수정 후), sha(수정 전)
var owner = document.getElementById('gitUser').value;
var repo = document.getElementById('gitRepo').value;
var solution = document.getElementById('selectbox').value;
var fileName = document.getElementById('selectbox_sub').value;
/*--access_token--*/
//var access_token = document.getElementById('box_token').value;
var access_token = localStorage.getItem("access_token");
if (access_token == null)
{
alert("로그인을 하여야 업데이트가 가능합니다.");
}
else
{
var msg = document.getElementById('updateMsg').value;
if (msg == ""){msg = "Template Editor commit";}
var content = Base64.encode(document.getElementById('box_result').value);
var sha = data_sha; //document.getElementById('box_sha').value;
var cmds = {message : msg, content : content, sha : sha}; //var cmds = [ cmd ]; //[ ] 삭제
//var data_str = JSON.stringify(cmds);
/*
if (fileName == "-----------" || content == "")
{
alert("Insert filename and content value!");
}
else
{*/
if (content == pre_content)
{
alert("Content가 이전 Content와 같습니다.");
}
else
{
jQuery.support.cors = true;
$.ajax({
url: "https://api.github.com/repos/" + owner + "/" + repo + "/contents/" + solution + "/" + fileName + "?access_token=" + access_token,
type: "PUT",
data: JSON.stringify(cmds),
contentType: "application/json;charset=utf-8",
success: function (data) {
alert("Update complete!");
},
error: function (x, y, z) {
alert(x + "\n" + y + "\n" + z);
}
});
}
}
}
function base64encode(data)
{
var output = Base64.encode(data);
return output;
}
// var owner = document.getElementById('gitUser').value;
// var repo = document.getElementById('gitRepo').value;
function changeList()
{
var listValue = document.getElementById('serviceList').value;
if (listValue == "사용자 입력")
{
//document.getElementById('serviceName').style.display='block';
//document.getElementById('serviceName').removeAttribute = 'disabled';
document.getElementById('serviceName').value = "";
document.getElementById('serviceName').placeholder = "서비스명을 입력하세요.";
}
else
{
//document.getElementById('serviceName').style.display='none';
//document.getElementById('serviceName').disabled = 'true';
document.getElementById('serviceName').value = listValue;
}
}
function saveThisValue()
{
//--access_token--//
/* var access_token = localStorage.getItem("access_token");
if (access_token == null)
{
alert("로그인을 하여야 수정이 가능합니다.");
}
else
*/ {
alert("입력값이 정상적으로 저장되었습니다.");
}
//console.log(document.all.li0.value); //0, why?
}
function SigninCheck()
{
/*--access_token--*/
var access_token = localStorage.getItem("access_token");
if (access_token == null)
{
document.getElementById('signin').value = "Sign in";
}
else
{
document.getElementById('signin').value = "Sign out";
}
}
//var div_num = 1;
function addElement(divName) //x
{ /*--createElement, 새로운 요소 생성하기.--*/
/* var select = document.getElementById('selectbox');
var option = document.createElement('option');
option.value = option.text = data[i].name;
select.add(option);
*/
var selectDiv = document.getElementById(divName);
var select = document.createElement('select');
var input = document.createElement('input');
var optionValue = ["concert_master", "rocon_service_admin", "rocon_service_turtlesim", "rocon_app_manager", "rocon_apps", "rospy_tutorials", "zeroconf_avahi"];
selectDiv.appendChild(select);
select.id = 'subDiv';
for (var i=0;i<optionValue.length;i++)
{
var option = document.createElement('option');
option.value = option.text = optionValue[i];
select.add(option);
}
var br = document.createElement('br');
selectDiv.appendChild(br);
br.id = "subBr";
}
function delElement(divName) //x
{
/* <div id="div1">
<p id="p1">This is a paragraph.</p>
<p id="p2">This is another paragraph.</p>
</div>
var parent = document.getElementById("div1");
var child=document.getElementById("p1");
parent.removeChild(child);
*/
var selectDiv = document.getElementById(divName);
var subDiv = document.getElementById('subDiv');
selectDiv.removeChild(subDiv);
}
function overrideChange()
{
document.all.override_value.value = "";
if (document.getElementById('override').value == "없음")
{
document.all.override_value.style.display = 'none';
}
else
{
document.all.override_value.style.display = 'inline';
}
}
function onloadFunc()
{
SigninCheck();
GetFileList();
}
var ShowHide_status = false;
var pre_depend_value = new Array();
var depend_count = 0;
var depend_pre_check = false;
var resource_count = 0;
/*--공통 변수 처리--*/ //2014-04-29_shkwak
//CMakeLists.txt : project, package.xml : package name에 적용
function common_value_mapping(page)
{
var package_xml_packagename = document.getElementById('packagename');
var CMakeLists_txt_projectName = document.getElementById('projectName');
switch (page)
{
case "xml": //package.xml
CMakeLists_txt_projectName.value = package_xml_packagename.value;
break;
case "txt": //CMakeLists.txt
package_xml_packagename.value = CMakeLists_txt_projectName.value;
break;
}
}
</script>
</head>
<body onLoad="onloadFunc()">
<div style="font-size:24px; color:#6699cc;">Solution Template Editor
<!-- <input type="button" onclick="pageChange('launch');" value="launch File" class="button2"/>
<input type="button" onclick="pageChange('service');" value="service File" class="button2"/>
<input type="button" onclick="pageChange('package');" value="package File" class="button2"/>
<input type="button" onclick="pageChange('CMakeLists');" value="CMakeLists File" class="button2"/> -->
<span id="gitInfo" style="font-size:12px; color:;">gitInfo</span>
<span id="gitUserRepo" style="font-size:12px; color:; display:none;">
gitUser <input type="text" id="gitUser" value="meddugi723" style="width:100px; font-size:12px;" spellcheck="false">
gitRepo <input type="text" id="gitRepo" value="ROStest1" style="width:150px; font-size:12px;" spellcheck="false">
<input type="button" onclick="GetFileList();" value="GetList" style="width:; height:;" class="button"/>
</span>
<input type="image" src="./img/settings-1.png" onclick="ShowHide();" style="vertical-align:middle;"/>
<span class="styled-select">
<select id="selectbox" onChange="GetData(this.value);" >
<option value="">-----------</option>
</select>
<select id="selectbox_sub" onChange="GetData_sub(this.value);" >
<option value="">-----------</option>
</select>
</span>
</div>
<hr><br>
<!--■■■■ concert.launch ■■■■-->
<div id="launchfile">concert.launch<br>
<span style="font-size:12px; color:">
include file :
<input type="text" id="includefile" style="font-size:11px; width:210px;" placeholder="ex) concert_master.launch">
<!-- <input type="text" id="gitUser" value="meddugi723" style="width:100px; font-size:12px;">
<input type="text" id="gitRepo" value="ROStest1" style="width:100px; font-size:12px;"> -->
<br>
concert_name :
<input type="text" id="concert_name" style="font-size:11px; width:210px;" placeholder="ex) Concert Tutorial">
<br>
services :
<input type="text" id="services" style="font-size:11px; width:210px;" placeholder="ex) tutorial.services">
<br>
conductor_auto_invite :
<select id="conductor_auto_invite" >
<option value="true">true</option>
<option value="false">false</option>
</select>
<br>
conductor_local_clients_only :
<select id="conductor_local_clients_only" >
<option value="true">true</option>
<option value="false">false</option>
</select>
<br>
auto_enable_services :
<select id="auto_enable_services" >
<option value="true">true</option>
<option value="false">false</option>
</select>
<br>
scheduler_type :
<input type="text" id="scheduler_type" style="font-size:11px; width:210px" placeholder="ex) compatibility_tree">
</span><br>
</div>
<!--■■■■ solution.services ■■■■-->
<div id="servicefile" style="display:none;">solution.services<br>
<span style="font-size:12px; color:">
resource :
<select id="resource1" onchange="">
<option value="rocon_service_turtlesim">rocon_service_turtlesim</option>
<option value="rocon_service_admin">rocon_service_admin</option>
<option value="turtle_concert">turtle_concert</option>
<option value="chatter_concert">chatter_concert</option>
<!-- <option >사용자 입력</option> -->
</select>
<select id="resource2" onchange="">
<option value="turtlesim">turtlesim</option>
<option value="admin">admin</option>
<option value="turtle_pond">turtle_pond</option>
<option value="chatter">chatter</option>
<!-- <option >사용자 입력</option> -->
</select>
<!-- <input type="text" id="includefile" style="font-size:11px; width:210px" placeholder="ex) rocon_service_admin/admin"> -->
<input type="image" onclick="addresource();" src="./img/icon_plus_2.png" style="vertical-align:middle;"/>
<span style="font-size:11px; color:#336699;">* resource를 먼저 추가(+)해 주세요.</span>
<br>
override :
<select id="override" onchange="overrideChange()">
<option >없음</option>
<option value="name">name</option>
<option value="description">description</option>
<option value="priority">priority</option>
<!-- <option >사용자 입력</option> -->
</select>
<input type="text" id="override_value" style="font-size:11px; width:152px; display:none;" placeholder="ex) ">
<input type="image" onclick="addoverride();" src="./img/icon_plus_2.png" style="vertical-align:middle;"/>
<span style="font-size:11px; color:#336699;">* 추가(+)를 눌러야 수정 결과에 반영됩니다.</span>
<br>
<ul id="result_ul2">
</ul>
</div>
<!--■■■■ package.xml ■■■■-->
<div id="packagefile" style="display:none;">package.xml<br>
<span style="font-size:12px; color:">
package name :
<input type="text" id="packagename" style="font-size:11px; width:190px" placeholder="ex) concert_tutorial" onchange="javascript:console.log('packagename : ' + document.all.packagename.value), common_value_mapping('xml');">
<br>
version :
<input type="text" id="version" value="0.5.6" style="font-size:11px; width:200px;" placeholder="ex) 0.5.6">
<br>
description :
<input type="text" id="description" style="font-size:11px; width:400px" placeholder="ex) Introductory soft tutorial for the rocon concert.">
<br>
maintainer :
email <input type="text" id="email" value="" style="width:180px; font-size:11px;" placeholder="ex) [email protected]">
name <input type="text" id="maintainer" value="" style="width:147px; font-size:11px;" placeholder="ex) administrator">
<br>
license :
<input type="text" id="license" value="BSD" style="width:200px; font-size:11px;" placeholder="ex) BSD">
<br>
author :
<input type="text" id="author" value="" style="width:200px; font-size:11px;" placeholder="ex) Daniel Stonier">
<br>
buildtool_depend :
<input type="text" id="buildtool_depend" value="catkin" readonly style="width:140px; font-size:11px; border:0;" placeholder="ex) catkin">
<br>
<div id="run_depend_div">
run_depend :
<select id="run_depend" onchange="changeList2()">
<option value="concert_master">concert_master</option>
<option value="rocon_service_admin">rocon_service_admin</option>
<option value="rocon_service_turtlesim">rocon_service_turtlesim</option>
<option value="rocon_app_manager">rocon_app_manager</option>
<option value="rocon_apps">rocon_apps</option>
<option value="rospy_tutorials">rospy_tutorials</option>
<option value="zeroconf_avahi">zeroconf_avahi</option>
<option >사용자 입력</option>
</select>
<input type="text" id="user_depend" value="" style="width:210px font-size:11px; display:none;" placeholder="ex) concert_master">
<input type="image" onclick="addDepend();" src="./img/icon_plus_2.png" style="vertical-align:middle;"/>
<!-- <input type="image" onclick="delDepend('run_depend_div');" src="./img/icon_minus_2.png" style="vertical-align:middle;"/> -->
<br>
<ul id="result_ul">
</ul>
</div>
</span>
</div>
<!--■■■■ CMakeLists.txt ■■■■-->
<div id="CMakeListsfile" style="display:none;">CMakeLists.txt<br>
<span style="font-size:12px; color:">
CMake <!-- :
<input type="text" id="includefile" style="font-size:11px; width:210px" placeholder="ex) concert_master.launch"> -->
<!-- <input type="text" id="gitUser" value="meddugi723" style="width:100px; font-size:12px;">
<input type="text" id="gitRepo" value="ROStest1" style="width:100px; font-size:12px;"> -->
<br>
cmake_minimum_required :
<input type="text" id="" value="VERSION 2.8.3" readonly style="font-size:11px; width:175px; border:0;" placeholder="ex) VERSION 2.8.3">
<br>
project :
<input type="text" id="projectName" style="font-size:11px; width:280px;" placeholder="ex) concert_tutorial" onchange="javascript:console.log('projectName : ' + document.all.projectName.value), common_value_mapping('txt');">
<br>
Catkin
<!-- <select id="conductor_auto_invite" >
<option value="true">true</option>
<option value="false">false</option>
</select>
<input type="text" id="includefile" style="font-size:11px; width:210px" placeholder="ex) true"> -->
<br>
find_package :
<!-- <select id="conductor_local_clients_only" >
<option value="true">true</option>
<option value="false">false</option>
</select> -->
<input type="text" id="" value="catkin REQUIRED" readonly style="font-size:11px; width:245px; border:0;" placeholder="ex) catkin REQUIRED">
<br>
catkin_package() <!-- :
<!-- <input type="text" id="" value="null" style="font-size:11px; width:235px;" placeholder="ex) null"> -->
</span><br>
</div>
<!-- <input type="button" id="" value="Save this values" onclick="saveThisValue();" class="button" title="설정값을 저장합니다."/> -->
<span id="signin_msg" style="font-size:11px; color:#cc3366;">* 로그인을 하여야 수정이 가능합니다.</span>
<input type="button" id="signin" onclick="javascript:top.document.getElementById('subframe').src='Signin.html', top.document.getElementById('BreadcrumbTitle').innerHTML='Sign in', top.document.getElementById('pageTitle').innerHTML='';top.ChangeSigninTitle('OUT');" value="Sign in" class="button2"/> <br><br>
<!-- <div>Created Solution Files Description<br><span style="font-size:12px;" >
새로운 솔루션을 생성하면 기본 구성파일로 아래와 같이 4개의 파일 생성됩니다.<br>
- <strong>concert.launch</strong> : 솔루션 실행 설정 파일<br>
- <strong>solution.services</strong> : 솔루션 내에서 사용되는 서비스 목록 및 Custom 설정 파일<br>
- <strong>package.xml</strong> : 솔루션에 대한 메타 정보 및 의존성 설정 파일<br>
- <strong>CMakeLists.txt</strong> : 설치 시 필요한 의존성 정보 검색을 위한 설정 파일</span>
</div><br -->
<div>Result Report<br><span style="font-size:12px;" >
파일 수정 결과를 보여줍니다.<br>
<input type="button" onclick="ViewSource();" value="View source" class="button" title="수정된 소스를 보여줍니다."/> <br>
<textarea id="box_result" style="width:90%; margin-top:5px;" rows="10" title="source" spellcheck="false"></textarea></span><br>
<span style="float:right; margin-right:8%; font-size:12px;">GitHub에 수정된 정보를 업데이트 합니다.
<input type="text" id="updateMsg" style="font-size:11px; width:150px;" placeholder="Insert update message here." spellcheck="false">
<input type="button" onclick="FileUpdate_sub();" value="Update" class="button" title="수정된 정보를 업데이트 합니다."/></span><br>
</div><br>
<!-- concert.launch -->
<textarea id="box1" style="width:45%; display:none;" rows="12" title="">
PGxhdW5jaD4KICAgIDxpbmNsdWRlIGZpbGU9IiQoZmluZCBjb25jZXJ0X21hc3RlcikvbGF1bmNoL2NvbmNlcnRfbWFzdGVyLmxhdW5jaCI+CiAgICAgICAgPGFyZyBuYW1lPSJjb25jZXJ0X25hbWUiIHZhbHVlPSJDb25jZXJ0IFR1dG9yaWFsIi8+CiAgICAgICAgPGFyZyBuYW1lPSJzZXJ2aWNlcyIgdmFsdWU9ImNvbmNlcnRfdHV0b3JpYWwvdHV0b3JpYWwuc2VydmljZXMiLz4KICAgICAgICA8YXJnIG5hbWU9ImNvbmR1Y3Rvcl9hdXRvX2ludml0ZSIgdmFsdWU9InRydWUiIC8+CiAgICAgICAgPGFyZyBuYW1lPSJjb25kdWN0b3JfbG9jYWxfY2xpZW50c19vbmx5IiB2YWx1ZT0idHJ1ZSIgLz4KICAgICAgICA8YXJnIG5hbWU9ImF1dG9fZW5hYmxlX3NlcnZpY2VzIiB2YWx1ZT0idHJ1ZSIgLz4KICAgICAgICA8YXJnIG5hbWU9InNjaGVkdWxlcl90eXBlIiB2YWx1ZT0iY29tcGF0aWJpbGl0eV90cmVlIi8+CiAgICA8L2luY2x1ZGU+CjwvbGF1bmNoPgo=
</textarea>
<!-- solution.services -->
<textarea id="box2" style="width:45%; display:none;" rows="12" title="">
LSByZXNvdXJjZTogcm9jb25fc2VydmljZV90dXJ0bGVzaW0vdHVydGxlc2ltCiAgb3ZlcnJpZGU6CiAgICBwcmlvcml0eTogMwotIHJlc291cmNlOiByb2Nvbl9zZXJ2aWNlX2FkbWluL2FkbWluCiAgb3ZlcnJpZGU6CiAgICBuYW1lOiBhd2Vzb21lIGFkbWluCiAgICBkZXNjcmlwdGlvbjogVGhpcyBpcyBjb29sCi0gcmVzb3VyY2U6IHR1cnRsZV9jb25jZXJ0L3R1cnRsZV9wb25kCiAgb3ZlcnJpZGU6CiAgICBkZXNjcmlwdGlvbjogcG9uLWRhbmcgcG9uLWRhbmcgZG9sIGV1bCBkdXVuIGppIGphCi0gcmVzb3VyY2U6IGNoYXR0ZXJfY29uY2VydC9jaGF0dGVyCg==
</textarea>
<!-- package.xml -->
<textarea id="box3" style="width:45%; display:none;" rows="12" title="">
PHBhY2thZ2U+CiAgPG5hbWU+Y29uY2VydF90dXRvcmlhbDwvbmFtZT4KICA8dmVyc2lvbj4wLjUuNjwvdmVyc2lvbj4KICA8ZGVzY3JpcHRpb24+CiAgICBJbnRyb2R1Y3Rvcnkgc29mdCB0dXRvcmlhbCBmb3IgdGhlIHJvY29uIGNvbmNlcnQuCiAgPC9kZXNjcmlwdGlvbj4KICA8bWFpbnRhaW5lciBlbWFpbD0iZC5zdG9uaWVyQGdtYWlsLmNvbSI+RGFuaWVsIFN0b25pZXI8L21haW50YWluZXI+CiAgPGxpY2Vuc2U+QlNEPC9saWNlbnNlPgogIDxhdXRob3I+RGFuaWVsIFN0b25pZXI8L2F1dGhvcj4KCiAgPGJ1aWxkdG9vbF9kZXBlbmQ+Y2F0a2luPC9idWlsZHRvb2xfZGVwZW5kPgoKICA8cnVuX2RlcGVuZD5jb25jZXJ0X21hc3RlcjwvcnVuX2RlcGVuZD4KICA8cnVuX2RlcGVuZD5yb2Nvbl9zZXJ2aWNlX2FkbWluPC9ydW5fZGVwZW5kPgogIDxydW5fZGVwZW5kPnJvY29uX3NlcnZpY2VfdHVydGxlc2ltPC9ydW5fZGVwZW5kPgogIDxydW5fZGVwZW5kPnJvY29uX2FwcF9tYW5hZ2VyPC9ydW5fZGVwZW5kPgogIDxydW5fZGVwZW5kPnJvY29uX2FwcHM8L3J1bl9kZXBlbmQ+CiAgPHJ1bl9kZXBlbmQ+cm9zcHlfdHV0b3JpYWxzPC9ydW5fZGVwZW5kPgogIDxydW5fZGVwZW5kPnplcm9jb25mX2F2YWhpPC9ydW5fZGVwZW5kPiAKPC9wYWNrYWdlPgoK
</textarea>
<!-- CMakeLists.txt -->
<textarea id="box4" style="width:45%; display:none;" rows="12" title="">
IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIENNYWtlCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCmNtYWtlX21pbmltdW1fcmVxdWlyZWQoVkVSU0lPTiAyLjguMykKcHJvamVjdChjb25jZXJ0X3R1dG9yaWFsKQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIENhdGtpbgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCgpmaW5kX3BhY2thZ2UoY2F0a2luIFJFUVVJUkVEKQpjYXRraW5fcGFja2FnZSgpCg==
</textarea>
<!------------------------------------------------------------------>
</body>
</html>