nate-browsercms 3.0.210 → 3.0.211
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/browsercms.gemspec +947 -0
- metadata +2 -1
data/browsercms.gemspec
ADDED
@@ -0,0 +1,947 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{browsercms}
|
5
|
+
s.version = "3.0.211"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["BrowserMedia"]
|
9
|
+
s.date = %q{2009-04-19}
|
10
|
+
s.email = %q{github@browsermedia.com}
|
11
|
+
s.extra_rdoc_files = [
|
12
|
+
"LICENSE.txt",
|
13
|
+
"README.markdown"
|
14
|
+
]
|
15
|
+
s.files = [
|
16
|
+
"app/controllers/application_controller.rb",
|
17
|
+
"app/controllers/cms/application_controller.rb",
|
18
|
+
"app/controllers/cms/attachments_controller.rb",
|
19
|
+
"app/controllers/cms/base_controller.rb",
|
20
|
+
"app/controllers/cms/cache_controller.rb",
|
21
|
+
"app/controllers/cms/categories_controller.rb",
|
22
|
+
"app/controllers/cms/category_types_controller.rb",
|
23
|
+
"app/controllers/cms/connectors_controller.rb",
|
24
|
+
"app/controllers/cms/content_block_controller.rb",
|
25
|
+
"app/controllers/cms/content_controller.rb",
|
26
|
+
"app/controllers/cms/content_types_controller.rb",
|
27
|
+
"app/controllers/cms/dashboard_controller.rb",
|
28
|
+
"app/controllers/cms/dynamic_views_controller.rb",
|
29
|
+
"app/controllers/cms/email_messages_controller.rb",
|
30
|
+
"app/controllers/cms/email_page_portlet_controller.rb",
|
31
|
+
"app/controllers/cms/error_handling.rb",
|
32
|
+
"app/controllers/cms/file_blocks_controller.rb",
|
33
|
+
"app/controllers/cms/groups_controller.rb",
|
34
|
+
"app/controllers/cms/home_controller.rb",
|
35
|
+
"app/controllers/cms/html_blocks_controller.rb",
|
36
|
+
"app/controllers/cms/image_blocks_controller.rb",
|
37
|
+
"app/controllers/cms/links_controller.rb",
|
38
|
+
"app/controllers/cms/missing_asset_controller.rb",
|
39
|
+
"app/controllers/cms/page_route_conditions_controller.rb",
|
40
|
+
"app/controllers/cms/page_route_options_controller.rb",
|
41
|
+
"app/controllers/cms/page_route_requirements_controller.rb",
|
42
|
+
"app/controllers/cms/page_routes_controller.rb",
|
43
|
+
"app/controllers/cms/pages_controller.rb",
|
44
|
+
"app/controllers/cms/portlet_controller.rb",
|
45
|
+
"app/controllers/cms/portlets_controller.rb",
|
46
|
+
"app/controllers/cms/redirects_controller.rb",
|
47
|
+
"app/controllers/cms/resource_controller.rb",
|
48
|
+
"app/controllers/cms/routes_controller.rb",
|
49
|
+
"app/controllers/cms/section_nodes_controller.rb",
|
50
|
+
"app/controllers/cms/sections_controller.rb",
|
51
|
+
"app/controllers/cms/sessions_controller.rb",
|
52
|
+
"app/controllers/cms/tags_controller.rb",
|
53
|
+
"app/controllers/cms/tasks_controller.rb",
|
54
|
+
"app/controllers/cms/toolbar_controller.rb",
|
55
|
+
"app/controllers/cms/users_controller.rb",
|
56
|
+
"app/helpers/application_helper.rb",
|
57
|
+
"app/helpers/cms/application_helper.rb",
|
58
|
+
"app/helpers/cms/form_builder.rb",
|
59
|
+
"app/helpers/cms/form_tag_helper.rb",
|
60
|
+
"app/helpers/cms/menu_helper.rb",
|
61
|
+
"app/helpers/cms/page_helper.rb",
|
62
|
+
"app/helpers/cms/path_helper.rb",
|
63
|
+
"app/helpers/cms/section_nodes_helper.rb",
|
64
|
+
"app/models/abstract_file_block.rb",
|
65
|
+
"app/models/attachment.rb",
|
66
|
+
"app/models/category.rb",
|
67
|
+
"app/models/category_type.rb",
|
68
|
+
"app/models/connector.rb",
|
69
|
+
"app/models/content_type.rb",
|
70
|
+
"app/models/content_type_group.rb",
|
71
|
+
"app/models/dynamic_view.rb",
|
72
|
+
"app/models/email_message.rb",
|
73
|
+
"app/models/email_message_mailer.rb",
|
74
|
+
"app/models/file_block.rb",
|
75
|
+
"app/models/group.rb",
|
76
|
+
"app/models/group_permission.rb",
|
77
|
+
"app/models/group_section.rb",
|
78
|
+
"app/models/group_type.rb",
|
79
|
+
"app/models/group_type_permission.rb",
|
80
|
+
"app/models/guest_user.rb",
|
81
|
+
"app/models/html_block.rb",
|
82
|
+
"app/models/image_block.rb",
|
83
|
+
"app/models/link.rb",
|
84
|
+
"app/models/page.rb",
|
85
|
+
"app/models/page_partial.rb",
|
86
|
+
"app/models/page_route.rb",
|
87
|
+
"app/models/page_route_condition.rb",
|
88
|
+
"app/models/page_route_option.rb",
|
89
|
+
"app/models/page_route_requirement.rb",
|
90
|
+
"app/models/page_template.rb",
|
91
|
+
"app/models/permission.rb",
|
92
|
+
"app/models/portlet.rb",
|
93
|
+
"app/models/redirect.rb",
|
94
|
+
"app/models/section.rb",
|
95
|
+
"app/models/section_node.rb",
|
96
|
+
"app/models/site.rb",
|
97
|
+
"app/models/tag.rb",
|
98
|
+
"app/models/tagging.rb",
|
99
|
+
"app/models/task.rb",
|
100
|
+
"app/models/user.rb",
|
101
|
+
"app/models/user_group_membership.rb",
|
102
|
+
"app/portlets/dynamic_portlet.rb",
|
103
|
+
"app/portlets/email_page_portlet.rb",
|
104
|
+
"app/portlets/login_portlet.rb",
|
105
|
+
"app/portlets/tag_cloud_portlet.rb",
|
106
|
+
"app/views/cms/blocks/_hidden_fields.html.erb",
|
107
|
+
"app/views/cms/blocks/_toolbar.html.erb",
|
108
|
+
"app/views/cms/blocks/_toolbar_for_collection.html.erb",
|
109
|
+
"app/views/cms/blocks/_toolbar_for_member.html.erb",
|
110
|
+
"app/views/cms/blocks/edit.html.erb",
|
111
|
+
"app/views/cms/blocks/index.html.erb",
|
112
|
+
"app/views/cms/blocks/new.html.erb",
|
113
|
+
"app/views/cms/blocks/show.html.erb",
|
114
|
+
"app/views/cms/blocks/usages.html.erb",
|
115
|
+
"app/views/cms/blocks/versions.html.erb",
|
116
|
+
"app/views/cms/cache/show.html.erb",
|
117
|
+
"app/views/cms/categories/_form.html.erb",
|
118
|
+
"app/views/cms/category_types/_form.html.erb",
|
119
|
+
"app/views/cms/connectors/new.html.erb",
|
120
|
+
"app/views/cms/content/show.html.erb",
|
121
|
+
"app/views/cms/content_types/index.html.erb",
|
122
|
+
"app/views/cms/dashboard/_page_drafts.html.erb",
|
123
|
+
"app/views/cms/dashboard/_tasks.html.erb",
|
124
|
+
"app/views/cms/dashboard/index.html.erb",
|
125
|
+
"app/views/cms/dynamic_views/_form.html.erb",
|
126
|
+
"app/views/cms/dynamic_views/edit.html.erb",
|
127
|
+
"app/views/cms/dynamic_views/index.html.erb",
|
128
|
+
"app/views/cms/dynamic_views/new.html.erb",
|
129
|
+
"app/views/cms/email_messages/index.html.erb",
|
130
|
+
"app/views/cms/email_messages/show.html.erb",
|
131
|
+
"app/views/cms/file_blocks/_form.html.erb",
|
132
|
+
"app/views/cms/file_blocks/render.html.erb",
|
133
|
+
"app/views/cms/form_builder/_cms_date_picker.html.erb",
|
134
|
+
"app/views/cms/form_builder/_cms_drop_down.html.erb",
|
135
|
+
"app/views/cms/form_builder/_cms_file_field.html.erb",
|
136
|
+
"app/views/cms/form_builder/_cms_tag_list.html.erb",
|
137
|
+
"app/views/cms/form_builder/_cms_text_area.html.erb",
|
138
|
+
"app/views/cms/form_builder/_cms_text_editor.html.erb",
|
139
|
+
"app/views/cms/form_builder/_cms_text_field.html.erb",
|
140
|
+
"app/views/cms/groups/_form.html.erb",
|
141
|
+
"app/views/cms/groups/_permissions.html.erb",
|
142
|
+
"app/views/cms/groups/_sections.html.erb",
|
143
|
+
"app/views/cms/groups/edit.html.erb",
|
144
|
+
"app/views/cms/groups/index.html.erb",
|
145
|
+
"app/views/cms/groups/new.html.erb",
|
146
|
+
"app/views/cms/html_blocks/_form.html.erb",
|
147
|
+
"app/views/cms/html_blocks/render.html.erb",
|
148
|
+
"app/views/cms/image_blocks/_form.html.erb",
|
149
|
+
"app/views/cms/image_blocks/render.html.erb",
|
150
|
+
"app/views/cms/links/_form.html.erb",
|
151
|
+
"app/views/cms/links/destroy.js.rjs",
|
152
|
+
"app/views/cms/links/edit.html.erb",
|
153
|
+
"app/views/cms/links/new.html.erb",
|
154
|
+
"app/views/cms/page_routes/_form.html.erb",
|
155
|
+
"app/views/cms/page_routes/edit.html.erb",
|
156
|
+
"app/views/cms/page_routes/index.html.erb",
|
157
|
+
"app/views/cms/page_routes/new.html.erb",
|
158
|
+
"app/views/cms/page_routes/show.html.erb",
|
159
|
+
"app/views/cms/pages/_edit_connector.html.erb",
|
160
|
+
"app/views/cms/pages/_edit_container.html.erb",
|
161
|
+
"app/views/cms/pages/_form.html.erb",
|
162
|
+
"app/views/cms/pages/edit.html.erb",
|
163
|
+
"app/views/cms/pages/new.html.erb",
|
164
|
+
"app/views/cms/pages/versions.html.erb",
|
165
|
+
"app/views/cms/redirects/_form.html.erb",
|
166
|
+
"app/views/cms/redirects/edit.html.erb",
|
167
|
+
"app/views/cms/redirects/index.html.erb",
|
168
|
+
"app/views/cms/redirects/new.html.erb",
|
169
|
+
"app/views/cms/routes/index.html.erb",
|
170
|
+
"app/views/cms/section_nodes/_link.html.erb",
|
171
|
+
"app/views/cms/section_nodes/_node.html.erb",
|
172
|
+
"app/views/cms/section_nodes/_page.html.erb",
|
173
|
+
"app/views/cms/section_nodes/_section.html.erb",
|
174
|
+
"app/views/cms/section_nodes/_section_node.html.erb",
|
175
|
+
"app/views/cms/section_nodes/index.html.erb",
|
176
|
+
"app/views/cms/sections/_form.html.erb",
|
177
|
+
"app/views/cms/sections/_page.html.erb",
|
178
|
+
"app/views/cms/sections/_section.html.erb",
|
179
|
+
"app/views/cms/sections/destroy.js.rjs",
|
180
|
+
"app/views/cms/sections/edit.html.erb",
|
181
|
+
"app/views/cms/sections/file_browser.xml.builder",
|
182
|
+
"app/views/cms/sections/index.html.erb",
|
183
|
+
"app/views/cms/sections/new.html.erb",
|
184
|
+
"app/views/cms/sessions/new.html.erb",
|
185
|
+
"app/views/cms/shared/_admin_sidebar.html.erb",
|
186
|
+
"app/views/cms/shared/_exception.html.erb",
|
187
|
+
"app/views/cms/shared/_pagination.html.erb",
|
188
|
+
"app/views/cms/shared/_version_conflict_diff.html.erb",
|
189
|
+
"app/views/cms/shared/_version_conflict_error.html.erb",
|
190
|
+
"app/views/cms/shared/error.html.erb",
|
191
|
+
"app/views/cms/tags/_form.html.erb",
|
192
|
+
"app/views/cms/tags/render.html.erb",
|
193
|
+
"app/views/cms/tasks/new.html.erb",
|
194
|
+
"app/views/cms/toolbar/index.html.erb",
|
195
|
+
"app/views/cms/users/_form.html.erb",
|
196
|
+
"app/views/cms/users/_groups.html.erb",
|
197
|
+
"app/views/cms/users/_password.html.erb",
|
198
|
+
"app/views/cms/users/_toolbar.html.erb",
|
199
|
+
"app/views/cms/users/_user_fields.html.erb",
|
200
|
+
"app/views/cms/users/change_password.html.erb",
|
201
|
+
"app/views/cms/users/edit.html.erb",
|
202
|
+
"app/views/cms/users/index.html.erb",
|
203
|
+
"app/views/cms/users/new.html.erb",
|
204
|
+
"app/views/layouts/_cms_toolbar.html.erb",
|
205
|
+
"app/views/layouts/_page_toolbar.html.erb",
|
206
|
+
"app/views/layouts/application.html.erb",
|
207
|
+
"app/views/layouts/cms/_footer.erb",
|
208
|
+
"app/views/layouts/cms/_head.html.erb",
|
209
|
+
"app/views/layouts/cms/administration.html.erb",
|
210
|
+
"app/views/layouts/cms/application.html.erb",
|
211
|
+
"app/views/layouts/cms/content_library.html.erb",
|
212
|
+
"app/views/layouts/cms/dashboard.html.erb",
|
213
|
+
"app/views/layouts/cms/login.html.erb",
|
214
|
+
"app/views/layouts/cms/section_nodes.html.erb",
|
215
|
+
"app/views/layouts/cms/thickbox.html.erb",
|
216
|
+
"app/views/layouts/cms/toolbar.html.erb",
|
217
|
+
"app/views/portlets/dynamic/_form.html.erb",
|
218
|
+
"app/views/portlets/email_page/_form.html.erb",
|
219
|
+
"app/views/portlets/email_page/render.html.erb",
|
220
|
+
"app/views/portlets/login/_form.html.erb",
|
221
|
+
"app/views/portlets/login/render.html.erb",
|
222
|
+
"app/views/portlets/portlets/_form.html.erb",
|
223
|
+
"app/views/portlets/tag_cloud/_form.html.erb",
|
224
|
+
"app/views/portlets/tag_cloud/render.html.erb",
|
225
|
+
"browsercms.gemspec",
|
226
|
+
"db/demo/data.rb",
|
227
|
+
"db/demo/page_partials/_footer.html.erb",
|
228
|
+
"db/demo/page_partials/_header.html.erb",
|
229
|
+
"db/demo/page_templates/home_page.html.erb",
|
230
|
+
"db/demo/page_templates/sub_page.html.erb",
|
231
|
+
"db/migrate/20080815014337_create_users.rb",
|
232
|
+
"db/migrate/20080815014733_create_dynamic_views.rb",
|
233
|
+
"db/migrate/20080815014735_create_pages.rb",
|
234
|
+
"db/migrate/20080815014736_create_content_type_groups.rb",
|
235
|
+
"db/migrate/20080815014737_create_content_types.rb",
|
236
|
+
"db/migrate/20080815014738_create_category_types.rb",
|
237
|
+
"db/migrate/20080815014739_create_categories.rb",
|
238
|
+
"db/migrate/20080815214539_create_connectors.rb",
|
239
|
+
"db/migrate/20080815220350_create_html_blocks.rb",
|
240
|
+
"db/migrate/20080819193254_create_sections.rb",
|
241
|
+
"db/migrate/20080819213733_create_portlets.rb",
|
242
|
+
"db/migrate/20080917222336_create_redirects.rb",
|
243
|
+
"db/migrate/20080922203815_create_attachments.rb",
|
244
|
+
"db/migrate/20080922215729_create_file_blocks.rb",
|
245
|
+
"db/migrate/20081007190155_create_group_types.rb",
|
246
|
+
"db/migrate/20081007190156_create_groups.rb",
|
247
|
+
"db/migrate/20081008182341_create_permissions.rb",
|
248
|
+
"db/migrate/20081009202349_create_group_sections.rb",
|
249
|
+
"db/migrate/20081013181547_create_sites.rb",
|
250
|
+
"db/migrate/20081020152051_create_section_nodes.rb",
|
251
|
+
"db/migrate/20081031140510_create_links.rb",
|
252
|
+
"db/migrate/20081031140511_create_tags.rb",
|
253
|
+
"db/migrate/20081031140512_create_taggings.rb",
|
254
|
+
"db/migrate/20081114172307_load_seed_data.rb",
|
255
|
+
"db/migrate/20090130171546_create_email_messages.rb",
|
256
|
+
"db/migrate/20090212164201_create_tasks.rb",
|
257
|
+
"db/migrate/20090410193133_create_page_routes.rb",
|
258
|
+
"db/migrate/20090410193312_create_page_route_options.rb",
|
259
|
+
"lib/acts_as_list.rb",
|
260
|
+
"lib/browser_cms.rb",
|
261
|
+
"lib/cms/acts/content_block.rb",
|
262
|
+
"lib/cms/authentication/controller.rb",
|
263
|
+
"lib/cms/authentication/model.rb",
|
264
|
+
"lib/cms/behaviors.rb",
|
265
|
+
"lib/cms/behaviors/archiving.rb",
|
266
|
+
"lib/cms/behaviors/attaching.rb",
|
267
|
+
"lib/cms/behaviors/categorizing.rb",
|
268
|
+
"lib/cms/behaviors/connecting.rb",
|
269
|
+
"lib/cms/behaviors/dynamic_attributes.rb",
|
270
|
+
"lib/cms/behaviors/flush_cache_on_change.rb",
|
271
|
+
"lib/cms/behaviors/hiding.rb",
|
272
|
+
"lib/cms/behaviors/pagination.rb",
|
273
|
+
"lib/cms/behaviors/publishing.rb",
|
274
|
+
"lib/cms/behaviors/rendering.rb",
|
275
|
+
"lib/cms/behaviors/searching.rb",
|
276
|
+
"lib/cms/behaviors/soft_deleting.rb",
|
277
|
+
"lib/cms/behaviors/taggable.rb",
|
278
|
+
"lib/cms/behaviors/userstamping.rb",
|
279
|
+
"lib/cms/behaviors/versioning.rb",
|
280
|
+
"lib/cms/caching.rb",
|
281
|
+
"lib/cms/data_loader.rb",
|
282
|
+
"lib/cms/extensions.rb",
|
283
|
+
"lib/cms/extensions/action_view/base.rb",
|
284
|
+
"lib/cms/extensions/active_record/base.rb",
|
285
|
+
"lib/cms/extensions/active_record/connection_adapters/abstract/schema_statements.rb",
|
286
|
+
"lib/cms/extensions/active_record/errors.rb",
|
287
|
+
"lib/cms/extensions/active_support/cache/file_store.rb",
|
288
|
+
"lib/cms/extensions/hash.rb",
|
289
|
+
"lib/cms/extensions/integer.rb",
|
290
|
+
"lib/cms/extensions/nil.rb",
|
291
|
+
"lib/cms/extensions/string.rb",
|
292
|
+
"lib/cms/init.rb",
|
293
|
+
"lib/cms/routes.rb",
|
294
|
+
"lib/initial_data.rb",
|
295
|
+
"lib/sequence.rb",
|
296
|
+
"lib/tasks/cms.rake",
|
297
|
+
"lib/tasks/db.rake",
|
298
|
+
"lib/tasks/dev.rake",
|
299
|
+
"public/fckeditor/editor/css/behaviors/disablehandles.htc",
|
300
|
+
"public/fckeditor/editor/css/behaviors/showtableborders.htc",
|
301
|
+
"public/fckeditor/editor/css/fck_editorarea.css",
|
302
|
+
"public/fckeditor/editor/css/fck_internal.css",
|
303
|
+
"public/fckeditor/editor/css/fck_showtableborders_gecko.css",
|
304
|
+
"public/fckeditor/editor/css/images/block_address.png",
|
305
|
+
"public/fckeditor/editor/css/images/block_blockquote.png",
|
306
|
+
"public/fckeditor/editor/css/images/block_div.png",
|
307
|
+
"public/fckeditor/editor/css/images/block_h1.png",
|
308
|
+
"public/fckeditor/editor/css/images/block_h2.png",
|
309
|
+
"public/fckeditor/editor/css/images/block_h3.png",
|
310
|
+
"public/fckeditor/editor/css/images/block_h4.png",
|
311
|
+
"public/fckeditor/editor/css/images/block_h5.png",
|
312
|
+
"public/fckeditor/editor/css/images/block_h6.png",
|
313
|
+
"public/fckeditor/editor/css/images/block_p.png",
|
314
|
+
"public/fckeditor/editor/css/images/block_pre.png",
|
315
|
+
"public/fckeditor/editor/css/images/fck_anchor.gif",
|
316
|
+
"public/fckeditor/editor/css/images/fck_flashlogo.gif",
|
317
|
+
"public/fckeditor/editor/css/images/fck_hiddenfield.gif",
|
318
|
+
"public/fckeditor/editor/css/images/fck_pagebreak.gif",
|
319
|
+
"public/fckeditor/editor/css/images/fck_plugin.gif",
|
320
|
+
"public/fckeditor/editor/dialog/common/fck_dialog_common.css",
|
321
|
+
"public/fckeditor/editor/dialog/common/fck_dialog_common.js",
|
322
|
+
"public/fckeditor/editor/dialog/common/images/locked.gif",
|
323
|
+
"public/fckeditor/editor/dialog/common/images/reset.gif",
|
324
|
+
"public/fckeditor/editor/dialog/common/images/unlocked.gif",
|
325
|
+
"public/fckeditor/editor/dialog/fck_about.html",
|
326
|
+
"public/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif",
|
327
|
+
"public/fckeditor/editor/dialog/fck_about/logo_fredck.gif",
|
328
|
+
"public/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif",
|
329
|
+
"public/fckeditor/editor/dialog/fck_anchor.html",
|
330
|
+
"public/fckeditor/editor/dialog/fck_button.html",
|
331
|
+
"public/fckeditor/editor/dialog/fck_checkbox.html",
|
332
|
+
"public/fckeditor/editor/dialog/fck_colorselector.html",
|
333
|
+
"public/fckeditor/editor/dialog/fck_div.html",
|
334
|
+
"public/fckeditor/editor/dialog/fck_docprops.html",
|
335
|
+
"public/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html",
|
336
|
+
"public/fckeditor/editor/dialog/fck_flash.html",
|
337
|
+
"public/fckeditor/editor/dialog/fck_flash/fck_flash.js",
|
338
|
+
"public/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html",
|
339
|
+
"public/fckeditor/editor/dialog/fck_form.html",
|
340
|
+
"public/fckeditor/editor/dialog/fck_hiddenfield.html",
|
341
|
+
"public/fckeditor/editor/dialog/fck_image.html",
|
342
|
+
"public/fckeditor/editor/dialog/fck_image/fck_image.js",
|
343
|
+
"public/fckeditor/editor/dialog/fck_image/fck_image_preview.html",
|
344
|
+
"public/fckeditor/editor/dialog/fck_link.html",
|
345
|
+
"public/fckeditor/editor/dialog/fck_link/fck_link.js",
|
346
|
+
"public/fckeditor/editor/dialog/fck_listprop.html",
|
347
|
+
"public/fckeditor/editor/dialog/fck_paste.html",
|
348
|
+
"public/fckeditor/editor/dialog/fck_radiobutton.html",
|
349
|
+
"public/fckeditor/editor/dialog/fck_replace.html",
|
350
|
+
"public/fckeditor/editor/dialog/fck_select.html",
|
351
|
+
"public/fckeditor/editor/dialog/fck_select/fck_select.js",
|
352
|
+
"public/fckeditor/editor/dialog/fck_smiley.html",
|
353
|
+
"public/fckeditor/editor/dialog/fck_source.html",
|
354
|
+
"public/fckeditor/editor/dialog/fck_specialchar.html",
|
355
|
+
"public/fckeditor/editor/dialog/fck_spellerpages.html",
|
356
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html",
|
357
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js",
|
358
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html",
|
359
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm",
|
360
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php",
|
361
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl",
|
362
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js",
|
363
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html",
|
364
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css",
|
365
|
+
"public/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js",
|
366
|
+
"public/fckeditor/editor/dialog/fck_table.html",
|
367
|
+
"public/fckeditor/editor/dialog/fck_tablecell.html",
|
368
|
+
"public/fckeditor/editor/dialog/fck_template.html",
|
369
|
+
"public/fckeditor/editor/dialog/fck_template/images/template1.gif",
|
370
|
+
"public/fckeditor/editor/dialog/fck_template/images/template2.gif",
|
371
|
+
"public/fckeditor/editor/dialog/fck_template/images/template3.gif",
|
372
|
+
"public/fckeditor/editor/dialog/fck_textarea.html",
|
373
|
+
"public/fckeditor/editor/dialog/fck_textfield.html",
|
374
|
+
"public/fckeditor/editor/dtd/fck_dtd_test.html",
|
375
|
+
"public/fckeditor/editor/dtd/fck_xhtml10strict.js",
|
376
|
+
"public/fckeditor/editor/dtd/fck_xhtml10transitional.js",
|
377
|
+
"public/fckeditor/editor/fckdebug.html",
|
378
|
+
"public/fckeditor/editor/fckdialog.html",
|
379
|
+
"public/fckeditor/editor/fckeditor.html",
|
380
|
+
"public/fckeditor/editor/fckeditor.original.html",
|
381
|
+
"public/fckeditor/editor/filemanager/browser/default/browser.css",
|
382
|
+
"public/fckeditor/editor/filemanager/browser/default/browser.html",
|
383
|
+
"public/fckeditor/editor/filemanager/browser/default/frmactualfolder.html",
|
384
|
+
"public/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html",
|
385
|
+
"public/fckeditor/editor/filemanager/browser/default/frmfolders.html",
|
386
|
+
"public/fckeditor/editor/filemanager/browser/default/frmresourceslist.html",
|
387
|
+
"public/fckeditor/editor/filemanager/browser/default/frmresourcetype.html",
|
388
|
+
"public/fckeditor/editor/filemanager/browser/default/frmupload.html",
|
389
|
+
"public/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif",
|
390
|
+
"public/fckeditor/editor/filemanager/browser/default/images/Folder.gif",
|
391
|
+
"public/fckeditor/editor/filemanager/browser/default/images/Folder32.gif",
|
392
|
+
"public/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif",
|
393
|
+
"public/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif",
|
394
|
+
"public/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif",
|
395
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif",
|
396
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif",
|
397
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif",
|
398
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif",
|
399
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif",
|
400
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif",
|
401
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif",
|
402
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif",
|
403
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif",
|
404
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif",
|
405
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif",
|
406
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif",
|
407
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif",
|
408
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif",
|
409
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif",
|
410
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif",
|
411
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif",
|
412
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif",
|
413
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif",
|
414
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif",
|
415
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif",
|
416
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif",
|
417
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif",
|
418
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif",
|
419
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif",
|
420
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif",
|
421
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif",
|
422
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif",
|
423
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif",
|
424
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif",
|
425
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif",
|
426
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif",
|
427
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif",
|
428
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif",
|
429
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif",
|
430
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif",
|
431
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif",
|
432
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif",
|
433
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/html.gif",
|
434
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif",
|
435
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/js.gif",
|
436
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif",
|
437
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif",
|
438
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif",
|
439
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/png.gif",
|
440
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif",
|
441
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif",
|
442
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif",
|
443
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif",
|
444
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif",
|
445
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif",
|
446
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif",
|
447
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif",
|
448
|
+
"public/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif",
|
449
|
+
"public/fckeditor/editor/filemanager/browser/default/images/spacer.gif",
|
450
|
+
"public/fckeditor/editor/filemanager/browser/default/js/common.js",
|
451
|
+
"public/fckeditor/editor/filemanager/browser/default/js/fckxml.js",
|
452
|
+
"public/fckeditor/editor/images/anchor.gif",
|
453
|
+
"public/fckeditor/editor/images/arrow_ltr.gif",
|
454
|
+
"public/fckeditor/editor/images/arrow_rtl.gif",
|
455
|
+
"public/fckeditor/editor/images/smiley/msn/angel_smile.gif",
|
456
|
+
"public/fckeditor/editor/images/smiley/msn/angry_smile.gif",
|
457
|
+
"public/fckeditor/editor/images/smiley/msn/broken_heart.gif",
|
458
|
+
"public/fckeditor/editor/images/smiley/msn/cake.gif",
|
459
|
+
"public/fckeditor/editor/images/smiley/msn/confused_smile.gif",
|
460
|
+
"public/fckeditor/editor/images/smiley/msn/cry_smile.gif",
|
461
|
+
"public/fckeditor/editor/images/smiley/msn/devil_smile.gif",
|
462
|
+
"public/fckeditor/editor/images/smiley/msn/embaressed_smile.gif",
|
463
|
+
"public/fckeditor/editor/images/smiley/msn/envelope.gif",
|
464
|
+
"public/fckeditor/editor/images/smiley/msn/heart.gif",
|
465
|
+
"public/fckeditor/editor/images/smiley/msn/kiss.gif",
|
466
|
+
"public/fckeditor/editor/images/smiley/msn/lightbulb.gif",
|
467
|
+
"public/fckeditor/editor/images/smiley/msn/omg_smile.gif",
|
468
|
+
"public/fckeditor/editor/images/smiley/msn/regular_smile.gif",
|
469
|
+
"public/fckeditor/editor/images/smiley/msn/sad_smile.gif",
|
470
|
+
"public/fckeditor/editor/images/smiley/msn/shades_smile.gif",
|
471
|
+
"public/fckeditor/editor/images/smiley/msn/teeth_smile.gif",
|
472
|
+
"public/fckeditor/editor/images/smiley/msn/thumbs_down.gif",
|
473
|
+
"public/fckeditor/editor/images/smiley/msn/thumbs_up.gif",
|
474
|
+
"public/fckeditor/editor/images/smiley/msn/tounge_smile.gif",
|
475
|
+
"public/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif",
|
476
|
+
"public/fckeditor/editor/images/smiley/msn/wink_smile.gif",
|
477
|
+
"public/fckeditor/editor/images/spacer.gif",
|
478
|
+
"public/fckeditor/editor/js/fckadobeair.js",
|
479
|
+
"public/fckeditor/editor/js/fckeditorcode_gecko.js",
|
480
|
+
"public/fckeditor/editor/js/fckeditorcode_ie.js",
|
481
|
+
"public/fckeditor/editor/lang/_translationstatus.txt",
|
482
|
+
"public/fckeditor/editor/lang/af.js",
|
483
|
+
"public/fckeditor/editor/lang/ar.js",
|
484
|
+
"public/fckeditor/editor/lang/bg.js",
|
485
|
+
"public/fckeditor/editor/lang/bn.js",
|
486
|
+
"public/fckeditor/editor/lang/bs.js",
|
487
|
+
"public/fckeditor/editor/lang/ca.js",
|
488
|
+
"public/fckeditor/editor/lang/cs.js",
|
489
|
+
"public/fckeditor/editor/lang/da.js",
|
490
|
+
"public/fckeditor/editor/lang/de.js",
|
491
|
+
"public/fckeditor/editor/lang/el.js",
|
492
|
+
"public/fckeditor/editor/lang/en-au.js",
|
493
|
+
"public/fckeditor/editor/lang/en-ca.js",
|
494
|
+
"public/fckeditor/editor/lang/en-uk.js",
|
495
|
+
"public/fckeditor/editor/lang/en.js",
|
496
|
+
"public/fckeditor/editor/lang/eo.js",
|
497
|
+
"public/fckeditor/editor/lang/es.js",
|
498
|
+
"public/fckeditor/editor/lang/et.js",
|
499
|
+
"public/fckeditor/editor/lang/eu.js",
|
500
|
+
"public/fckeditor/editor/lang/fa.js",
|
501
|
+
"public/fckeditor/editor/lang/fi.js",
|
502
|
+
"public/fckeditor/editor/lang/fo.js",
|
503
|
+
"public/fckeditor/editor/lang/fr-ca.js",
|
504
|
+
"public/fckeditor/editor/lang/fr.js",
|
505
|
+
"public/fckeditor/editor/lang/gl.js",
|
506
|
+
"public/fckeditor/editor/lang/gu.js",
|
507
|
+
"public/fckeditor/editor/lang/he.js",
|
508
|
+
"public/fckeditor/editor/lang/hi.js",
|
509
|
+
"public/fckeditor/editor/lang/hr.js",
|
510
|
+
"public/fckeditor/editor/lang/hu.js",
|
511
|
+
"public/fckeditor/editor/lang/it.js",
|
512
|
+
"public/fckeditor/editor/lang/ja.js",
|
513
|
+
"public/fckeditor/editor/lang/km.js",
|
514
|
+
"public/fckeditor/editor/lang/ko.js",
|
515
|
+
"public/fckeditor/editor/lang/lt.js",
|
516
|
+
"public/fckeditor/editor/lang/lv.js",
|
517
|
+
"public/fckeditor/editor/lang/mn.js",
|
518
|
+
"public/fckeditor/editor/lang/ms.js",
|
519
|
+
"public/fckeditor/editor/lang/nb.js",
|
520
|
+
"public/fckeditor/editor/lang/nl.js",
|
521
|
+
"public/fckeditor/editor/lang/no.js",
|
522
|
+
"public/fckeditor/editor/lang/pl.js",
|
523
|
+
"public/fckeditor/editor/lang/pt-br.js",
|
524
|
+
"public/fckeditor/editor/lang/pt.js",
|
525
|
+
"public/fckeditor/editor/lang/ro.js",
|
526
|
+
"public/fckeditor/editor/lang/ru.js",
|
527
|
+
"public/fckeditor/editor/lang/sk.js",
|
528
|
+
"public/fckeditor/editor/lang/sl.js",
|
529
|
+
"public/fckeditor/editor/lang/sr-latn.js",
|
530
|
+
"public/fckeditor/editor/lang/sr.js",
|
531
|
+
"public/fckeditor/editor/lang/sv.js",
|
532
|
+
"public/fckeditor/editor/lang/th.js",
|
533
|
+
"public/fckeditor/editor/lang/tr.js",
|
534
|
+
"public/fckeditor/editor/lang/uk.js",
|
535
|
+
"public/fckeditor/editor/lang/vi.js",
|
536
|
+
"public/fckeditor/editor/lang/zh-cn.js",
|
537
|
+
"public/fckeditor/editor/lang/zh.js",
|
538
|
+
"public/fckeditor/editor/plugins/autogrow/fckplugin.js",
|
539
|
+
"public/fckeditor/editor/plugins/bbcode/_sample/sample.config.js",
|
540
|
+
"public/fckeditor/editor/plugins/bbcode/_sample/sample.html",
|
541
|
+
"public/fckeditor/editor/plugins/bbcode/fckplugin.js",
|
542
|
+
"public/fckeditor/editor/plugins/dragresizetable/fckplugin.js",
|
543
|
+
"public/fckeditor/editor/plugins/placeholder/fck_placeholder.html",
|
544
|
+
"public/fckeditor/editor/plugins/placeholder/fckplugin.js",
|
545
|
+
"public/fckeditor/editor/plugins/placeholder/lang/de.js",
|
546
|
+
"public/fckeditor/editor/plugins/placeholder/lang/en.js",
|
547
|
+
"public/fckeditor/editor/plugins/placeholder/lang/es.js",
|
548
|
+
"public/fckeditor/editor/plugins/placeholder/lang/fr.js",
|
549
|
+
"public/fckeditor/editor/plugins/placeholder/lang/it.js",
|
550
|
+
"public/fckeditor/editor/plugins/placeholder/lang/pl.js",
|
551
|
+
"public/fckeditor/editor/plugins/placeholder/placeholder.gif",
|
552
|
+
"public/fckeditor/editor/plugins/simplecommands/fckplugin.js",
|
553
|
+
"public/fckeditor/editor/plugins/tablecommands/fckplugin.js",
|
554
|
+
"public/fckeditor/editor/skins/_fckviewstrips.html",
|
555
|
+
"public/fckeditor/editor/skins/default/fck_dialog.css",
|
556
|
+
"public/fckeditor/editor/skins/default/fck_dialog_ie6.js",
|
557
|
+
"public/fckeditor/editor/skins/default/fck_editor.css",
|
558
|
+
"public/fckeditor/editor/skins/default/fck_strip.gif",
|
559
|
+
"public/fckeditor/editor/skins/default/images/dialog.sides.gif",
|
560
|
+
"public/fckeditor/editor/skins/default/images/dialog.sides.png",
|
561
|
+
"public/fckeditor/editor/skins/default/images/dialog.sides.rtl.png",
|
562
|
+
"public/fckeditor/editor/skins/default/images/sprites.gif",
|
563
|
+
"public/fckeditor/editor/skins/default/images/sprites.png",
|
564
|
+
"public/fckeditor/editor/skins/default/images/toolbar.arrowright.gif",
|
565
|
+
"public/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif",
|
566
|
+
"public/fckeditor/editor/skins/default/images/toolbar.collapse.gif",
|
567
|
+
"public/fckeditor/editor/skins/default/images/toolbar.end.gif",
|
568
|
+
"public/fckeditor/editor/skins/default/images/toolbar.expand.gif",
|
569
|
+
"public/fckeditor/editor/skins/default/images/toolbar.separator.gif",
|
570
|
+
"public/fckeditor/editor/skins/default/images/toolbar.start.gif",
|
571
|
+
"public/fckeditor/editor/skins/office2003/fck_dialog.css",
|
572
|
+
"public/fckeditor/editor/skins/office2003/fck_dialog_ie6.js",
|
573
|
+
"public/fckeditor/editor/skins/office2003/fck_editor.css",
|
574
|
+
"public/fckeditor/editor/skins/office2003/fck_strip.gif",
|
575
|
+
"public/fckeditor/editor/skins/office2003/images/dialog.sides.gif",
|
576
|
+
"public/fckeditor/editor/skins/office2003/images/dialog.sides.png",
|
577
|
+
"public/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png",
|
578
|
+
"public/fckeditor/editor/skins/office2003/images/sprites.gif",
|
579
|
+
"public/fckeditor/editor/skins/office2003/images/sprites.png",
|
580
|
+
"public/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif",
|
581
|
+
"public/fckeditor/editor/skins/office2003/images/toolbar.bg.gif",
|
582
|
+
"public/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif",
|
583
|
+
"public/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif",
|
584
|
+
"public/fckeditor/editor/skins/office2003/images/toolbar.end.gif",
|
585
|
+
"public/fckeditor/editor/skins/office2003/images/toolbar.expand.gif",
|
586
|
+
"public/fckeditor/editor/skins/office2003/images/toolbar.separator.gif",
|
587
|
+
"public/fckeditor/editor/skins/office2003/images/toolbar.start.gif",
|
588
|
+
"public/fckeditor/editor/skins/silver/fck_dialog.css",
|
589
|
+
"public/fckeditor/editor/skins/silver/fck_dialog_ie6.js",
|
590
|
+
"public/fckeditor/editor/skins/silver/fck_editor.css",
|
591
|
+
"public/fckeditor/editor/skins/silver/fck_strip.gif",
|
592
|
+
"public/fckeditor/editor/skins/silver/images/dialog.sides.gif",
|
593
|
+
"public/fckeditor/editor/skins/silver/images/dialog.sides.png",
|
594
|
+
"public/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png",
|
595
|
+
"public/fckeditor/editor/skins/silver/images/sprites.gif",
|
596
|
+
"public/fckeditor/editor/skins/silver/images/sprites.png",
|
597
|
+
"public/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif",
|
598
|
+
"public/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif",
|
599
|
+
"public/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif",
|
600
|
+
"public/fckeditor/editor/skins/silver/images/toolbar.collapse.gif",
|
601
|
+
"public/fckeditor/editor/skins/silver/images/toolbar.end.gif",
|
602
|
+
"public/fckeditor/editor/skins/silver/images/toolbar.expand.gif",
|
603
|
+
"public/fckeditor/editor/skins/silver/images/toolbar.separator.gif",
|
604
|
+
"public/fckeditor/editor/skins/silver/images/toolbar.start.gif",
|
605
|
+
"public/fckeditor/fckconfig.js",
|
606
|
+
"public/fckeditor/fckdebug.html",
|
607
|
+
"public/fckeditor/fckdialog.html",
|
608
|
+
"public/fckeditor/fckeditor.html",
|
609
|
+
"public/fckeditor/fckeditor.js",
|
610
|
+
"public/fckeditor/fckeditor.original.html",
|
611
|
+
"public/fckeditor/fckpackager.xml",
|
612
|
+
"public/fckeditor/fckstyles.xml",
|
613
|
+
"public/fckeditor/fcktemplates.xml",
|
614
|
+
"public/images/cms/administration/user_browser_bg.gif",
|
615
|
+
"public/images/cms/bg.png",
|
616
|
+
"public/images/cms/bl_curve.png",
|
617
|
+
"public/images/cms/bottom_cap.png",
|
618
|
+
"public/images/cms/bottom_cap_content.png",
|
619
|
+
"public/images/cms/browse.gif",
|
620
|
+
"public/images/cms/browser_media_logo.png",
|
621
|
+
"public/images/cms/browsercms_logo.png",
|
622
|
+
"public/images/cms/buttons/button.png",
|
623
|
+
"public/images/cms/buttons/button_bg.png",
|
624
|
+
"public/images/cms/buttons/button_cap.png",
|
625
|
+
"public/images/cms/buttons/button_cap_h.png",
|
626
|
+
"public/images/cms/buttons/button_cap_off.gif",
|
627
|
+
"public/images/cms/buttons/button_h.png",
|
628
|
+
"public/images/cms/buttons/button_off.png",
|
629
|
+
"public/images/cms/buttons/delete_x.png",
|
630
|
+
"public/images/cms/buttons/delete_x_disabled.png",
|
631
|
+
"public/images/cms/buttons/delete_x_h.png",
|
632
|
+
"public/images/cms/buttons/sm_button.gif",
|
633
|
+
"public/images/cms/buttons/sm_button_2.gif",
|
634
|
+
"public/images/cms/buttons/sm_button_2_h.gif",
|
635
|
+
"public/images/cms/buttons/sm_button_h.gif",
|
636
|
+
"public/images/cms/containers/add.gif",
|
637
|
+
"public/images/cms/containers/alpha.png",
|
638
|
+
"public/images/cms/containers/beta.png",
|
639
|
+
"public/images/cms/containers/delete.gif",
|
640
|
+
"public/images/cms/containers/down.gif",
|
641
|
+
"public/images/cms/containers/edit.gif",
|
642
|
+
"public/images/cms/containers/up.gif",
|
643
|
+
"public/images/cms/containers/view.gif",
|
644
|
+
"public/images/cms/content_bg.gif",
|
645
|
+
"public/images/cms/dashboard/bottom_cap.png",
|
646
|
+
"public/images/cms/dashboard/bottom_cap_content.png",
|
647
|
+
"public/images/cms/dashboard/header_bg.gif",
|
648
|
+
"public/images/cms/dashboard/header_left_bg.gif",
|
649
|
+
"public/images/cms/dashboard/table_header_bg.gif",
|
650
|
+
"public/images/cms/dashboard/top_cap.png",
|
651
|
+
"public/images/cms/dashed.gif",
|
652
|
+
"public/images/cms/datepicker/clear.gif",
|
653
|
+
"public/images/cms/datepicker/close.gif",
|
654
|
+
"public/images/cms/dk_button_l.gif",
|
655
|
+
"public/images/cms/dk_button_r.gif",
|
656
|
+
"public/images/cms/dot.png",
|
657
|
+
"public/images/cms/draft_status.gif",
|
658
|
+
"public/images/cms/gray_long_bg.gif",
|
659
|
+
"public/images/cms/icons/actions/add.png",
|
660
|
+
"public/images/cms/icons/actions/config.png",
|
661
|
+
"public/images/cms/icons/actions/connect.png",
|
662
|
+
"public/images/cms/icons/actions/delete.png",
|
663
|
+
"public/images/cms/icons/actions/down.png",
|
664
|
+
"public/images/cms/icons/actions/edit.png",
|
665
|
+
"public/images/cms/icons/actions/folder.png",
|
666
|
+
"public/images/cms/icons/actions/folder_add.png",
|
667
|
+
"public/images/cms/icons/actions/folder_delete.png",
|
668
|
+
"public/images/cms/icons/actions/folder_edit.png",
|
669
|
+
"public/images/cms/icons/actions/folder_move.png",
|
670
|
+
"public/images/cms/icons/actions/folder_open.png",
|
671
|
+
"public/images/cms/icons/actions/history.png",
|
672
|
+
"public/images/cms/icons/actions/home.png",
|
673
|
+
"public/images/cms/icons/actions/left.png",
|
674
|
+
"public/images/cms/icons/actions/link.png",
|
675
|
+
"public/images/cms/icons/actions/page.png",
|
676
|
+
"public/images/cms/icons/actions/page_add.png",
|
677
|
+
"public/images/cms/icons/actions/page_edit.png",
|
678
|
+
"public/images/cms/icons/actions/page_move.png",
|
679
|
+
"public/images/cms/icons/actions/redo.png",
|
680
|
+
"public/images/cms/icons/actions/refresh.png",
|
681
|
+
"public/images/cms/icons/actions/right.png",
|
682
|
+
"public/images/cms/icons/actions/root_folder.png",
|
683
|
+
"public/images/cms/icons/actions/root_link.png",
|
684
|
+
"public/images/cms/icons/actions/root_page.png",
|
685
|
+
"public/images/cms/icons/actions/undo.png",
|
686
|
+
"public/images/cms/icons/actions/up.png",
|
687
|
+
"public/images/cms/icons/actions/view.png",
|
688
|
+
"public/images/cms/icons/file_types/doc.png",
|
689
|
+
"public/images/cms/icons/file_types/file.png",
|
690
|
+
"public/images/cms/icons/file_types/gif.png",
|
691
|
+
"public/images/cms/icons/file_types/htm.png",
|
692
|
+
"public/images/cms/icons/file_types/pdf.png",
|
693
|
+
"public/images/cms/icons/file_types/ppt.png",
|
694
|
+
"public/images/cms/icons/file_types/swf.png",
|
695
|
+
"public/images/cms/icons/file_types/txt.png",
|
696
|
+
"public/images/cms/icons/file_types/xls.png",
|
697
|
+
"public/images/cms/icons/file_types/xml.png",
|
698
|
+
"public/images/cms/icons/file_types/zip.png",
|
699
|
+
"public/images/cms/icons/status/archived.gif",
|
700
|
+
"public/images/cms/icons/status/draft.gif",
|
701
|
+
"public/images/cms/icons/status/hidden.gif",
|
702
|
+
"public/images/cms/icons/status/locked.gif",
|
703
|
+
"public/images/cms/icons/status/published.gif",
|
704
|
+
"public/images/cms/icons/status/unlocked.gif",
|
705
|
+
"public/images/cms/icons/user.png",
|
706
|
+
"public/images/cms/login_bg.jpg",
|
707
|
+
"public/images/cms/login_bottom.jpg",
|
708
|
+
"public/images/cms/login_top.gif",
|
709
|
+
"public/images/cms/lt_button_bg.gif",
|
710
|
+
"public/images/cms/lt_button_l.gif",
|
711
|
+
"public/images/cms/lt_button_r.gif",
|
712
|
+
"public/images/cms/menu.png",
|
713
|
+
"public/images/cms/menu/block_cap_h.gif",
|
714
|
+
"public/images/cms/menu/bottom_cap.png",
|
715
|
+
"public/images/cms/menu/bottom_cap_menu.png",
|
716
|
+
"public/images/cms/menu/bottom_cap_menu_first.png",
|
717
|
+
"public/images/cms/menu/menu_header_first_bg.gif",
|
718
|
+
"public/images/cms/menu/selected_block_cap.gif",
|
719
|
+
"public/images/cms/menu/top_cap.png",
|
720
|
+
"public/images/cms/menu/top_cap_menu_header.png",
|
721
|
+
"public/images/cms/menu_h.gif",
|
722
|
+
"public/images/cms/menu_header.png",
|
723
|
+
"public/images/cms/menu_open.png",
|
724
|
+
"public/images/cms/menu_open_bg.gif",
|
725
|
+
"public/images/cms/nav.png",
|
726
|
+
"public/images/cms/nav/on_bg.gif",
|
727
|
+
"public/images/cms/nav_cap.png",
|
728
|
+
"public/images/cms/nav_cap_h.gif",
|
729
|
+
"public/images/cms/nav_h.gif",
|
730
|
+
"public/images/cms/page_toolbar/page_toolbar_bg.gif",
|
731
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_bg.gif",
|
732
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_draft_bg.gif",
|
733
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_draft_l.gif",
|
734
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_draft_r.gif",
|
735
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_l.gif",
|
736
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_published_bg.gif",
|
737
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_published_l.gif",
|
738
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_published_r.gif",
|
739
|
+
"public/images/cms/page_toolbar/page_toolbar_inset_r.gif",
|
740
|
+
"public/images/cms/page_toolbar/page_toolbar_l.gif",
|
741
|
+
"public/images/cms/page_toolbar/page_toolbar_r.gif",
|
742
|
+
"public/images/cms/page_toolbar/status_draft_bg.gif",
|
743
|
+
"public/images/cms/page_toolbar/status_draft_l.gif",
|
744
|
+
"public/images/cms/page_toolbar/status_l.gif",
|
745
|
+
"public/images/cms/page_toolbar/status_published_bg.gif",
|
746
|
+
"public/images/cms/page_toolbar/status_published_l.gif",
|
747
|
+
"public/images/cms/page_toolbar/visual_editor_bg.gif",
|
748
|
+
"public/images/cms/page_toolbar/visual_editor_end.gif",
|
749
|
+
"public/images/cms/page_toolbar/visual_editor_r.gif",
|
750
|
+
"public/images/cms/page_toolbar/visual_editor_state_bg.gif",
|
751
|
+
"public/images/cms/pages/add_connectable.gif",
|
752
|
+
"public/images/cms/pages/connect_connectable.gif",
|
753
|
+
"public/images/cms/pages/container_border.gif",
|
754
|
+
"public/images/cms/pages/container_border_l.gif",
|
755
|
+
"public/images/cms/pages/container_border_r.gif",
|
756
|
+
"public/images/cms/pages/delete_connectable.gif",
|
757
|
+
"public/images/cms/pages/down_connectable.gif",
|
758
|
+
"public/images/cms/pages/down_connectable_disabled.gif",
|
759
|
+
"public/images/cms/pages/edit_connectable.gif",
|
760
|
+
"public/images/cms/pages/edit_connectable_2.gif",
|
761
|
+
"public/images/cms/pages/show_connectable.gif",
|
762
|
+
"public/images/cms/pages/up_connectable.gif",
|
763
|
+
"public/images/cms/pages/up_connectable_disabled.gif",
|
764
|
+
"public/images/cms/pagination/first.gif",
|
765
|
+
"public/images/cms/pagination/first_h.gif",
|
766
|
+
"public/images/cms/pagination/input.gif",
|
767
|
+
"public/images/cms/pagination/last.gif",
|
768
|
+
"public/images/cms/pagination/last_h.gif",
|
769
|
+
"public/images/cms/pagination/next.gif",
|
770
|
+
"public/images/cms/pagination/next_h.gif",
|
771
|
+
"public/images/cms/pagination/previous.gif",
|
772
|
+
"public/images/cms/pagination/previous_h.gif",
|
773
|
+
"public/images/cms/published_status.gif",
|
774
|
+
"public/images/cms/search.png",
|
775
|
+
"public/images/cms/search_submit.gif",
|
776
|
+
"public/images/cms/search_submit_h.gif",
|
777
|
+
"public/images/cms/searchbox_gradient.gif",
|
778
|
+
"public/images/cms/select_bg.gif",
|
779
|
+
"public/images/cms/select_bg_2.gif",
|
780
|
+
"public/images/cms/sitemap/bottom_cap.png",
|
781
|
+
"public/images/cms/sitemap/buffer_caps.png",
|
782
|
+
"public/images/cms/sitemap/contract.png",
|
783
|
+
"public/images/cms/sitemap/corners.gif",
|
784
|
+
"public/images/cms/sitemap/corners_hover.gif",
|
785
|
+
"public/images/cms/sitemap/divider.gif",
|
786
|
+
"public/images/cms/sitemap/expand.png",
|
787
|
+
"public/images/cms/sitemap/gradient.gif",
|
788
|
+
"public/images/cms/sitemap/gray_contract.png",
|
789
|
+
"public/images/cms/sitemap/gray_expand.png",
|
790
|
+
"public/images/cms/sitemap/no_contents.png",
|
791
|
+
"public/images/cms/sitemap/site_root_cap.png",
|
792
|
+
"public/images/cms/sitemap/tooltip.gif",
|
793
|
+
"public/images/cms/sitemap/top_cap_content.png",
|
794
|
+
"public/images/cms/solid.gif",
|
795
|
+
"public/images/cms/table/bl.gif",
|
796
|
+
"public/images/cms/table/br.gif",
|
797
|
+
"public/images/cms/table/divider.gif",
|
798
|
+
"public/images/cms/table/td_cap_first_h.gif",
|
799
|
+
"public/images/cms/table/td_cap_first_s.gif",
|
800
|
+
"public/images/cms/table/td_cap_last_h.gif",
|
801
|
+
"public/images/cms/table/td_cap_last_s.gif",
|
802
|
+
"public/images/cms/table/td_last_bg.gif",
|
803
|
+
"public/images/cms/table/th_bg.gif",
|
804
|
+
"public/images/cms/table/th_divider.gif",
|
805
|
+
"public/images/cms/table/th_last_bg.gif",
|
806
|
+
"public/images/cms/table/tl.gif",
|
807
|
+
"public/images/cms/table/tr.gif",
|
808
|
+
"public/images/cms/table/tr_bg.gif",
|
809
|
+
"public/images/cms/thickbox/loadingAnimation.gif",
|
810
|
+
"public/images/cms/thickbox/macFFBgHack.png",
|
811
|
+
"public/images/cms/toolbar_bg.png",
|
812
|
+
"public/images/cms/top_cap.png",
|
813
|
+
"public/images/cms/top_cap_content.png",
|
814
|
+
"public/images/cms/top_cap_menu_header.png",
|
815
|
+
"public/images/cms/user_search_submit.gif",
|
816
|
+
"public/images/cms/usercontrols_bg.png",
|
817
|
+
"public/images/cms/usercontrols_bg_cap.png",
|
818
|
+
"public/javascripts/cms/application.js",
|
819
|
+
"public/javascripts/cms/editor.js",
|
820
|
+
"public/javascripts/cms/sitemap.js",
|
821
|
+
"public/javascripts/jquery-ui.js",
|
822
|
+
"public/javascripts/jquery.contextMenu.js",
|
823
|
+
"public/javascripts/jquery.cookie.js",
|
824
|
+
"public/javascripts/jquery.dimensions.js",
|
825
|
+
"public/javascripts/jquery.js",
|
826
|
+
"public/javascripts/jquery.selectbox-0.5.js",
|
827
|
+
"public/javascripts/jquery.taglist.js",
|
828
|
+
"public/javascripts/jquery.thickbox.js",
|
829
|
+
"public/site/customconfig.js",
|
830
|
+
"public/stylesheets/cms/administration.css",
|
831
|
+
"public/stylesheets/cms/application.css",
|
832
|
+
"public/stylesheets/cms/block.css",
|
833
|
+
"public/stylesheets/cms/buttons.css",
|
834
|
+
"public/stylesheets/cms/content_library.css",
|
835
|
+
"public/stylesheets/cms/content_types.css",
|
836
|
+
"public/stylesheets/cms/dashboard.css",
|
837
|
+
"public/stylesheets/cms/data_table.css",
|
838
|
+
"public/stylesheets/cms/date_picker.css",
|
839
|
+
"public/stylesheets/cms/form_layout.css",
|
840
|
+
"public/stylesheets/cms/jquery.contextMenu.css",
|
841
|
+
"public/stylesheets/cms/login.css",
|
842
|
+
"public/stylesheets/cms/menu.css",
|
843
|
+
"public/stylesheets/cms/nav.css",
|
844
|
+
"public/stylesheets/cms/page_toolbar.css",
|
845
|
+
"public/stylesheets/cms/reset.css",
|
846
|
+
"public/stylesheets/cms/selectbox.css",
|
847
|
+
"public/stylesheets/cms/sitemap.css",
|
848
|
+
"public/stylesheets/cms/taglist.css",
|
849
|
+
"public/stylesheets/cms/thickbox.css",
|
850
|
+
"public/themes/blue_steel/images/logo.jpg",
|
851
|
+
"public/themes/blue_steel/images/splash.jpg",
|
852
|
+
"public/themes/blue_steel/stylesheets/style.css",
|
853
|
+
"rails/init.rb",
|
854
|
+
"rails_generators/browser_cms/USAGE",
|
855
|
+
"rails_generators/browser_cms/browser_cms_generator.rb",
|
856
|
+
"rails_generators/browser_cms/templates/README",
|
857
|
+
"rails_generators/browser_cms_demo_site/USAGE",
|
858
|
+
"rails_generators/browser_cms_demo_site/browser_cms_demo_site_generator.rb",
|
859
|
+
"rails_generators/browser_cms_demo_site/templates/migration.rb",
|
860
|
+
"rails_generators/content_block/USAGE",
|
861
|
+
"rails_generators/content_block/content_block_generator.rb",
|
862
|
+
"rails_generators/content_block/templates/_form.html.erb",
|
863
|
+
"rails_generators/content_block/templates/content_block.rb",
|
864
|
+
"rails_generators/content_block/templates/controller.rb",
|
865
|
+
"rails_generators/content_block/templates/migration.rb",
|
866
|
+
"rails_generators/content_block/templates/render.html.erb",
|
867
|
+
"rails_generators/portlet/USAGE",
|
868
|
+
"rails_generators/portlet/portlet_generator.rb",
|
869
|
+
"rails_generators/portlet/templates/_form.html.erb",
|
870
|
+
"rails_generators/portlet/templates/portlet.rb",
|
871
|
+
"rails_generators/portlet/templates/render.html.erb"
|
872
|
+
]
|
873
|
+
s.has_rdoc = true
|
874
|
+
s.homepage = %q{http://www.browsercms.org}
|
875
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
876
|
+
s.require_paths = ["lib"]
|
877
|
+
s.rubygems_version = %q{1.3.2}
|
878
|
+
s.summary = %q{A Content Management System for Rails}
|
879
|
+
s.test_files = [
|
880
|
+
"test/custom_assertions.rb",
|
881
|
+
"test/factories.rb",
|
882
|
+
"test/functional/cms/cache_controller_test.rb",
|
883
|
+
"test/functional/cms/categories_controller_test.rb",
|
884
|
+
"test/functional/cms/connectors_controller_test.rb",
|
885
|
+
"test/functional/cms/content_controller_test.rb",
|
886
|
+
"test/functional/cms/content_types_controller_test.rb",
|
887
|
+
"test/functional/cms/dashboard_controller_test.rb",
|
888
|
+
"test/functional/cms/file_blocks_controller_test.rb",
|
889
|
+
"test/functional/cms/groups_controller_test.rb",
|
890
|
+
"test/functional/cms/home_controller_test.rb",
|
891
|
+
"test/functional/cms/html_blocks_controller_test.rb",
|
892
|
+
"test/functional/cms/image_blocks_controller_test.rb",
|
893
|
+
"test/functional/cms/links_controller_test.rb",
|
894
|
+
"test/functional/cms/pages_controller_test.rb",
|
895
|
+
"test/functional/cms/portlets_controller_test.rb",
|
896
|
+
"test/functional/cms/section_nodes_controller_test.rb",
|
897
|
+
"test/functional/cms/sections_controller_test.rb",
|
898
|
+
"test/functional/cms/sessions_controller_test.rb",
|
899
|
+
"test/functional/cms/users_controller_test.rb",
|
900
|
+
"test/integration/login_test.rb",
|
901
|
+
"test/test_helper.rb",
|
902
|
+
"test/test_logging.rb",
|
903
|
+
"test/unit/behaviors/attaching_test.rb",
|
904
|
+
"test/unit/behaviors/dynamic_attributes_test.rb",
|
905
|
+
"test/unit/behaviors/publishable_test.rb",
|
906
|
+
"test/unit/behaviors/searching_test.rb",
|
907
|
+
"test/unit/behaviors/taggable_test.rb",
|
908
|
+
"test/unit/extensions/active_record/base_test.rb",
|
909
|
+
"test/unit/extensions/hash_test.rb",
|
910
|
+
"test/unit/extensions/integer_test.rb",
|
911
|
+
"test/unit/helpers/application_helper_test.rb",
|
912
|
+
"test/unit/helpers/menu_helper_test.rb",
|
913
|
+
"test/unit/helpers/page_helper_test.rb",
|
914
|
+
"test/unit/lib/content_block_test.rb",
|
915
|
+
"test/unit/models/attachment_test.rb",
|
916
|
+
"test/unit/models/category_test.rb",
|
917
|
+
"test/unit/models/category_type_test.rb",
|
918
|
+
"test/unit/models/connector_test.rb",
|
919
|
+
"test/unit/models/content_type_test.rb",
|
920
|
+
"test/unit/models/email_page_portlet_test.rb",
|
921
|
+
"test/unit/models/file_block_test.rb",
|
922
|
+
"test/unit/models/group_test.rb",
|
923
|
+
"test/unit/models/html_block_test.rb",
|
924
|
+
"test/unit/models/link_test.rb",
|
925
|
+
"test/unit/models/page_partial_test.rb",
|
926
|
+
"test/unit/models/page_route_test.rb",
|
927
|
+
"test/unit/models/page_template_test.rb",
|
928
|
+
"test/unit/models/page_test.rb",
|
929
|
+
"test/unit/models/permission_test.rb",
|
930
|
+
"test/unit/models/portlet_test.rb",
|
931
|
+
"test/unit/models/section_node_test.rb",
|
932
|
+
"test/unit/models/sections_test.rb",
|
933
|
+
"test/unit/models/site_test.rb",
|
934
|
+
"test/unit/models/task_test.rb",
|
935
|
+
"test/unit/models/user_test.rb"
|
936
|
+
]
|
937
|
+
|
938
|
+
if s.respond_to? :specification_version then
|
939
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
940
|
+
s.specification_version = 3
|
941
|
+
|
942
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
943
|
+
else
|
944
|
+
end
|
945
|
+
else
|
946
|
+
end
|
947
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nate-browsercms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.211
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BrowserMedia
|
@@ -232,6 +232,7 @@ files:
|
|
232
232
|
- app/views/portlets/portlets/_form.html.erb
|
233
233
|
- app/views/portlets/tag_cloud/_form.html.erb
|
234
234
|
- app/views/portlets/tag_cloud/render.html.erb
|
235
|
+
- browsercms.gemspec
|
235
236
|
- db/demo/data.rb
|
236
237
|
- db/demo/page_partials/_footer.html.erb
|
237
238
|
- db/demo/page_partials/_header.html.erb
|