-
Notifications
You must be signed in to change notification settings - Fork 3
/
xproc-language.js
815 lines (731 loc) · 40.2 KB
/
xproc-language.js
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
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
var xprocLanguage = {
languageName: "XProc",
propertiesFields: [
{type: "string", inputParams: {name: "name", label: "Title", typeInvite: "Enter a title" } },
{type: "text", inputParams: {name: "description", label: "Description", cols: 30} }
],
modules: [
{
"name": "add-attribute",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:add-attribute",
"icon": "icons/add.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } },
{"inputParams": {"label": "attribute-name", "name": "attribute-name", "required": "true" } },
{"inputParams": {"label": "attribute-value", "name": "attribute-value", "required": "true" } }
]
}
},
{
"name": "add-xml-base",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:add-xml-base",
"icon": "icons/add.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "boolean", "inputParams": {"label": "all", "name": "all", "value": false } },
{"type": "boolean", "inputParams": {"label": "relative", "name": "relative", "value": true } }
]
}
},
{
"name": "compare",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:compare",
"icon": "icons/tag.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "alternate", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "boolean", "inputParams": {"label": "fail-if-not-equal", "name": "fail-if-not-equal", "value": false } }
]
}
},
{
"name": "count",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:count",
"icon": "icons/calculator.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "integer", "inputParams": {"label": "limit", "name": "limit", "value": "" } }
]
}
},
{
"name": "delete",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:delete",
"icon": "icons/bin.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } }
]
}
},
{
"name": "directory-list",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:directory-list",
"icon": "icons/folder_explore.png",
"terminals": [
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "url", "inputParams": {"label": "path", "name": "path", "required": "true" } },
{"inputParams": {"label": "include-filter", "name": "include-filter" } },
{"inputParams": {"label": "exclude-filter", "name": "exclude-filter" } }
]
}
},
{
"name": "error",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:error",
"icon": "icons/error.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "code", "name": "code", "required": "true" } }
]
}
},
{
"name": "escape-markup",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:escape-markup",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "cdata-section-elements", "name": "cdata-section-elements", "value": "" } },
{"inputParams": {"label": "doctype-public", "name": "doctype-public" } },
{"type": "url", "inputParams": {"label": "doctype-system", "name": "doctype-system" } },
{"type": "boolean", "inputParams": {"label": "escape-uri-attributes", "name": "escape-uri-attributes", "value": false } },
{"type": "boolean", "inputParams": {"label": "include-content-type", "name": "include-content-type", "value": true } },
{"type": "boolean", "inputParams": {"label": "indent", "name": "indent", "value": false } },
{"inputParams": {"label": "media-type", "name": "media-type" } },
{"inputParams": {"label": "method", "name": "method", "value": "xml" } },
{"type": "boolean", "inputParams": {"label": "omit-xml-declaration", "name": "omit-xml-declaration", "value": true } },
{"type": "select", "inputParams": {"label": "standalone", "name": "standalone", "value": "omit", "selectValues": ['true', 'false', 'omit'] } },
{"type": "boolean", "inputParams": {"label": "undeclare-prefixes", "name": "undeclare-prefixes" } },
{"inputParams": {"label": "version", "name": "version", "value": "1.0" } }
]
}
},
{
"name": "filter",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:filter",
"icon": "icons/control_equalizer.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "select", "name": "select", "required": "true" } }
]
}
},
{
"name": "http-request",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:http-request",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "boolean", "inputParams": {"label": "byte-order-mark", "name": "byte-order-mark" } },
{"inputParams": {"label": "cdata-section-elements", "name": "cdata-section-elements", "value": "" } },
{"inputParams": {"label": "doctype-public", "name": "doctype-public" } },
{"type": "url", "inputParams": {"label": "doctype-system", "name": "doctype-system" } },
{"inputParams": {"label": "encoding", "name": "encoding" } },
{"type": "boolean", "inputParams": {"label": "escape-uri-attributes", "name": "escape-uri-attributes", "value": false } },
{"type": "boolean", "inputParams": {"label": "include-content-type", "name": "include-content-type", "value": true } },
{"type": "boolean", "inputParams": {"label": "indent", "name": "indent", "value": false } },
{"inputParams": {"label": "media-type", "name": "media-type" } },
{"inputParams": {"label": "method", "name": "method", "value": "xml" } },
{"inputParams": {"label": "normalization-form", "name": "normalization-form", "value": "none" } },
{"type": "boolean", "inputParams": {"label": "omit-xml-declaration", "name": "omit-xml-declaration", "value": true } },
{"type": "select", "inputParams": {"label": "standalone", "name": "standalone", "value": "omit", "selectValues": ['true', 'false', 'omit'] } },
{"type": "boolean", "inputParams": {"label": "undeclare-prefixes", "name": "undeclare-prefixes" } },
{"inputParams": {"label": "version", "name": "version", "value": "1.0" } }
]
}
},
{
"name": "identity",
"container": {
"xtype": "WireIt.Container",
"title": "p:identity",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
}
},
{
"name": "insert",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:insert",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "insertion", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "value": "/*" } },
{"type": "select", "inputParams": {"label": "position", "name": "position", "required": "true", "selectValues": ['first-child', 'last-child', 'before', 'after'] } }
]
}
},
{
"name": "label-elements",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:label-elements",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "attribute", "name": "attribute", "value": "xml:id" } },
{"inputParams": {"label": "label", "name": "label", "value": "concat(\"_\",$p:index)" } },
{"inputParams": {"label": "match", "name": "match", "value": "*" } },
{"type": "boolean", "inputParams": {"label": "replace", "name": "replace", "value": true } }
]
}
},
{
"name": "load",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:load",
"icon": "icons/icon.png",
"terminals": [
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "url", "inputParams": {"label": "href", "name": "href", "required": "true" } },
{"type": "boolean", "inputParams": {"label": "dtd-validate", "name": "dtd-validate", "value": false } }
]
}
},
{
"name": "make-absolute-uris",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:make-absolute-uris",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } },
{"type": "url", "inputParams": {"label": "base-uri", "name": "base-uri" } }
]
}
},
{
"name": "namespace-rename",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:namespace-rename",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "url", "inputParams": {"label": "from", "name": "from" } },
{"type": "url", "inputParams": {"label": "to", "name": "to" } },
{"type": "select", "inputParams": {"label": "apply-to", "name": "apply-to", "value": "all", "selectValues": ['all', 'elements', 'attributes'] } }
]
}
},
{
"name": "pack",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:pack",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "alternate", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "wrapper", "name": "wrapper", "required": "true" } }
]
}
},
{
"name": "parameters",
"container": {
"xtype": "WireIt.Container",
"title": "p:parameters",
"icon": "icons/icon.png",
"terminals": [
{"name": "parameters", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
}
},
{
"name": "rename",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:rename",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } },
{"inputParams": {"label": "new-name", "name": "new-name", "required": "true" } }
]
}
},
{
"name": "replace",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:replace",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "replacement", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } }
]
}
},
{
"name": "set-attributes",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:set-attributes",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "attributes", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } }
]
}
},
{
"name": "sink",
"container": {
"xtype": "WireIt.Container",
"title": "p:sink",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} }
]
}
},
{
"name": "split-sequence",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:split-sequence",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "matched", "direction": [0,1], "offsetPosition":{"left": 77, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" },
{"name": "not-matched", "direction": [0,1], "offsetPosition":{"left": 157, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "boolean", "inputParams": {"label": "initial-only", "name": "initial-only", "value": false } },
{"inputParams": {"label": "test", "name": "test", "required": "true" } }
]
}
},
{
"name": "store",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:store",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "url", "inputParams": {"label": "href", "name": "href", "required": "true" } },
{"type": "boolean", "inputParams": {"label": "byte-order-mark", "name": "byte-order-mark" } },
{"inputParams": {"label": "cdata-section-elements", "name": "cdata-section-elements", "value": "" } },
{"inputParams": {"label": "doctype-public", "name": "doctype-public" } },
{"type": "url", "inputParams": {"label": "doctype-system", "name": "doctype-system" } },
{"inputParams": {"label": "encoding", "name": "encoding" } },
{"type": "boolean", "inputParams": {"label": "escape-uri-attributes", "name": "escape-uri-attributes", "value": false } },
{"type": "boolean", "inputParams": {"label": "include-content-type", "name": "include-content-type", "value": true } },
{"type": "boolean", "inputParams": {"label": "indent", "name": "indent", "value": false } },
{"inputParams": {"label": "media-type", "name": "media-type" } },
{"inputParams": {"label": "method", "name": "method", "value": "xml" } },
{"inputParams": {"label": "normalization-form", "name": "normalization-form", "value": "none" } },
{"type": "boolean", "inputParams": {"label": "omit-xml-declaration", "name": "omit-xml-declaration", "value": true } },
{"type": "select", "inputParams": {"label": "standalone", "name": "standalone", "value": "omit", "selectValues": ['true', 'false', 'omit'] } },
{"type": "boolean", "inputParams": {"label": "undeclare-prefixes", "name": "undeclare-prefixes" } },
{"inputParams": {"label": "version", "name": "version", "value": "1.0" } }
]
}
},
{
"name": "string-replace",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:string-replace",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } },
{"inputParams": {"label": "replace", "name": "replace", "required": "true" } }
]
}
},
{
"name": "unescape-markup",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:unescape-markup",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "url", "inputParams": {"label": "namespace", "name": "namespace" } },
{"inputParams": {"label": "content-type", "name": "content-type", "value": "application/xml" } },
{"inputParams": {"label": "encoding", "name": "encoding" } },
{"inputParams": {"label": "charset", "name": "charset" } }
]
}
},
{
"name": "unwrap",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:unwrap",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } }
]
}
},
{
"name": "wrap",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:wrap",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "wrapper", "name": "wrapper", "required": "true" } },
{"inputParams": {"label": "match", "name": "match", "required": "true" } },
{"inputParams": {"label": "group-adjacent", "name": "group-adjacent" } }
]
}
},
{
"name": "wrap-sequence",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:wrap-sequence",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "wrapper", "name": "wrapper", "required": "true" } },
{"inputParams": {"label": "group-adjacent", "name": "group-adjacent" } }
]
}
},
{
"name": "xinclude",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:xinclude",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "boolean", "inputParams": {"label": "fixup-xml-base", "name": "fixup-xml-base", "value": false } },
{"type": "boolean", "inputParams": {"label": "fixup-xml-lang", "name": "fixup-xml-lang", "value": false } }
]
}
},
{
"name": "xslt",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:xslt",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 37, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "stylesheet", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "parameters", "direction": [0,-1], "offsetPosition":{"left": 197, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 77, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" },
{"name": "secondary", "direction": [0,1], "offsetPosition":{"left": 157, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "initial-mode", "name": "initial-mode" } },
{"inputParams": {"label": "template-name", "name": "template-name" } },
{"type": "url", "inputParams": {"label": "output-base-uri", "name": "output-base-uri" } },
{"inputParams": {"label": "version", "name": "version" } }
]
}
},
{
"name": "exec",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:exec",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 37, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" },
{"name": "errors", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" },
{"name": "exit-status", "direction": [0,1], "offsetPosition":{"left": 197, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "command", "name": "command", "required": "true" } },
{"inputParams": {"label": "args", "name": "args", "value": "" } },
{"inputParams": {"label": "cwd", "name": "cwd" } },
{"type": "boolean", "inputParams": {"label": "source-is-xml", "name": "source-is-xml", "value": true } },
{"type": "boolean", "inputParams": {"label": "result-is-xml", "name": "result-is-xml", "value": true } },
{"type": "boolean", "inputParams": {"label": "wrap-result-lines", "name": "wrap-result-lines", "value": false } },
{"type": "boolean", "inputParams": {"label": "errors-is-xml", "name": "errors-is-xml", "value": false } },
{"type": "boolean", "inputParams": {"label": "wrap-error-lines", "name": "wrap-error-lines", "value": false } },
{"inputParams": {"label": "path-separator", "name": "path-separator" } },
{"type": "integer", "inputParams": {"label": "failure-threshold", "name": "failure-threshold" } },
{"inputParams": {"label": "arg-separator", "name": "arg-separator", "value": " " } },
{"type": "boolean", "inputParams": {"label": "byte-order-mark", "name": "byte-order-mark" } },
{"inputParams": {"label": "cdata-section-elements", "name": "cdata-section-elements", "value": "" } },
{"inputParams": {"label": "doctype-public", "name": "doctype-public" } },
{"type": "url", "inputParams": {"label": "doctype-system", "name": "doctype-system" } },
{"inputParams": {"label": "encoding", "name": "encoding" } },
{"type": "boolean", "inputParams": {"label": "escape-uri-attributes", "name": "escape-uri-attributes", "value": false } },
{"type": "boolean", "inputParams": {"label": "include-content-type", "name": "include-content-type", "value": true } },
{"type": "boolean", "inputParams": {"label": "indent", "name": "indent", "value": false } },
{"inputParams": {"label": "media-type", "name": "media-type" } },
{"inputParams": {"label": "method", "name": "method", "value": "xml" } },
{"inputParams": {"label": "normalization-form", "name": "normalization-form", "value": "none" } },
{"type": "boolean", "inputParams": {"label": "omit-xml-declaration", "name": "omit-xml-declaration", "value": true } },
{"type": "select", "inputParams": {"label": "standalone", "name": "standalone", "value": "omit", "selectValues": ['true', 'false', 'omit'] } },
{"type": "boolean", "inputParams": {"label": "undeclare-prefixes", "name": "undeclare-prefixes" } },
{"inputParams": {"label": "version", "name": "version", "value": "1.0" } }
]
}
},
{
"name": "hash",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:hash",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "parameters", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "value", "name": "value", "required": "true" } },
{"inputParams": {"label": "algorithm", "name": "algorithm", "required": "true" } },
{"inputParams": {"label": "match", "name": "match", "required": "true" } },
{"inputParams": {"label": "version", "name": "version" } }
]
}
},
{
"name": "uuid",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:uuid",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } },
{"type": "integer", "inputParams": {"label": "version", "name": "version" } }
]
}
},
{
"name": "validate-with-relax-ng",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:validate-with-relax-ng",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "schema", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "boolean", "inputParams": {"label": "dtd-attribute-values", "name": "dtd-attribute-values", "value": false } },
{"type": "boolean", "inputParams": {"label": "dtd-id-idref-warnings", "name": "dtd-id-idref-warnings", "value": false } },
{"type": "boolean", "inputParams": {"label": "assert-valid", "name": "assert-valid", "value": true } }
]
}
},
{
"name": "validate-with-schematron",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:validate-with-schematron",
"icon": "icons/icon.png",
"terminals": [
{"name": "parameters", "direction": [0,-1], "offsetPosition":{"left": 37, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "schema", "direction": [0,-1], "offsetPosition":{"left": 197, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 77, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" },
{"name": "report", "direction": [0,1], "offsetPosition":{"left": 157, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "phase", "name": "phase", "value": "#ALL" } },
{"type": "boolean", "inputParams": {"label": "assert-valid", "name": "assert-valid", "value": true } }
]
}
},
{
"name": "validate-with-xml-schema",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:validate-with-xml-schema",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "schema", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "boolean", "inputParams": {"label": "use-location-hints", "name": "use-location-hints", "value": false } },
{"type": "boolean", "inputParams": {"label": "try-namespaces", "name": "try-namespaces", "value": false } },
{"type": "boolean", "inputParams": {"label": "assert-valid", "name": "assert-valid", "value": true } },
{"type": "select", "inputParams": {"label": "mode", "name": "mode", "value": "strict", "selectValues": ['strict', 'lax'] } }
]
}
},
{
"name": "www-form-urldecode",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:www-form-urldecode",
"icon": "icons/icon.png",
"terminals": [
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "value", "name": "value", "required": "true" } }
]
}
},
{
"name": "www-form-urlencode",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:www-form-urlencode",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "parameters", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"inputParams": {"label": "match", "name": "match", "required": "true" } }
]
}
},
{
"name": "xquery",
"container": {
"xtype": "WireIt.Container",
"title": "p:xquery",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 37, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "query", "direction": [0,-1], "offsetPosition":{"left": 117, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "parameters", "direction": [0,-1], "offsetPosition":{"left": 197, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
}
},
{
"name": "xsl-formatter",
"container": {
"xtype": "WireIt.FormContainer",
"title": "p:xsl-formatter",
"icon": "icons/icon.png",
"terminals": [
{"name": "source", "direction": [0,-1], "offsetPosition":{"left": 77, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "parameters", "direction": [0,-1], "offsetPosition":{"left": 157, "top": -15}, "ddConfig": { "type": "input", "allowedTypes": ["output"]} },
{"name": "result", "direction": [0,1], "offsetPosition":{"left": 117, "bottom": -15}, "ddConfig": { "type": "output", "allowedTypes": ["input"]}, "alwaysSrc": "true" }
]
, "fields": [
{"type": "url", "inputParams": {"label": "href", "name": "href", "required": "true" } },
{"inputParams": {"label": "content-type", "name": "content-type" } }
]
}
}
]
};