This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
iou-web.spec.template
1456 lines (1444 loc) · 110 KB
/
iou-web.spec.template
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
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Name: iou-web
Version: %VERSION%
Release: %RELEASE%
Group: Applications/Productivity
License: GPL
Source: %{name}-%{version}.tar.gz
Summary: IOU WEB interface
Prefix: /opt/iou
Requires: dos2unix, httpd, libpcap, php, php-pdo, php-pspell, sqlite
Provides: iou-web
AutoReq: 0
%description
IOU WEB interface.
%prep
%setup
%install
rm -fr $RPM_BUILD_ROOT
mkdir -p ${RPM_BUILD_ROOT}%{prefix}/bin
mkdir -p ${RPM_BUILD_ROOT}/etc/httpd/conf.d
mkdir -p ${RPM_BUILD_ROOT}/etc/sudoers.d
mkdir -p ${RPM_BUILD_ROOT}/etc/yum.repos.d
mkdir -p ${RPM_BUILD_ROOT}/etc/logrotate.d
cp -a bin ${RPM_BUILD_ROOT}%{prefix}
cp -a data ${RPM_BUILD_ROOT}%{prefix}
cp -a html ${RPM_BUILD_ROOT}%{prefix}
cp -a cgi-bin ${RPM_BUILD_ROOT}%{prefix}
cp -a conf/apache.conf ${RPM_BUILD_ROOT}/etc/httpd/conf.d/iou.conf
cp -a conf/sudo.conf ${RPM_BUILD_ROOT}/etc/sudoers.d/iou
cp -a conf/iou-web.repo ${RPM_BUILD_ROOT}/etc/yum.repos.d
cp -a conf/logrotate.conf ${RPM_BUILD_ROOT}/etc/logrotate.d/iou
%files
%defattr(-,root,root)
%attr(644,root,root) /etc/httpd/conf.d/iou.conf
%attr(440,root,root) /etc/sudoers.d/iou
%attr(644,root,root) /etc/logrotate.d/iou
%attr(644,root,root) /etc/yum.repos.d/iou-web.repo
%attr(644,apache,apache) %{prefix}/data/template.sdb
%attr(755,root,root) %{prefix}/bin/wrapper-linux
%attr(755,root,root) %{prefix}/bin/shellinaboxd
%attr(755,root,root) %{prefix}/cgi-bin/console
%attr(755,root,root) %{prefix}/bin/ioulive86
%attr(755,root,root) %{prefix}/bin/iousniff
%attr(755,root,root) %{prefix}/bin/monitor.ppy
%attr(644,root,root) %{prefix}/html/.htaccess
%attr(644,root,root) %{prefix}/html/css/jquery.countdown.css
%attr(644,root,root) %{prefix}/html/error.php
%attr(644,root,root) %{prefix}/html/monitor.php
%attr(644,root,root) %{prefix}/html/images/buttons/help.png
%attr(644,root,root) %{prefix}/html/images/buttons/help_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/bomb.png
%attr(644,root,root) %{prefix}/html/images/buttons/bomb_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/reset_small.png
%attr(644,root,root) %{prefix}/html/images/devices/nam.png
%attr(644,root,root) %{prefix}/html/images/devices/nam_running.png
%attr(644,root,root) %{prefix}/html/images/devices/nam_small.png
%attr(644,root,root) %{prefix}/html/images/devices/nam_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/nam_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/nam_stopped.png
%attr(644,root,root) %{prefix}/html/images/buttons/wireshark_start.png
%attr(644,root,root) %{prefix}/html/images/buttons/wireshark_start_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/wireshark_stop.png
%attr(644,root,root) %{prefix}/html/images/buttons/wireshark_stop_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/reset.png
%attr(644,root,root) %{prefix}/html/images/buttons/warning_small.png
%attr(644,root,root) %{prefix}/html/images/example.jpg
%attr(644,root,root) %{prefix}/html/includes/FOOTER.html
%attr(644,root,root) %{prefix}/html/includes/HEADER.html
%attr(644,root,root) %{prefix}/html/includes/__bin.php
%attr(644,root,root) %{prefix}/html/includes/__config.php
%attr(644,root,root) %{prefix}/html/includes/__configpack.php
%attr(644,root,root) %{prefix}/html/includes/__device.php
%attr(644,root,root) %{prefix}/html/includes/__folder.php
%attr(644,root,root) %{prefix}/html/includes/__image.php
%attr(644,root,root) %{prefix}/html/includes/__lab.php
%attr(644,root,root) %{prefix}/html/includes/functions.php
%attr(644,root,root) %{prefix}/html/js/jquery.countdown.js
%attr(644,root,root) %{prefix}/html/template_editor.css
%attr(644,root,root) %{prefix}/html/images/vcss.gif
%attr(644,root,root) %{prefix}/html/images/icon-gmail.jpg
%attr(644,root,root) %{prefix}/html/images/buttons/addimg.png
%attr(644,root,root) %{prefix}/html/images/buttons/img.png
%attr(644,root,root) %{prefix}/html/images/buttons/wipe.png
%attr(644,root,root) %{prefix}/html/images/buttons/config.png
%attr(644,root,root) %{prefix}/html/images/buttons/revert.png
%attr(644,root,root) %{prefix}/html/images/buttons/stop.png
%attr(644,root,root) %{prefix}/html/images/buttons/addconfig.png
%attr(644,root,root) %{prefix}/html/images/buttons/spacer_32.png
%attr(644,root,root) %{prefix}/html/images/buttons/lab.png
%attr(644,root,root) %{prefix}/html/images/buttons/revert_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/export_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/list.png
%attr(644,root,root) %{prefix}/html/images/buttons/database.png
%attr(644,root,root) %{prefix}/html/images/buttons/spacer_20.png
%attr(644,root,root) %{prefix}/html/images/buttons/folder.png
%attr(644,root,root) %{prefix}/html/images/buttons/snapshot.png
%attr(644,root,root) %{prefix}/html/images/buttons/play_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/edit.png
%attr(644,root,root) %{prefix}/html/images/buttons/wait.gif
%attr(644,root,root) %{prefix}/html/images/buttons/export.png
%attr(644,root,root) %{prefix}/html/images/buttons/console_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/binary.png
%attr(644,root,root) %{prefix}/html/images/buttons/addlab.png
%attr(644,root,root) %{prefix}/html/images/buttons/license.png
%attr(644,root,root) %{prefix}/html/images/buttons/console.png
%attr(644,root,root) %{prefix}/html/images/buttons/stop_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/wipe_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/addfolder.png
%attr(644,root,root) %{prefix}/html/images/buttons/wait_small.gif
%attr(644,root,root) %{prefix}/html/images/buttons/snapshot_small.png
%attr(644,root,root) %{prefix}/html/images/buttons/add.png
%attr(644,root,root) %{prefix}/html/images/buttons/play.png
%attr(644,root,root) %{prefix}/html/images/buttons/shellinabox.png
%attr(644,root,root) %{prefix}/html/images/buttons/shellinabox_small.png
%attr(644,root,root) %{prefix}/html/images/devices/server_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/l3switch_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/l3switch_running.png
%attr(644,root,root) %{prefix}/html/images/devices/mpls_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/cloud_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/router_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/hub.png
%attr(644,root,root) %{prefix}/html/images/devices/hub_running.png
%attr(644,root,root) %{prefix}/html/images/devices/hub_small.png
%attr(644,root,root) %{prefix}/html/images/devices/hub_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/router.png
%attr(644,root,root) %{prefix}/html/images/devices/mpls_running.png
%attr(644,root,root) %{prefix}/html/images/devices/router_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/server_running.png
%attr(644,root,root) %{prefix}/html/images/devices/switch_running.png
%attr(644,root,root) %{prefix}/html/images/devices/switch_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/server.png
%attr(644,root,root) %{prefix}/html/images/devices/l3switch_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/mpls_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/desktop_running.png
%attr(644,root,root) %{prefix}/html/images/devices/switch.png
%attr(644,root,root) %{prefix}/html/images/devices/cloud_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/framerelay.png
%attr(644,root,root) %{prefix}/html/images/devices/framerelay_running.png
%attr(644,root,root) %{prefix}/html/images/devices/switch_small.png
%attr(644,root,root) %{prefix}/html/images/devices/switch_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/mpls_small.png
%attr(644,root,root) %{prefix}/html/images/devices/server_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/cloud_running.png
%attr(644,root,root) %{prefix}/html/images/devices/l3switch_small.png
%attr(644,root,root) %{prefix}/html/images/devices/mpls_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/server_small.png
%attr(644,root,root) %{prefix}/html/images/devices/desktop_small.png
%attr(644,root,root) %{prefix}/html/images/devices/framerelay_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/desktop_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/cloud_small.png
%attr(644,root,root) %{prefix}/html/images/devices/router_running.png
%attr(644,root,root) %{prefix}/html/images/devices/mpls.png
%attr(644,root,root) %{prefix}/html/images/devices/desktop_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/switch_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/router_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/framerelay_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/desktop_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/server_small_running.png
%attr(644,root,root) %{prefix}/html/images/devices/l3switch.png
%attr(644,root,root) %{prefix}/html/images/devices/framerelay_small.png
%attr(644,root,root) %{prefix}/html/images/devices/cloud_small_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/router_small.png
%attr(644,root,root) %{prefix}/html/images/devices/desktop.png
%attr(644,root,root) %{prefix}/html/images/devices/framerelay_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/l3switch_stopped.png
%attr(644,root,root) %{prefix}/html/images/devices/cloud.png
%attr(644,root,root) %{prefix}/html/images/icon-plus.jpg
%attr(644,root,root) %{prefix}/html/images/icon-twitter.jpg
%attr(644,root,root) %{prefix}/html/images/icon-linkedin.jpg
%attr(644,root,root) %{prefix}/html/images/valid-xhtml10.png
%attr(644,root,root) %{prefix}/html/images/icon-wordpress.jpg
%attr(644,root,root) %{prefix}/html/index.php
%attr(644,root,root) %{prefix}/html/includes/conf.php
%attr(644,root,root) %{prefix}/html/favicon.ico
%attr(644,root,root) %{prefix}/html/ajax_helper.php
%attr(644,root,root) %{prefix}/html/update.php
%attr(644,root,root) %{prefix}/html/laboratories.php
%attr(644,root,root) %{prefix}/html/manage.php
%attr(644,root,root) %{prefix}/html/js/netmap.js.php
%attr(644,root,root) %{prefix}/html/js/jquery-1.8.2.min.js
%attr(644,root,root) %{prefix}/html/js/jquery.jsPlumb-1.3.14-all-min.js
%attr(644,root,root) %{prefix}/html/js/jquery.contextmenu.js
%attr(644,root,root) %{prefix}/html/js/jquery.validate.js
%attr(644,root,root) %{prefix}/html/js/jquery-ui-1.8.24.custom.min.js
%attr(644,root,root) %{prefix}/html/js/iou-web.js
%attr(644,root,root) %{prefix}/html/css/iou-web.css
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_highlight-hard_40_aaaaaa_1x100.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_diagonals-thick_8_333333_40x40.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-icons_ffcf29_256x240.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_glass_40_111111_1x400.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_glass_55_1c1c1c_1x400.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_flat_65_ffffff_40x100.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-icons_ededed_256x240.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-icons_bbbbbb_256x240.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-icons_222222_256x240.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_highlight-soft_50_aaaaaa_1x100.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-icons_ffffff_256x240.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_inset-hard_55_ffeb80_1x100.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-icons_4ca300_256x240.png
%attr(644,root,root) %{prefix}/html/css/black-tie/images/ui-bg_inset-hard_45_cd0a0a_1x100.png
%attr(644,root,root) %{prefix}/html/css/black-tie/jquery-ui-1.8.24.custom.css
%attr(644,root,root) %{prefix}/html/css/contextmenu/cmenu-human-menu-item-hover.gif
%attr(644,root,root) %{prefix}/html/css/contextmenu/cmenu-gloss-cyan-menu-item-hover.gif
%attr(644,root,root) %{prefix}/html/css/contextmenu/cmenu-osx-menu-item-hover.gif
%attr(644,root,root) %{prefix}/html/css/contextmenu/cmenu-gloss-menu-item-hover.gif
%attr(644,root,root) %{prefix}/html/css/contextmenu/cmenu-xp-bg.gif
%attr(644,root,root) %{prefix}/html/css/contextmenu/cmenu-vista-menu-item-hover.gif
%attr(644,root,root) %{prefix}/html/css/contextmenu/cmenu-gloss-semitransparent-menu-item-hover.png
%attr(644,root,root) %{prefix}/html/css/contextmenu/cmenu-vista-bg.gif
%attr(644,root,root) %{prefix}/html/css/jquery.contextmenu.css
%attr(644,root,root) %{prefix}/html/xinha/XinhaLoader.js
%attr(644,root,root) %{prefix}/html/xinha/release-notes.txt
%attr(644,root,root) %{prefix}/html/xinha/images/insert_table.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_color_fg.gif
%attr(644,root,root) %{prefix}/html/xinha/images/fullscreen_minimize.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_buttons_main.png
%attr(644,root,root) %{prefix}/html/xinha/images/ed_rmformat.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_format_italic.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_format_bold.gif
%attr(644,root,root) %{prefix}/html/xinha/images/insertmacro.png
%attr(644,root,root) %{prefix}/html/xinha/images/fullscreen_maximize.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_charmap.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_delete.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_copy.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_link.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_align_left.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_splitblock.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_align_center.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_print.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_format_sub.gif
%attr(644,root,root) %{prefix}/html/xinha/images/insertfilelink.gif
%attr(644,root,root) %{prefix}/html/xinha/images/de/underline.gif
%attr(644,root,root) %{prefix}/html/xinha/images/de/italic.gif
%attr(644,root,root) %{prefix}/html/xinha/images/de/bold.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_about.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_show_border.gif
%attr(644,root,root) %{prefix}/html/xinha/images/fr/underline.gif
%attr(644,root,root) %{prefix}/html/xinha/images/fr/strikethrough.gif
%attr(644,root,root) %{prefix}/html/xinha/images/fr/bold.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_indent_less.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_html.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_buttons_main.gif
%attr(644,root,root) %{prefix}/html/xinha/images/toggle_borders.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_killword.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_align_right.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_save.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-text-background-color.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/document-save.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/document-new.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-text-subscript.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/edit-copy.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-justify-right.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-justify-fill.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/edit-undo.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-text-color.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/folder-new.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-indent-more.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/view-fullscreen.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/insert-link.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/document-open.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-indent-less.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-text-underline.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/edit-select-all.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-text-italic.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/document-print.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/edit-redo.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-text-superscript.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/insert-table.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-text-strikethrough.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/toggle-borders.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-direction-left-to-right.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-direction-right-to-left.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/go-up.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-text-bold.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-justify-center.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/format-justify-left.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/actions/view-restore.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/apps/help-browser.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/apps/accessories-character-map.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/places/user-trash.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/16x16/mimetypes/image-x-generic.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/COPYING
%attr(644,root,root) %{prefix}/html/xinha/images/tango/32x32/apps/internet-web-browser.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/32x32/places/network-server.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/32x32/places/folder.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/32x32/mimetypes/x-office-document.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/32x32/mimetypes/text-html.png
%attr(644,root,root) %{prefix}/html/xinha/images/tango/32x32/mimetypes/text-x-generic.png
%attr(644,root,root) %{prefix}/html/xinha/images/ed_redo.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_selectall.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_format_strike.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_splitcel.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_list_num.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_clearfonts.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_list_bullet.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_paste.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_help.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_undo.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_format_underline.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_align_justify.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_save.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_color_bg.gif
%attr(644,root,root) %{prefix}/html/xinha/images/xinha_logo.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_right_to_left.gif
%attr(644,root,root) %{prefix}/html/xinha/images/tidy.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_word_cleaner.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_left_to_right.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_indent_more.gif
%attr(644,root,root) %{prefix}/html/xinha/images/xinha-small-icon.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_blank.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_cut.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_image.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_hr.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_format_sup.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_overwrite.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_custom.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_saveas.gif
%attr(644,root,root) %{prefix}/html/xinha/images/ed_align.gif
%attr(644,root,root) %{prefix}/html/xinha/popups/blank.html
%attr(644,root,root) %{prefix}/html/xinha/popups/popup.css
%attr(644,root,root) %{prefix}/html/xinha/popups/editor_help.html
%attr(644,root,root) %{prefix}/html/xinha/popups/select_color.html
%attr(644,root,root) %{prefix}/html/xinha/popups/popup.js
%attr(644,root,root) %{prefix}/html/xinha/XinhaCore.js
%attr(644,root,root) %{prefix}/html/xinha/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/lang/cz.js
%attr(644,root,root) %{prefix}/html/xinha/lang/b5.js
%attr(644,root,root) %{prefix}/html/xinha/lang/gb.js
%attr(644,root,root) %{prefix}/html/xinha/lang/th.js
%attr(644,root,root) %{prefix}/html/xinha/lang/hu.js
%attr(644,root,root) %{prefix}/html/xinha/lang/el.js
%attr(644,root,root) %{prefix}/html/xinha/lang/ch.js
%attr(644,root,root) %{prefix}/html/xinha/lang/lt.js
%attr(644,root,root) %{prefix}/html/xinha/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/lang/da.js
%attr(644,root,root) %{prefix}/html/xinha/lang/si.js
%attr(644,root,root) %{prefix}/html/xinha/lang/eu.js
%attr(644,root,root) %{prefix}/html/xinha/lang/sr.js
%attr(644,root,root) %{prefix}/html/xinha/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/lang/sh.js
%attr(644,root,root) %{prefix}/html/xinha/lang/he.js
%attr(644,root,root) %{prefix}/html/xinha/lang/vn.js
%attr(644,root,root) %{prefix}/html/xinha/lang/ro.js
%attr(644,root,root) %{prefix}/html/xinha/lang/fi.js
%attr(644,root,root) %{prefix}/html/xinha/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/lang/fa.js
%attr(644,root,root) %{prefix}/html/xinha/lang/sv.js
%attr(644,root,root) %{prefix}/html/xinha/lang/lv.js
%attr(644,root,root) %{prefix}/html/xinha/lang/ee.js
%attr(644,root,root) %{prefix}/html/xinha/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/lang/it.js
%attr(644,root,root) %{prefix}/html/xinha/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/license.txt
%attr(644,root,root) %{prefix}/html/xinha/modules/InsertTable/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/modules/InsertTable/pluginMethods.js
%attr(644,root,root) %{prefix}/html/xinha/modules/InsertTable/insert_table.js
%attr(644,root,root) %{prefix}/html/xinha/modules/InsertTable/insert_table.html
%attr(644,root,root) %{prefix}/html/xinha/modules/AboutBox/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/modules/AboutBox/about.css
%attr(644,root,root) %{prefix}/html/xinha/modules/AboutBox/AboutBox.js
%attr(644,root,root) %{prefix}/html/xinha/modules/InlineStyler/InlineStyler.js
%attr(644,root,root) %{prefix}/html/xinha/modules/InsertImage/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/modules/InsertImage/pluginMethods.js
%attr(644,root,root) %{prefix}/html/xinha/modules/InsertImage/insert_image.js
%attr(644,root,root) %{prefix}/html/xinha/modules/InsertImage/insert_image.html
%attr(644,root,root) %{prefix}/html/xinha/modules/GetHtml/DOMwalk.js
%attr(644,root,root) %{prefix}/html/xinha/modules/GetHtml/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/modules/GetHtml/TransformInnerHTML.js
%attr(644,root,root) %{prefix}/html/xinha/modules/Gecko/paraHandlerBest.js
%attr(644,root,root) %{prefix}/html/xinha/modules/Gecko/Gecko.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/sv.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/modules/FullScreen/full-screen.js
%attr(644,root,root) %{prefix}/html/xinha/modules/WebKit/WebKit.js
%attr(644,root,root) %{prefix}/html/xinha/modules/InternetExplorer/InternetExplorer.js
%attr(644,root,root) %{prefix}/html/xinha/modules/Dialogs/XinhaDialog.js
%attr(644,root,root) %{prefix}/html/xinha/modules/Dialogs/dialog.js
%attr(644,root,root) %{prefix}/html/xinha/modules/Dialogs/DetachedDialog.js
%attr(644,root,root) %{prefix}/html/xinha/modules/Dialogs/div-dialog.js
%attr(644,root,root) %{prefix}/html/xinha/modules/Dialogs/panel-dialog.js
%attr(644,root,root) %{prefix}/html/xinha/modules/Dialogs/popupwin.js
%attr(644,root,root) %{prefix}/html/xinha/modules/ColorPicker/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/modules/ColorPicker/ColorPicker.js
%attr(644,root,root) %{prefix}/html/xinha/modules/CreateLink/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/modules/CreateLink/link.js
%attr(644,root,root) %{prefix}/html/xinha/modules/CreateLink/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/modules/CreateLink/pluginMethods.js
%attr(644,root,root) %{prefix}/html/xinha/modules/CreateLink/link.html
%attr(644,root,root) %{prefix}/html/xinha/modules/Opera/Opera.js
%attr(644,root,root) %{prefix}/html/xinha/XinhaConfig.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveOnBlur/SaveOnBlur.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSServer/backend.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSServer/PSServer.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSServer/config.inc.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSServer/demo_images/wesnoth078.jpg
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSServer/demo_images/bikerpeep.jpg
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSServer/demo_images/.htaccess
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSServer/demo_images/linux/linux.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharCounter/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharCounter/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharCounter/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharCounter/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharCounter/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharCounter/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharCounter/CharCounter.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/img/ed_abbreviation.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/abbr/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/abbr/en.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/Abbreviation.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Abbreviation/abbreviation.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/lang/da.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/pluginMethods.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/filters/paragraph.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/filters/word.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/img/ed_superclean.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/SuperClean.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SuperClean/tidy.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/sv.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/square.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/lower-alpha.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/upper-roman.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/decimal.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/upper-alpha.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/lower-roman.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/none.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/circle.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/img/disc.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/ListType.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ListType/ListType.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/WysiwygWrap/WysiwygWrap.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CSS/CSS.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/lang-marks.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/LangMarks/LangMarks.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/img/SmartReplace.svg
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/img/smartquotes.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/SmartReplace.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SmartReplace/readme.txt
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/README
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/cz.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/hu.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/da.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/he.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/ro.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/aspell_setup.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/spell-check-logic.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/readme-tech.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/spell-check-ui.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/spell-check-logic.cgi
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/img/spell-check.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/img/he-spell-check.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/spell-check-savedicts.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/spell-check-ui.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/spell-check-style.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/SpellChecker/SpellChecker.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HorizontalRule/popups/edit_horizontal_rule.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/HorizontalRule/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HorizontalRule/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HorizontalRule/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HorizontalRule/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HorizontalRule/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HorizontalRule/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HorizontalRule/HorizontalRule.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/popups/docprop.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/he.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/ro.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/FullPage.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FullPage/img/docprop.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnsavedChanges/UnsavedChanges.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnsavedChanges/lang/fr_ca.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnsavedChanges/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnsavedChanges/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/popups/set_id.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/SetId.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/img/placeholder.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/img/set-id.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/SetId/set-id.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/README.txt
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/SaveSubmit.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/img/ed_save_green.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/SaveSubmit/img/ed_save_red.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/el.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/he.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/sv.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/menu.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/ContextMenu/ContextMenu.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/GetHtml/GetHtml.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HtmlEntities/Entities.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HtmlEntities/iso-8859-1.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/HtmlEntities/HtmlEntities.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/DefinitionList/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/DefinitionList/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/DefinitionList/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/DefinitionList/img/ed_dd.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/DefinitionList/img/ed_dl.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/DefinitionList/img/ed_dt.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/DefinitionList/definition-list.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/DefinitionList/DefinitionList.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertPagebreak/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertPagebreak/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertPagebreak/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertPagebreak/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertPagebreak/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertPagebreak/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertPagebreak/InsertPagebreak.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertPagebreak/img/pagebreak.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/newFolder.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/backend.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/thumbs.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/sv.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/ddt.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/manager.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/README.txt
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/editor.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/JSON_Compat.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/ImageEditor.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/JSON.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/Files.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/GD.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/Thumbnail.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/Flickr.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/IM.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/Transform.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/NetPBM.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/Classes/ImageManager.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/swfobject/swfobject.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/swfobject/swfobject_source.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/swfobject/expressinstall.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/swfobject/expressinstall.swf
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/config.inc.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/editorFrame.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/resizer.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/youtube.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/t_white.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/save.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/unlocked.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/btn_ok.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/btnFolderUp.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/edit_active.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/2x2.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/measure.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/hand.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/folder.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/islocked2.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/t_black.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/btn_cancel.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/dots.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/2x2_w.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/locked.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/btnFolderNew.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/scale.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/div.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/noimages.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/rotate.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/crop.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/spacer.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/unlocked2.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/edit_trash.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/edit_pencil.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/img/default.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/image-picker.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/demo_images/wesnoth078.jpg
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/demo_images/bikerpeep.jpg
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/demo_images/.htaccess
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/demo_images/linux/linux.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/demo_images/linux/.htaccess
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/ImageManager.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/ImageEditor.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/editor.css_uncompr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/dialog.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/imagelist.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/editor.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/editor.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/EditorContent.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/manager.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/images.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/manager.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/editorFrame.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/hover.htc
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/popup.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/slider.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/wz_jsgraphics.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/assets/editorFrame.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/flickr.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/smart-image.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ImageManager/images.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/PreserveScripts/PreserveScripts.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PreserveScripts/php.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/PreserveScripts/js.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/PreserveScripts/php.svg
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSFixed/PSFixed.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/InsertAnchor.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/popups/insert_anchor.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/img/insert-anchor.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/img/placeholder.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertAnchor/insert-anchor.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSLocal/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSLocal/PSLocal.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PSLocal/gears_init.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/dtree.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/plusbottom.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/imgfolder.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/move.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/minusbottom.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/page.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/cd.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/plus.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/line.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/base.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/empty.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/trash.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/globe.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/folder.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/minus.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/copy.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/folderopen.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/question.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/offline.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/joinbottom.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/nolines_minus.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/musicfolder.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/join.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/nolines_plus.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/img/offline.png
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/api.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/example01.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dTree/dtree.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/pluginMethods.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/scan.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/Linker.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Linker/link-picker.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/popups/find_replace.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/sv.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/FindReplace.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/fr_engine.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FindReplace/img/ed_find.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/popups/paste_text.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/PasteText.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/PasteText/img/ed_paste_text.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/GenericPlugin/GenericPlugin.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/CharacterMap.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/popups/select_character.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/sv.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/it.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/CharacterMap.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/CharacterMap/img/ed_charmap.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertNote/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertNote/img/insert-note.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertNote/InsertNote.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/InsertSnippet2.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/snippets.xml
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/snippets.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/5.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/8.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/ed_snippet.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/16.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/10.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/15.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/3.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/6.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/2.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/4.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/12.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/9.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/14.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/1.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/13.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/11.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/img/7.PNG
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/InsertSnippet.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/InsertSnippet2/readme.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/Stylist.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Stylist/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/UnFormat.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/dialog.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/UnFormat/img/unformat.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/README
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/formmail.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/panel.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/default_form.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/iframe.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/FormOperations.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/FormOperations/img/buttons.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/CSSPicker/CSSPicker.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/popups/dialogMergeCells.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/popups/merge_cells.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/popups/dialogTable.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/popups/dialogRowCell.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/cz.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/el.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/da.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/ru.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/he.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/ro.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/fi.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/sv.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/it.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/col-insert-before.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/cell-insert-after.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/cell-insert-before.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/row-split.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/cell-prop.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/col-split.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/cell-merge.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/row-delete.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/col-delete.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/row-prop.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/row-insert-under.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/cell-split.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/row-insert-above.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/cell-delete.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/col-insert-after.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/img/table-prop.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/TableOperations/TableOperations.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/popups/label.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/popups/input.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/popups/textarea.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/popups/fieldset.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/popups/form.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/popups/select.html
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/forms.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_reset.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_text.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_radio.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_file.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_textarea.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_submit.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_checkbox.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_fieldset.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_button.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_password.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_form.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_select.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_image.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_hidden.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/img/ed_label.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/Forms/Forms.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/backend.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/thumbs.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/nl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/nb.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/pl.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/da.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/fr.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/de.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/es.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/pt_br.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/lang/ja.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/manager.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/js_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/xls.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/html_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/gz.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/pdf_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/pdf.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/php.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/js.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/txt.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/ppt_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/mov_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/def_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/php_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/txt_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/gif_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/ppt.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/folder.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/jpg_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/rar_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/def.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/xls_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/rar.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/zip.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/html.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/gz_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/zip_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/folder_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/mov.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/doc_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/fla.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/fla_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/doc.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/icons/png_small.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/editor.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/Classes/ExtendedFileManager.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/config.inc.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/Readme.txt
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/editorFrame.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/resizer.php
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/file-picker.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/1x1_transparent.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/t_white.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/save.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/ed_linkfile.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/unlocked.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/btn_ok.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/btnFolderUp.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/edit_cut.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/edit_active.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/unlocked_empty.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/2x2.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/btnFolderUp1.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/edit_rename.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/edit_paste.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/measure.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/hand.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/ed_linkfile1.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/folder.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/islocked2.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/edit_copy.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/t_black.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/btn_cancel.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/dots.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/2x2_w.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/locked.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/btnFolderNew.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/scale.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/div.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/noimages.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/rotate.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/btnFolderNew1.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/crop.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/spacer.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/unlocked2.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/edit_trash.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/edit_pencil.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/img/default.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/demo_images/wesnoth078.jpg
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/demo_images/bikerpeep.jpg
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/demo_images/.htaccess
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/demo_images/linux/linux.gif
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/assets/ImageEditor.css
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/assets/dialog.js
%attr(644,root,root) %{prefix}/html/xinha/plugins/ExtendedFileManager/assets/imagelist.css