active_scaffold 3.0.12 → 3.0.21
Sign up to get free protection for your applications and to get access to all the features.
- data/README +21 -11
- data/frontends/default/images/close_touch.png +0 -0
- data/frontends/default/javascripts/jquery/active_scaffold.js +187 -99
- data/frontends/default/javascripts/prototype/active_scaffold.js +105 -33
- data/frontends/default/javascripts/prototype/dhtml_history.js +80 -77
- data/frontends/default/stylesheets/stylesheet.css +121 -2
- data/frontends/default/views/_action_group.html.erb +6 -2
- data/frontends/default/views/_base_form.html.erb +11 -5
- data/frontends/default/views/_base_form.html.erb~ +42 -0
- data/frontends/default/views/_field_search.html.erb +1 -1
- data/frontends/default/views/_form.html.erb +9 -7
- data/frontends/default/views/_form_association.html.erb +8 -3
- data/frontends/default/views/_form_association_footer.html.erb +10 -3
- data/frontends/default/views/_form_attribute.html.erb +8 -3
- data/frontends/default/views/_horizontal_subform.html.erb +12 -2
- data/frontends/default/views/_horizontal_subform_header.html.erb +1 -1
- data/frontends/default/views/_horizontal_subform_record.html.erb +5 -4
- data/frontends/default/views/_list_messages.html.erb +1 -1
- data/frontends/default/views/_list_with_header.html.erb +1 -1
- data/frontends/default/views/_render_field.js.rjs +4 -6
- data/frontends/default/views/_vertical_subform.html.erb +1 -1
- data/frontends/default/views/_vertical_subform_record.html.erb +2 -2
- data/frontends/default/views/on_action_update.js.rjs +3 -1
- data/frontends/default/views/on_mark_all.js.rjs +12 -0
- data/frontends/default/views/on_update.js.rjs +1 -1
- data/frontends/default/views/render_field.js.rjs +1 -0
- data/frontends/default/views/update_column.js.rjs +1 -1
- data/lib/active_scaffold.rb +60 -21
- data/lib/active_scaffold/actions/common_search.rb +2 -2
- data/lib/active_scaffold/actions/core.rb +30 -9
- data/lib/active_scaffold/actions/create.rb +14 -10
- data/lib/active_scaffold/actions/field_search.rb +6 -6
- data/lib/active_scaffold/actions/list.rb +22 -12
- data/lib/active_scaffold/actions/mark.rb +34 -9
- data/lib/active_scaffold/actions/nested.rb +12 -16
- data/lib/active_scaffold/actions/show.rb +2 -2
- data/lib/active_scaffold/actions/subform.rb +15 -8
- data/lib/active_scaffold/actions/update.rb +14 -4
- data/lib/active_scaffold/attribute_params.rb +15 -10
- data/lib/active_scaffold/bridges/bridge.rb +21 -12
- data/lib/active_scaffold/bridges/calendar_date_select/bridge.rb +3 -3
- data/lib/active_scaffold/bridges/cancan/bridge.rb +12 -0
- data/lib/active_scaffold/bridges/cancan/lib/cancan_bridge.rb +107 -0
- data/lib/active_scaffold/bridges/carrierwave/bridge.rb +1 -1
- data/lib/active_scaffold/bridges/carrierwave/lib/carrierwave_bridge.rb +3 -8
- data/lib/active_scaffold/bridges/carrierwave/lib/carrierwave_bridge_helpers.rb +1 -15
- data/lib/active_scaffold/bridges/carrierwave/lib/form_ui.rb +23 -13
- data/lib/active_scaffold/bridges/carrierwave/lib/list_ui.rb +1 -1
- data/lib/active_scaffold/bridges/country_helper/bridge.rb +9 -0
- data/lib/active_scaffold/bridges/country_helper/lib/country_helper_bridge.rb +358 -0
- data/lib/active_scaffold/bridges/date_picker/bridge.rb +5 -3
- data/lib/active_scaffold/bridges/date_picker/lib/datepicker_bridge.rb +9 -0
- data/lib/active_scaffold/bridges/dragonfly/bridge.rb +9 -0
- data/lib/active_scaffold/bridges/dragonfly/bridge.rb~ +12 -0
- data/lib/active_scaffold/bridges/dragonfly/lib/dragonfly_bridge.rb +36 -0
- data/lib/active_scaffold/bridges/dragonfly/lib/dragonfly_bridge.rb~ +36 -0
- data/lib/active_scaffold/bridges/dragonfly/lib/dragonfly_bridge_helpers.rb +12 -0
- data/lib/active_scaffold/bridges/dragonfly/lib/dragonfly_bridge_helpers.rb~ +12 -0
- data/lib/active_scaffold/bridges/dragonfly/lib/form_ui.rb +27 -0
- data/lib/active_scaffold/bridges/dragonfly/lib/form_ui.rb~ +27 -0
- data/lib/active_scaffold/bridges/dragonfly/lib/list_ui.rb +16 -0
- data/lib/active_scaffold/bridges/dragonfly/lib/list_ui.rb~ +16 -0
- data/lib/active_scaffold/bridges/paperclip/bridge.rb +1 -1
- data/lib/active_scaffold/bridges/record_select/bridge.rb +5 -0
- data/lib/active_scaffold/bridges/record_select/lib/record_select_bridge.rb +87 -0
- data/lib/active_scaffold/bridges/record_select/lib/record_select_bridge.rb~ +84 -0
- data/lib/active_scaffold/bridges/shared/date_bridge.rb +56 -34
- data/lib/active_scaffold/bridges/tiny_mce/lib/tiny_mce_bridge.rb +19 -3
- data/lib/active_scaffold/config/base.rb +4 -4
- data/lib/active_scaffold/config/core.rb +4 -0
- data/lib/active_scaffold/config/create.rb +1 -1
- data/lib/active_scaffold/config/field_search.rb +7 -7
- data/lib/active_scaffold/config/form.rb +8 -2
- data/lib/active_scaffold/config/list.rb +22 -8
- data/lib/active_scaffold/config/mark.rb +18 -5
- data/lib/active_scaffold/config/nested.rb +3 -3
- data/lib/active_scaffold/config/search.rb +1 -1
- data/lib/active_scaffold/config/show.rb +1 -1
- data/lib/active_scaffold/data_structures/action_columns.rb +10 -6
- data/lib/active_scaffold/data_structures/action_link.rb +14 -10
- data/lib/active_scaffold/data_structures/action_links.rb +2 -2
- data/lib/active_scaffold/data_structures/column.rb +25 -11
- data/lib/active_scaffold/data_structures/nested_info.rb +21 -21
- data/lib/active_scaffold/data_structures/set.rb +2 -3
- data/lib/active_scaffold/data_structures/sorting.rb +8 -8
- data/lib/{extensions → active_scaffold/extensions}/action_controller_rendering.rb +3 -1
- data/lib/{extensions → active_scaffold/extensions}/action_view_rendering.rb +31 -33
- data/lib/{extensions → active_scaffold/extensions}/action_view_resolver.rb +0 -0
- data/lib/{extensions → active_scaffold/extensions}/active_association_reflection.rb +0 -0
- data/lib/active_scaffold/extensions/active_record_offset.rb +12 -0
- data/lib/{extensions → active_scaffold/extensions}/array.rb +0 -0
- data/lib/{extensions → active_scaffold/extensions}/localize.rb +1 -1
- data/lib/{extensions → active_scaffold/extensions}/name_option_for_datetime.rb +1 -1
- data/lib/{extensions → active_scaffold/extensions}/nil_id_in_url_params.rb +0 -0
- data/lib/{extensions → active_scaffold/extensions}/paginator_extensions.rb +2 -2
- data/lib/{extensions → active_scaffold/extensions}/reverse_associations.rb +1 -1
- data/lib/{extensions → active_scaffold/extensions}/routing_mapper.rb +2 -2
- data/lib/{extensions → active_scaffold/extensions}/to_label.rb +0 -0
- data/lib/{extensions → active_scaffold/extensions}/unsaved_associated.rb +0 -0
- data/lib/{extensions → active_scaffold/extensions}/unsaved_record.rb +0 -0
- data/lib/active_scaffold/extensions/usa_state.rb +46 -0
- data/lib/active_scaffold/finder.rb +30 -19
- data/lib/active_scaffold/helpers/controller_helpers.rb +3 -5
- data/lib/active_scaffold/helpers/form_column_helpers.rb +19 -45
- data/lib/active_scaffold/helpers/human_condition_helpers.rb +1 -1
- data/lib/active_scaffold/helpers/id_helpers.rb +2 -2
- data/lib/active_scaffold/helpers/list_column_helpers.rb +28 -17
- data/lib/active_scaffold/helpers/search_column_helpers.rb +51 -40
- data/lib/active_scaffold/helpers/search_column_helpers.rb~ +215 -0
- data/lib/active_scaffold/helpers/show_column_helpers.rb +8 -4
- data/lib/active_scaffold/helpers/view_helpers.rb +50 -27
- data/lib/active_scaffold/locale/de.yml +111 -0
- data/lib/active_scaffold/locale/en.yml +115 -0
- data/lib/active_scaffold/locale/es.yml +32 -32
- data/lib/active_scaffold/locale/fr.yml +118 -0
- data/lib/active_scaffold/marked_model.rb +6 -6
- data/lib/active_scaffold/version.rb +1 -1
- data/lib/active_scaffold_assets.rb +1 -3
- data/lib/active_scaffold_env.rb +1 -2
- data/lib/generators/active_scaffold/active_scaffold_generator.rb +5 -5
- data/lib/generators/active_scaffold_controller/active_scaffold_controller_generator.rb +3 -2
- data/lib/generators/active_scaffold_controller/templates/helper.rb +2 -0
- data/lib/generators/active_scaffold_setup/active_scaffold_setup_generator.rb +17 -19
- data/shoulda_macros/macros.rb +4 -4
- data/test/misc/finder_test.rb +2 -2
- data/test/mock_app/public/stylesheets/active_scaffold/default/stylesheet.css +4 -1
- metadata +144 -126
- data/.autotest +0 -27
- data/.document +0 -5
- data/Gemfile +0 -13
- data/Gemfile.lock +0 -20
- data/Rakefile +0 -53
- data/active_scaffold.gemspec +0 -385
- data/init.rb +0 -2
- data/lib/active_scaffold/helpers/country_helpers.rb +0 -358
- data/lib/active_scaffold/locale/de.rb +0 -120
- data/lib/active_scaffold/locale/en.rb +0 -119
- data/lib/active_scaffold/locale/fr.rb +0 -116
- data/lib/extensions/active_record_offset.rb +0 -12
- data/lib/extensions/usa_state.rb +0 -50
- data/test/mock_app/.gitignore +0 -2
- data/uninstall.rb +0 -13
@@ -3,31 +3,41 @@ module ActiveScaffold
|
|
3
3
|
module FormColumnHelpers
|
4
4
|
def active_scaffold_input_carrierwave(column, options)
|
5
5
|
options = active_scaffold_input_text_options(options)
|
6
|
-
input = file_field(:record, column.name, options)
|
7
6
|
carrierwave = @record.send("#{column.name}")
|
8
|
-
if
|
7
|
+
if !carrierwave.file.blank?
|
8
|
+
|
9
|
+
remove_field_options = {
|
10
|
+
:name => options[:name].gsub(/\[#{column.name}\]$/, "[remove_#{column.name}]"),
|
11
|
+
:id => 'remove_' + options[:id],
|
12
|
+
:value => false
|
13
|
+
}
|
14
|
+
|
15
|
+
cache_field_options = {
|
16
|
+
:name => options[:name].gsub(/\[#{column.name}\]$/, "[#{column.name}_cache]"),
|
17
|
+
:id => options[:id] + '_cache'
|
18
|
+
}
|
19
|
+
|
9
20
|
if ActiveScaffold.js_framework == :jquery
|
10
|
-
js_remove_file_code = "$(this).prev().val('true'); $(this).parent().hide().next().show(); return false;";
|
21
|
+
js_remove_file_code = "$(this).prev('input#remove_#{options[:id]}').val('true'); $(this).parent().hide().next().show(); return false;";
|
22
|
+
js_dont_remove_file_code = "$(this).parents('div.carrierwave_controls').find('input#remove_#{options[:id]}').val('false'); return false;";
|
11
23
|
else
|
12
|
-
js_remove_file_code = "$(this).previous().value='true'; $(this).up().hide().next().show(); return false;";
|
24
|
+
js_remove_file_code = "$(this).previous('input#remove_#{options[:id]}').value='true'; $(this).up().hide().next().show(); return false;";
|
25
|
+
js_dont_remove_file_code = "$(this).up('div.carrierwave_controls').down('input#remove_#{options[:id]}').value='false'; return false;";
|
13
26
|
end
|
14
27
|
|
15
|
-
|
16
|
-
:name => options[:name].gsub(/\[#{column.name}\]$/, "[delete_#{column.name}]"),
|
17
|
-
:id => options[:id] + '_delete',
|
18
|
-
:value => "false"
|
19
|
-
}
|
20
|
-
|
28
|
+
input = file_field(:record, column.name, options.merge(:onchange => js_dont_remove_file_code))
|
21
29
|
content_tag( :div,
|
22
30
|
content_tag(:div, (
|
23
31
|
get_column_value(@record, column) + " | " +
|
24
|
-
hidden_field(:record, "
|
32
|
+
hidden_field(:record, "#{column.name}_cache", cache_field_options) +
|
33
|
+
hidden_field(:record, "remove_#{column.name}", remove_field_options) +
|
25
34
|
content_tag(:a, as_(:remove_file), {:href => '#', :onclick => js_remove_file_code})
|
26
35
|
).html_safe
|
27
|
-
) + content_tag(:div, input, :style => "display: none")
|
36
|
+
) + content_tag(:div, input, :style => "display: none"),
|
37
|
+
:class => 'carrierwave_controls'
|
28
38
|
)
|
29
39
|
else
|
30
|
-
|
40
|
+
file_field(:record, column.name, options)
|
31
41
|
end
|
32
42
|
end
|
33
43
|
end
|
@@ -3,7 +3,7 @@ module ActiveScaffold
|
|
3
3
|
module ListColumnHelpers
|
4
4
|
def active_scaffold_column_carrierwave(column, record)
|
5
5
|
carrierwave = record.send("#{column.name}")
|
6
|
-
return nil unless
|
6
|
+
return nil unless !carrierwave.file.blank?
|
7
7
|
thumbnail_style = ActiveScaffold::Bridges::Carrierwave::Lib::CarrierwaveBridgeHelpers.thumbnail_style
|
8
8
|
content = if carrierwave.versions.keys.include?(thumbnail_style)
|
9
9
|
image_tag(carrierwave.url(thumbnail_style), :border => 0).html_safe
|
@@ -0,0 +1,358 @@
|
|
1
|
+
module ActiveScaffold
|
2
|
+
module CountryHelperBridge
|
3
|
+
module CountryHelpers
|
4
|
+
# Return select and option tags for the given object and method, using country_options_for_select to generate the list of option tags.
|
5
|
+
def country_select(object, method, priority_countries = nil, options = {}, html_options = {})
|
6
|
+
ActionView::Helpers::InstanceTag.new(object, method, self, options.delete(:object)).to_country_select_tag(priority_countries, options, html_options)
|
7
|
+
end
|
8
|
+
|
9
|
+
def usa_state_select(object, method, priority_states = nil, options = {}, html_options = {})
|
10
|
+
ActionView::Helpers::InstanceTag.new(object, method, self, options.delete(:object)).to_usa_state_select_tag(priority_states, options, html_options)
|
11
|
+
end
|
12
|
+
|
13
|
+
# Returns a string of option tags for pretty much any country in the world. Supply a country name as +selected+ to
|
14
|
+
# have it marked as the selected option tag. You can also supply an array of countries as +priority_countries+, so
|
15
|
+
# that they will be listed above the rest of the (long) list.
|
16
|
+
#
|
17
|
+
# NOTE: Only the option tags are returned, you have to wrap this call in a regular HTML select tag.
|
18
|
+
def country_options_for_select(selected = nil, priority_countries = nil)
|
19
|
+
if priority_countries
|
20
|
+
country_options = options_for_select(priority_countries.collect {|country| [I18n.t("countries.#{country}", :default => country.to_s.titleize), country.to_s]} + [['-------------', '']], :selected => selected, :disabled => '')
|
21
|
+
else
|
22
|
+
country_options = ""
|
23
|
+
end
|
24
|
+
|
25
|
+
return country_options + options_for_select(COUNTRIES.collect {|country| [I18n.t("countries.#{country}", :default => country.to_s.titleize), country.to_s]}, :selected => selected)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Returns a string of option tags for the states in the United States. Supply a state name as +selected to
|
29
|
+
# have it marked as the selected option tag. Included also is the option to set a couple of +priority_states+
|
30
|
+
# in case you want to highligh a local area
|
31
|
+
# NOTE: Only the option tags are returned from this method, wrap it in a <select>
|
32
|
+
def usa_state_options_for_select(selected = nil, priority_states = nil)
|
33
|
+
if priority_states
|
34
|
+
state_options = options_for_select(priority_states + [['-------------', '']], :selected => selected, :disabled => '')
|
35
|
+
else
|
36
|
+
state_options = ""
|
37
|
+
end
|
38
|
+
|
39
|
+
if priority_states && priority_states.include?(selected)
|
40
|
+
state_options += options_for_select(USASTATES - priority_states, :selected => selected)
|
41
|
+
else
|
42
|
+
state_options += options_for_select(USASTATES, :selected => selected)
|
43
|
+
end
|
44
|
+
|
45
|
+
return state_options
|
46
|
+
end
|
47
|
+
# All the countries included in the country_options output.
|
48
|
+
COUNTRIES = [
|
49
|
+
:afghanistan,
|
50
|
+
:aland_islands,
|
51
|
+
:albania,
|
52
|
+
:algeria,
|
53
|
+
:american_samoa,
|
54
|
+
:andorra,
|
55
|
+
:angola,
|
56
|
+
:anguilla,
|
57
|
+
:antarctica,
|
58
|
+
:antigua_and_barbuda,
|
59
|
+
:argentina,
|
60
|
+
:armenia,
|
61
|
+
:aruba,
|
62
|
+
:australia,
|
63
|
+
:austria,
|
64
|
+
:azerbaijan,
|
65
|
+
:bahamas,
|
66
|
+
:bahrain,
|
67
|
+
:bangladesh,
|
68
|
+
:barbados,
|
69
|
+
:belarus,
|
70
|
+
:belgium,
|
71
|
+
:belize,
|
72
|
+
:benin,
|
73
|
+
:bermuda,
|
74
|
+
:bhutan,
|
75
|
+
:bolivia,
|
76
|
+
:bosnia_and_herzegowina,
|
77
|
+
:botswana,
|
78
|
+
:bouvet_island,
|
79
|
+
:brazil,
|
80
|
+
:british_indian_ocean_territory,
|
81
|
+
:brunei_darussalam,
|
82
|
+
:bulgaria,
|
83
|
+
:burkina_faso,
|
84
|
+
:burundi,
|
85
|
+
:cambodia,
|
86
|
+
:cameroon,
|
87
|
+
:canada,
|
88
|
+
:cape_verde,
|
89
|
+
:cayman_islands,
|
90
|
+
:central_african_republic,
|
91
|
+
:chad,
|
92
|
+
:chile,
|
93
|
+
:china,
|
94
|
+
:christmas_island,
|
95
|
+
:cocos_keeling_islands,
|
96
|
+
:colombia,
|
97
|
+
:comoros,
|
98
|
+
:congo,
|
99
|
+
:congo_the_democratic_republic_of_the,
|
100
|
+
:cook_islands,
|
101
|
+
:costa_rica,
|
102
|
+
:cote_divoire,
|
103
|
+
:croatia,
|
104
|
+
:cuba,
|
105
|
+
:cyprus,
|
106
|
+
:czech_republic,
|
107
|
+
:denmark,
|
108
|
+
:djibouti,
|
109
|
+
:dominica,
|
110
|
+
:dominican_republic,
|
111
|
+
:ecuador,
|
112
|
+
:egypt,
|
113
|
+
:el_salvador,
|
114
|
+
:equatorial_guinea,
|
115
|
+
:eritrea,
|
116
|
+
:estonia,
|
117
|
+
:ethiopia,
|
118
|
+
:falkland_islands_malvinas,
|
119
|
+
:faroe_islands,
|
120
|
+
:fiji,
|
121
|
+
:finland,
|
122
|
+
:france,
|
123
|
+
:french_guiana,
|
124
|
+
:french_polynesia,
|
125
|
+
:french_southern_territories,
|
126
|
+
:gabon,
|
127
|
+
:gambia,
|
128
|
+
:georgia,
|
129
|
+
:germany,
|
130
|
+
:ghana,
|
131
|
+
:gibraltar,
|
132
|
+
:greece,
|
133
|
+
:greenland,
|
134
|
+
:grenada,
|
135
|
+
:guadeloupe,
|
136
|
+
:guam,
|
137
|
+
:guatemala,
|
138
|
+
:guernsey,
|
139
|
+
:guinea,
|
140
|
+
:guinea_bissau,
|
141
|
+
:guyana,
|
142
|
+
:haiti,
|
143
|
+
:heard_and_mcdonald_islands,
|
144
|
+
:holy_see_vatican_city_state,
|
145
|
+
:honduras,
|
146
|
+
:hong_kong,
|
147
|
+
:hungary,
|
148
|
+
:iceland,
|
149
|
+
:india,
|
150
|
+
:indonesia,
|
151
|
+
:iran_islamic_republic_of,
|
152
|
+
:iraq,
|
153
|
+
:ireland,
|
154
|
+
:isle_of_man,
|
155
|
+
:israel,
|
156
|
+
:italy,
|
157
|
+
:jamaica,
|
158
|
+
:japan,
|
159
|
+
:jersey,
|
160
|
+
:jordan,
|
161
|
+
:kazakhstan,
|
162
|
+
:kenya,
|
163
|
+
:kiribati,
|
164
|
+
:korea_democratic_peoples_republic_of,
|
165
|
+
:korea_republic_of,
|
166
|
+
:kuwait,
|
167
|
+
:kyrgyzstan,
|
168
|
+
:lao_peoples_democratic_republic,
|
169
|
+
:latvia,
|
170
|
+
:lebanon,
|
171
|
+
:lesotho,
|
172
|
+
:liberia,
|
173
|
+
:libyan_arab_jamahiriya,
|
174
|
+
:liechtenstein,
|
175
|
+
:lithuania,
|
176
|
+
:luxembourg,
|
177
|
+
:macao,
|
178
|
+
:macedonia_the_former_yugoslav_republic_of,
|
179
|
+
:madagascar,
|
180
|
+
:malawi,
|
181
|
+
:malaysia,
|
182
|
+
:maldives,
|
183
|
+
:mali,
|
184
|
+
:malta,
|
185
|
+
:marshall_islands,
|
186
|
+
:martinique,
|
187
|
+
:mauritania,
|
188
|
+
:mauritius,
|
189
|
+
:mayotte,
|
190
|
+
:mexico,
|
191
|
+
:micronesia_federated_states_of,
|
192
|
+
:moldova_republic_of,
|
193
|
+
:monaco,
|
194
|
+
:mongolia,
|
195
|
+
:montenegro,
|
196
|
+
:montserrat,
|
197
|
+
:morocco,
|
198
|
+
:mozambique,
|
199
|
+
:myanmar,
|
200
|
+
:namibia,
|
201
|
+
:nauru,
|
202
|
+
:nepal,
|
203
|
+
:netherlands,
|
204
|
+
:netherlands_antilles,
|
205
|
+
:new_caledonia,
|
206
|
+
:new_zealand,
|
207
|
+
:nicaragua,
|
208
|
+
:niger,
|
209
|
+
:nigeria,
|
210
|
+
:niue,
|
211
|
+
:norfolk_island,
|
212
|
+
:northern_mariana_islands,
|
213
|
+
:norway,
|
214
|
+
:oman,
|
215
|
+
:pakistan,
|
216
|
+
:palau,
|
217
|
+
:palestinian_territory_occupied,
|
218
|
+
:panama,
|
219
|
+
:papua_new_guinea,
|
220
|
+
:paraguay,
|
221
|
+
:peru,
|
222
|
+
:philippines,
|
223
|
+
:pitcairn,
|
224
|
+
:poland,
|
225
|
+
:portugal,
|
226
|
+
:puerto_rico,
|
227
|
+
:qatar,
|
228
|
+
:reunion,
|
229
|
+
:romania,
|
230
|
+
:russian_federation,
|
231
|
+
:rwanda,
|
232
|
+
:saint_barthelemy,
|
233
|
+
:saint_helena,
|
234
|
+
:saint_kitts_and_nevis,
|
235
|
+
:saint_lucia,
|
236
|
+
:saint_pierre_and_miquelon,
|
237
|
+
:saint_vincent_and_the_grenadines,
|
238
|
+
:samoa,
|
239
|
+
:san_marino,
|
240
|
+
:sao_tome_and_principe,
|
241
|
+
:saudi_arabia,
|
242
|
+
:senegal,
|
243
|
+
:serbia,
|
244
|
+
:seychelles,
|
245
|
+
:sierra_leone,
|
246
|
+
:singapore,
|
247
|
+
:slovakia,
|
248
|
+
:slovenia,
|
249
|
+
:solomon_islands,
|
250
|
+
:somalia,
|
251
|
+
:south_africa,
|
252
|
+
:south_georgia_and_the_south_sandwich_islands,
|
253
|
+
:spain,
|
254
|
+
:sri_lanka,
|
255
|
+
:sudan,
|
256
|
+
:suriname,
|
257
|
+
:svalbard_and_jan_mayen,
|
258
|
+
:swaziland,
|
259
|
+
:sweden,
|
260
|
+
:switzerland,
|
261
|
+
:syrian_arab_republic,
|
262
|
+
:taiwan_province_of_china,
|
263
|
+
:tajikistan,
|
264
|
+
:tanzania_united_republic_of,
|
265
|
+
:thailand,
|
266
|
+
:timor_leste,
|
267
|
+
:togo,
|
268
|
+
:tokelau,
|
269
|
+
:tonga,
|
270
|
+
:trinidad_and_tobago,
|
271
|
+
:tunisia,
|
272
|
+
:turkey,
|
273
|
+
:turkmenistan,
|
274
|
+
:turks_and_caicos_islands,
|
275
|
+
:tuvalu,
|
276
|
+
:uganda,
|
277
|
+
:ukraine,
|
278
|
+
:united_arab_emirates,
|
279
|
+
:united_kingdom,
|
280
|
+
:united_states,
|
281
|
+
:united_states_minor_outlying_islands,
|
282
|
+
:uruguay,
|
283
|
+
:uzbekistan,
|
284
|
+
:vanuatu,
|
285
|
+
:venezuela,
|
286
|
+
:viet_nam,
|
287
|
+
:virgin_islands_british,
|
288
|
+
:virgin_islands_us,
|
289
|
+
:wallis_and_futuna,
|
290
|
+
:western_sahara,
|
291
|
+
:yemen,
|
292
|
+
:zambia,
|
293
|
+
:zimbabwe] unless const_defined?("COUNTRIES")
|
294
|
+
|
295
|
+
|
296
|
+
USASTATES = [["Alabama", "AL"], ["Alaska", "AK"], ["Arizona", "AZ"], ["Arkansas", "AR"], ["California", "CA"], ["Colorado", "CO"], ["Connecticut", "CT"], ["Delaware", "DE"], ["District of Columbia", "DC"], ["Florida", "FL"], ["Georgia", "GA"], ["Hawaii", "HI"], ["Idaho", "ID"], ["Illinois", "IL"], ["Indiana", "IN"], ["Iowa", "IA"], ["Kansas", "KS"], ["Kentucky", "KY"], ["Louisiana", "LA"], ["Maine", "ME"], ["Maryland", "MD"], ["Massachusetts", "MA"], ["Michigan", "MI"], ["Minnesota", "MN"], ["Mississippi", "MS"], ["Missouri", "MO"], ["Montana", "MT"], ["Nebraska", "NE"], ["Nevada", "NV"], ["New Hampshire", "NH"], ["New Jersey", "NJ"], ["New Mexico", "NM"], ["New York", "NY"], ["North Carolina", "NC"], ["North Dakota", "ND"], ["Ohio", "OH"], ["Oklahoma", "OK"], ["Oregon", "OR"], ["Pennsylvania", "PA"], ["Rhode Island", "RI"], ["South Carolina", "SC"], ["South Dakota", "SD"], ["Tennessee", "TN"], ["Texas", "TX"], ["Utah", "UT"], ["Vermont", "VT"], ["Virginia", "VA"], ["Washington", "WA"], ["Wisconsin", "WI"], ["West Virginia", "WV"], ["Wyoming", "WY"]] unless const_defined?("USASTATES")
|
297
|
+
|
298
|
+
class ActionView::Helpers::InstanceTag #:nodoc:
|
299
|
+
include CountryHelpers
|
300
|
+
|
301
|
+
def to_country_select_tag(priority_countries, options, html_options)
|
302
|
+
html_options = html_options.stringify_keys
|
303
|
+
add_default_name_and_id(html_options)
|
304
|
+
value = value(object)
|
305
|
+
selected_value = options.has_key?(:selected) ? options[:selected] : value
|
306
|
+
content_tag("select",
|
307
|
+
add_options(
|
308
|
+
country_options_for_select(selected_value, priority_countries),
|
309
|
+
options, selected_value
|
310
|
+
), html_options
|
311
|
+
)
|
312
|
+
end
|
313
|
+
|
314
|
+
def to_usa_state_select_tag(priority_states, options, html_options)
|
315
|
+
html_options = html_options.stringify_keys
|
316
|
+
add_default_name_and_id(html_options)
|
317
|
+
value = value(object)
|
318
|
+
selected_value = options.has_key?(:selected) ? options[:selected] : value
|
319
|
+
content_tag("select", add_options(usa_state_options_for_select(selected_value, priority_states), options, selected_value), html_options)
|
320
|
+
end
|
321
|
+
end
|
322
|
+
end
|
323
|
+
|
324
|
+
module FormColumnHelpers
|
325
|
+
def active_scaffold_input_country(column, options)
|
326
|
+
select_options = {:prompt => as_(:_select_)}
|
327
|
+
select_options.merge!(options)
|
328
|
+
options.reverse_merge!(column.options).except!(:prompt, :priority)
|
329
|
+
options[:name] += '[]' if options[:multiple]
|
330
|
+
country_select(:record, column.name, column.options[:priority] || [:united_states], select_options, options)
|
331
|
+
end
|
332
|
+
|
333
|
+
def active_scaffold_input_usa_state(column, options)
|
334
|
+
select_options = {:prompt => as_(:_select_)}
|
335
|
+
select_options.merge!(options)
|
336
|
+
options.reverse_merge!(column.options).except!(:prompt, :priority)
|
337
|
+
options[:name] += '[]' if options[:multiple]
|
338
|
+
usa_state_select(:record, column.name, column.options[:priority], select_options, options)
|
339
|
+
end
|
340
|
+
end
|
341
|
+
|
342
|
+
module SearchColumnHelpers
|
343
|
+
def active_scaffold_search_country(column, options)
|
344
|
+
active_scaffold_input_country(column, options.merge!(:selected => options.delete(:value)))
|
345
|
+
end
|
346
|
+
|
347
|
+
def active_scaffold_search_usa_state(column, options)
|
348
|
+
active_scaffold_input_usa_state(column, options.merge!(:selected => options.delete(:value)))
|
349
|
+
end
|
350
|
+
end
|
351
|
+
end
|
352
|
+
end
|
353
|
+
|
354
|
+
ActionView::Base.class_eval do
|
355
|
+
include ActiveScaffold::CountryHelperBridge::CountryHelpers
|
356
|
+
include ActiveScaffold::CountryHelperBridge::FormColumnHelpers
|
357
|
+
include ActiveScaffold::CountryHelperBridge::SearchColumnHelpers
|
358
|
+
end
|
@@ -8,14 +8,16 @@ ActiveScaffold::Bridges.bridge "DatePicker" do
|
|
8
8
|
|
9
9
|
if ActiveScaffold.js_framework == :jquery
|
10
10
|
require File.join(directory, "lib/datepicker_bridge.rb")
|
11
|
-
|
12
|
-
|
11
|
+
unless defined?(ACTIVE_SCAFFOLD_INSTALL_ASSETS) && ACTIVE_SCAFFOLD_INSTALL_ASSETS == false
|
12
|
+
FileUtils.cp(source, destination)
|
13
|
+
ActiveScaffold::Bridges::DatePickerBridge.localization(File.join(destination, 'date_picker_bridge.js'))
|
14
|
+
end
|
13
15
|
else
|
14
16
|
# make sure that jquery files are removed
|
15
17
|
FileUtils.rm(File.join(destination, 'date_picker_bridge.js')) if File.exist?(File.join(destination, 'date_picker_bridge.js'))
|
16
18
|
end
|
17
19
|
end
|
18
|
-
|
20
|
+
|
19
21
|
install? do
|
20
22
|
true
|
21
23
|
end
|