forked from browsermedia/browsercms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
browsercms.gemspec
952 lines (948 loc) · 47.8 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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{browsercms}
s.version = "3.0.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["BrowserMedia"]
s.date = %q{2009-05-05}
s.email = %q{github@browsermedia.com}
s.extra_rdoc_files = [
"LICENSE.txt",
"README.markdown"
]
s.files = [
"browsercms.gemspec",
"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/missing_asset_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/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/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_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_create_users.rb",
"db/migrate/20080815014733_create_dynamic_views.rb",
"db/migrate/20080815014735_create_pages.rb",
"db/migrate/20080815014736_create_content_type_groups.rb",
"db/migrate/20080815014737_create_content_types.rb",
"db/migrate/20080815014738_create_category_types.rb",
"db/migrate/20080815014739_create_categories.rb",
"db/migrate/20080815214539_create_connectors.rb",
"db/migrate/20080815220350_create_html_blocks.rb",
"db/migrate/20080819193254_create_sections.rb",
"db/migrate/20080819213733_create_portlets.rb",
"db/migrate/20080917222336_create_redirects.rb",
"db/migrate/20080922203815_create_attachments.rb",
"db/migrate/20080922215729_create_file_blocks.rb",
"db/migrate/20081007190155_create_group_types.rb",
"db/migrate/20081007190156_create_groups.rb",
"db/migrate/20081008182341_create_permissions.rb",
"db/migrate/20081009202349_create_group_sections.rb",
"db/migrate/20081013181547_create_sites.rb",
"db/migrate/20081020152051_create_section_nodes.rb",
"db/migrate/20081031140510_create_links.rb",
"db/migrate/20081031140511_create_tags.rb",
"db/migrate/20081031140512_create_taggings.rb",
"db/migrate/20081114172307_load_seed_data.rb",
"db/migrate/20090130171546_create_email_messages.rb",
"db/migrate/20090212164201_create_tasks.rb",
"db/migrate/20090410193133_create_page_routes.rb",
"db/migrate/20090410193312_create_page_route_options.rb",
"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_h.png",
"public/images/cms/buttons/button_off.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",
"public/images/cms/icons/actions/connect.png",
"public/images/cms/icons/actions/delete.png",
"public/images/cms/icons/actions/down.png",
"public/images/cms/icons/actions/edit.png",
"public/images/cms/icons/actions/folder.png",
"public/images/cms/icons/actions/folder_add.png",
"public/images/cms/icons/actions/folder_delete.png",
"public/images/cms/icons/actions/folder_edit.png",
"public/images/cms/icons/actions/folder_move.png",
"public/images/cms/icons/actions/folder_open.png",
"public/images/cms/icons/actions/history.png",
"public/images/cms/icons/actions/home.png",
"public/images/cms/icons/actions/left.png",
"public/images/cms/icons/actions/link.png",
"public/images/cms/icons/actions/page.png",
"public/images/cms/icons/actions/page_add.png",
"public/images/cms/icons/actions/page_edit.png",
"public/images/cms/icons/actions/page_move.png",
"public/images/cms/icons/actions/redo.png",
"public/images/cms/icons/actions/refresh.png",
"public/images/cms/icons/actions/right.png",
"public/images/cms/icons/actions/root_folder.png",
"public/images/cms/icons/actions/root_link.png",
"public/images/cms/icons/actions/root_page.png",
"public/images/cms/icons/actions/undo.png",
"public/images/cms/icons/actions/up.png",
"public/images/cms/icons/actions/view.png",
"public/images/cms/icons/file_types/doc.png",
"public/images/cms/icons/file_types/file.png",
"public/images/cms/icons/file_types/gif.png",
"public/images/cms/icons/file_types/htm.png",
"public/images/cms/icons/file_types/pdf.png",
"public/images/cms/icons/file_types/ppt.png",
"public/images/cms/icons/file_types/swf.png",
"public/images/cms/icons/file_types/txt.png",
"public/images/cms/icons/file_types/xls.png",
"public/images/cms/icons/file_types/xml.png",
"public/images/cms/icons/file_types/zip.png",
"public/images/cms/icons/status/archived.gif",
"public/images/cms/icons/status/draft.gif",
"public/images/cms/icons/status/hidden.gif",
"public/images/cms/icons/status/locked.gif",
"public/images/cms/icons/status/published.gif",
"public/images/cms/icons/status/unlocked.gif",
"public/images/cms/icons/user.png",
"public/images/cms/login_bg.jpg",
"public/images/cms/login_bottom.jpg",
"public/images/cms/login_top.gif",
"public/images/cms/lt_button_bg.gif",
"public/images/cms/lt_button_l.gif",
"public/images/cms/lt_button_r.gif",
"public/images/cms/menu.png",
"public/images/cms/menu/block_cap_h.gif",
"public/images/cms/menu/bottom_cap.png",
"public/images/cms/menu/bottom_cap_menu.png",
"public/images/cms/menu/bottom_cap_menu_first.png",
"public/images/cms/menu/menu_header_first_bg.gif",
"public/images/cms/menu/selected_block_cap.gif",
"public/images/cms/menu/top_cap.png",
"public/images/cms/menu/top_cap_menu_header.png",
"public/images/cms/menu_h.gif",
"public/images/cms/menu_header.png",
"public/images/cms/menu_open.png",
"public/images/cms/menu_open_bg.gif",
"public/images/cms/nav.png",
"public/images/cms/nav/on_bg.gif",
"public/images/cms/nav_cap.png",
"public/images/cms/nav_cap_h.gif",
"public/images/cms/nav_h.gif",
"public/images/cms/page_toolbar/page_toolbar_bg.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_bg.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_draft_bg.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_draft_l.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_draft_r.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_l.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_published_bg.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_published_l.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_published_r.gif",
"public/images/cms/page_toolbar/page_toolbar_inset_r.gif",
"public/images/cms/page_toolbar/page_toolbar_l.gif",
"public/images/cms/page_toolbar/page_toolbar_r.gif",
"public/images/cms/page_toolbar/status_draft_bg.gif",
"public/images/cms/page_toolbar/status_draft_l.gif",
"public/images/cms/page_toolbar/status_l.gif",
"public/images/cms/page_toolbar/status_published_bg.gif",
"public/images/cms/page_toolbar/status_published_l.gif",
"public/images/cms/page_toolbar/visual_editor_bg.gif",
"public/images/cms/page_toolbar/visual_editor_end.gif",
"public/images/cms/page_toolbar/visual_editor_r.gif",
"public/images/cms/page_toolbar/visual_editor_state_bg.gif",
"public/images/cms/pages/add_connectable.gif",
"public/images/cms/pages/connect_connectable.gif",
"public/images/cms/pages/container_border.gif",
"public/images/cms/pages/container_border_l.gif",
"public/images/cms/pages/container_border_r.gif",
"public/images/cms/pages/delete_connectable.gif",
"public/images/cms/pages/down_connectable.gif",
"public/images/cms/pages/down_connectable_disabled.gif",
"public/images/cms/pages/edit_connectable.gif",
"public/images/cms/pages/edit_connectable_2.gif",
"public/images/cms/pages/show_connectable.gif",
"public/images/cms/pages/up_connectable.gif",
"public/images/cms/pages/up_connectable_disabled.gif",
"public/images/cms/pagination/first.gif",
"public/images/cms/pagination/first_h.gif",
"public/images/cms/pagination/input.gif",
"public/images/cms/pagination/last.gif",
"public/images/cms/pagination/last_h.gif",
"public/images/cms/pagination/next.gif",
"public/images/cms/pagination/next_h.gif",
"public/images/cms/pagination/previous.gif",
"public/images/cms/pagination/previous_h.gif",
"public/images/cms/published_status.gif",
"public/images/cms/search.png",
"public/images/cms/search_submit.gif",
"public/images/cms/search_submit_h.gif",
"public/images/cms/searchbox_gradient.gif",
"public/images/cms/select_bg.gif",
"public/images/cms/select_bg_2.gif",
"public/images/cms/sitemap/bottom_cap.png",
"public/images/cms/sitemap/buffer_caps.png",
"public/images/cms/sitemap/contract.png",
"public/images/cms/sitemap/corners.gif",
"public/images/cms/sitemap/corners_hover.gif",
"public/images/cms/sitemap/divider.gif",
"public/images/cms/sitemap/expand.png",
"public/images/cms/sitemap/gradient.gif",
"public/images/cms/sitemap/gray_contract.png",
"public/images/cms/sitemap/gray_expand.png",
"public/images/cms/sitemap/no_contents.png",
"public/images/cms/sitemap/site_root_cap.png",
"public/images/cms/sitemap/tooltip.gif",
"public/images/cms/sitemap/top_cap_content.png",
"public/images/cms/solid.gif",
"public/images/cms/table/bl.gif",
"public/images/cms/table/br.gif",
"public/images/cms/table/divider.gif",
"public/images/cms/table/td_cap_first_h.gif",
"public/images/cms/table/td_cap_first_s.gif",
"public/images/cms/table/td_cap_last_h.gif",
"public/images/cms/table/td_cap_last_s.gif",
"public/images/cms/table/td_last_bg.gif",
"public/images/cms/table/th_bg.gif",
"public/images/cms/table/th_divider.gif",
"public/images/cms/table/th_last_bg.gif",
"public/images/cms/table/tl.gif",
"public/images/cms/table/tr.gif",
"public/images/cms/table/tr_bg.gif",
"public/images/cms/thickbox/loadingAnimation.gif",
"public/images/cms/thickbox/macFFBgHack.png",
"public/images/cms/toolbar_bg.png",
"public/images/cms/top_cap.png",
"public/images/cms/top_cap_content.png",
"public/images/cms/top_cap_menu_header.png",
"public/images/cms/user_search_submit.gif",
"public/images/cms/usercontrols_bg.png",
"public/images/cms/usercontrols_bg_cap.png",
"public/javascripts/cms/application.js",
"public/javascripts/cms/editor.js",
"public/javascripts/cms/sitemap.js",
"public/javascripts/jquery-ui.js",
"public/javascripts/jquery.contextMenu.js",
"public/javascripts/jquery.cookie.js",
"public/javascripts/jquery.dimensions.js",
"public/javascripts/jquery.js",
"public/javascripts/jquery.selectbox-0.5.js",
"public/javascripts/jquery.taglist.js",
"public/javascripts/jquery.thickbox.js",
"public/site/customconfig.js",
"public/stylesheets/cms/administration.css",
"public/stylesheets/cms/application.css",
"public/stylesheets/cms/block.css",
"public/stylesheets/cms/buttons.css",
"public/stylesheets/cms/content_library.css",
"public/stylesheets/cms/content_types.css",
"public/stylesheets/cms/dashboard.css",
"public/stylesheets/cms/data_table.css",
"public/stylesheets/cms/date_picker.css",
"public/stylesheets/cms/form_layout.css",
"public/stylesheets/cms/jquery.contextMenu.css",
"public/stylesheets/cms/login.css",
"public/stylesheets/cms/menu.css",
"public/stylesheets/cms/nav.css",
"public/stylesheets/cms/page_toolbar.css",
"public/stylesheets/cms/reset.css",
"public/stylesheets/cms/selectbox.css",
"public/stylesheets/cms/sitemap.css",
"public/stylesheets/cms/taglist.css",
"public/stylesheets/cms/thickbox.css",
"public/themes/blue_steel/images/logo.jpg",
"public/themes/blue_steel/images/splash.jpg",
"public/themes/blue_steel/stylesheets/style.css",
"rails/init.rb",
"rails_generators/browser_cms/USAGE",
"rails_generators/browser_cms/browser_cms_generator.rb",
"rails_generators/browser_cms/templates/README",
"rails_generators/browser_cms_demo_site/USAGE",
"rails_generators/browser_cms_demo_site/browser_cms_demo_site_generator.rb",
"rails_generators/browser_cms_demo_site/templates/migration.rb",
"rails_generators/content_block/USAGE",
"rails_generators/content_block/content_block_generator.rb",
"rails_generators/content_block/templates/_form.html.erb",
"rails_generators/content_block/templates/content_block.rb",
"rails_generators/content_block/templates/controller.rb",
"rails_generators/content_block/templates/functional_test.erb",
"rails_generators/content_block/templates/migration.rb",
"rails_generators/content_block/templates/render.html.erb",
"rails_generators/content_block/templates/unit_test.erb",
"rails_generators/portlet/USAGE",
"rails_generators/portlet/portlet_generator.rb",
"rails_generators/portlet/templates/_form.html.erb",
"rails_generators/portlet/templates/portlet.rb",
"rails_generators/portlet/templates/render.html.erb",
"rails_generators/portlet/templates/unit_test.erb"
]
s.has_rdoc = true
s.homepage = %q{http://www.browsercms.org}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{A Content Management System for Rails}
s.test_files = [
"test/custom_assertions.rb",
"test/factories.rb",
"test/functional/cms/cache_controller_test.rb",
"test/functional/cms/categories_controller_test.rb",
"test/functional/cms/connectors_controller_test.rb",
"test/functional/cms/content_controller_test.rb",
"test/functional/cms/content_types_controller_test.rb",
"test/functional/cms/dashboard_controller_test.rb",
"test/functional/cms/file_blocks_controller_test.rb",
"test/functional/cms/groups_controller_test.rb",
"test/functional/cms/home_controller_test.rb",
"test/functional/cms/html_blocks_controller_test.rb",
"test/functional/cms/image_blocks_controller_test.rb",
"test/functional/cms/links_controller_test.rb",
"test/functional/cms/pages_controller_test.rb",
"test/functional/cms/portlets_controller_test.rb",
"test/functional/cms/section_nodes_controller_test.rb",
"test/functional/cms/sections_controller_test.rb",
"test/functional/cms/sessions_controller_test.rb",
"test/functional/cms/users_controller_test.rb",
"test/integration/login_test.rb",
"test/test_helper.rb",
"test/test_logging.rb",
"test/unit/behaviors/attaching_test.rb",
"test/unit/behaviors/dynamic_attributes_test.rb",
"test/unit/behaviors/publishable_test.rb",
"test/unit/behaviors/searching_test.rb",
"test/unit/behaviors/taggable_test.rb",
"test/unit/extensions/active_record/base_test.rb",
"test/unit/extensions/hash_test.rb",
"test/unit/extensions/integer_test.rb",
"test/unit/helpers/application_helper_test.rb",
"test/unit/helpers/form_builder_test.rb",
"test/unit/helpers/menu_helper_test.rb",
"test/unit/helpers/page_helper_test.rb",
"test/unit/helpers/path_helper_test.rb",
"test/unit/lib/content_block_test.rb",
"test/unit/models/attachment_test.rb",
"test/unit/models/category_test.rb",
"test/unit/models/category_type_test.rb",
"test/unit/models/connector_test.rb",
"test/unit/models/content_type_test.rb",
"test/unit/models/email_page_portlet_test.rb",
"test/unit/models/file_block_test.rb",
"test/unit/models/group_test.rb",
"test/unit/models/html_block_test.rb",
"test/unit/models/link_test.rb",
"test/unit/models/page_partial_test.rb",
"test/unit/models/page_route_test.rb",
"test/unit/models/page_template_test.rb",
"test/unit/models/page_test.rb",
"test/unit/models/permission_test.rb",
"test/unit/models/portlet_test.rb",
"test/unit/models/section_node_test.rb",
"test/unit/models/sections_test.rb",
"test/unit/models/site_test.rb",
"test/unit/models/task_test.rb",
"test/unit/models/user_test.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end