forked from browsermedia/browsercms
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbrowsercms.gemspec
More file actions
1033 lines (1029 loc) · 49.9 KB
/
browsercms.gemspec
File metadata and controls
1033 lines (1029 loc) · 49.9 KB
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.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["BrowserMedia"]
s.date = %q{2010-01-05}
s.description = %q{Web Content Management in Rails.}
s.email = %q{github@browsermedia.com}
s.executables = ["browsercms", "bcms"]
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/controllers/tests/pretend_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/rendering_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/forgot_password_mailer.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/forgot_password_portlet.rb",
"app/portlets/login_portlet.rb",
"app/portlets/reset_password_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/forgot_password_mailer/reset_password.text.html.erb",
"app/views/cms/forgot_password_mailer/reset_password.text.plain.erb",
"app/views/cms/form_builder/_cms_check_box.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_fancy_drop_down.html.erb",
"app/views/cms/form_builder/_cms_file_field.html.erb",
"app/views/cms/form_builder/_cms_instructions.html.erb",
"app/views/cms/form_builder/_cms_tag_list.html.erb",
"app/views/cms/form_builder/_cms_template_editor.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/menus/_menu.html.erb",
"app/views/cms/menus/_menu_item.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/access_denied.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/cms/users/show.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/forgot_password/_form.html.erb",
"app/views/portlets/forgot_password/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/reset_password/_form.html.erb",
"app/views/portlets/reset_password/render.html.erb",
"app/views/portlets/tag_cloud/_form.html.erb",
"app/views/portlets/tag_cloud/render.html.erb",
"app/views/tests/pretend/open_with_layout.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",
"db/migrate/20091109175123_browsercms_3_0_5.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/acts/content_page.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/content_rendering_support.rb",
"lib/cms/data_loader.rb",
"lib/cms/domain_support.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/command_line.rb",
"lib/initial_data.rb",
"lib/sequence.rb",
"lib/tasks/cms.rake",
"lib/tasks/db.rake",
"lib/tasks/dev.rake",
"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",
"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_admin.gif",
"public/images/cms/nav_admin_h.gif",
"public/images/cms/nav_admin_on.gif",
"public/images/cms/nav_cap.png",
"public/images/cms/nav_cap_h.gif",
"public/images/cms/nav_content_library.gif",
"public/images/cms/nav_content_library_h.gif",
"public/images/cms/nav_content_library_on.gif",
"public/images/cms/nav_dash.gif",
"public/images/cms/nav_dash_h.gif",
"public/images/cms/nav_dash_on.gif",
"public/images/cms/nav_h.gif",
"public/images/cms/nav_sitemap.gif",
"public/images/cms/nav_sitemap_h.gif",
"public/images/cms/nav_sitemap_on.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/content_library.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",
"templates/blank.rb",
"templates/demo.rb",
"templates/module.rb"
]
s.homepage = %q{http://www.browsercms.org}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{browsercms}
s.rubygems_version = %q{1.3.4}
s.summary = %q{BrowserCMS is a general purpose, open source Web Content Management System (CMS), written in Ruby on 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_block_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/dynamic_views_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/toolbar_controller_test.rb",
"test/functional/cms/users_controller_test.rb",
"test/functional/tests/pretend_controller_test.rb",
"test/integration/cms/ckeditor_test.rb",
"test/integration/cms/password_management_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/acts_as_content_page_test.rb",
"test/unit/lib/cms_domain_support_test.rb",
"test/unit/lib/command_line_test.rb",
"test/unit/lib/content_block_test.rb",
"test/unit/lib/content_rendering_support_test.rb",
"test/unit/lib/generators_test.rb",
"test/unit/lib/routes_test.rb",
"test/unit/models/attachment_test.rb",