infopark_rails_connector 6.8.0.beta.200.621.4c8e1b0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +59 -0
- data/app/assets/images/admin/minus.gif +0 -0
- data/app/assets/images/bg80.png +0 -0
- data/app/assets/images/edit.png +0 -0
- data/app/assets/images/icons/mm_generic.png +0 -0
- data/app/assets/images/icons/mm_menu.png +0 -0
- data/app/assets/images/ratings/star.gif +0 -0
- data/app/assets/images/time_machine/calendar-menuarrow.gif +0 -0
- data/app/assets/images/time_machine/calendar_bg.png +0 -0
- data/app/assets/images/time_machine/icon.png +0 -0
- data/app/assets/images/time_machine/slider_bg.png +0 -0
- data/app/assets/images/time_machine/slider_handle.png +0 -0
- data/app/assets/images/time_machine/timemachine_bg.png +0 -0
- data/app/assets/javascripts/comments.js +29 -0
- data/app/assets/javascripts/editmarker.js +240 -0
- data/app/assets/javascripts/infopark_rails_connector.js.erb +3 -0
- data/app/assets/javascripts/initializer.js +9 -0
- data/app/assets/javascripts/ratings.js +26 -0
- data/app/assets/javascripts/time_machine/calendar-setup.js +200 -0
- data/app/assets/javascripts/time_machine/calendar.js +1806 -0
- data/app/assets/javascripts/time_machine/lang/calendar-de.js +127 -0
- data/app/assets/javascripts/time_machine/lang/calendar-en.js +127 -0
- data/app/assets/javascripts/time_machine/lang/calendar-es.js +129 -0
- data/app/assets/javascripts/time_machine/lang/calendar-fr.js +125 -0
- data/app/assets/javascripts/time_machine/lang/calendar-it.js +124 -0
- data/app/assets/javascripts/time_machine/slider.js +278 -0
- data/app/assets/javascripts/time_machine.js +8 -0
- data/app/assets/stylesheets/editmarker.css +70 -0
- data/app/assets/stylesheets/infopark_rails_connector.css.erb +4 -0
- data/app/assets/stylesheets/ratings.css +97 -0
- data/app/assets/stylesheets/time_machine/time_machine.css +292 -0
- data/app/assets/stylesheets/time_machine.css +6 -0
- data/app/controllers/cms_controller.rb +6 -0
- data/app/controllers/comments_controller.rb +6 -0
- data/app/controllers/crm_form_controller.rb +2 -0
- data/app/controllers/pdf_controller.rb +6 -0
- data/app/controllers/rails_connector/default_cms_controller.rb +40 -0
- data/app/controllers/rails_connector/default_comments_controller.rb +71 -0
- data/app/controllers/rails_connector/default_crm_form_controller.rb +167 -0
- data/app/controllers/rails_connector/default_pdf_controller.rb +136 -0
- data/app/controllers/rails_connector/default_ratings_controller.rb +84 -0
- data/app/controllers/rails_connector/default_rss_controller.rb +29 -0
- data/app/controllers/rails_connector/default_search_controller.rb +60 -0
- data/app/controllers/rails_connector/default_user_controller.rb +267 -0
- data/app/controllers/rails_connector/pdf_external_controller.rb +54 -0
- data/app/controllers/rails_connector/time_machine_controller.rb +48 -0
- data/app/controllers/ratings_controller.rb +6 -0
- data/app/controllers/rss_controller.rb +6 -0
- data/app/controllers/search_controller.rb +2 -0
- data/app/controllers/seo_sitemap_controller.rb +12 -0
- data/app/controllers/user_controller.rb +2 -0
- data/app/helpers/cms_helper.rb +6 -0
- data/app/helpers/cms_routing_helper.rb +6 -0
- data/app/helpers/crm_form_helper.rb +3 -0
- data/app/helpers/rails_connector/cms_asset_helper.rb +51 -0
- data/app/helpers/rails_connector/default_cms_helper.rb +27 -0
- data/app/helpers/rails_connector/default_cms_routing_helper.rb +93 -0
- data/app/helpers/rails_connector/default_crm_form_helper.rb +58 -0
- data/app/helpers/rails_connector/default_ratings_helper.rb +38 -0
- data/app/helpers/rails_connector/default_user_helper.rb +90 -0
- data/app/helpers/rails_connector/display_helper.rb +117 -0
- data/app/helpers/rails_connector/error_messages_helper.rb +23 -0
- data/app/helpers/rails_connector/layout_helper.rb +30 -0
- data/app/helpers/rails_connector/link_helper.rb +88 -0
- data/app/helpers/rails_connector/mandatory_label_helper.rb +10 -0
- data/app/helpers/rails_connector/marker_helper.rb +363 -0
- data/app/helpers/rails_connector/menu_helper.rb +72 -0
- data/app/helpers/rails_connector/micronav_helper.rb +107 -0
- data/app/helpers/rails_connector/seo_helper.rb +44 -0
- data/app/helpers/rails_connector/table_of_contents_helper.rb +20 -0
- data/app/helpers/rails_connector/time_machine_helper.rb +24 -0
- data/app/helpers/rails_connector/tracking_helper.rb +32 -0
- data/app/helpers/ratings_helper.rb +4 -0
- data/app/helpers/user_helper.rb +3 -0
- data/app/mailers/confirmation_mailer.rb +13 -0
- data/app/models/crm_form.rb +2 -0
- data/app/models/named_link.rb +2 -0
- data/app/models/obj.rb +9 -0
- data/app/models/rails_connector/default_comment.rb +28 -0
- data/app/models/rails_connector/default_rating.rb +20 -0
- data/app/models/rails_connector/link_list.rb +30 -0
- data/app/views/cms/_comments.html.erb +44 -0
- data/app/views/cms/_index.html.erb +7 -0
- data/app/views/cms/_rating.html.erb +31 -0
- data/app/views/cms/index.html.erb +3 -0
- data/app/views/comments/_comment.html.erb +28 -0
- data/app/views/confirmation_mailer/register_confirmation.erb +5 -0
- data/app/views/confirmation_mailer/reset_password.erb +5 -0
- data/app/views/crm_form/_flash_messages.html.erb +11 -0
- data/app/views/crm_form/_form.html.erb +17 -0
- data/app/views/crm_form/confirmation.html.erb +3 -0
- data/app/views/crm_form/index.html.erb +5 -0
- data/app/views/crm_form/not_logged_in.html.erb +1 -0
- data/app/views/errors/403_forbidden.html.erb +3 -0
- data/app/views/errors/410_gone.html.erb +7 -0
- data/app/views/layouts/rails_connector/time_machine.html.erb +12 -0
- data/app/views/pdf/index.html.erb +7 -0
- data/app/views/pdf/index.xsl +1240 -0
- data/app/views/rails_connector/time_machine/index.html.erb +88 -0
- data/app/views/rss/_item.rss.builder +11 -0
- data/app/views/rss/index.rss.builder +11 -0
- data/app/views/search/_hit.html.erb +12 -0
- data/app/views/search/_hits.html.erb +11 -0
- data/app/views/search/_mini_panel.html.erb +4 -0
- data/app/views/search/_pagination.html.erb +5 -0
- data/app/views/search/_panel.html.erb +4 -0
- data/app/views/search/search.html.erb +12 -0
- data/app/views/seo_sitemap/show.xml.builder +16 -0
- data/app/views/user/_flash_messages.html.erb +11 -0
- data/app/views/user/edit.html.erb +6 -0
- data/app/views/user/edit_password.html.erb +11 -0
- data/app/views/user/forgot_password.html.erb +7 -0
- data/app/views/user/login.html.erb +15 -0
- data/app/views/user/new.html.erb +11 -0
- data/app/views/user/profile.html.erb +8 -0
- data/app/views/user/register_pending.html.erb +1 -0
- data/app/views/user/set_password.html.erb +14 -0
- data/config/cms_routes.rb +13 -0
- data/config/locales/de.rails_connector.controllers.yml +30 -0
- data/config/locales/de.rails_connector.errors.yml +11 -0
- data/config/locales/de.rails_connector.helpers.yml +9 -0
- data/config/locales/de.rails_connector.lib.yml +6 -0
- data/config/locales/de.rails_connector.models.yml +8 -0
- data/config/locales/de.rails_connector.views.yml +87 -0
- data/config/locales/en.rails_connector.controllers.yml +30 -0
- data/config/locales/en.rails_connector.errors.yml +10 -0
- data/config/locales/en.rails_connector.helpers.yml +9 -0
- data/config/locales/en.rails_connector.lib.yml +6 -0
- data/config/locales/en.rails_connector.models.yml +8 -0
- data/config/locales/en.rails_connector.views.yml +87 -0
- data/config/routes.rb +37 -0
- data/lib/generators/rails_connector/comments/comments_generator.rb +21 -0
- data/lib/generators/rails_connector/comments/templates/migration.rb +17 -0
- data/lib/generators/rails_connector/install/install_generator.rb +38 -0
- data/lib/generators/rails_connector/install/templates/initializers/rails_connector.rb +58 -0
- data/lib/generators/rails_connector/install/templates/local/configuration.rb +2 -0
- data/lib/generators/rails_connector/install/templates/obj_extensions.rb +25 -0
- data/lib/generators/rails_connector/ratings/ratings_generator.rb +21 -0
- data/lib/generators/rails_connector/ratings/templates/migration.rb +15 -0
- data/lib/infopark_rails_connector.rb +31 -0
- data/lib/obj_extensions.rb +6 -0
- data/lib/rails_connector/authenticable.rb +30 -0
- data/lib/rails_connector/cms_accessible.rb +114 -0
- data/lib/rails_connector/cms_dispatch_controller.rb +47 -0
- data/lib/rails_connector/cms_env.rb +55 -0
- data/lib/rails_connector/cms_test_request.rb +23 -0
- data/lib/rails_connector/commentable.rb +23 -0
- data/lib/rails_connector/configuration/google_analytics.rb +29 -0
- data/lib/rails_connector/configuration/pdf_generator.rb +15 -0
- data/lib/rails_connector/configuration/rss.rb +46 -0
- data/lib/rails_connector/configuration.rb +235 -0
- data/lib/rails_connector/core_extensions/time.rb +18 -0
- data/lib/rails_connector/core_extensions.rb +1 -0
- data/lib/rails_connector/crm.rb +282 -0
- data/lib/rails_connector/engine.rb +78 -0
- data/lib/rails_connector/fop.rb +18 -0
- data/lib/rails_connector/fop_on_rails/document/dom_tree.rb +42 -0
- data/lib/rails_connector/fop_on_rails/document/images.rb +34 -0
- data/lib/rails_connector/fop_on_rails/document/tables.rb +67 -0
- data/lib/rails_connector/fop_on_rails/document.rb +25 -0
- data/lib/rails_connector/fop_on_rails.rb +92 -0
- data/lib/rails_connector/googlebot_checker.rb +47 -0
- data/lib/rails_connector/html_string.rb +19 -0
- data/lib/rails_connector/infopark_base.rb +2 -0
- data/lib/rails_connector/link_resolvable.rb +9 -0
- data/lib/rails_connector/liquid_support/action_marker.rb +69 -0
- data/lib/rails_connector/liquid_support/field_value_drop.rb +22 -0
- data/lib/rails_connector/liquid_support/general_helper_tag.rb +44 -0
- data/lib/rails_connector/liquid_support/link_drop.rb +22 -0
- data/lib/rails_connector/liquid_support/liquid_template_handler.rb +162 -0
- data/lib/rails_connector/liquid_support/named_object_drop.rb +14 -0
- data/lib/rails_connector/liquid_support/obj_drop.rb +43 -0
- data/lib/rails_connector/liquid_support/obj_filters.rb +77 -0
- data/lib/rails_connector/liquid_support.rb +23 -0
- data/lib/rails_connector/markdown_string.rb +19 -0
- data/lib/rails_connector/rateable.rb +57 -0
- data/lib/rails_connector/seo.rb +52 -0
- data/lib/rails_connector/ses.rb +72 -0
- data/lib/rails_connector/string_tagging.rb +29 -0
- data/lib/rails_connector/syndicateable.rb +11 -0
- data/lib/search_request.rb +2 -0
- data/lib/tasks/check.rake +25 -0
- data/lib/tasks/cms_license_check.rake +17 -0
- metadata +489 -0
@@ -0,0 +1,278 @@
|
|
1
|
+
// script.aculo.us slider.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
|
2
|
+
|
3
|
+
// Copyright (c) 2005, 2006 Marty Haught, Thomas Fuchs
|
4
|
+
//
|
5
|
+
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
6
|
+
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
7
|
+
|
8
|
+
if(!Control) var Control = {};
|
9
|
+
Control.Slider = Class.create();
|
10
|
+
|
11
|
+
// options:
|
12
|
+
// axis: 'vertical', or 'horizontal' (default)
|
13
|
+
//
|
14
|
+
// callbacks:
|
15
|
+
// onChange(value)
|
16
|
+
// onSlide(value)
|
17
|
+
Control.Slider.prototype = {
|
18
|
+
initialize: function(handle, track, options) {
|
19
|
+
var slider = this;
|
20
|
+
|
21
|
+
if(handle instanceof Array) {
|
22
|
+
this.handles = handle.collect( function(e) { return $(e) });
|
23
|
+
} else {
|
24
|
+
this.handles = [$(handle)];
|
25
|
+
}
|
26
|
+
|
27
|
+
this.track = $(track);
|
28
|
+
this.options = options || {};
|
29
|
+
|
30
|
+
this.axis = this.options.axis || 'horizontal';
|
31
|
+
this.increment = this.options.increment || 1;
|
32
|
+
this.step = parseInt(this.options.step || '1');
|
33
|
+
this.range = this.options.range || $R(0,1);
|
34
|
+
|
35
|
+
this.value = 0; // assure backwards compat
|
36
|
+
this.values = this.handles.map( function() { return 0 });
|
37
|
+
this.spans = this.options.spans ? this.options.spans.map(function(s){ return $(s) }) : false;
|
38
|
+
this.options.startSpan = $(this.options.startSpan || null);
|
39
|
+
this.options.endSpan = $(this.options.endSpan || null);
|
40
|
+
|
41
|
+
this.restricted = this.options.restricted || false;
|
42
|
+
|
43
|
+
this.maximum = this.options.maximum || this.range.end;
|
44
|
+
this.minimum = this.options.minimum || this.range.start;
|
45
|
+
|
46
|
+
// Will be used to align the handle onto the track, if necessary
|
47
|
+
this.alignX = parseInt(this.options.alignX || '0');
|
48
|
+
this.alignY = parseInt(this.options.alignY || '0');
|
49
|
+
|
50
|
+
this.trackLength = this.maximumOffset() - this.minimumOffset();
|
51
|
+
|
52
|
+
this.handleLength = this.isVertical() ?
|
53
|
+
(this.handles[0].offsetHeight != 0 ?
|
54
|
+
this.handles[0].offsetHeight : this.handles[0].style.height.replace(/px$/,"")) :
|
55
|
+
(this.handles[0].offsetWidth != 0 ? this.handles[0].offsetWidth :
|
56
|
+
this.handles[0].style.width.replace(/px$/,""));
|
57
|
+
|
58
|
+
this.active = false;
|
59
|
+
this.dragging = false;
|
60
|
+
this.disabled = false;
|
61
|
+
|
62
|
+
if(this.options.disabled) this.setDisabled();
|
63
|
+
|
64
|
+
// Allowed values array
|
65
|
+
this.allowedValues = this.options.values ? this.options.values.sortBy(Prototype.K) : false;
|
66
|
+
if(this.allowedValues) {
|
67
|
+
this.minimum = this.allowedValues.min();
|
68
|
+
this.maximum = this.allowedValues.max();
|
69
|
+
}
|
70
|
+
|
71
|
+
this.eventMouseDown = this.startDrag.bindAsEventListener(this);
|
72
|
+
this.eventMouseUp = this.endDrag.bindAsEventListener(this);
|
73
|
+
this.eventMouseMove = this.update.bindAsEventListener(this);
|
74
|
+
|
75
|
+
// Initialize handles in reverse (make sure first handle is active)
|
76
|
+
this.handles.each( function(h,i) {
|
77
|
+
i = slider.handles.length-1-i;
|
78
|
+
slider.setValue(parseFloat(
|
79
|
+
(slider.options.sliderValue instanceof Array ?
|
80
|
+
slider.options.sliderValue[i] : slider.options.sliderValue) ||
|
81
|
+
slider.range.start), i);
|
82
|
+
Element.makePositioned(h); // fix IE
|
83
|
+
Event.observe(h, "mousedown", slider.eventMouseDown);
|
84
|
+
});
|
85
|
+
|
86
|
+
Event.observe(this.track, "mousedown", this.eventMouseDown);
|
87
|
+
Event.observe(document, "mouseup", this.eventMouseUp);
|
88
|
+
Event.observe(document, "mousemove", this.eventMouseMove);
|
89
|
+
|
90
|
+
this.initialized = true;
|
91
|
+
},
|
92
|
+
dispose: function() {
|
93
|
+
var slider = this;
|
94
|
+
Event.stopObserving(this.track, "mousedown", this.eventMouseDown);
|
95
|
+
Event.stopObserving(document, "mouseup", this.eventMouseUp);
|
96
|
+
Event.stopObserving(document, "mousemove", this.eventMouseMove);
|
97
|
+
this.handles.each( function(h) {
|
98
|
+
Event.stopObserving(h, "mousedown", slider.eventMouseDown);
|
99
|
+
});
|
100
|
+
},
|
101
|
+
setDisabled: function(){
|
102
|
+
this.disabled = true;
|
103
|
+
},
|
104
|
+
setEnabled: function(){
|
105
|
+
this.disabled = false;
|
106
|
+
},
|
107
|
+
getNearestValue: function(value){
|
108
|
+
if(this.allowedValues){
|
109
|
+
if(value >= this.allowedValues.max()) return(this.allowedValues.max());
|
110
|
+
if(value <= this.allowedValues.min()) return(this.allowedValues.min());
|
111
|
+
|
112
|
+
var offset = Math.abs(this.allowedValues[0] - value);
|
113
|
+
var newValue = this.allowedValues[0];
|
114
|
+
this.allowedValues.each( function(v) {
|
115
|
+
var currentOffset = Math.abs(v - value);
|
116
|
+
if(currentOffset <= offset){
|
117
|
+
newValue = v;
|
118
|
+
offset = currentOffset;
|
119
|
+
}
|
120
|
+
});
|
121
|
+
return newValue;
|
122
|
+
}
|
123
|
+
if(value > this.range.end) return this.range.end;
|
124
|
+
if(value < this.range.start) return this.range.start;
|
125
|
+
return value;
|
126
|
+
},
|
127
|
+
setValue: function(sliderValue, handleIdx){
|
128
|
+
if(!this.active) {
|
129
|
+
this.activeHandleIdx = handleIdx || 0;
|
130
|
+
this.activeHandle = this.handles[this.activeHandleIdx];
|
131
|
+
this.updateStyles();
|
132
|
+
}
|
133
|
+
handleIdx = handleIdx || this.activeHandleIdx || 0;
|
134
|
+
if(this.initialized && this.restricted) {
|
135
|
+
if((handleIdx>0) && (sliderValue<this.values[handleIdx-1]))
|
136
|
+
sliderValue = this.values[handleIdx-1];
|
137
|
+
if((handleIdx < (this.handles.length-1)) && (sliderValue>this.values[handleIdx+1]))
|
138
|
+
sliderValue = this.values[handleIdx+1];
|
139
|
+
}
|
140
|
+
sliderValue = this.getNearestValue(sliderValue);
|
141
|
+
this.values[handleIdx] = sliderValue;
|
142
|
+
this.value = this.values[0]; // assure backwards compat
|
143
|
+
|
144
|
+
this.handles[handleIdx].style[this.isVertical() ? 'top' : 'left'] =
|
145
|
+
this.translateToPx(sliderValue);
|
146
|
+
|
147
|
+
this.drawSpans();
|
148
|
+
if(!this.dragging || !this.event) this.updateFinished();
|
149
|
+
},
|
150
|
+
setValueBy: function(delta, handleIdx) {
|
151
|
+
this.setValue(this.values[handleIdx || this.activeHandleIdx || 0] + delta,
|
152
|
+
handleIdx || this.activeHandleIdx || 0);
|
153
|
+
},
|
154
|
+
translateToPx: function(value) {
|
155
|
+
return Math.round(
|
156
|
+
((this.trackLength-this.handleLength)/(this.range.end-this.range.start)) *
|
157
|
+
(value - this.range.start)) + "px";
|
158
|
+
},
|
159
|
+
translateToValue: function(offset) {
|
160
|
+
return ((offset/(this.trackLength-this.handleLength) *
|
161
|
+
(this.range.end-this.range.start)) + this.range.start);
|
162
|
+
},
|
163
|
+
getRange: function(range) {
|
164
|
+
var v = this.values.sortBy(Prototype.K);
|
165
|
+
range = range || 0;
|
166
|
+
return $R(v[range],v[range+1]);
|
167
|
+
},
|
168
|
+
minimumOffset: function(){
|
169
|
+
return(this.isVertical() ? this.alignY : this.alignX);
|
170
|
+
},
|
171
|
+
maximumOffset: function(){
|
172
|
+
return(this.isVertical() ?
|
173
|
+
(this.track.offsetHeight != 0 ? this.track.offsetHeight :
|
174
|
+
this.track.style.height.replace(/px$/,"")) - this.alignY :
|
175
|
+
(this.track.offsetWidth != 0 ? this.track.offsetWidth :
|
176
|
+
this.track.style.width.replace(/px$/,"")) - this.alignY);
|
177
|
+
},
|
178
|
+
isVertical: function(){
|
179
|
+
return (this.axis == 'vertical');
|
180
|
+
},
|
181
|
+
drawSpans: function() {
|
182
|
+
var slider = this;
|
183
|
+
if(this.spans)
|
184
|
+
$R(0, this.spans.length-1).each(function(r) { slider.setSpan(slider.spans[r], slider.getRange(r)) });
|
185
|
+
if(this.options.startSpan)
|
186
|
+
this.setSpan(this.options.startSpan,
|
187
|
+
$R(0, this.values.length>1 ? this.getRange(0).min() : this.value ));
|
188
|
+
if(this.options.endSpan)
|
189
|
+
this.setSpan(this.options.endSpan,
|
190
|
+
$R(this.values.length>1 ? this.getRange(this.spans.length-1).max() : this.value, this.maximum));
|
191
|
+
},
|
192
|
+
setSpan: function(span, range) {
|
193
|
+
if(this.isVertical()) {
|
194
|
+
span.style.top = this.translateToPx(range.start);
|
195
|
+
span.style.height = this.translateToPx(range.end - range.start + this.range.start);
|
196
|
+
} else {
|
197
|
+
span.style.left = this.translateToPx(range.start);
|
198
|
+
span.style.width = this.translateToPx(range.end - range.start + this.range.start);
|
199
|
+
}
|
200
|
+
},
|
201
|
+
updateStyles: function() {
|
202
|
+
this.handles.each( function(h){ Element.removeClassName(h, 'selected') });
|
203
|
+
Element.addClassName(this.activeHandle, 'selected');
|
204
|
+
},
|
205
|
+
startDrag: function(event) {
|
206
|
+
if(Event.isLeftClick(event)) {
|
207
|
+
if(!this.disabled){
|
208
|
+
this.active = true;
|
209
|
+
|
210
|
+
var handle = Event.element(event);
|
211
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
212
|
+
var track = handle;
|
213
|
+
if(track==this.track) {
|
214
|
+
var offsets = Position.cumulativeOffset(this.track);
|
215
|
+
this.event = event;
|
216
|
+
this.setValue(this.translateToValue(
|
217
|
+
(this.isVertical() ? pointer[1]-offsets[1] : pointer[0]-offsets[0])-(this.handleLength/2)
|
218
|
+
));
|
219
|
+
var offsets = Position.cumulativeOffset(this.activeHandle);
|
220
|
+
this.offsetX = (pointer[0] - offsets[0]);
|
221
|
+
this.offsetY = (pointer[1] - offsets[1]);
|
222
|
+
} else {
|
223
|
+
// find the handle (prevents issues with Safari)
|
224
|
+
while((this.handles.indexOf(handle) == -1) && handle.parentNode)
|
225
|
+
handle = handle.parentNode;
|
226
|
+
|
227
|
+
if(this.handles.indexOf(handle)!=-1) {
|
228
|
+
this.activeHandle = handle;
|
229
|
+
this.activeHandleIdx = this.handles.indexOf(this.activeHandle);
|
230
|
+
this.updateStyles();
|
231
|
+
|
232
|
+
var offsets = Position.cumulativeOffset(this.activeHandle);
|
233
|
+
this.offsetX = (pointer[0] - offsets[0]);
|
234
|
+
this.offsetY = (pointer[1] - offsets[1]);
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
Event.stop(event);
|
239
|
+
}
|
240
|
+
},
|
241
|
+
update: function(event) {
|
242
|
+
if(this.active) {
|
243
|
+
if(!this.dragging) this.dragging = true;
|
244
|
+
this.draw(event);
|
245
|
+
// fix AppleWebKit rendering
|
246
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
|
247
|
+
Event.stop(event);
|
248
|
+
}
|
249
|
+
},
|
250
|
+
draw: function(event) {
|
251
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
252
|
+
var offsets = Position.cumulativeOffset(this.track);
|
253
|
+
pointer[0] -= this.offsetX + offsets[0];
|
254
|
+
pointer[1] -= this.offsetY + offsets[1];
|
255
|
+
this.event = event;
|
256
|
+
this.setValue(this.translateToValue( this.isVertical() ? pointer[1] : pointer[0] ));
|
257
|
+
if(this.initialized && this.options.onSlide)
|
258
|
+
this.options.onSlide(this.values.length>1 ? this.values : this.value, this);
|
259
|
+
},
|
260
|
+
endDrag: function(event) {
|
261
|
+
if(this.active && this.dragging) {
|
262
|
+
this.finishDrag(event, true);
|
263
|
+
Event.stop(event);
|
264
|
+
}
|
265
|
+
this.active = false;
|
266
|
+
this.dragging = false;
|
267
|
+
},
|
268
|
+
finishDrag: function(event, success) {
|
269
|
+
this.active = false;
|
270
|
+
this.dragging = false;
|
271
|
+
this.updateFinished();
|
272
|
+
},
|
273
|
+
updateFinished: function() {
|
274
|
+
if(this.initialized && this.options.onChange)
|
275
|
+
this.options.onChange(this.values.length>1 ? this.values : this.value, this);
|
276
|
+
this.event = null;
|
277
|
+
}
|
278
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
|
3
|
+
/*** Edit Marker ***/
|
4
|
+
a.nps_edit_marker {
|
5
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
6
|
+
filter: alpha(opacity=50);
|
7
|
+
}
|
8
|
+
a.nps_edit_marker:hover,a.nps_edit_marker:active {
|
9
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
10
|
+
filter: alpha(opacity=100);
|
11
|
+
}
|
12
|
+
|
13
|
+
a.nps_edit_marker {
|
14
|
+
background-color: transparent;
|
15
|
+
display:none;
|
16
|
+
background:url(edit.png) 0 0 no-repeat;
|
17
|
+
min-width:16px;
|
18
|
+
min-height:16px;
|
19
|
+
z-index: 1000;
|
20
|
+
position:absolute;
|
21
|
+
opacity:0.3;
|
22
|
+
}
|
23
|
+
a.nps_edit_marker:hover,a.nps_edit_marker:active {opacity:1;}
|
24
|
+
|
25
|
+
/*** Marker Menu ***/
|
26
|
+
.nps_marker_menu {
|
27
|
+
position:absolute;
|
28
|
+
z-index:10000;
|
29
|
+
display:block;
|
30
|
+
/*** IE 6-7 braucht leider eine Breitenangabe***/
|
31
|
+
width:200px;
|
32
|
+
}
|
33
|
+
|
34
|
+
|
35
|
+
/*** Marker Menu Transparenz IE 6 ***/
|
36
|
+
*html .nps_marker_menu div.core { filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='bg80.png', sizingMethod='scale');}
|
37
|
+
|
38
|
+
/*** Marker Menu Button Transparenz IE ***/
|
39
|
+
a.nps_marker_menu_button {
|
40
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
|
41
|
+
filter: alpha(opacity=50);
|
42
|
+
}
|
43
|
+
a.nps_marker_menu_button:hover,a.nps_marker_menu_button:active {
|
44
|
+
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
45
|
+
filter: alpha(opacity=100);
|
46
|
+
}
|
47
|
+
|
48
|
+
a.nps_marker_menu_button {display: block; text-align:left;text-indent:-1000em; width: 100%; height: 16px; background: transparent url(icons/mm_menu.png) 0 0 no-repeat;opacity:0.3;}
|
49
|
+
a.nps_marker_menu_button:hover,a.nps_marker_menu_button:active {opacity:1;}
|
50
|
+
|
51
|
+
.nps_marker_menu div.b1,
|
52
|
+
.nps_marker_menu div.b2,
|
53
|
+
.nps_marker_menu div.b3,
|
54
|
+
.nps_marker_menu div.b4 { background:url(bg80.png) 0 0 repeat; display:block;padding:0;overflow:hidden;font-size:1px;}
|
55
|
+
.nps_marker_menu div.b1 { margin:0pt 5px; height:1px;}
|
56
|
+
.nps_marker_menu div.b2 { margin:0pt 3px; height:1px;}
|
57
|
+
.nps_marker_menu div.b3 { margin:0pt 2px; height:1px;}
|
58
|
+
.nps_marker_menu div.b4 { margin:0pt 1px; height:2px;}
|
59
|
+
|
60
|
+
.nps_marker_menu_content div.core {background:url(bg80.png) 0 0 repeat; text-align:left;color:#fff;}
|
61
|
+
.nps_marker_menu_content div.core p{padding:0 5px; text-align:left;color:#fff;}
|
62
|
+
|
63
|
+
.nps_marker_menu ul { display:block; margin:0; padding:0;}
|
64
|
+
.nps_marker_menu ul li {padding:3px 1px; margin:0; line-height: 20px; list-style-type:none; list-style-image:none;}
|
65
|
+
.nps_marker_menu ul li a {display:block; color:#fff; font-weight:bold;}
|
66
|
+
.nps_marker_menu ul li a:hover,
|
67
|
+
.nps_marker_menu ul li a:active { background-color: #777; text-decoration:none; color:#fff; }
|
68
|
+
.nps_marker_menu ul li a:focus { text-decoration:none; color:#fff; }
|
69
|
+
|
70
|
+
.nps_marker_menu ul li a span {padding: 0 6px 0 30px;display: block; text-align: left; background: transparent url(icons/mm_generic.png) 7px 2px no-repeat;}
|
@@ -0,0 +1,97 @@
|
|
1
|
+
/**
|
2
|
+
* Star ratings
|
3
|
+
* (en) Styles for the star rating feature
|
4
|
+
* (de) Stile fuer die Bewertung mit Sternchen
|
5
|
+
*
|
6
|
+
* @section star-rating
|
7
|
+
*/
|
8
|
+
|
9
|
+
#starRating { position:relative;}
|
10
|
+
#starRating_label {width:120px;text-align:center; margin-bottom:4px; color:#FFCC00;}
|
11
|
+
.star-rating,
|
12
|
+
.star-rating a:hover,
|
13
|
+
.star-rating a:active,
|
14
|
+
.star-rating a:focus,
|
15
|
+
.star-rating .current-rating{
|
16
|
+
background: url(ratings/star.gif) left -1000px repeat-x;
|
17
|
+
}
|
18
|
+
.star-rating{
|
19
|
+
position:relative;
|
20
|
+
width:125px;
|
21
|
+
height:25px;
|
22
|
+
overflow:hidden;
|
23
|
+
list-style:none;
|
24
|
+
margin:0;
|
25
|
+
padding:0;
|
26
|
+
background-position: left top;
|
27
|
+
}
|
28
|
+
.star-rating li{
|
29
|
+
display: inline;
|
30
|
+
padding:0;
|
31
|
+
margin:0;
|
32
|
+
}
|
33
|
+
.star-rating a,
|
34
|
+
.star-rating .current-rating{
|
35
|
+
position:absolute;
|
36
|
+
top:0;
|
37
|
+
left:0;
|
38
|
+
text-indent:-1000em;
|
39
|
+
height:25px;
|
40
|
+
line-height:25px;
|
41
|
+
outline:none;
|
42
|
+
overflow:hidden;
|
43
|
+
border: none;
|
44
|
+
|
45
|
+
}
|
46
|
+
.star-rating a:hover,
|
47
|
+
.star-rating a:active,
|
48
|
+
.star-rating a:focus{
|
49
|
+
background-position: left bottom;
|
50
|
+
}
|
51
|
+
.star-rating a.one-star{
|
52
|
+
width:20%;
|
53
|
+
z-index:6;
|
54
|
+
}
|
55
|
+
.star-rating a.two-stars{
|
56
|
+
width:40%;
|
57
|
+
z-index:5;
|
58
|
+
}
|
59
|
+
.star-rating a.three-stars{
|
60
|
+
width:60%;
|
61
|
+
z-index:4;
|
62
|
+
}
|
63
|
+
.star-rating a.four-stars{
|
64
|
+
width:80%;
|
65
|
+
z-index:3;
|
66
|
+
}
|
67
|
+
.star-rating a.five-stars{
|
68
|
+
width:100%;
|
69
|
+
z-index:2;
|
70
|
+
}
|
71
|
+
.star-rating .current-rating{
|
72
|
+
z-index:1;
|
73
|
+
background-position: left center;
|
74
|
+
}
|
75
|
+
|
76
|
+
/* for an inline rater */
|
77
|
+
.inline-rating{
|
78
|
+
display:-moz-inline-block;
|
79
|
+
display:-moz-inline-box;
|
80
|
+
display:inline-block;
|
81
|
+
vertical-align: middle;
|
82
|
+
}
|
83
|
+
|
84
|
+
/* smaller star */
|
85
|
+
.small-star{
|
86
|
+
width:50px;
|
87
|
+
height:10px;
|
88
|
+
}
|
89
|
+
.small-star,
|
90
|
+
.small-star a:hover,
|
91
|
+
.small-star a:active,
|
92
|
+
.small-star a:focus,
|
93
|
+
.small-star .current-rating{
|
94
|
+
background-image: url(star_small.gif);
|
95
|
+
line-height: 10px;
|
96
|
+
height: 10px;
|
97
|
+
}
|