wheels 0.0.48 → 0.0.49
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/controllers/access_control_entries_controller.rb +4 -4
- data/app/controllers/external_links_controller.rb +5 -0
- data/app/controllers/feedbacks_controller.rb +10 -0
- data/app/controllers/menus_controller.rb +2 -0
- data/app/controllers/pages_controller.rb +16 -29
- data/app/controllers/sitemaps_controller.rb +135 -0
- data/app/helpers/application_helper.rb +4 -3
- data/app/helpers/external_links_helper.rb +2 -0
- data/app/helpers/feedbacks_helper.rb +2 -0
- data/app/helpers/menus_helper.rb +2 -0
- data/app/helpers/sitemaps_helper.rb +12 -0
- data/app/mailers/feedback_mailer.rb +10 -0
- data/app/models/ability.rb +2 -1
- data/app/models/access_control_entry.rb +17 -15
- data/app/models/external_link.rb +4 -0
- data/app/models/feedback.rb +13 -0
- data/app/models/image.rb +1 -1
- data/app/models/menu.rb +4 -0
- data/app/models/page.rb +2 -5
- data/app/models/sitemap.rb +153 -0
- data/app/models/user.rb +7 -1
- data/app/validators/email_validator.rb +22 -0
- data/app/views/access_control_entries/_form.html.haml +1 -1
- data/app/views/access_control_entries/_index.html.haml +3 -3
- data/app/views/access_control_entries/_show.html.haml +1 -1
- data/app/views/external_links/_fields_for.html.haml +2 -0
- data/app/views/external_links/_form.html.haml +18 -0
- data/app/views/external_links/_show.html.haml +7 -0
- data/app/views/external_links/edit.html.haml +7 -0
- data/app/views/external_links/index.html.haml +23 -0
- data/app/views/external_links/new.html.haml +5 -0
- data/app/views/external_links/show.html.haml +2 -0
- data/app/views/feedback_mailer/submit_feedback.html.haml +22 -0
- data/app/views/feedbacks/_form.html.haml +37 -0
- data/app/views/feedbacks/index.html.haml +27 -0
- data/app/views/feedbacks/new.html.haml +5 -0
- data/app/views/feedbacks/show.html.haml +19 -0
- data/app/views/layouts/application.html.haml +21 -16
- data/app/views/layouts/bare.html.haml +2 -0
- data/app/views/loadbehind/_view.js.haml +1 -2
- data/app/views/menus/_form.html.haml +13 -0
- data/app/views/menus/edit.html.haml +7 -0
- data/app/views/menus/index.html.haml +19 -0
- data/app/views/menus/new.html.haml +5 -0
- data/app/views/menus/show.html.haml +7 -0
- data/app/views/pages/_child_pages_links.html.haml +1 -1
- data/app/views/pages/_control_panel.html.haml +1 -6
- data/app/views/pages/_form.html.haml +2 -2
- data/app/views/pages/_form_fields.html.haml +7 -2
- data/app/views/pages/_show.html.haml +4 -0
- data/app/views/pages/create.js.haml +2 -1
- data/app/views/pages/destroy.js.haml +3 -0
- data/app/views/pages/edit.js.haml +4 -0
- data/app/views/pages/index.html.haml +4 -2
- data/app/views/pages/index.js.haml +3 -0
- data/app/views/pages/new.js.haml +3 -0
- data/app/views/pages/show.html.haml +2 -10
- data/app/views/pages/show.js.haml +3 -0
- data/app/views/pages/update.js.haml +2 -2
- data/app/views/sitemaps/edit.html.haml +12 -0
- data/app/views/sitemaps/edit.js.erb +0 -0
- data/app/views/sitemaps/index.html.haml +93 -0
- data/app/views/sitemaps/index.json.erb +23 -0
- data/app/views/sitemaps/new.html.haml +8 -0
- data/app/views/sitemaps/new.js.erb +0 -0
- data/app/views/users/edit.html.haml +45 -0
- data/db/migrate/{add_fields_to_users.rb → 0010_add_fields_to_users.rb} +0 -0
- data/db/migrate/{create_blogs.rb → 0020_create_blogs.rb} +0 -0
- data/db/migrate/{create_galleries.rb → 0030_create_galleries.rb} +0 -0
- data/db/migrate/{create_images.rb → 0040_create_images.rb} +0 -0
- data/db/migrate/{create_profiles.rb → 0050_create_profiles.rb} +0 -0
- data/db/migrate/{insert_admin_user_and_roles.rb → 0060_insert_admin_user_and_roles.rb} +0 -0
- data/db/migrate/{create_pages.rb → 0070_create_pages.rb} +0 -0
- data/db/migrate/{create_forums.rb → 0080_create_forums.rb} +0 -0
- data/db/migrate/{create_discussions.rb → 0090_create_discussions.rb} +0 -0
- data/db/migrate/{create_forum_messages.rb → 0100_create_forum_messages.rb} +0 -0
- data/db/migrate/{create_access_control_entries.rb → 0110_create_access_control_entries.rb} +3 -3
- data/db/migrate/{create_attachments.rb → 0120_create_attachments.rb} +0 -4
- data/db/migrate/{create_roles.rb → 0130_create_roles.rb} +0 -0
- data/db/migrate/0140_create_feedbacks.rb +20 -0
- data/db/migrate/0150_create_external_links.rb +14 -0
- data/db/migrate/0160_create_sitemaps.rb +17 -0
- data/db/migrate/0170_create_menus.rb +14 -0
- data/lib/development_mail_interceptor.rb +7 -0
- data/lib/generators/wheels/recipes/wheels.rb +18 -12
- data/lib/wheels/base.rb +7 -0
- data/lib/wheels/routes.rb +8 -3
- data/lib/wheels.rb +2 -0
- data/public/javascripts/jquery-validate/additional-methods.js +259 -0
- data/public/javascripts/jquery-validate/changelog.txt +239 -0
- data/public/javascripts/jquery-validate/jquery.validate.js +1146 -0
- data/public/javascripts/jquery-validate/jquery.validate.min.js +16 -0
- data/public/javascripts/jquery-validate/jquery.validate.pack.js +15 -0
- data/public/javascripts/jquery-validate/lib/jquery-1.4.2.js +6240 -0
- data/public/javascripts/jquery-validate/lib/jquery.form.js +660 -0
- data/public/javascripts/jquery-validate/lib/jquery.js +4376 -0
- data/public/javascripts/jquery-validate/lib/jquery.metadata.js +122 -0
- data/public/javascripts/jquery-validate/localization/messages_ar.js +24 -0
- data/public/javascripts/jquery-validate/localization/messages_bg.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_cn.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_cs.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_da.js +20 -0
- data/public/javascripts/jquery-validate/localization/messages_de.js +20 -0
- data/public/javascripts/jquery-validate/localization/messages_el.js +24 -0
- data/public/javascripts/jquery-validate/localization/messages_es.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_fa.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_fi.js +21 -0
- data/public/javascripts/jquery-validate/localization/messages_fr.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_he.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_hu.js +20 -0
- data/public/javascripts/jquery-validate/localization/messages_it.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_kk.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_lt.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_lv.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_nl.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_no.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_pl.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_ptbr.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_ptpt.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_ro.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_ru.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_se.js +21 -0
- data/public/javascripts/jquery-validate/localization/messages_sk.js +20 -0
- data/public/javascripts/jquery-validate/localization/messages_tr.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_tw.js +23 -0
- data/public/javascripts/jquery-validate/localization/messages_ua.js +23 -0
- data/public/javascripts/jquery-validate/localization/methods_de.js +12 -0
- data/public/javascripts/jquery-validate/localization/methods_nl.js +9 -0
- data/public/javascripts/jquery-validate/localization/methods_pt.js +9 -0
- data/public/javascripts/jquery-validate/todo +172 -0
- data/public/javascripts/jquery.cookie.js +96 -0
- data/public/javascripts/jquery.filedrop.js +253 -0
- data/public/javascripts/jquery.hotkeys.js +99 -0
- data/public/javascripts/jquery.js +6240 -0
- data/public/javascripts/jquery.jstree.js +3510 -0
- data/public/javascripts/jquery.uploadify.js +26 -0
- data/public/javascripts/jquery.validate.js +1147 -0
- data/public/javascripts/sitemap_jstree.js +329 -0
- data/public/javascripts/swfobject.js +4 -0
- data/public/jstree/_demo/_dump.sql +20 -0
- data/public/jstree/_demo/_inc/__mysql_errors.log +0 -0
- data/public/jstree/_demo/_inc/class._database.php +146 -0
- data/public/jstree/_demo/_inc/class._database_i.php +152 -0
- data/public/jstree/_demo/_inc/class.tree.php +602 -0
- data/public/jstree/_demo/_install.txt +6 -0
- data/public/jstree/_demo/config.php +14 -0
- data/public/jstree/_demo/index.html +262 -0
- data/public/jstree/_demo/server.php +69 -0
- data/public/jstree/_docs/!style.css +37 -0
- data/public/jstree/_docs/_drive.png +0 -0
- data/public/jstree/_docs/_html_data.html +2 -0
- data/public/jstree/_docs/_json_data.json +4 -0
- data/public/jstree/_docs/_search_data.json +6 -0
- data/public/jstree/_docs/_search_result.json +1 -0
- data/public/jstree/_docs/_xml_flat.xml +12 -0
- data/public/jstree/_docs/_xml_nest.xml +18 -0
- data/public/jstree/_docs/checkbox.html +148 -0
- data/public/jstree/_docs/contextmenu.html +120 -0
- data/public/jstree/_docs/cookies.html +96 -0
- data/public/jstree/_docs/core.html +622 -0
- data/public/jstree/_docs/crrm.html +315 -0
- data/public/jstree/_docs/dnd.html +197 -0
- data/public/jstree/_docs/hotkeys.html +81 -0
- data/public/jstree/_docs/html_data.html +174 -0
- data/public/jstree/_docs/index.html +75 -0
- data/public/jstree/_docs/json_data.html +240 -0
- data/public/jstree/_docs/languages.html +138 -0
- data/public/jstree/_docs/search.html +114 -0
- data/public/jstree/_docs/sort.html +84 -0
- data/public/jstree/_docs/syntax/!script.js +2232 -0
- data/public/jstree/_docs/syntax/!style.css +511 -0
- data/public/jstree/_docs/syntax/clipboard.swf +0 -0
- data/public/jstree/_docs/syntax/help.png +0 -0
- data/public/jstree/_docs/syntax/magnifier.png +0 -0
- data/public/jstree/_docs/syntax/page_white_code.png +0 -0
- data/public/jstree/_docs/syntax/page_white_copy.png +0 -0
- data/public/jstree/_docs/syntax/printer.png +0 -0
- data/public/jstree/_docs/syntax/wrapping.png +0 -0
- data/public/jstree/_docs/themeroller.html +98 -0
- data/public/jstree/_docs/themes.html +126 -0
- data/public/jstree/_docs/types.html +173 -0
- data/public/jstree/_docs/ui.html +188 -0
- data/public/jstree/_docs/unique.html +70 -0
- data/public/jstree/_docs/xml_data.html +214 -0
- data/public/jstree/_lib/jquery.cookie.js +96 -0
- data/public/jstree/_lib/jquery.hotkeys.js +99 -0
- data/public/jstree/_lib/jquery.js +6240 -0
- data/public/jstree/jquery.jstree.js +3510 -0
- data/public/jstree/jstree.html +237 -0
- data/public/jstree/themes/apple/bg.jpg +0 -0
- data/public/jstree/themes/apple/d.png +0 -0
- data/public/jstree/themes/apple/dot_for_ie.gif +0 -0
- data/public/jstree/themes/apple/style.css +60 -0
- data/public/jstree/themes/apple/throbber.gif +0 -0
- data/public/jstree/themes/classic/d.png +0 -0
- data/public/jstree/themes/classic/dot_for_ie.gif +0 -0
- data/public/jstree/themes/classic/style.css +59 -0
- data/public/jstree/themes/classic/throbber.gif +0 -0
- data/public/jstree/themes/default/d.gif +0 -0
- data/public/jstree/themes/default/d.png +0 -0
- data/public/jstree/themes/default/style.css +73 -0
- data/public/jstree/themes/default/throbber.gif +0 -0
- data/public/jstree/themes/default-rtl/d.gif +0 -0
- data/public/jstree/themes/default-rtl/d.png +0 -0
- data/public/jstree/themes/default-rtl/dots.gif +0 -0
- data/public/jstree/themes/default-rtl/style.css +83 -0
- data/public/jstree/themes/default-rtl/throbber.gif +0 -0
- data/public/stylesheets/sass/dreamy.sass +21 -56
- data/public/stylesheets/sass/menu.sass +43 -9
- data/public/stylesheets/sass/uploadify.sass +52 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/jquery-ui-1.8.4.custom.css +549 -0
- data/wheels.gemspec +187 -15
- metadata +188 -16
data/wheels.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{wheels}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.49"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Tyler Gannon"]
|
12
|
-
s.date = %q{2010-09-
|
12
|
+
s.date = %q{2010-09-08}
|
13
13
|
s.description = %q{Call rails generate wheels.}
|
14
14
|
s.email = %q{tgannon@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -24,35 +24,49 @@ Gem::Specification.new do |s|
|
|
24
24
|
"app/controllers/attachments_controller.rb",
|
25
25
|
"app/controllers/blogs_controller.rb",
|
26
26
|
"app/controllers/discussions_controller.rb",
|
27
|
+
"app/controllers/external_links_controller.rb",
|
28
|
+
"app/controllers/feedbacks_controller.rb",
|
27
29
|
"app/controllers/forum_messages_controller.rb",
|
28
30
|
"app/controllers/forums_controller.rb",
|
29
31
|
"app/controllers/galleries_controller.rb",
|
30
32
|
"app/controllers/images_controller.rb",
|
33
|
+
"app/controllers/menus_controller.rb",
|
31
34
|
"app/controllers/pages_controller.rb",
|
32
35
|
"app/controllers/profiles_controller.rb",
|
36
|
+
"app/controllers/sitemaps_controller.rb",
|
33
37
|
"app/controllers/users_controller.rb",
|
34
38
|
"app/helpers/access_control_entries_helper.rb",
|
35
39
|
"app/helpers/application_helper.rb",
|
36
40
|
"app/helpers/blogs_helper.rb",
|
37
41
|
"app/helpers/discussions_helper.rb",
|
42
|
+
"app/helpers/external_links_helper.rb",
|
43
|
+
"app/helpers/feedbacks_helper.rb",
|
38
44
|
"app/helpers/forums_helper.rb",
|
45
|
+
"app/helpers/menus_helper.rb",
|
39
46
|
"app/helpers/pages_helper.rb",
|
47
|
+
"app/helpers/sitemaps_helper.rb",
|
48
|
+
"app/mailers/feedback_mailer.rb",
|
40
49
|
"app/models/ability.rb",
|
41
50
|
"app/models/access_control_entry.rb",
|
42
51
|
"app/models/attachment.rb",
|
43
52
|
"app/models/blog.rb",
|
44
53
|
"app/models/discussion.rb",
|
54
|
+
"app/models/external_link.rb",
|
55
|
+
"app/models/feedback.rb",
|
45
56
|
"app/models/forum.rb",
|
46
57
|
"app/models/forum_message.rb",
|
47
58
|
"app/models/gallery.rb",
|
48
59
|
"app/models/image.rb",
|
60
|
+
"app/models/menu.rb",
|
49
61
|
"app/models/page.rb",
|
50
62
|
"app/models/page_revision.rb",
|
51
63
|
"app/models/profile.rb",
|
52
64
|
"app/models/role.rb",
|
53
65
|
"app/models/s3_provider.rb",
|
66
|
+
"app/models/sitemap.rb",
|
54
67
|
"app/models/tagging.rb",
|
55
68
|
"app/models/user.rb",
|
69
|
+
"app/validators/email_validator.rb",
|
56
70
|
"app/views/access_control_entries/_form.html.haml",
|
57
71
|
"app/views/access_control_entries/_index.html.haml",
|
58
72
|
"app/views/access_control_entries/_show.html.haml",
|
@@ -92,6 +106,18 @@ Gem::Specification.new do |s|
|
|
92
106
|
"app/views/discussions/index.html.haml",
|
93
107
|
"app/views/discussions/new.html.haml",
|
94
108
|
"app/views/discussions/show.html.haml",
|
109
|
+
"app/views/external_links/_fields_for.html.haml",
|
110
|
+
"app/views/external_links/_form.html.haml",
|
111
|
+
"app/views/external_links/_show.html.haml",
|
112
|
+
"app/views/external_links/edit.html.haml",
|
113
|
+
"app/views/external_links/index.html.haml",
|
114
|
+
"app/views/external_links/new.html.haml",
|
115
|
+
"app/views/external_links/show.html.haml",
|
116
|
+
"app/views/feedback_mailer/submit_feedback.html.haml",
|
117
|
+
"app/views/feedbacks/_form.html.haml",
|
118
|
+
"app/views/feedbacks/index.html.haml",
|
119
|
+
"app/views/feedbacks/new.html.haml",
|
120
|
+
"app/views/feedbacks/show.html.haml",
|
95
121
|
"app/views/forum_messages/_form.html.haml",
|
96
122
|
"app/views/forum_messages/index.html.haml",
|
97
123
|
"app/views/forum_messages/new.html.haml",
|
@@ -119,6 +145,7 @@ Gem::Specification.new do |s|
|
|
119
145
|
"app/views/images/show.js.haml",
|
120
146
|
"app/views/images/update.js.haml",
|
121
147
|
"app/views/layouts/application.html.haml",
|
148
|
+
"app/views/layouts/bare.html.haml",
|
122
149
|
"app/views/layouts/image_dialog.html.haml",
|
123
150
|
"app/views/loadbehind/_destroy.js.haml",
|
124
151
|
"app/views/loadbehind/_edit.js.haml",
|
@@ -128,39 +155,62 @@ Gem::Specification.new do |s|
|
|
128
155
|
"app/views/loadbehind/_view.js.haml",
|
129
156
|
"app/views/loadbehind/growl.js.haml",
|
130
157
|
"app/views/loadbehind/index.js.haml",
|
158
|
+
"app/views/menus/_form.html.haml",
|
159
|
+
"app/views/menus/edit.html.haml",
|
160
|
+
"app/views/menus/index.html.haml",
|
161
|
+
"app/views/menus/new.html.haml",
|
162
|
+
"app/views/menus/show.html.haml",
|
131
163
|
"app/views/pages/_child_pages_links.html.haml",
|
132
164
|
"app/views/pages/_control_panel.html.haml",
|
133
165
|
"app/views/pages/_form.html.haml",
|
134
166
|
"app/views/pages/_form_fields.html.haml",
|
167
|
+
"app/views/pages/_show.html.haml",
|
135
168
|
"app/views/pages/_show_attachment.html.haml",
|
136
169
|
"app/views/pages/_show_small.html.haml",
|
137
170
|
"app/views/pages/create.js.haml",
|
171
|
+
"app/views/pages/destroy.js.haml",
|
138
172
|
"app/views/pages/edit.html.haml",
|
173
|
+
"app/views/pages/edit.js.haml",
|
139
174
|
"app/views/pages/index.html.haml",
|
175
|
+
"app/views/pages/index.js.haml",
|
140
176
|
"app/views/pages/new.html.haml",
|
177
|
+
"app/views/pages/new.js.haml",
|
141
178
|
"app/views/pages/show.html.haml",
|
179
|
+
"app/views/pages/show.js.haml",
|
142
180
|
"app/views/pages/update.js.haml",
|
143
181
|
"app/views/profiles/_form.html.haml",
|
144
182
|
"app/views/profiles/edit.html.haml",
|
145
183
|
"app/views/profiles/index.html.haml",
|
146
184
|
"app/views/profiles/new.html.haml",
|
147
185
|
"app/views/profiles/show.html.haml",
|
186
|
+
"app/views/sitemaps/edit.html.haml",
|
187
|
+
"app/views/sitemaps/edit.js.erb",
|
188
|
+
"app/views/sitemaps/index.html.haml",
|
189
|
+
"app/views/sitemaps/index.json.erb",
|
190
|
+
"app/views/sitemaps/new.html.haml",
|
191
|
+
"app/views/sitemaps/new.js.erb",
|
192
|
+
"app/views/users/edit.html.haml",
|
148
193
|
"app/views/users/index.html.haml",
|
149
194
|
"config/amazon_s3.yml",
|
150
|
-
"db/migrate/
|
151
|
-
"db/migrate/
|
152
|
-
"db/migrate/
|
153
|
-
"db/migrate/
|
154
|
-
"db/migrate/
|
155
|
-
"db/migrate/
|
156
|
-
"db/migrate/
|
157
|
-
"db/migrate/
|
158
|
-
"db/migrate/
|
159
|
-
"db/migrate/
|
160
|
-
"db/migrate/
|
161
|
-
"db/migrate/
|
162
|
-
"db/migrate/
|
195
|
+
"db/migrate/0010_add_fields_to_users.rb",
|
196
|
+
"db/migrate/0020_create_blogs.rb",
|
197
|
+
"db/migrate/0030_create_galleries.rb",
|
198
|
+
"db/migrate/0040_create_images.rb",
|
199
|
+
"db/migrate/0050_create_profiles.rb",
|
200
|
+
"db/migrate/0060_insert_admin_user_and_roles.rb",
|
201
|
+
"db/migrate/0070_create_pages.rb",
|
202
|
+
"db/migrate/0080_create_forums.rb",
|
203
|
+
"db/migrate/0090_create_discussions.rb",
|
204
|
+
"db/migrate/0100_create_forum_messages.rb",
|
205
|
+
"db/migrate/0110_create_access_control_entries.rb",
|
206
|
+
"db/migrate/0120_create_attachments.rb",
|
207
|
+
"db/migrate/0130_create_roles.rb",
|
208
|
+
"db/migrate/0140_create_feedbacks.rb",
|
209
|
+
"db/migrate/0150_create_external_links.rb",
|
210
|
+
"db/migrate/0160_create_sitemaps.rb",
|
211
|
+
"db/migrate/0170_create_menus.rb",
|
163
212
|
"init.rb",
|
213
|
+
"lib/development_mail_interceptor.rb",
|
164
214
|
"lib/generators/app_layout/LICENCE",
|
165
215
|
"lib/generators/app_layout/USAGE",
|
166
216
|
"lib/generators/app_layout/app_layout_generator.rb",
|
@@ -212,6 +262,7 @@ Gem::Specification.new do |s|
|
|
212
262
|
"lib/wheels/action_view_helper_extensions.rb",
|
213
263
|
"lib/wheels/active_record_extensions.rb",
|
214
264
|
"lib/wheels/active_record_user_extensions.rb",
|
265
|
+
"lib/wheels/base.rb",
|
215
266
|
"lib/wheels/flash_session_cookie_middleware.rb",
|
216
267
|
"lib/wheels/paperclip_interpolations.rb",
|
217
268
|
"lib/wheels/password_validators.rb",
|
@@ -247,13 +298,133 @@ Gem::Specification.new do |s|
|
|
247
298
|
"public/images/menu/main-delimiter.png",
|
248
299
|
"public/javascripts/galleries/configure_ckeditor.js",
|
249
300
|
"public/javascripts/jqUrl.js",
|
301
|
+
"public/javascripts/jquery-validate/additional-methods.js",
|
302
|
+
"public/javascripts/jquery-validate/changelog.txt",
|
303
|
+
"public/javascripts/jquery-validate/jquery.validate.js",
|
304
|
+
"public/javascripts/jquery-validate/jquery.validate.min.js",
|
305
|
+
"public/javascripts/jquery-validate/jquery.validate.pack.js",
|
306
|
+
"public/javascripts/jquery-validate/lib/jquery-1.4.2.js",
|
307
|
+
"public/javascripts/jquery-validate/lib/jquery.form.js",
|
308
|
+
"public/javascripts/jquery-validate/lib/jquery.js",
|
309
|
+
"public/javascripts/jquery-validate/lib/jquery.metadata.js",
|
310
|
+
"public/javascripts/jquery-validate/localization/messages_ar.js",
|
311
|
+
"public/javascripts/jquery-validate/localization/messages_bg.js",
|
312
|
+
"public/javascripts/jquery-validate/localization/messages_cn.js",
|
313
|
+
"public/javascripts/jquery-validate/localization/messages_cs.js",
|
314
|
+
"public/javascripts/jquery-validate/localization/messages_da.js",
|
315
|
+
"public/javascripts/jquery-validate/localization/messages_de.js",
|
316
|
+
"public/javascripts/jquery-validate/localization/messages_el.js",
|
317
|
+
"public/javascripts/jquery-validate/localization/messages_es.js",
|
318
|
+
"public/javascripts/jquery-validate/localization/messages_fa.js",
|
319
|
+
"public/javascripts/jquery-validate/localization/messages_fi.js",
|
320
|
+
"public/javascripts/jquery-validate/localization/messages_fr.js",
|
321
|
+
"public/javascripts/jquery-validate/localization/messages_he.js",
|
322
|
+
"public/javascripts/jquery-validate/localization/messages_hu.js",
|
323
|
+
"public/javascripts/jquery-validate/localization/messages_it.js",
|
324
|
+
"public/javascripts/jquery-validate/localization/messages_kk.js",
|
325
|
+
"public/javascripts/jquery-validate/localization/messages_lt.js",
|
326
|
+
"public/javascripts/jquery-validate/localization/messages_lv.js",
|
327
|
+
"public/javascripts/jquery-validate/localization/messages_nl.js",
|
328
|
+
"public/javascripts/jquery-validate/localization/messages_no.js",
|
329
|
+
"public/javascripts/jquery-validate/localization/messages_pl.js",
|
330
|
+
"public/javascripts/jquery-validate/localization/messages_ptbr.js",
|
331
|
+
"public/javascripts/jquery-validate/localization/messages_ptpt.js",
|
332
|
+
"public/javascripts/jquery-validate/localization/messages_ro.js",
|
333
|
+
"public/javascripts/jquery-validate/localization/messages_ru.js",
|
334
|
+
"public/javascripts/jquery-validate/localization/messages_se.js",
|
335
|
+
"public/javascripts/jquery-validate/localization/messages_sk.js",
|
336
|
+
"public/javascripts/jquery-validate/localization/messages_tr.js",
|
337
|
+
"public/javascripts/jquery-validate/localization/messages_tw.js",
|
338
|
+
"public/javascripts/jquery-validate/localization/messages_ua.js",
|
339
|
+
"public/javascripts/jquery-validate/localization/methods_de.js",
|
340
|
+
"public/javascripts/jquery-validate/localization/methods_nl.js",
|
341
|
+
"public/javascripts/jquery-validate/localization/methods_pt.js",
|
342
|
+
"public/javascripts/jquery-validate/todo",
|
343
|
+
"public/javascripts/jquery.cookie.js",
|
344
|
+
"public/javascripts/jquery.filedrop.js",
|
250
345
|
"public/javascripts/jquery.growl.js",
|
346
|
+
"public/javascripts/jquery.hotkeys.js",
|
347
|
+
"public/javascripts/jquery.js",
|
348
|
+
"public/javascripts/jquery.jstree.js",
|
349
|
+
"public/javascripts/jquery.uploadify.js",
|
350
|
+
"public/javascripts/jquery.validate.js",
|
251
351
|
"public/javascripts/loadbehind.js",
|
252
352
|
"public/javascripts/menu.js",
|
353
|
+
"public/javascripts/sitemap_jstree.js",
|
354
|
+
"public/javascripts/swfobject.js",
|
355
|
+
"public/jstree/_demo/_dump.sql",
|
356
|
+
"public/jstree/_demo/_inc/__mysql_errors.log",
|
357
|
+
"public/jstree/_demo/_inc/class._database.php",
|
358
|
+
"public/jstree/_demo/_inc/class._database_i.php",
|
359
|
+
"public/jstree/_demo/_inc/class.tree.php",
|
360
|
+
"public/jstree/_demo/_install.txt",
|
361
|
+
"public/jstree/_demo/config.php",
|
362
|
+
"public/jstree/_demo/index.html",
|
363
|
+
"public/jstree/_demo/server.php",
|
364
|
+
"public/jstree/_docs/!style.css",
|
365
|
+
"public/jstree/_docs/_drive.png",
|
366
|
+
"public/jstree/_docs/_html_data.html",
|
367
|
+
"public/jstree/_docs/_json_data.json",
|
368
|
+
"public/jstree/_docs/_search_data.json",
|
369
|
+
"public/jstree/_docs/_search_result.json",
|
370
|
+
"public/jstree/_docs/_xml_flat.xml",
|
371
|
+
"public/jstree/_docs/_xml_nest.xml",
|
372
|
+
"public/jstree/_docs/checkbox.html",
|
373
|
+
"public/jstree/_docs/contextmenu.html",
|
374
|
+
"public/jstree/_docs/cookies.html",
|
375
|
+
"public/jstree/_docs/core.html",
|
376
|
+
"public/jstree/_docs/crrm.html",
|
377
|
+
"public/jstree/_docs/dnd.html",
|
378
|
+
"public/jstree/_docs/hotkeys.html",
|
379
|
+
"public/jstree/_docs/html_data.html",
|
380
|
+
"public/jstree/_docs/index.html",
|
381
|
+
"public/jstree/_docs/json_data.html",
|
382
|
+
"public/jstree/_docs/languages.html",
|
383
|
+
"public/jstree/_docs/search.html",
|
384
|
+
"public/jstree/_docs/sort.html",
|
385
|
+
"public/jstree/_docs/syntax/!script.js",
|
386
|
+
"public/jstree/_docs/syntax/!style.css",
|
387
|
+
"public/jstree/_docs/syntax/clipboard.swf",
|
388
|
+
"public/jstree/_docs/syntax/help.png",
|
389
|
+
"public/jstree/_docs/syntax/magnifier.png",
|
390
|
+
"public/jstree/_docs/syntax/page_white_code.png",
|
391
|
+
"public/jstree/_docs/syntax/page_white_copy.png",
|
392
|
+
"public/jstree/_docs/syntax/printer.png",
|
393
|
+
"public/jstree/_docs/syntax/wrapping.png",
|
394
|
+
"public/jstree/_docs/themeroller.html",
|
395
|
+
"public/jstree/_docs/themes.html",
|
396
|
+
"public/jstree/_docs/types.html",
|
397
|
+
"public/jstree/_docs/ui.html",
|
398
|
+
"public/jstree/_docs/unique.html",
|
399
|
+
"public/jstree/_docs/xml_data.html",
|
400
|
+
"public/jstree/_lib/jquery.cookie.js",
|
401
|
+
"public/jstree/_lib/jquery.hotkeys.js",
|
402
|
+
"public/jstree/_lib/jquery.js",
|
403
|
+
"public/jstree/jquery.jstree.js",
|
404
|
+
"public/jstree/jstree.html",
|
405
|
+
"public/jstree/themes/apple/bg.jpg",
|
406
|
+
"public/jstree/themes/apple/d.png",
|
407
|
+
"public/jstree/themes/apple/dot_for_ie.gif",
|
408
|
+
"public/jstree/themes/apple/style.css",
|
409
|
+
"public/jstree/themes/apple/throbber.gif",
|
410
|
+
"public/jstree/themes/classic/d.png",
|
411
|
+
"public/jstree/themes/classic/dot_for_ie.gif",
|
412
|
+
"public/jstree/themes/classic/style.css",
|
413
|
+
"public/jstree/themes/classic/throbber.gif",
|
414
|
+
"public/jstree/themes/default-rtl/d.gif",
|
415
|
+
"public/jstree/themes/default-rtl/d.png",
|
416
|
+
"public/jstree/themes/default-rtl/dots.gif",
|
417
|
+
"public/jstree/themes/default-rtl/style.css",
|
418
|
+
"public/jstree/themes/default-rtl/throbber.gif",
|
419
|
+
"public/jstree/themes/default/d.gif",
|
420
|
+
"public/jstree/themes/default/d.png",
|
421
|
+
"public/jstree/themes/default/style.css",
|
422
|
+
"public/jstree/themes/default/throbber.gif",
|
253
423
|
"public/stylesheets/dreamy.css",
|
254
424
|
"public/stylesheets/menu.css",
|
255
425
|
"public/stylesheets/sass/dreamy.sass",
|
256
426
|
"public/stylesheets/sass/menu.sass",
|
427
|
+
"public/stylesheets/sass/uploadify.sass",
|
257
428
|
"public/stylesheets/sass/wheels.sass",
|
258
429
|
"public/stylesheets/scaffold.css",
|
259
430
|
"public/stylesheets/ui-lightness/images/ui-anim_basic_16x16.gif",
|
@@ -272,6 +443,7 @@ Gem::Specification.new do |s|
|
|
272
443
|
"public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png",
|
273
444
|
"public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png",
|
274
445
|
"public/stylesheets/ui-lightness/jquery-ui-1.8.2.custom.css",
|
446
|
+
"public/stylesheets/ui-lightness/jquery-ui-1.8.4.custom.css",
|
275
447
|
"public/test.html",
|
276
448
|
"wheels.gemspec"
|
277
449
|
]
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 49
|
9
|
+
version: 0.0.49
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Tyler Gannon
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-09-
|
17
|
+
date: 2010-09-08 00:00:00 -07:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -47,35 +47,49 @@ files:
|
|
47
47
|
- app/controllers/attachments_controller.rb
|
48
48
|
- app/controllers/blogs_controller.rb
|
49
49
|
- app/controllers/discussions_controller.rb
|
50
|
+
- app/controllers/external_links_controller.rb
|
51
|
+
- app/controllers/feedbacks_controller.rb
|
50
52
|
- app/controllers/forum_messages_controller.rb
|
51
53
|
- app/controllers/forums_controller.rb
|
52
54
|
- app/controllers/galleries_controller.rb
|
53
55
|
- app/controllers/images_controller.rb
|
56
|
+
- app/controllers/menus_controller.rb
|
54
57
|
- app/controllers/pages_controller.rb
|
55
58
|
- app/controllers/profiles_controller.rb
|
59
|
+
- app/controllers/sitemaps_controller.rb
|
56
60
|
- app/controllers/users_controller.rb
|
57
61
|
- app/helpers/access_control_entries_helper.rb
|
58
62
|
- app/helpers/application_helper.rb
|
59
63
|
- app/helpers/blogs_helper.rb
|
60
64
|
- app/helpers/discussions_helper.rb
|
65
|
+
- app/helpers/external_links_helper.rb
|
66
|
+
- app/helpers/feedbacks_helper.rb
|
61
67
|
- app/helpers/forums_helper.rb
|
68
|
+
- app/helpers/menus_helper.rb
|
62
69
|
- app/helpers/pages_helper.rb
|
70
|
+
- app/helpers/sitemaps_helper.rb
|
71
|
+
- app/mailers/feedback_mailer.rb
|
63
72
|
- app/models/ability.rb
|
64
73
|
- app/models/access_control_entry.rb
|
65
74
|
- app/models/attachment.rb
|
66
75
|
- app/models/blog.rb
|
67
76
|
- app/models/discussion.rb
|
77
|
+
- app/models/external_link.rb
|
78
|
+
- app/models/feedback.rb
|
68
79
|
- app/models/forum.rb
|
69
80
|
- app/models/forum_message.rb
|
70
81
|
- app/models/gallery.rb
|
71
82
|
- app/models/image.rb
|
83
|
+
- app/models/menu.rb
|
72
84
|
- app/models/page.rb
|
73
85
|
- app/models/page_revision.rb
|
74
86
|
- app/models/profile.rb
|
75
87
|
- app/models/role.rb
|
76
88
|
- app/models/s3_provider.rb
|
89
|
+
- app/models/sitemap.rb
|
77
90
|
- app/models/tagging.rb
|
78
91
|
- app/models/user.rb
|
92
|
+
- app/validators/email_validator.rb
|
79
93
|
- app/views/access_control_entries/_form.html.haml
|
80
94
|
- app/views/access_control_entries/_index.html.haml
|
81
95
|
- app/views/access_control_entries/_show.html.haml
|
@@ -115,6 +129,18 @@ files:
|
|
115
129
|
- app/views/discussions/index.html.haml
|
116
130
|
- app/views/discussions/new.html.haml
|
117
131
|
- app/views/discussions/show.html.haml
|
132
|
+
- app/views/external_links/_fields_for.html.haml
|
133
|
+
- app/views/external_links/_form.html.haml
|
134
|
+
- app/views/external_links/_show.html.haml
|
135
|
+
- app/views/external_links/edit.html.haml
|
136
|
+
- app/views/external_links/index.html.haml
|
137
|
+
- app/views/external_links/new.html.haml
|
138
|
+
- app/views/external_links/show.html.haml
|
139
|
+
- app/views/feedback_mailer/submit_feedback.html.haml
|
140
|
+
- app/views/feedbacks/_form.html.haml
|
141
|
+
- app/views/feedbacks/index.html.haml
|
142
|
+
- app/views/feedbacks/new.html.haml
|
143
|
+
- app/views/feedbacks/show.html.haml
|
118
144
|
- app/views/forum_messages/_form.html.haml
|
119
145
|
- app/views/forum_messages/index.html.haml
|
120
146
|
- app/views/forum_messages/new.html.haml
|
@@ -142,6 +168,7 @@ files:
|
|
142
168
|
- app/views/images/show.js.haml
|
143
169
|
- app/views/images/update.js.haml
|
144
170
|
- app/views/layouts/application.html.haml
|
171
|
+
- app/views/layouts/bare.html.haml
|
145
172
|
- app/views/layouts/image_dialog.html.haml
|
146
173
|
- app/views/loadbehind/_destroy.js.haml
|
147
174
|
- app/views/loadbehind/_edit.js.haml
|
@@ -151,39 +178,62 @@ files:
|
|
151
178
|
- app/views/loadbehind/_view.js.haml
|
152
179
|
- app/views/loadbehind/growl.js.haml
|
153
180
|
- app/views/loadbehind/index.js.haml
|
181
|
+
- app/views/menus/_form.html.haml
|
182
|
+
- app/views/menus/edit.html.haml
|
183
|
+
- app/views/menus/index.html.haml
|
184
|
+
- app/views/menus/new.html.haml
|
185
|
+
- app/views/menus/show.html.haml
|
154
186
|
- app/views/pages/_child_pages_links.html.haml
|
155
187
|
- app/views/pages/_control_panel.html.haml
|
156
188
|
- app/views/pages/_form.html.haml
|
157
189
|
- app/views/pages/_form_fields.html.haml
|
190
|
+
- app/views/pages/_show.html.haml
|
158
191
|
- app/views/pages/_show_attachment.html.haml
|
159
192
|
- app/views/pages/_show_small.html.haml
|
160
193
|
- app/views/pages/create.js.haml
|
194
|
+
- app/views/pages/destroy.js.haml
|
161
195
|
- app/views/pages/edit.html.haml
|
196
|
+
- app/views/pages/edit.js.haml
|
162
197
|
- app/views/pages/index.html.haml
|
198
|
+
- app/views/pages/index.js.haml
|
163
199
|
- app/views/pages/new.html.haml
|
200
|
+
- app/views/pages/new.js.haml
|
164
201
|
- app/views/pages/show.html.haml
|
202
|
+
- app/views/pages/show.js.haml
|
165
203
|
- app/views/pages/update.js.haml
|
166
204
|
- app/views/profiles/_form.html.haml
|
167
205
|
- app/views/profiles/edit.html.haml
|
168
206
|
- app/views/profiles/index.html.haml
|
169
207
|
- app/views/profiles/new.html.haml
|
170
208
|
- app/views/profiles/show.html.haml
|
209
|
+
- app/views/sitemaps/edit.html.haml
|
210
|
+
- app/views/sitemaps/edit.js.erb
|
211
|
+
- app/views/sitemaps/index.html.haml
|
212
|
+
- app/views/sitemaps/index.json.erb
|
213
|
+
- app/views/sitemaps/new.html.haml
|
214
|
+
- app/views/sitemaps/new.js.erb
|
215
|
+
- app/views/users/edit.html.haml
|
171
216
|
- app/views/users/index.html.haml
|
172
217
|
- config/amazon_s3.yml
|
173
|
-
- db/migrate/
|
174
|
-
- db/migrate/
|
175
|
-
- db/migrate/
|
176
|
-
- db/migrate/
|
177
|
-
- db/migrate/
|
178
|
-
- db/migrate/
|
179
|
-
- db/migrate/
|
180
|
-
- db/migrate/
|
181
|
-
- db/migrate/
|
182
|
-
- db/migrate/
|
183
|
-
- db/migrate/
|
184
|
-
- db/migrate/
|
185
|
-
- db/migrate/
|
218
|
+
- db/migrate/0010_add_fields_to_users.rb
|
219
|
+
- db/migrate/0020_create_blogs.rb
|
220
|
+
- db/migrate/0030_create_galleries.rb
|
221
|
+
- db/migrate/0040_create_images.rb
|
222
|
+
- db/migrate/0050_create_profiles.rb
|
223
|
+
- db/migrate/0060_insert_admin_user_and_roles.rb
|
224
|
+
- db/migrate/0070_create_pages.rb
|
225
|
+
- db/migrate/0080_create_forums.rb
|
226
|
+
- db/migrate/0090_create_discussions.rb
|
227
|
+
- db/migrate/0100_create_forum_messages.rb
|
228
|
+
- db/migrate/0110_create_access_control_entries.rb
|
229
|
+
- db/migrate/0120_create_attachments.rb
|
230
|
+
- db/migrate/0130_create_roles.rb
|
231
|
+
- db/migrate/0140_create_feedbacks.rb
|
232
|
+
- db/migrate/0150_create_external_links.rb
|
233
|
+
- db/migrate/0160_create_sitemaps.rb
|
234
|
+
- db/migrate/0170_create_menus.rb
|
186
235
|
- init.rb
|
236
|
+
- lib/development_mail_interceptor.rb
|
187
237
|
- lib/generators/app_layout/LICENCE
|
188
238
|
- lib/generators/app_layout/USAGE
|
189
239
|
- lib/generators/app_layout/app_layout_generator.rb
|
@@ -235,6 +285,7 @@ files:
|
|
235
285
|
- lib/wheels/action_view_helper_extensions.rb
|
236
286
|
- lib/wheels/active_record_extensions.rb
|
237
287
|
- lib/wheels/active_record_user_extensions.rb
|
288
|
+
- lib/wheels/base.rb
|
238
289
|
- lib/wheels/flash_session_cookie_middleware.rb
|
239
290
|
- lib/wheels/paperclip_interpolations.rb
|
240
291
|
- lib/wheels/password_validators.rb
|
@@ -270,13 +321,133 @@ files:
|
|
270
321
|
- public/images/menu/main-delimiter.png
|
271
322
|
- public/javascripts/galleries/configure_ckeditor.js
|
272
323
|
- public/javascripts/jqUrl.js
|
324
|
+
- public/javascripts/jquery-validate/additional-methods.js
|
325
|
+
- public/javascripts/jquery-validate/changelog.txt
|
326
|
+
- public/javascripts/jquery-validate/jquery.validate.js
|
327
|
+
- public/javascripts/jquery-validate/jquery.validate.min.js
|
328
|
+
- public/javascripts/jquery-validate/jquery.validate.pack.js
|
329
|
+
- public/javascripts/jquery-validate/lib/jquery-1.4.2.js
|
330
|
+
- public/javascripts/jquery-validate/lib/jquery.form.js
|
331
|
+
- public/javascripts/jquery-validate/lib/jquery.js
|
332
|
+
- public/javascripts/jquery-validate/lib/jquery.metadata.js
|
333
|
+
- public/javascripts/jquery-validate/localization/messages_ar.js
|
334
|
+
- public/javascripts/jquery-validate/localization/messages_bg.js
|
335
|
+
- public/javascripts/jquery-validate/localization/messages_cn.js
|
336
|
+
- public/javascripts/jquery-validate/localization/messages_cs.js
|
337
|
+
- public/javascripts/jquery-validate/localization/messages_da.js
|
338
|
+
- public/javascripts/jquery-validate/localization/messages_de.js
|
339
|
+
- public/javascripts/jquery-validate/localization/messages_el.js
|
340
|
+
- public/javascripts/jquery-validate/localization/messages_es.js
|
341
|
+
- public/javascripts/jquery-validate/localization/messages_fa.js
|
342
|
+
- public/javascripts/jquery-validate/localization/messages_fi.js
|
343
|
+
- public/javascripts/jquery-validate/localization/messages_fr.js
|
344
|
+
- public/javascripts/jquery-validate/localization/messages_he.js
|
345
|
+
- public/javascripts/jquery-validate/localization/messages_hu.js
|
346
|
+
- public/javascripts/jquery-validate/localization/messages_it.js
|
347
|
+
- public/javascripts/jquery-validate/localization/messages_kk.js
|
348
|
+
- public/javascripts/jquery-validate/localization/messages_lt.js
|
349
|
+
- public/javascripts/jquery-validate/localization/messages_lv.js
|
350
|
+
- public/javascripts/jquery-validate/localization/messages_nl.js
|
351
|
+
- public/javascripts/jquery-validate/localization/messages_no.js
|
352
|
+
- public/javascripts/jquery-validate/localization/messages_pl.js
|
353
|
+
- public/javascripts/jquery-validate/localization/messages_ptbr.js
|
354
|
+
- public/javascripts/jquery-validate/localization/messages_ptpt.js
|
355
|
+
- public/javascripts/jquery-validate/localization/messages_ro.js
|
356
|
+
- public/javascripts/jquery-validate/localization/messages_ru.js
|
357
|
+
- public/javascripts/jquery-validate/localization/messages_se.js
|
358
|
+
- public/javascripts/jquery-validate/localization/messages_sk.js
|
359
|
+
- public/javascripts/jquery-validate/localization/messages_tr.js
|
360
|
+
- public/javascripts/jquery-validate/localization/messages_tw.js
|
361
|
+
- public/javascripts/jquery-validate/localization/messages_ua.js
|
362
|
+
- public/javascripts/jquery-validate/localization/methods_de.js
|
363
|
+
- public/javascripts/jquery-validate/localization/methods_nl.js
|
364
|
+
- public/javascripts/jquery-validate/localization/methods_pt.js
|
365
|
+
- public/javascripts/jquery-validate/todo
|
366
|
+
- public/javascripts/jquery.cookie.js
|
367
|
+
- public/javascripts/jquery.filedrop.js
|
273
368
|
- public/javascripts/jquery.growl.js
|
369
|
+
- public/javascripts/jquery.hotkeys.js
|
370
|
+
- public/javascripts/jquery.js
|
371
|
+
- public/javascripts/jquery.jstree.js
|
372
|
+
- public/javascripts/jquery.uploadify.js
|
373
|
+
- public/javascripts/jquery.validate.js
|
274
374
|
- public/javascripts/loadbehind.js
|
275
375
|
- public/javascripts/menu.js
|
376
|
+
- public/javascripts/sitemap_jstree.js
|
377
|
+
- public/javascripts/swfobject.js
|
378
|
+
- public/jstree/_demo/_dump.sql
|
379
|
+
- public/jstree/_demo/_inc/__mysql_errors.log
|
380
|
+
- public/jstree/_demo/_inc/class._database.php
|
381
|
+
- public/jstree/_demo/_inc/class._database_i.php
|
382
|
+
- public/jstree/_demo/_inc/class.tree.php
|
383
|
+
- public/jstree/_demo/_install.txt
|
384
|
+
- public/jstree/_demo/config.php
|
385
|
+
- public/jstree/_demo/index.html
|
386
|
+
- public/jstree/_demo/server.php
|
387
|
+
- public/jstree/_docs/!style.css
|
388
|
+
- public/jstree/_docs/_drive.png
|
389
|
+
- public/jstree/_docs/_html_data.html
|
390
|
+
- public/jstree/_docs/_json_data.json
|
391
|
+
- public/jstree/_docs/_search_data.json
|
392
|
+
- public/jstree/_docs/_search_result.json
|
393
|
+
- public/jstree/_docs/_xml_flat.xml
|
394
|
+
- public/jstree/_docs/_xml_nest.xml
|
395
|
+
- public/jstree/_docs/checkbox.html
|
396
|
+
- public/jstree/_docs/contextmenu.html
|
397
|
+
- public/jstree/_docs/cookies.html
|
398
|
+
- public/jstree/_docs/core.html
|
399
|
+
- public/jstree/_docs/crrm.html
|
400
|
+
- public/jstree/_docs/dnd.html
|
401
|
+
- public/jstree/_docs/hotkeys.html
|
402
|
+
- public/jstree/_docs/html_data.html
|
403
|
+
- public/jstree/_docs/index.html
|
404
|
+
- public/jstree/_docs/json_data.html
|
405
|
+
- public/jstree/_docs/languages.html
|
406
|
+
- public/jstree/_docs/search.html
|
407
|
+
- public/jstree/_docs/sort.html
|
408
|
+
- public/jstree/_docs/syntax/!script.js
|
409
|
+
- public/jstree/_docs/syntax/!style.css
|
410
|
+
- public/jstree/_docs/syntax/clipboard.swf
|
411
|
+
- public/jstree/_docs/syntax/help.png
|
412
|
+
- public/jstree/_docs/syntax/magnifier.png
|
413
|
+
- public/jstree/_docs/syntax/page_white_code.png
|
414
|
+
- public/jstree/_docs/syntax/page_white_copy.png
|
415
|
+
- public/jstree/_docs/syntax/printer.png
|
416
|
+
- public/jstree/_docs/syntax/wrapping.png
|
417
|
+
- public/jstree/_docs/themeroller.html
|
418
|
+
- public/jstree/_docs/themes.html
|
419
|
+
- public/jstree/_docs/types.html
|
420
|
+
- public/jstree/_docs/ui.html
|
421
|
+
- public/jstree/_docs/unique.html
|
422
|
+
- public/jstree/_docs/xml_data.html
|
423
|
+
- public/jstree/_lib/jquery.cookie.js
|
424
|
+
- public/jstree/_lib/jquery.hotkeys.js
|
425
|
+
- public/jstree/_lib/jquery.js
|
426
|
+
- public/jstree/jquery.jstree.js
|
427
|
+
- public/jstree/jstree.html
|
428
|
+
- public/jstree/themes/apple/bg.jpg
|
429
|
+
- public/jstree/themes/apple/d.png
|
430
|
+
- public/jstree/themes/apple/dot_for_ie.gif
|
431
|
+
- public/jstree/themes/apple/style.css
|
432
|
+
- public/jstree/themes/apple/throbber.gif
|
433
|
+
- public/jstree/themes/classic/d.png
|
434
|
+
- public/jstree/themes/classic/dot_for_ie.gif
|
435
|
+
- public/jstree/themes/classic/style.css
|
436
|
+
- public/jstree/themes/classic/throbber.gif
|
437
|
+
- public/jstree/themes/default-rtl/d.gif
|
438
|
+
- public/jstree/themes/default-rtl/d.png
|
439
|
+
- public/jstree/themes/default-rtl/dots.gif
|
440
|
+
- public/jstree/themes/default-rtl/style.css
|
441
|
+
- public/jstree/themes/default-rtl/throbber.gif
|
442
|
+
- public/jstree/themes/default/d.gif
|
443
|
+
- public/jstree/themes/default/d.png
|
444
|
+
- public/jstree/themes/default/style.css
|
445
|
+
- public/jstree/themes/default/throbber.gif
|
276
446
|
- public/stylesheets/dreamy.css
|
277
447
|
- public/stylesheets/menu.css
|
278
448
|
- public/stylesheets/sass/dreamy.sass
|
279
449
|
- public/stylesheets/sass/menu.sass
|
450
|
+
- public/stylesheets/sass/uploadify.sass
|
280
451
|
- public/stylesheets/sass/wheels.sass
|
281
452
|
- public/stylesheets/scaffold.css
|
282
453
|
- public/stylesheets/ui-lightness/images/ui-anim_basic_16x16.gif
|
@@ -295,6 +466,7 @@ files:
|
|
295
466
|
- public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png
|
296
467
|
- public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png
|
297
468
|
- public/stylesheets/ui-lightness/jquery-ui-1.8.2.custom.css
|
469
|
+
- public/stylesheets/ui-lightness/jquery-ui-1.8.4.custom.css
|
298
470
|
- public/test.html
|
299
471
|
- wheels.gemspec
|
300
472
|
has_rdoc: true
|