forked from browsermedia/browsercms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
browsercms.gemspec
1313 lines (1309 loc) · 67.9 KB
/
browsercms.gemspec
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
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{browsercms}
s.version = "3.0.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["BrowserMedia"]
s.date = %q{2009-10-06}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE.txt",
"README.markdown"
]
s.files = [
"app/controllers/application_controller.rb",
"app/controllers/cms/application_controller.rb",
"app/controllers/cms/attachments_controller.rb",
"app/controllers/cms/base_controller.rb",
"app/controllers/cms/cache_controller.rb",
"app/controllers/cms/categories_controller.rb",
"app/controllers/cms/category_types_controller.rb",
"app/controllers/cms/connectors_controller.rb",
"app/controllers/cms/content_block_controller.rb",
"app/controllers/cms/content_controller.rb",
"app/controllers/cms/content_types_controller.rb",
"app/controllers/cms/dashboard_controller.rb",
"app/controllers/cms/dynamic_views_controller.rb",
"app/controllers/cms/email_messages_controller.rb",
"app/controllers/cms/error_handling.rb",
"app/controllers/cms/file_blocks_controller.rb",
"app/controllers/cms/groups_controller.rb",
"app/controllers/cms/home_controller.rb",
"app/controllers/cms/html_blocks_controller.rb",
"app/controllers/cms/image_blocks_controller.rb",
"app/controllers/cms/links_controller.rb",
"app/controllers/cms/page_route_conditions_controller.rb",
"app/controllers/cms/page_route_options_controller.rb",
"app/controllers/cms/page_route_requirements_controller.rb",
"app/controllers/cms/page_routes_controller.rb",
"app/controllers/cms/pages_controller.rb",
"app/controllers/cms/portlet_controller.rb",
"app/controllers/cms/portlets_controller.rb",
"app/controllers/cms/redirects_controller.rb",
"app/controllers/cms/resource_controller.rb",
"app/controllers/cms/routes_controller.rb",
"app/controllers/cms/section_nodes_controller.rb",
"app/controllers/cms/sections_controller.rb",
"app/controllers/cms/sessions_controller.rb",
"app/controllers/cms/tags_controller.rb",
"app/controllers/cms/tasks_controller.rb",
"app/controllers/cms/toolbar_controller.rb",
"app/controllers/cms/users_controller.rb",
"app/helpers/application_helper.rb",
"app/helpers/cms/application_helper.rb",
"app/helpers/cms/form_builder.rb",
"app/helpers/cms/form_tag_helper.rb",
"app/helpers/cms/menu_helper.rb",
"app/helpers/cms/page_helper.rb",
"app/helpers/cms/path_helper.rb",
"app/helpers/cms/section_nodes_helper.rb",
"app/helpers/cms/template_support.rb",
"app/models/abstract_file_block.rb",
"app/models/attachment.rb",
"app/models/category.rb",
"app/models/category_type.rb",
"app/models/connector.rb",
"app/models/content_type.rb",
"app/models/content_type_group.rb",
"app/models/dynamic_view.rb",
"app/models/email_message.rb",
"app/models/email_message_mailer.rb",
"app/models/file_block.rb",
"app/models/group.rb",
"app/models/group_permission.rb",
"app/models/group_section.rb",
"app/models/group_type.rb",
"app/models/group_type_permission.rb",
"app/models/guest_user.rb",
"app/models/html_block.rb",
"app/models/image_block.rb",
"app/models/link.rb",
"app/models/page.rb",
"app/models/page_partial.rb",
"app/models/page_route.rb",
"app/models/page_route_condition.rb",
"app/models/page_route_option.rb",
"app/models/page_route_requirement.rb",
"app/models/page_template.rb",
"app/models/permission.rb",
"app/models/portlet.rb",
"app/models/redirect.rb",
"app/models/section.rb",
"app/models/section_node.rb",
"app/models/site.rb",
"app/models/tag.rb",
"app/models/tagging.rb",
"app/models/task.rb",
"app/models/user.rb",
"app/models/user_group_membership.rb",
"app/portlets/dynamic_portlet.rb",
"app/portlets/email_page_portlet.rb",
"app/portlets/login_portlet.rb",
"app/portlets/tag_cloud_portlet.rb",
"app/views/cms/blocks/_hidden_fields.html.erb",
"app/views/cms/blocks/_toolbar.html.erb",
"app/views/cms/blocks/_toolbar_for_collection.html.erb",
"app/views/cms/blocks/_toolbar_for_member.html.erb",
"app/views/cms/blocks/edit.html.erb",
"app/views/cms/blocks/index.html.erb",
"app/views/cms/blocks/new.html.erb",
"app/views/cms/blocks/show.html.erb",
"app/views/cms/blocks/usages.html.erb",
"app/views/cms/blocks/versions.html.erb",
"app/views/cms/cache/show.html.erb",
"app/views/cms/categories/_form.html.erb",
"app/views/cms/category_types/_form.html.erb",
"app/views/cms/connectors/new.html.erb",
"app/views/cms/content/no_page.html.erb",
"app/views/cms/content/show.html.erb",
"app/views/cms/content_types/index.html.erb",
"app/views/cms/dashboard/_page_drafts.html.erb",
"app/views/cms/dashboard/_tasks.html.erb",
"app/views/cms/dashboard/index.html.erb",
"app/views/cms/dynamic_views/_form.html.erb",
"app/views/cms/dynamic_views/edit.html.erb",
"app/views/cms/dynamic_views/index.html.erb",
"app/views/cms/dynamic_views/new.html.erb",
"app/views/cms/email_messages/index.html.erb",
"app/views/cms/email_messages/show.html.erb",
"app/views/cms/file_blocks/_form.html.erb",
"app/views/cms/file_blocks/render.html.erb",
"app/views/cms/form_builder/_cms_date_picker.html.erb",
"app/views/cms/form_builder/_cms_datetime_select.html.erb",
"app/views/cms/form_builder/_cms_drop_down.html.erb",
"app/views/cms/form_builder/_cms_file_field.html.erb",
"app/views/cms/form_builder/_cms_tag_list.html.erb",
"app/views/cms/form_builder/_cms_text_area.html.erb",
"app/views/cms/form_builder/_cms_text_editor.html.erb",
"app/views/cms/form_builder/_cms_text_field.html.erb",
"app/views/cms/groups/_form.html.erb",
"app/views/cms/groups/_permissions.html.erb",
"app/views/cms/groups/_sections.html.erb",
"app/views/cms/groups/edit.html.erb",
"app/views/cms/groups/index.html.erb",
"app/views/cms/groups/new.html.erb",
"app/views/cms/html_blocks/_form.html.erb",
"app/views/cms/html_blocks/render.html.erb",
"app/views/cms/image_blocks/_form.html.erb",
"app/views/cms/image_blocks/render.html.erb",
"app/views/cms/links/_form.html.erb",
"app/views/cms/links/destroy.js.rjs",
"app/views/cms/links/edit.html.erb",
"app/views/cms/links/new.html.erb",
"app/views/cms/page_routes/_form.html.erb",
"app/views/cms/page_routes/edit.html.erb",
"app/views/cms/page_routes/index.html.erb",
"app/views/cms/page_routes/new.html.erb",
"app/views/cms/page_routes/show.html.erb",
"app/views/cms/pages/_edit_connector.html.erb",
"app/views/cms/pages/_edit_container.html.erb",
"app/views/cms/pages/_form.html.erb",
"app/views/cms/pages/edit.html.erb",
"app/views/cms/pages/new.html.erb",
"app/views/cms/pages/versions.html.erb",
"app/views/cms/redirects/_form.html.erb",
"app/views/cms/redirects/edit.html.erb",
"app/views/cms/redirects/index.html.erb",
"app/views/cms/redirects/new.html.erb",
"app/views/cms/routes/index.html.erb",
"app/views/cms/section_nodes/_link.html.erb",
"app/views/cms/section_nodes/_node.html.erb",
"app/views/cms/section_nodes/_page.html.erb",
"app/views/cms/section_nodes/_section.html.erb",
"app/views/cms/section_nodes/_section_node.html.erb",
"app/views/cms/section_nodes/index.html.erb",
"app/views/cms/sections/_form.html.erb",
"app/views/cms/sections/_page.html.erb",
"app/views/cms/sections/_section.html.erb",
"app/views/cms/sections/destroy.js.rjs",
"app/views/cms/sections/edit.html.erb",
"app/views/cms/sections/file_browser.xml.builder",
"app/views/cms/sections/index.html.erb",
"app/views/cms/sections/new.html.erb",
"app/views/cms/sessions/new.html.erb",
"app/views/cms/shared/_admin_sidebar.html.erb",
"app/views/cms/shared/_exception.html.erb",
"app/views/cms/shared/_pagination.html.erb",
"app/views/cms/shared/_version_conflict_diff.html.erb",
"app/views/cms/shared/_version_conflict_error.html.erb",
"app/views/cms/shared/error.html.erb",
"app/views/cms/tags/_form.html.erb",
"app/views/cms/tags/render.html.erb",
"app/views/cms/tasks/new.html.erb",
"app/views/cms/toolbar/index.html.erb",
"app/views/cms/users/_form.html.erb",
"app/views/cms/users/_groups.html.erb",
"app/views/cms/users/_password.html.erb",
"app/views/cms/users/_toolbar.html.erb",
"app/views/cms/users/_user_fields.html.erb",
"app/views/cms/users/change_password.html.erb",
"app/views/cms/users/edit.html.erb",
"app/views/cms/users/index.html.erb",
"app/views/cms/users/new.html.erb",
"app/views/layouts/_cms_toolbar.html.erb",
"app/views/layouts/_page_toolbar.html.erb",
"app/views/layouts/application.html.erb",
"app/views/layouts/cms/_footer.erb",
"app/views/layouts/cms/_head.html.erb",
"app/views/layouts/cms/administration.html.erb",
"app/views/layouts/cms/application.html.erb",
"app/views/layouts/cms/content_library.html.erb",
"app/views/layouts/cms/dashboard.html.erb",
"app/views/layouts/cms/login.html.erb",
"app/views/layouts/cms/section_nodes.html.erb",
"app/views/layouts/cms/thickbox.html.erb",
"app/views/layouts/cms/toolbar.html.erb",
"app/views/portlets/dynamic/_form.html.erb",
"app/views/portlets/email_page/_form.html.erb",
"app/views/portlets/email_page/render.html.erb",
"app/views/portlets/login/_form.html.erb",
"app/views/portlets/login/render.html.erb",
"app/views/portlets/portlets/_form.html.erb",
"app/views/portlets/tag_cloud/_form.html.erb",
"app/views/portlets/tag_cloud/render.html.erb",
"browsercms.gemspec",
"db/demo/data.rb",
"db/demo/page_partials/_footer.html.erb",
"db/demo/page_partials/_header.html.erb",
"db/demo/page_templates/home_page.html.erb",
"db/demo/page_templates/sub_page.html.erb",
"db/migrate/20080815014337_browsercms_3_0_0.rb",
"db/migrate/20081114172307_load_seed_data.rb",
"doc/app/classes/AbstractFileBlock.html",
"doc/app/classes/ActiveRecord.html",
"doc/app/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html",
"doc/app/classes/ActiveSupport.html",
"doc/app/classes/ActiveSupport/Cache.html",
"doc/app/classes/ActiveSupport/Cache/FileStore.html",
"doc/app/classes/ActsAsList.html",
"doc/app/classes/ActsAsList/ClassMethods.html",
"doc/app/classes/ActsAsList/InstanceMethods.html",
"doc/app/classes/ApplicationController.html",
"doc/app/classes/ApplicationHelper.html",
"doc/app/classes/Attachment.html",
"doc/app/classes/Category.html",
"doc/app/classes/CategoryType.html",
"doc/app/classes/Cms.html",
"doc/app/classes/Cms/Acts.html",
"doc/app/classes/Cms/Acts/ContentBlock.html",
"doc/app/classes/Cms/Acts/ContentBlock/MacroMethods.html",
"doc/app/classes/Cms/Acts/ContentBlock/MacroMethods/InstanceMethods.html",
"doc/app/classes/Cms/ApplicationController.html",
"doc/app/classes/Cms/ApplicationHelper.html",
"doc/app/classes/Cms/AttachmentsController.html",
"doc/app/classes/Cms/Authentication.html",
"doc/app/classes/Cms/Authentication/Controller.html",
"doc/app/classes/Cms/Authentication/Model.html",
"doc/app/classes/Cms/Authentication/Model/ClassMethods.html",
"doc/app/classes/Cms/Authentication/Model/InstanceMethods.html",
"doc/app/classes/Cms/BaseController.html",
"doc/app/classes/Cms/Behaviors.html",
"doc/app/classes/Cms/Behaviors/Archiving.html",
"doc/app/classes/Cms/Behaviors/Archiving/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Archiving/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/Attaching.html",
"doc/app/classes/Cms/Behaviors/Attaching/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Attaching/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/Categorizing.html",
"doc/app/classes/Cms/Behaviors/Categorizing/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Categorizing/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Categorizing/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Connecting.html",
"doc/app/classes/Cms/Behaviors/Connecting/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Connecting/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Connecting/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/DynamicAttributes.html",
"doc/app/classes/Cms/Behaviors/DynamicAttributes/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/DynamicAttributes/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/FlushCacheOnChange.html",
"doc/app/classes/Cms/Behaviors/FlushCacheOnChange/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/FlushCacheOnChange/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/Hiding.html",
"doc/app/classes/Cms/Behaviors/Hiding/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Hiding/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Hiding/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Pagination.html",
"doc/app/classes/Cms/Behaviors/Pagination/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Pagination/Collection.html",
"doc/app/classes/Cms/Behaviors/Pagination/InvalidPage.html",
"doc/app/classes/Cms/Behaviors/Publishing.html",
"doc/app/classes/Cms/Behaviors/Publishing/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Publishing/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Publishing/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/Rendering.html",
"doc/app/classes/Cms/Behaviors/Rendering/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/Searching.html",
"doc/app/classes/Cms/Behaviors/Searching/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Searching/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/SoftDeleting.html",
"doc/app/classes/Cms/Behaviors/SoftDeleting/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/SoftDeleting/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/SoftDeleting/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/Taggable.html",
"doc/app/classes/Cms/Behaviors/Taggable/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Taggable/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Taggable/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/Userstamping.html",
"doc/app/classes/Cms/Behaviors/Userstamping/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Userstamping/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Userstamping/MacroMethods.html",
"doc/app/classes/Cms/Behaviors/Versioning.html",
"doc/app/classes/Cms/Behaviors/Versioning/ClassMethods.html",
"doc/app/classes/Cms/Behaviors/Versioning/InstanceMethods.html",
"doc/app/classes/Cms/Behaviors/Versioning/MacroMethods.html",
"doc/app/classes/Cms/CacheController.html",
"doc/app/classes/Cms/Caching.html",
"doc/app/classes/Cms/CategoriesController.html",
"doc/app/classes/Cms/CategoryTypesController.html",
"doc/app/classes/Cms/ConnectorsController.html",
"doc/app/classes/Cms/ContentBlockController.html",
"doc/app/classes/Cms/ContentController.html",
"doc/app/classes/Cms/ContentTypesController.html",
"doc/app/classes/Cms/DashboardController.html",
"doc/app/classes/Cms/DataLoader.html",
"doc/app/classes/Cms/DynamicViewsController.html",
"doc/app/classes/Cms/EmailMessagesController.html",
"doc/app/classes/Cms/ErrorHandling.html",
"doc/app/classes/Cms/Errors.html",
"doc/app/classes/Cms/Errors/AccessDenied.html",
"doc/app/classes/Cms/Extensions.html",
"doc/app/classes/Cms/Extensions/ActionView.html",
"doc/app/classes/Cms/Extensions/ActionView/Base.html",
"doc/app/classes/Cms/Extensions/ActiveRecord.html",
"doc/app/classes/Cms/Extensions/ActiveRecord/Base.html",
"doc/app/classes/Cms/Extensions/ActiveRecord/Errors.html",
"doc/app/classes/Cms/Extensions/Hash.html",
"doc/app/classes/Cms/Extensions/Integer.html",
"doc/app/classes/Cms/Extensions/NilClass.html",
"doc/app/classes/Cms/Extensions/String.html",
"doc/app/classes/Cms/FileBlocksController.html",
"doc/app/classes/Cms/FormBuilder.html",
"doc/app/classes/Cms/FormTagHelper.html",
"doc/app/classes/Cms/GroupsController.html",
"doc/app/classes/Cms/HomeController.html",
"doc/app/classes/Cms/HtmlBlocksController.html",
"doc/app/classes/Cms/ImageBlocksController.html",
"doc/app/classes/Cms/LinksController.html",
"doc/app/classes/Cms/MenuHelper.html",
"doc/app/classes/Cms/PageHelper.html",
"doc/app/classes/Cms/PageRouteConditionsController.html",
"doc/app/classes/Cms/PageRouteOptionsController.html",
"doc/app/classes/Cms/PageRouteRequirementsController.html",
"doc/app/classes/Cms/PageRoutesController.html",
"doc/app/classes/Cms/PagesController.html",
"doc/app/classes/Cms/PathHelper.html",
"doc/app/classes/Cms/PortletController.html",
"doc/app/classes/Cms/PortletsController.html",
"doc/app/classes/Cms/RedirectsController.html",
"doc/app/classes/Cms/ResourceController.html",
"doc/app/classes/Cms/Routes.html",
"doc/app/classes/Cms/RoutesController.html",
"doc/app/classes/Cms/SectionNodesController.html",
"doc/app/classes/Cms/SectionNodesHelper.html",
"doc/app/classes/Cms/SectionsController.html",
"doc/app/classes/Cms/SessionsController.html",
"doc/app/classes/Cms/TagsController.html",
"doc/app/classes/Cms/TasksController.html",
"doc/app/classes/Cms/ToolbarController.html",
"doc/app/classes/Cms/UsersController.html",
"doc/app/classes/Connector.html",
"doc/app/classes/ContentType.html",
"doc/app/classes/ContentTypeGroup.html",
"doc/app/classes/DynamicPortlet.html",
"doc/app/classes/DynamicView.html",
"doc/app/classes/EmailMessage.html",
"doc/app/classes/EmailMessageMailer.html",
"doc/app/classes/EmailPagePortlet.html",
"doc/app/classes/FileBlock.html",
"doc/app/classes/Group.html",
"doc/app/classes/GroupPermission.html",
"doc/app/classes/GroupSection.html",
"doc/app/classes/GroupType.html",
"doc/app/classes/GroupTypePermission.html",
"doc/app/classes/GuestUser.html",
"doc/app/classes/HtmlBlock.html",
"doc/app/classes/ImageBlock.html",
"doc/app/classes/InitialData.html",
"doc/app/classes/Link.html",
"doc/app/classes/LoginPortlet.html",
"doc/app/classes/Page.html",
"doc/app/classes/PagePartial.html",
"doc/app/classes/PageRoute.html",
"doc/app/classes/PageRouteCondition.html",
"doc/app/classes/PageRouteOption.html",
"doc/app/classes/PageRouteRequirement.html",
"doc/app/classes/PageTemplate.html",
"doc/app/classes/Permission.html",
"doc/app/classes/Portlet.html",
"doc/app/classes/Redirect.html",
"doc/app/classes/Section.html",
"doc/app/classes/SectionNode.html",
"doc/app/classes/Sequence.html",
"doc/app/classes/Site.html",
"doc/app/classes/Tag.html",
"doc/app/classes/TagCloudPortlet.html",
"doc/app/classes/Tagging.html",
"doc/app/classes/Task.html",
"doc/app/classes/User.html",
"doc/app/classes/UserGroupMembership.html",
"doc/app/created.rid",
"doc/app/files/app/controllers/application_controller_rb.html",
"doc/app/files/app/controllers/cms/application_controller_rb.html",
"doc/app/files/app/controllers/cms/attachments_controller_rb.html",
"doc/app/files/app/controllers/cms/base_controller_rb.html",
"doc/app/files/app/controllers/cms/cache_controller_rb.html",
"doc/app/files/app/controllers/cms/categories_controller_rb.html",
"doc/app/files/app/controllers/cms/category_types_controller_rb.html",
"doc/app/files/app/controllers/cms/connectors_controller_rb.html",
"doc/app/files/app/controllers/cms/content_block_controller_rb.html",
"doc/app/files/app/controllers/cms/content_controller_rb.html",
"doc/app/files/app/controllers/cms/content_types_controller_rb.html",
"doc/app/files/app/controllers/cms/dashboard_controller_rb.html",
"doc/app/files/app/controllers/cms/dynamic_views_controller_rb.html",
"doc/app/files/app/controllers/cms/email_messages_controller_rb.html",
"doc/app/files/app/controllers/cms/error_handling_rb.html",
"doc/app/files/app/controllers/cms/file_blocks_controller_rb.html",
"doc/app/files/app/controllers/cms/groups_controller_rb.html",
"doc/app/files/app/controllers/cms/home_controller_rb.html",
"doc/app/files/app/controllers/cms/html_blocks_controller_rb.html",
"doc/app/files/app/controllers/cms/image_blocks_controller_rb.html",
"doc/app/files/app/controllers/cms/links_controller_rb.html",
"doc/app/files/app/controllers/cms/page_route_conditions_controller_rb.html",
"doc/app/files/app/controllers/cms/page_route_options_controller_rb.html",
"doc/app/files/app/controllers/cms/page_route_requirements_controller_rb.html",
"doc/app/files/app/controllers/cms/page_routes_controller_rb.html",
"doc/app/files/app/controllers/cms/pages_controller_rb.html",
"doc/app/files/app/controllers/cms/portlet_controller_rb.html",
"doc/app/files/app/controllers/cms/portlets_controller_rb.html",
"doc/app/files/app/controllers/cms/redirects_controller_rb.html",
"doc/app/files/app/controllers/cms/resource_controller_rb.html",
"doc/app/files/app/controllers/cms/routes_controller_rb.html",
"doc/app/files/app/controllers/cms/section_nodes_controller_rb.html",
"doc/app/files/app/controllers/cms/sections_controller_rb.html",
"doc/app/files/app/controllers/cms/sessions_controller_rb.html",
"doc/app/files/app/controllers/cms/tags_controller_rb.html",
"doc/app/files/app/controllers/cms/tasks_controller_rb.html",
"doc/app/files/app/controllers/cms/toolbar_controller_rb.html",
"doc/app/files/app/controllers/cms/users_controller_rb.html",
"doc/app/files/app/helpers/application_helper_rb.html",
"doc/app/files/app/helpers/cms/application_helper_rb.html",
"doc/app/files/app/helpers/cms/form_builder_rb.html",
"doc/app/files/app/helpers/cms/form_tag_helper_rb.html",
"doc/app/files/app/helpers/cms/menu_helper_rb.html",
"doc/app/files/app/helpers/cms/page_helper_rb.html",
"doc/app/files/app/helpers/cms/path_helper_rb.html",
"doc/app/files/app/helpers/cms/section_nodes_helper_rb.html",
"doc/app/files/app/models/abstract_file_block_rb.html",
"doc/app/files/app/models/attachment_rb.html",
"doc/app/files/app/models/category_rb.html",
"doc/app/files/app/models/category_type_rb.html",
"doc/app/files/app/models/connector_rb.html",
"doc/app/files/app/models/content_type_group_rb.html",
"doc/app/files/app/models/content_type_rb.html",
"doc/app/files/app/models/dynamic_view_rb.html",
"doc/app/files/app/models/email_message_mailer_rb.html",
"doc/app/files/app/models/email_message_rb.html",
"doc/app/files/app/models/file_block_rb.html",
"doc/app/files/app/models/group_permission_rb.html",
"doc/app/files/app/models/group_rb.html",
"doc/app/files/app/models/group_section_rb.html",
"doc/app/files/app/models/group_type_permission_rb.html",
"doc/app/files/app/models/group_type_rb.html",
"doc/app/files/app/models/guest_user_rb.html",
"doc/app/files/app/models/html_block_rb.html",
"doc/app/files/app/models/image_block_rb.html",
"doc/app/files/app/models/link_rb.html",
"doc/app/files/app/models/page_partial_rb.html",
"doc/app/files/app/models/page_rb.html",
"doc/app/files/app/models/page_route_condition_rb.html",
"doc/app/files/app/models/page_route_option_rb.html",
"doc/app/files/app/models/page_route_rb.html",
"doc/app/files/app/models/page_route_requirement_rb.html",
"doc/app/files/app/models/page_template_rb.html",
"doc/app/files/app/models/permission_rb.html",
"doc/app/files/app/models/portlet_rb.html",
"doc/app/files/app/models/redirect_rb.html",
"doc/app/files/app/models/section_node_rb.html",
"doc/app/files/app/models/section_rb.html",
"doc/app/files/app/models/site_rb.html",
"doc/app/files/app/models/tag_rb.html",
"doc/app/files/app/models/tagging_rb.html",
"doc/app/files/app/models/task_rb.html",
"doc/app/files/app/models/user_group_membership_rb.html",
"doc/app/files/app/models/user_rb.html",
"doc/app/files/app/portlets/dynamic_portlet_rb.html",
"doc/app/files/app/portlets/email_page_portlet_rb.html",
"doc/app/files/app/portlets/login_portlet_rb.html",
"doc/app/files/app/portlets/tag_cloud_portlet_rb.html",
"doc/app/files/doc/README_FOR_APP.html",
"doc/app/files/lib/acts_as_list_rb.html",
"doc/app/files/lib/browsercms_rb.html",
"doc/app/files/lib/cms/acts/content_block_rb.html",
"doc/app/files/lib/cms/authentication/controller_rb.html",
"doc/app/files/lib/cms/authentication/model_rb.html",
"doc/app/files/lib/cms/behaviors/archiving_rb.html",
"doc/app/files/lib/cms/behaviors/attaching_rb.html",
"doc/app/files/lib/cms/behaviors/categorizing_rb.html",
"doc/app/files/lib/cms/behaviors/connecting_rb.html",
"doc/app/files/lib/cms/behaviors/dynamic_attributes_rb.html",
"doc/app/files/lib/cms/behaviors/flush_cache_on_change_rb.html",
"doc/app/files/lib/cms/behaviors/hiding_rb.html",
"doc/app/files/lib/cms/behaviors/pagination_rb.html",
"doc/app/files/lib/cms/behaviors/publishing_rb.html",
"doc/app/files/lib/cms/behaviors/rendering_rb.html",
"doc/app/files/lib/cms/behaviors/searching_rb.html",
"doc/app/files/lib/cms/behaviors/soft_deleting_rb.html",
"doc/app/files/lib/cms/behaviors/taggable_rb.html",
"doc/app/files/lib/cms/behaviors/userstamping_rb.html",
"doc/app/files/lib/cms/behaviors/versioning_rb.html",
"doc/app/files/lib/cms/behaviors_rb.html",
"doc/app/files/lib/cms/caching_rb.html",
"doc/app/files/lib/cms/data_loader_rb.html",
"doc/app/files/lib/cms/extensions/action_view/base_rb.html",
"doc/app/files/lib/cms/extensions/active_record/base_rb.html",
"doc/app/files/lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements_rb.html",
"doc/app/files/lib/cms/extensions/active_record/errors_rb.html",
"doc/app/files/lib/cms/extensions/active_support/cache/file_store_rb.html",
"doc/app/files/lib/cms/extensions/hash_rb.html",
"doc/app/files/lib/cms/extensions/integer_rb.html",
"doc/app/files/lib/cms/extensions/nil_rb.html",
"doc/app/files/lib/cms/extensions/string_rb.html",
"doc/app/files/lib/cms/extensions_rb.html",
"doc/app/files/lib/cms/init_rb.html",
"doc/app/files/lib/cms/routes_rb.html",
"doc/app/files/lib/initial_data_rb.html",
"doc/app/files/lib/sequence_rb.html",
"doc/app/fr_class_index.html",
"doc/app/fr_file_index.html",
"doc/app/fr_method_index.html",
"doc/app/index.html",
"doc/app/rdoc-style.css",
"doc/guides/html/build_it_yourself.html",
"doc/guides/html/building_modules.html",
"doc/guides/html/deployment_guide.html",
"doc/guides/html/designer_guide.html",
"doc/guides/html/developer_guide.html",
"doc/guides/html/files/javascripts/code_highlighter.js",
"doc/guides/html/files/javascripts/guides.js",
"doc/guides/html/files/javascripts/highlighters.js",
"doc/guides/html/files/stylesheets/main.css",
"doc/guides/html/files/stylesheets/reset.css",
"doc/guides/html/files/stylesheets/style.css",
"doc/guides/html/files/stylesheets/syntax.css",
"doc/guides/html/getting_started.html",
"doc/guides/html/images/bg.png",
"doc/guides/html/images/bottom_cap.png",
"doc/guides/html/images/browsercms_logo.png",
"doc/guides/html/images/dot.png",
"doc/guides/html/images/icons/README",
"doc/guides/html/images/icons/callouts/1.png",
"doc/guides/html/images/icons/callouts/10.png",
"doc/guides/html/images/icons/callouts/11.png",
"doc/guides/html/images/icons/callouts/12.png",
"doc/guides/html/images/icons/callouts/13.png",
"doc/guides/html/images/icons/callouts/14.png",
"doc/guides/html/images/icons/callouts/15.png",
"doc/guides/html/images/icons/callouts/2.png",
"doc/guides/html/images/icons/callouts/3.png",
"doc/guides/html/images/icons/callouts/4.png",
"doc/guides/html/images/icons/callouts/5.png",
"doc/guides/html/images/icons/callouts/6.png",
"doc/guides/html/images/icons/callouts/7.png",
"doc/guides/html/images/icons/callouts/8.png",
"doc/guides/html/images/icons/callouts/9.png",
"doc/guides/html/images/icons/caution.png",
"doc/guides/html/images/icons/example.png",
"doc/guides/html/images/icons/home.png",
"doc/guides/html/images/icons/important.png",
"doc/guides/html/images/icons/next.png",
"doc/guides/html/images/icons/note.png",
"doc/guides/html/images/icons/prev.png",
"doc/guides/html/images/icons/tip.png",
"doc/guides/html/images/icons/up.png",
"doc/guides/html/images/icons/warning.png",
"doc/guides/html/images/top_cap.png",
"doc/guides/html/images/top_cap_content.png",
"doc/guides/html/index.html",
"doc/guides/html/installing_modules.html",
"doc/guides/html/user_guide.html",
"lib/acts_as_list.rb",
"lib/browsercms.rb",
"lib/cms/acts/content_block.rb",
"lib/cms/authentication/controller.rb",
"lib/cms/authentication/model.rb",
"lib/cms/behaviors.rb",
"lib/cms/behaviors/archiving.rb",
"lib/cms/behaviors/attaching.rb",
"lib/cms/behaviors/categorizing.rb",
"lib/cms/behaviors/connecting.rb",
"lib/cms/behaviors/dynamic_attributes.rb",
"lib/cms/behaviors/flush_cache_on_change.rb",
"lib/cms/behaviors/hiding.rb",
"lib/cms/behaviors/pagination.rb",
"lib/cms/behaviors/publishing.rb",
"lib/cms/behaviors/rendering.rb",
"lib/cms/behaviors/searching.rb",
"lib/cms/behaviors/soft_deleting.rb",
"lib/cms/behaviors/taggable.rb",
"lib/cms/behaviors/userstamping.rb",
"lib/cms/behaviors/versioning.rb",
"lib/cms/caching.rb",
"lib/cms/data_loader.rb",
"lib/cms/extensions.rb",
"lib/cms/extensions/action_view/base.rb",
"lib/cms/extensions/active_record/base.rb",
"lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements.rb",
"lib/cms/extensions/active_record/errors.rb",
"lib/cms/extensions/active_support/cache/file_store.rb",
"lib/cms/extensions/hash.rb",
"lib/cms/extensions/integer.rb",
"lib/cms/extensions/nil.rb",
"lib/cms/extensions/string.rb",
"lib/cms/init.rb",
"lib/cms/routes.rb",
"lib/initial_data.rb",
"lib/sequence.rb",
"lib/tasks/cms.rake",
"lib/tasks/db.rake",
"lib/tasks/dev.rake",
"public/fckeditor/editor/css/behaviors/disablehandles.htc",
"public/fckeditor/editor/css/behaviors/showtableborders.htc",
"public/fckeditor/editor/css/fck_editorarea.css",
"public/fckeditor/editor/css/fck_internal.css",
"public/fckeditor/editor/css/fck_showtableborders_gecko.css",
"public/fckeditor/editor/css/images/block_address.png",
"public/fckeditor/editor/css/images/block_blockquote.png",
"public/fckeditor/editor/css/images/block_div.png",
"public/fckeditor/editor/css/images/block_h1.png",
"public/fckeditor/editor/css/images/block_h2.png",
"public/fckeditor/editor/css/images/block_h3.png",
"public/fckeditor/editor/css/images/block_h4.png",
"public/fckeditor/editor/css/images/block_h5.png",
"public/fckeditor/editor/css/images/block_h6.png",
"public/fckeditor/editor/css/images/block_p.png",
"public/fckeditor/editor/css/images/block_pre.png",
"public/fckeditor/editor/css/images/fck_anchor.gif",
"public/fckeditor/editor/css/images/fck_flashlogo.gif",
"public/fckeditor/editor/css/images/fck_hiddenfield.gif",
"public/fckeditor/editor/css/images/fck_pagebreak.gif",
"public/fckeditor/editor/css/images/fck_plugin.gif",
"public/fckeditor/editor/dialog/common/fck_dialog_common.css",
"public/fckeditor/editor/dialog/common/fck_dialog_common.js",
"public/fckeditor/editor/dialog/common/images/locked.gif",
"public/fckeditor/editor/dialog/common/images/reset.gif",
"public/fckeditor/editor/dialog/common/images/unlocked.gif",
"public/fckeditor/editor/dialog/fck_about.html",
"public/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif",
"public/fckeditor/editor/dialog/fck_about/logo_fredck.gif",
"public/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif",
"public/fckeditor/editor/dialog/fck_anchor.html",
"public/fckeditor/editor/dialog/fck_button.html",
"public/fckeditor/editor/dialog/fck_checkbox.html",
"public/fckeditor/editor/dialog/fck_colorselector.html",
"public/fckeditor/editor/dialog/fck_div.html",
"public/fckeditor/editor/dialog/fck_docprops.html",
"public/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html",
"public/fckeditor/editor/dialog/fck_flash.html",
"public/fckeditor/editor/dialog/fck_flash/fck_flash.js",
"public/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html",
"public/fckeditor/editor/dialog/fck_form.html",
"public/fckeditor/editor/dialog/fck_hiddenfield.html",
"public/fckeditor/editor/dialog/fck_image.html",
"public/fckeditor/editor/dialog/fck_image/fck_image.js",
"public/fckeditor/editor/dialog/fck_image/fck_image_preview.html",
"public/fckeditor/editor/dialog/fck_link.html",
"public/fckeditor/editor/dialog/fck_link/fck_link.js",
"public/fckeditor/editor/dialog/fck_listprop.html",
"public/fckeditor/editor/dialog/fck_paste.html",
"public/fckeditor/editor/dialog/fck_radiobutton.html",
"public/fckeditor/editor/dialog/fck_replace.html",
"public/fckeditor/editor/dialog/fck_select.html",
"public/fckeditor/editor/dialog/fck_select/fck_select.js",
"public/fckeditor/editor/dialog/fck_smiley.html",
"public/fckeditor/editor/dialog/fck_source.html",
"public/fckeditor/editor/dialog/fck_specialchar.html",
"public/fckeditor/editor/dialog/fck_spellerpages.html",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css",
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js",
"public/fckeditor/editor/dialog/fck_table.html",
"public/fckeditor/editor/dialog/fck_tablecell.html",
"public/fckeditor/editor/dialog/fck_template.html",
"public/fckeditor/editor/dialog/fck_template/images/template1.gif",
"public/fckeditor/editor/dialog/fck_template/images/template2.gif",
"public/fckeditor/editor/dialog/fck_template/images/template3.gif",
"public/fckeditor/editor/dialog/fck_textarea.html",
"public/fckeditor/editor/dialog/fck_textfield.html",
"public/fckeditor/editor/dtd/fck_dtd_test.html",
"public/fckeditor/editor/dtd/fck_xhtml10strict.js",
"public/fckeditor/editor/dtd/fck_xhtml10transitional.js",
"public/fckeditor/editor/fckdebug.html",
"public/fckeditor/editor/fckdialog.html",
"public/fckeditor/editor/fckeditor.html",
"public/fckeditor/editor/fckeditor.original.html",
"public/fckeditor/editor/filemanager/browser/default/browser.css",
"public/fckeditor/editor/filemanager/browser/default/browser.html",
"public/fckeditor/editor/filemanager/browser/default/frmactualfolder.html",
"public/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html",
"public/fckeditor/editor/filemanager/browser/default/frmfolders.html",
"public/fckeditor/editor/filemanager/browser/default/frmresourceslist.html",
"public/fckeditor/editor/filemanager/browser/default/frmresourcetype.html",
"public/fckeditor/editor/filemanager/browser/default/frmupload.html",
"public/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif",
"public/fckeditor/editor/filemanager/browser/default/images/Folder.gif",
"public/fckeditor/editor/filemanager/browser/default/images/Folder32.gif",
"public/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif",
"public/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif",
"public/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/html.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/js.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/png.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif",
"public/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif",
"public/fckeditor/editor/filemanager/browser/default/images/spacer.gif",
"public/fckeditor/editor/filemanager/browser/default/js/common.js",
"public/fckeditor/editor/filemanager/browser/default/js/fckxml.js",
"public/fckeditor/editor/images/anchor.gif",
"public/fckeditor/editor/images/arrow_ltr.gif",
"public/fckeditor/editor/images/arrow_rtl.gif",
"public/fckeditor/editor/images/smiley/msn/angel_smile.gif",
"public/fckeditor/editor/images/smiley/msn/angry_smile.gif",
"public/fckeditor/editor/images/smiley/msn/broken_heart.gif",
"public/fckeditor/editor/images/smiley/msn/cake.gif",
"public/fckeditor/editor/images/smiley/msn/confused_smile.gif",
"public/fckeditor/editor/images/smiley/msn/cry_smile.gif",
"public/fckeditor/editor/images/smiley/msn/devil_smile.gif",
"public/fckeditor/editor/images/smiley/msn/embaressed_smile.gif",
"public/fckeditor/editor/images/smiley/msn/envelope.gif",
"public/fckeditor/editor/images/smiley/msn/heart.gif",
"public/fckeditor/editor/images/smiley/msn/kiss.gif",
"public/fckeditor/editor/images/smiley/msn/lightbulb.gif",
"public/fckeditor/editor/images/smiley/msn/omg_smile.gif",
"public/fckeditor/editor/images/smiley/msn/regular_smile.gif",
"public/fckeditor/editor/images/smiley/msn/sad_smile.gif",
"public/fckeditor/editor/images/smiley/msn/shades_smile.gif",
"public/fckeditor/editor/images/smiley/msn/teeth_smile.gif",
"public/fckeditor/editor/images/smiley/msn/thumbs_down.gif",
"public/fckeditor/editor/images/smiley/msn/thumbs_up.gif",
"public/fckeditor/editor/images/smiley/msn/tounge_smile.gif",
"public/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif",
"public/fckeditor/editor/images/smiley/msn/wink_smile.gif",
"public/fckeditor/editor/images/spacer.gif",
"public/fckeditor/editor/js/fckadobeair.js",
"public/fckeditor/editor/js/fckeditorcode_gecko.js",
"public/fckeditor/editor/js/fckeditorcode_ie.js",
"public/fckeditor/editor/lang/_translationstatus.txt",
"public/fckeditor/editor/lang/af.js",
"public/fckeditor/editor/lang/ar.js",
"public/fckeditor/editor/lang/bg.js",
"public/fckeditor/editor/lang/bn.js",
"public/fckeditor/editor/lang/bs.js",
"public/fckeditor/editor/lang/ca.js",
"public/fckeditor/editor/lang/cs.js",
"public/fckeditor/editor/lang/da.js",
"public/fckeditor/editor/lang/de.js",
"public/fckeditor/editor/lang/el.js",
"public/fckeditor/editor/lang/en-au.js",
"public/fckeditor/editor/lang/en-ca.js",
"public/fckeditor/editor/lang/en-uk.js",
"public/fckeditor/editor/lang/en.js",
"public/fckeditor/editor/lang/eo.js",
"public/fckeditor/editor/lang/es.js",
"public/fckeditor/editor/lang/et.js",
"public/fckeditor/editor/lang/eu.js",
"public/fckeditor/editor/lang/fa.js",
"public/fckeditor/editor/lang/fi.js",
"public/fckeditor/editor/lang/fo.js",
"public/fckeditor/editor/lang/fr-ca.js",
"public/fckeditor/editor/lang/fr.js",
"public/fckeditor/editor/lang/gl.js",
"public/fckeditor/editor/lang/gu.js",
"public/fckeditor/editor/lang/he.js",
"public/fckeditor/editor/lang/hi.js",
"public/fckeditor/editor/lang/hr.js",
"public/fckeditor/editor/lang/hu.js",
"public/fckeditor/editor/lang/it.js",
"public/fckeditor/editor/lang/ja.js",
"public/fckeditor/editor/lang/km.js",
"public/fckeditor/editor/lang/ko.js",
"public/fckeditor/editor/lang/lt.js",
"public/fckeditor/editor/lang/lv.js",
"public/fckeditor/editor/lang/mn.js",
"public/fckeditor/editor/lang/ms.js",
"public/fckeditor/editor/lang/nb.js",
"public/fckeditor/editor/lang/nl.js",
"public/fckeditor/editor/lang/no.js",
"public/fckeditor/editor/lang/pl.js",
"public/fckeditor/editor/lang/pt-br.js",
"public/fckeditor/editor/lang/pt.js",
"public/fckeditor/editor/lang/ro.js",
"public/fckeditor/editor/lang/ru.js",
"public/fckeditor/editor/lang/sk.js",
"public/fckeditor/editor/lang/sl.js",
"public/fckeditor/editor/lang/sr-latn.js",
"public/fckeditor/editor/lang/sr.js",
"public/fckeditor/editor/lang/sv.js",
"public/fckeditor/editor/lang/th.js",
"public/fckeditor/editor/lang/tr.js",
"public/fckeditor/editor/lang/uk.js",
"public/fckeditor/editor/lang/vi.js",
"public/fckeditor/editor/lang/zh-cn.js",
"public/fckeditor/editor/lang/zh.js",
"public/fckeditor/editor/plugins/autogrow/fckplugin.js",
"public/fckeditor/editor/plugins/bbcode/_sample/sample.config.js",
"public/fckeditor/editor/plugins/bbcode/_sample/sample.html",
"public/fckeditor/editor/plugins/bbcode/fckplugin.js",
"public/fckeditor/editor/plugins/dragresizetable/fckplugin.js",
"public/fckeditor/editor/plugins/placeholder/fck_placeholder.html",
"public/fckeditor/editor/plugins/placeholder/fckplugin.js",
"public/fckeditor/editor/plugins/placeholder/lang/de.js",
"public/fckeditor/editor/plugins/placeholder/lang/en.js",
"public/fckeditor/editor/plugins/placeholder/lang/es.js",
"public/fckeditor/editor/plugins/placeholder/lang/fr.js",
"public/fckeditor/editor/plugins/placeholder/lang/it.js",
"public/fckeditor/editor/plugins/placeholder/lang/pl.js",
"public/fckeditor/editor/plugins/placeholder/placeholder.gif",
"public/fckeditor/editor/plugins/simplecommands/fckplugin.js",
"public/fckeditor/editor/plugins/tablecommands/fckplugin.js",
"public/fckeditor/editor/skins/_fckviewstrips.html",
"public/fckeditor/editor/skins/default/fck_dialog.css",
"public/fckeditor/editor/skins/default/fck_dialog_ie6.js",
"public/fckeditor/editor/skins/default/fck_editor.css",
"public/fckeditor/editor/skins/default/fck_strip.gif",
"public/fckeditor/editor/skins/default/images/dialog.sides.gif",
"public/fckeditor/editor/skins/default/images/dialog.sides.png",
"public/fckeditor/editor/skins/default/images/dialog.sides.rtl.png",
"public/fckeditor/editor/skins/default/images/sprites.gif",
"public/fckeditor/editor/skins/default/images/sprites.png",
"public/fckeditor/editor/skins/default/images/toolbar.arrowright.gif",
"public/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif",
"public/fckeditor/editor/skins/default/images/toolbar.collapse.gif",
"public/fckeditor/editor/skins/default/images/toolbar.end.gif",
"public/fckeditor/editor/skins/default/images/toolbar.expand.gif",
"public/fckeditor/editor/skins/default/images/toolbar.separator.gif",
"public/fckeditor/editor/skins/default/images/toolbar.start.gif",
"public/fckeditor/editor/skins/office2003/fck_dialog.css",
"public/fckeditor/editor/skins/office2003/fck_dialog_ie6.js",
"public/fckeditor/editor/skins/office2003/fck_editor.css",
"public/fckeditor/editor/skins/office2003/fck_strip.gif",
"public/fckeditor/editor/skins/office2003/images/dialog.sides.gif",
"public/fckeditor/editor/skins/office2003/images/dialog.sides.png",
"public/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png",
"public/fckeditor/editor/skins/office2003/images/sprites.gif",
"public/fckeditor/editor/skins/office2003/images/sprites.png",
"public/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif",
"public/fckeditor/editor/skins/office2003/images/toolbar.bg.gif",
"public/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif",
"public/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif",
"public/fckeditor/editor/skins/office2003/images/toolbar.end.gif",
"public/fckeditor/editor/skins/office2003/images/toolbar.expand.gif",
"public/fckeditor/editor/skins/office2003/images/toolbar.separator.gif",
"public/fckeditor/editor/skins/office2003/images/toolbar.start.gif",
"public/fckeditor/editor/skins/silver/fck_dialog.css",
"public/fckeditor/editor/skins/silver/fck_dialog_ie6.js",
"public/fckeditor/editor/skins/silver/fck_editor.css",
"public/fckeditor/editor/skins/silver/fck_strip.gif",
"public/fckeditor/editor/skins/silver/images/dialog.sides.gif",
"public/fckeditor/editor/skins/silver/images/dialog.sides.png",
"public/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png",
"public/fckeditor/editor/skins/silver/images/sprites.gif",
"public/fckeditor/editor/skins/silver/images/sprites.png",
"public/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif",
"public/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif",
"public/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif",
"public/fckeditor/editor/skins/silver/images/toolbar.collapse.gif",
"public/fckeditor/editor/skins/silver/images/toolbar.end.gif",
"public/fckeditor/editor/skins/silver/images/toolbar.expand.gif",
"public/fckeditor/editor/skins/silver/images/toolbar.separator.gif",
"public/fckeditor/editor/skins/silver/images/toolbar.start.gif",
"public/fckeditor/fckconfig.js",
"public/fckeditor/fckdebug.html",
"public/fckeditor/fckdialog.html",
"public/fckeditor/fckeditor.html",
"public/fckeditor/fckeditor.js",
"public/fckeditor/fckeditor.original.html",
"public/fckeditor/fckpackager.xml",
"public/fckeditor/fckstyles.xml",
"public/fckeditor/fcktemplates.xml",
"public/images/cms/administration/user_browser_bg.gif",
"public/images/cms/bg.png",
"public/images/cms/bl_curve.png",
"public/images/cms/bottom_cap.png",
"public/images/cms/bottom_cap_content.png",
"public/images/cms/browse.gif",
"public/images/cms/browser_media_logo.png",
"public/images/cms/browsercms_logo.png",
"public/images/cms/buttons/button.png",
"public/images/cms/buttons/button_bg.png",
"public/images/cms/buttons/button_cap.png",
"public/images/cms/buttons/button_cap_h.png",
"public/images/cms/buttons/button_cap_off.gif",
"public/images/cms/buttons/button_cap_off_middle.gif",
"public/images/cms/buttons/button_h.png",
"public/images/cms/buttons/button_left_bg.png",
"public/images/cms/buttons/button_off.png",
"public/images/cms/buttons/button_off_middle.png",
"public/images/cms/buttons/delete_x.png",
"public/images/cms/buttons/delete_x_disabled.png",
"public/images/cms/buttons/delete_x_h.png",
"public/images/cms/buttons/sm_button.gif",
"public/images/cms/buttons/sm_button_2.gif",
"public/images/cms/buttons/sm_button_2_h.gif",
"public/images/cms/buttons/sm_button_h.gif",
"public/images/cms/containers/add.gif",
"public/images/cms/containers/alpha.png",
"public/images/cms/containers/beta.png",
"public/images/cms/containers/delete.gif",
"public/images/cms/containers/down.gif",
"public/images/cms/containers/edit.gif",
"public/images/cms/containers/up.gif",
"public/images/cms/containers/view.gif",
"public/images/cms/content_bg.gif",
"public/images/cms/dashboard/bottom_cap.png",
"public/images/cms/dashboard/bottom_cap_content.png",
"public/images/cms/dashboard/header_bg.gif",
"public/images/cms/dashboard/header_left_bg.gif",
"public/images/cms/dashboard/table_header_bg.gif",
"public/images/cms/dashboard/top_cap.png",
"public/images/cms/dashed.gif",
"public/images/cms/datepicker/clear.gif",
"public/images/cms/datepicker/close.gif",
"public/images/cms/dk_button_l.gif",
"public/images/cms/dk_button_r.gif",
"public/images/cms/dot.png",
"public/images/cms/draft_status.gif",
"public/images/cms/gray_long_bg.gif",
"public/images/cms/icons/actions/add.png",
"public/images/cms/icons/actions/config.png",