Version Notes
Adds multiple selection features for attribute and price filters in Magento layered navigation.
Download this release
Release Info
Developer | Magento Core Team |
Extension | Mana_Filters |
Version | 13.10.17.20 |
Comparing to | |
See all releases |
Code changes from version 13.10.17.19 to 13.10.17.20
- js/jquery/froogaloop.js +289 -289
- js/jquery/froogaloop.min.js +4 -4
- package.xml +5 -5
js/jquery/froogaloop.js
CHANGED
@@ -1,290 +1,290 @@
|
|
1 |
-
; // for better merging
|
2 |
-
|
3 |
-
// Init style shamelessly stolen from jQuery http://jquery.com
|
4 |
-
var Froogaloop = (function(){
|
5 |
-
// Define a local copy of Froogaloop
|
6 |
-
function Froogaloop(iframe) {
|
7 |
-
// The Froogaloop object is actually just the init constructor
|
8 |
-
return new Froogaloop.fn.init(iframe);
|
9 |
-
}
|
10 |
-
|
11 |
-
var eventCallbacks = {},
|
12 |
-
hasWindowEvent = false,
|
13 |
-
isReady = false,
|
14 |
-
slice = Array.prototype.slice,
|
15 |
-
playerDomain = '';
|
16 |
-
|
17 |
-
Froogaloop.fn = Froogaloop.prototype = {
|
18 |
-
element: null,
|
19 |
-
|
20 |
-
init: function(iframe) {
|
21 |
-
if (typeof iframe === "string") {
|
22 |
-
iframe = document.getElementById(iframe);
|
23 |
-
}
|
24 |
-
|
25 |
-
this.element = iframe;
|
26 |
-
|
27 |
-
// Register message event listeners
|
28 |
-
playerDomain = getDomainFromUrl(this.element.getAttribute('src'));
|
29 |
-
|
30 |
-
return this;
|
31 |
-
},
|
32 |
-
|
33 |
-
/*
|
34 |
-
* Calls a function to act upon the player.
|
35 |
-
*
|
36 |
-
* @param {string} method The name of the Javascript API method to call. Eg: 'play'.
|
37 |
-
* @param {Array|Function} valueOrCallback params Array of parameters to pass when calling an API method
|
38 |
-
* or callback function when the method returns a value.
|
39 |
-
*/
|
40 |
-
api: function(method, valueOrCallback) {
|
41 |
-
if (!this.element || !method) {
|
42 |
-
return false;
|
43 |
-
}
|
44 |
-
|
45 |
-
var self = this,
|
46 |
-
element = self.element,
|
47 |
-
target_id = element.id !== '' ? element.id : null,
|
48 |
-
params = !isFunction(valueOrCallback) ? valueOrCallback : null,
|
49 |
-
callback = isFunction(valueOrCallback) ? valueOrCallback : null;
|
50 |
-
|
51 |
-
// Store the callback for get functions
|
52 |
-
if (callback) {
|
53 |
-
storeCallback(method, callback, target_id);
|
54 |
-
}
|
55 |
-
|
56 |
-
postMessage(method, params, element);
|
57 |
-
return self;
|
58 |
-
},
|
59 |
-
|
60 |
-
/*
|
61 |
-
* Registers an event listener and a callback function that gets called when the event fires.
|
62 |
-
*
|
63 |
-
* @param eventName (String): Name of the event to listen for.
|
64 |
-
* @param callback (Function): Function that should be called when the event fires.
|
65 |
-
*/
|
66 |
-
addEvent: function(eventName, callback) {
|
67 |
-
if (!this.element) {
|
68 |
-
return false;
|
69 |
-
}
|
70 |
-
|
71 |
-
var self = this,
|
72 |
-
element = self.element,
|
73 |
-
target_id = element.id !== '' ? element.id : null;
|
74 |
-
|
75 |
-
|
76 |
-
storeCallback(eventName, callback, target_id);
|
77 |
-
|
78 |
-
// The ready event is not registered via postMessage. It fires regardless.
|
79 |
-
if (eventName != 'ready') {
|
80 |
-
postMessage('addEventListener', eventName, element);
|
81 |
-
}
|
82 |
-
else if (eventName == 'ready' && isReady) {
|
83 |
-
callback.call(null, target_id);
|
84 |
-
}
|
85 |
-
|
86 |
-
return self;
|
87 |
-
},
|
88 |
-
|
89 |
-
/*
|
90 |
-
* Unregisters an event listener that gets called when the event fires.
|
91 |
-
*
|
92 |
-
* @param eventName (String): Name of the event to stop listening for.
|
93 |
-
*/
|
94 |
-
removeEvent: function(eventName) {
|
95 |
-
if (!this.element) {
|
96 |
-
return false;
|
97 |
-
}
|
98 |
-
|
99 |
-
var self = this,
|
100 |
-
element = self.element,
|
101 |
-
target_id = element.id !== '' ? element.id : null,
|
102 |
-
removed = removeCallback(eventName, target_id);
|
103 |
-
|
104 |
-
// The ready event is not registered
|
105 |
-
if (eventName != 'ready' && removed) {
|
106 |
-
postMessage('removeEventListener', eventName, element);
|
107 |
-
}
|
108 |
-
}
|
109 |
-
};
|
110 |
-
|
111 |
-
/**
|
112 |
-
* Handles posting a message to the parent window.
|
113 |
-
*
|
114 |
-
* @param method (String): name of the method to call inside the player. For api calls
|
115 |
-
* this is the name of the api method (api_play or api_pause) while for events this method
|
116 |
-
* is api_addEventListener.
|
117 |
-
* @param params (Object or Array): List of parameters to submit to the method. Can be either
|
118 |
-
* a single param or an array list of parameters.
|
119 |
-
* @param target (HTMLElement): Target iframe to post the message to.
|
120 |
-
*/
|
121 |
-
function postMessage(method, params, target) {
|
122 |
-
if (!target.contentWindow.postMessage) {
|
123 |
-
return false;
|
124 |
-
}
|
125 |
-
|
126 |
-
var url = target.getAttribute('src').split('?')[0],
|
127 |
-
data = JSON.stringify({
|
128 |
-
method: method,
|
129 |
-
value: params
|
130 |
-
});
|
131 |
-
|
132 |
-
if (url.substr(0, 2) === '//') {
|
133 |
-
url = window.location.protocol + url;
|
134 |
-
}
|
135 |
-
|
136 |
-
target.contentWindow.postMessage(data, url);
|
137 |
-
}
|
138 |
-
|
139 |
-
/**
|
140 |
-
* Event that fires whenever the window receives a message from its parent
|
141 |
-
* via window.postMessage.
|
142 |
-
*/
|
143 |
-
function onMessageReceived(event) {
|
144 |
-
var data, method;
|
145 |
-
|
146 |
-
try {
|
147 |
-
data = JSON.parse(event.data);
|
148 |
-
method = data.event || data.method;
|
149 |
-
}
|
150 |
-
catch(e) {
|
151 |
-
//fail silently... like a ninja!
|
152 |
-
}
|
153 |
-
|
154 |
-
if (method == 'ready' && !isReady) {
|
155 |
-
isReady = true;
|
156 |
-
}
|
157 |
-
|
158 |
-
// Handles messages from moogaloop only
|
159 |
-
if (event.origin != playerDomain) {
|
160 |
-
return false;
|
161 |
-
}
|
162 |
-
|
163 |
-
var value = data.value,
|
164 |
-
eventData = data.data,
|
165 |
-
target_id = target_id === '' ? null : data.player_id,
|
166 |
-
|
167 |
-
callback = getCallback(method, target_id),
|
168 |
-
params = [];
|
169 |
-
|
170 |
-
if (!callback) {
|
171 |
-
return false;
|
172 |
-
}
|
173 |
-
|
174 |
-
if (value !== undefined) {
|
175 |
-
params.push(value);
|
176 |
-
}
|
177 |
-
|
178 |
-
if (eventData) {
|
179 |
-
params.push(eventData);
|
180 |
-
}
|
181 |
-
|
182 |
-
if (target_id) {
|
183 |
-
params.push(target_id);
|
184 |
-
}
|
185 |
-
|
186 |
-
return params.length > 0 ? callback.apply(null, params) : callback.call();
|
187 |
-
}
|
188 |
-
|
189 |
-
|
190 |
-
/**
|
191 |
-
* Stores submitted callbacks for each iframe being tracked and each
|
192 |
-
* event for that iframe.
|
193 |
-
*
|
194 |
-
* @param eventName (String): Name of the event. Eg. api_onPlay
|
195 |
-
* @param callback (Function): Function that should get executed when the
|
196 |
-
* event is fired.
|
197 |
-
* @param target_id (String) [Optional]: If handling more than one iframe then
|
198 |
-
* it stores the different callbacks for different iframes based on the iframe's
|
199 |
-
* id.
|
200 |
-
*/
|
201 |
-
function storeCallback(eventName, callback, target_id) {
|
202 |
-
if (target_id) {
|
203 |
-
if (!eventCallbacks[target_id]) {
|
204 |
-
eventCallbacks[target_id] = {};
|
205 |
-
}
|
206 |
-
eventCallbacks[target_id][eventName] = callback;
|
207 |
-
}
|
208 |
-
else {
|
209 |
-
eventCallbacks[eventName] = callback;
|
210 |
-
}
|
211 |
-
}
|
212 |
-
|
213 |
-
/**
|
214 |
-
* Retrieves stored callbacks.
|
215 |
-
*/
|
216 |
-
function getCallback(eventName, target_id) {
|
217 |
-
if (target_id) {
|
218 |
-
return eventCallbacks[target_id][eventName];
|
219 |
-
}
|
220 |
-
else {
|
221 |
-
return eventCallbacks[eventName];
|
222 |
-
}
|
223 |
-
}
|
224 |
-
|
225 |
-
function removeCallback(eventName, target_id) {
|
226 |
-
if (target_id && eventCallbacks[target_id]) {
|
227 |
-
if (!eventCallbacks[target_id][eventName]) {
|
228 |
-
return false;
|
229 |
-
}
|
230 |
-
eventCallbacks[target_id][eventName] = null;
|
231 |
-
}
|
232 |
-
else {
|
233 |
-
if (!eventCallbacks[eventName]) {
|
234 |
-
return false;
|
235 |
-
}
|
236 |
-
eventCallbacks[eventName] = null;
|
237 |
-
}
|
238 |
-
|
239 |
-
return true;
|
240 |
-
}
|
241 |
-
|
242 |
-
/**
|
243 |
-
* Returns a domain's root domain.
|
244 |
-
* Eg. returns http://vimeo.com when http://vimeo.com/channels is sbumitted
|
245 |
-
*
|
246 |
-
* @param url (String): Url to test against.
|
247 |
-
* @return url (String): Root domain of submitted url
|
248 |
-
*/
|
249 |
-
function getDomainFromUrl(url) {
|
250 |
-
if (url.substr(0, 2) === '//') {
|
251 |
-
url = window.location.protocol + url;
|
252 |
-
}
|
253 |
-
|
254 |
-
var url_pieces = url.split('/'),
|
255 |
-
domain_str = '';
|
256 |
-
|
257 |
-
for(var i = 0, length = url_pieces.length; i < length; i++) {
|
258 |
-
if(i<3) {domain_str += url_pieces[i];}
|
259 |
-
else {break;}
|
260 |
-
if(i<2) {domain_str += '/';}
|
261 |
-
}
|
262 |
-
|
263 |
-
return domain_str;
|
264 |
-
}
|
265 |
-
|
266 |
-
function isFunction(obj) {
|
267 |
-
return !!(obj && obj.constructor && obj.call && obj.apply);
|
268 |
-
}
|
269 |
-
|
270 |
-
function isArray(obj) {
|
271 |
-
return toString.call(obj) === '[object Array]';
|
272 |
-
}
|
273 |
-
|
274 |
-
// Give the init function the Froogaloop prototype for later instantiation
|
275 |
-
Froogaloop.fn.init.prototype = Froogaloop.fn;
|
276 |
-
|
277 |
-
// Listens for the message event.
|
278 |
-
// W3C
|
279 |
-
if (window.addEventListener) {
|
280 |
-
window.addEventListener('message', onMessageReceived, false);
|
281 |
-
}
|
282 |
-
// IE
|
283 |
-
else {
|
284 |
-
window.attachEvent('onmessage', onMessageReceived);
|
285 |
-
}
|
286 |
-
|
287 |
-
// Expose froogaloop to the global object
|
288 |
-
return (window.Froogaloop = window.$f = Froogaloop);
|
289 |
-
|
290 |
})();
|
1 |
+
; // for better merging
|
2 |
+
|
3 |
+
// Init style shamelessly stolen from jQuery http://jquery.com
|
4 |
+
var Froogaloop = (function(){
|
5 |
+
// Define a local copy of Froogaloop
|
6 |
+
function Froogaloop(iframe) {
|
7 |
+
// The Froogaloop object is actually just the init constructor
|
8 |
+
return new Froogaloop.fn.init(iframe);
|
9 |
+
}
|
10 |
+
|
11 |
+
var eventCallbacks = {},
|
12 |
+
hasWindowEvent = false,
|
13 |
+
isReady = false,
|
14 |
+
slice = Array.prototype.slice,
|
15 |
+
playerDomain = '';
|
16 |
+
|
17 |
+
Froogaloop.fn = Froogaloop.prototype = {
|
18 |
+
element: null,
|
19 |
+
|
20 |
+
init: function(iframe) {
|
21 |
+
if (typeof iframe === "string") {
|
22 |
+
iframe = document.getElementById(iframe);
|
23 |
+
}
|
24 |
+
|
25 |
+
this.element = iframe;
|
26 |
+
|
27 |
+
// Register message event listeners
|
28 |
+
playerDomain = getDomainFromUrl(this.element.getAttribute('src'));
|
29 |
+
|
30 |
+
return this;
|
31 |
+
},
|
32 |
+
|
33 |
+
/*
|
34 |
+
* Calls a function to act upon the player.
|
35 |
+
*
|
36 |
+
* @param {string} method The name of the Javascript API method to call. Eg: 'play'.
|
37 |
+
* @param {Array|Function} valueOrCallback params Array of parameters to pass when calling an API method
|
38 |
+
* or callback function when the method returns a value.
|
39 |
+
*/
|
40 |
+
api: function(method, valueOrCallback) {
|
41 |
+
if (!this.element || !method) {
|
42 |
+
return false;
|
43 |
+
}
|
44 |
+
|
45 |
+
var self = this,
|
46 |
+
element = self.element,
|
47 |
+
target_id = element.id !== '' ? element.id : null,
|
48 |
+
params = !isFunction(valueOrCallback) ? valueOrCallback : null,
|
49 |
+
callback = isFunction(valueOrCallback) ? valueOrCallback : null;
|
50 |
+
|
51 |
+
// Store the callback for get functions
|
52 |
+
if (callback) {
|
53 |
+
storeCallback(method, callback, target_id);
|
54 |
+
}
|
55 |
+
|
56 |
+
postMessage(method, params, element);
|
57 |
+
return self;
|
58 |
+
},
|
59 |
+
|
60 |
+
/*
|
61 |
+
* Registers an event listener and a callback function that gets called when the event fires.
|
62 |
+
*
|
63 |
+
* @param eventName (String): Name of the event to listen for.
|
64 |
+
* @param callback (Function): Function that should be called when the event fires.
|
65 |
+
*/
|
66 |
+
addEvent: function(eventName, callback) {
|
67 |
+
if (!this.element) {
|
68 |
+
return false;
|
69 |
+
}
|
70 |
+
|
71 |
+
var self = this,
|
72 |
+
element = self.element,
|
73 |
+
target_id = element.id !== '' ? element.id : null;
|
74 |
+
|
75 |
+
|
76 |
+
storeCallback(eventName, callback, target_id);
|
77 |
+
|
78 |
+
// The ready event is not registered via postMessage. It fires regardless.
|
79 |
+
if (eventName != 'ready') {
|
80 |
+
postMessage('addEventListener', eventName, element);
|
81 |
+
}
|
82 |
+
else if (eventName == 'ready' && isReady) {
|
83 |
+
callback.call(null, target_id);
|
84 |
+
}
|
85 |
+
|
86 |
+
return self;
|
87 |
+
},
|
88 |
+
|
89 |
+
/*
|
90 |
+
* Unregisters an event listener that gets called when the event fires.
|
91 |
+
*
|
92 |
+
* @param eventName (String): Name of the event to stop listening for.
|
93 |
+
*/
|
94 |
+
removeEvent: function(eventName) {
|
95 |
+
if (!this.element) {
|
96 |
+
return false;
|
97 |
+
}
|
98 |
+
|
99 |
+
var self = this,
|
100 |
+
element = self.element,
|
101 |
+
target_id = element.id !== '' ? element.id : null,
|
102 |
+
removed = removeCallback(eventName, target_id);
|
103 |
+
|
104 |
+
// The ready event is not registered
|
105 |
+
if (eventName != 'ready' && removed) {
|
106 |
+
postMessage('removeEventListener', eventName, element);
|
107 |
+
}
|
108 |
+
}
|
109 |
+
};
|
110 |
+
|
111 |
+
/**
|
112 |
+
* Handles posting a message to the parent window.
|
113 |
+
*
|
114 |
+
* @param method (String): name of the method to call inside the player. For api calls
|
115 |
+
* this is the name of the api method (api_play or api_pause) while for events this method
|
116 |
+
* is api_addEventListener.
|
117 |
+
* @param params (Object or Array): List of parameters to submit to the method. Can be either
|
118 |
+
* a single param or an array list of parameters.
|
119 |
+
* @param target (HTMLElement): Target iframe to post the message to.
|
120 |
+
*/
|
121 |
+
function postMessage(method, params, target) {
|
122 |
+
if (!target.contentWindow.postMessage) {
|
123 |
+
return false;
|
124 |
+
}
|
125 |
+
|
126 |
+
var url = target.getAttribute('src').split('?')[0],
|
127 |
+
data = JSON.stringify({
|
128 |
+
method: method,
|
129 |
+
value: params
|
130 |
+
});
|
131 |
+
|
132 |
+
if (url.substr(0, 2) === '//') {
|
133 |
+
url = window.location.protocol + url;
|
134 |
+
}
|
135 |
+
|
136 |
+
target.contentWindow.postMessage(data, url);
|
137 |
+
}
|
138 |
+
|
139 |
+
/**
|
140 |
+
* Event that fires whenever the window receives a message from its parent
|
141 |
+
* via window.postMessage.
|
142 |
+
*/
|
143 |
+
function onMessageReceived(event) {
|
144 |
+
var data, method;
|
145 |
+
|
146 |
+
try {
|
147 |
+
data = JSON.parse(event.data);
|
148 |
+
method = data.event || data.method;
|
149 |
+
}
|
150 |
+
catch(e) {
|
151 |
+
//fail silently... like a ninja!
|
152 |
+
}
|
153 |
+
|
154 |
+
if (method == 'ready' && !isReady) {
|
155 |
+
isReady = true;
|
156 |
+
}
|
157 |
+
|
158 |
+
// Handles messages from moogaloop only
|
159 |
+
if (event.origin != playerDomain) {
|
160 |
+
return false;
|
161 |
+
}
|
162 |
+
|
163 |
+
var value = data.value,
|
164 |
+
eventData = data.data,
|
165 |
+
target_id = target_id === '' ? null : data.player_id,
|
166 |
+
|
167 |
+
callback = getCallback(method, target_id),
|
168 |
+
params = [];
|
169 |
+
|
170 |
+
if (!callback) {
|
171 |
+
return false;
|
172 |
+
}
|
173 |
+
|
174 |
+
if (value !== undefined) {
|
175 |
+
params.push(value);
|
176 |
+
}
|
177 |
+
|
178 |
+
if (eventData) {
|
179 |
+
params.push(eventData);
|
180 |
+
}
|
181 |
+
|
182 |
+
if (target_id) {
|
183 |
+
params.push(target_id);
|
184 |
+
}
|
185 |
+
|
186 |
+
return params.length > 0 ? callback.apply(null, params) : callback.call();
|
187 |
+
}
|
188 |
+
|
189 |
+
|
190 |
+
/**
|
191 |
+
* Stores submitted callbacks for each iframe being tracked and each
|
192 |
+
* event for that iframe.
|
193 |
+
*
|
194 |
+
* @param eventName (String): Name of the event. Eg. api_onPlay
|
195 |
+
* @param callback (Function): Function that should get executed when the
|
196 |
+
* event is fired.
|
197 |
+
* @param target_id (String) [Optional]: If handling more than one iframe then
|
198 |
+
* it stores the different callbacks for different iframes based on the iframe's
|
199 |
+
* id.
|
200 |
+
*/
|
201 |
+
function storeCallback(eventName, callback, target_id) {
|
202 |
+
if (target_id) {
|
203 |
+
if (!eventCallbacks[target_id]) {
|
204 |
+
eventCallbacks[target_id] = {};
|
205 |
+
}
|
206 |
+
eventCallbacks[target_id][eventName] = callback;
|
207 |
+
}
|
208 |
+
else {
|
209 |
+
eventCallbacks[eventName] = callback;
|
210 |
+
}
|
211 |
+
}
|
212 |
+
|
213 |
+
/**
|
214 |
+
* Retrieves stored callbacks.
|
215 |
+
*/
|
216 |
+
function getCallback(eventName, target_id) {
|
217 |
+
if (target_id) {
|
218 |
+
return eventCallbacks[target_id][eventName];
|
219 |
+
}
|
220 |
+
else {
|
221 |
+
return eventCallbacks[eventName];
|
222 |
+
}
|
223 |
+
}
|
224 |
+
|
225 |
+
function removeCallback(eventName, target_id) {
|
226 |
+
if (target_id && eventCallbacks[target_id]) {
|
227 |
+
if (!eventCallbacks[target_id][eventName]) {
|
228 |
+
return false;
|
229 |
+
}
|
230 |
+
eventCallbacks[target_id][eventName] = null;
|
231 |
+
}
|
232 |
+
else {
|
233 |
+
if (!eventCallbacks[eventName]) {
|
234 |
+
return false;
|
235 |
+
}
|
236 |
+
eventCallbacks[eventName] = null;
|
237 |
+
}
|
238 |
+
|
239 |
+
return true;
|
240 |
+
}
|
241 |
+
|
242 |
+
/**
|
243 |
+
* Returns a domain's root domain.
|
244 |
+
* Eg. returns http://vimeo.com when http://vimeo.com/channels is sbumitted
|
245 |
+
*
|
246 |
+
* @param url (String): Url to test against.
|
247 |
+
* @return url (String): Root domain of submitted url
|
248 |
+
*/
|
249 |
+
function getDomainFromUrl(url) {
|
250 |
+
if (url.substr(0, 2) === '//') {
|
251 |
+
url = window.location.protocol + url;
|
252 |
+
}
|
253 |
+
|
254 |
+
var url_pieces = url.split('/'),
|
255 |
+
domain_str = '';
|
256 |
+
|
257 |
+
for(var i = 0, length = url_pieces.length; i < length; i++) {
|
258 |
+
if(i<3) {domain_str += url_pieces[i];}
|
259 |
+
else {break;}
|
260 |
+
if(i<2) {domain_str += '/';}
|
261 |
+
}
|
262 |
+
|
263 |
+
return domain_str;
|
264 |
+
}
|
265 |
+
|
266 |
+
function isFunction(obj) {
|
267 |
+
return !!(obj && obj.constructor && obj.call && obj.apply);
|
268 |
+
}
|
269 |
+
|
270 |
+
function isArray(obj) {
|
271 |
+
return toString.call(obj) === '[object Array]';
|
272 |
+
}
|
273 |
+
|
274 |
+
// Give the init function the Froogaloop prototype for later instantiation
|
275 |
+
Froogaloop.fn.init.prototype = Froogaloop.fn;
|
276 |
+
|
277 |
+
// Listens for the message event.
|
278 |
+
// W3C
|
279 |
+
if (window.addEventListener) {
|
280 |
+
window.addEventListener('message', onMessageReceived, false);
|
281 |
+
}
|
282 |
+
// IE
|
283 |
+
else {
|
284 |
+
window.attachEvent('onmessage', onMessageReceived);
|
285 |
+
}
|
286 |
+
|
287 |
+
// Expose froogaloop to the global object
|
288 |
+
return (window.Froogaloop = window.$f = Froogaloop);
|
289 |
+
|
290 |
})();
|
js/jquery/froogaloop.min.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
; // for better merging
|
2 |
-
var Froogaloop=function(){function e(a){return new e.fn.init(a)}function h(a,c,b){if(!b.contentWindow.postMessage)return!1;var f=b.getAttribute("src").split("?")[0],a=JSON.stringify({method:a,value:c});"//"===f.substr(0,2)&&(f=window.location.protocol+f);b.contentWindow.postMessage(a,f)}function j(a){var c,b;try{c=JSON.parse(a.data),b=c.event||c.method}catch(f){}"ready"==b&&!i&&(i=!0);if(a.origin!=k)return!1;var a=c.value,e=c.data,g=""===g?null:c.player_id;c=g?d[g][b]:d[b];b=[];if(!c)return!1;void 0!==
|
3 |
-
a&&b.push(a);e&&b.push(e);g&&b.push(g);return 0<b.length?c.apply(null,b):c.call()}function l(a,c,b){b?(d[b]||(d[b]={}),d[b][a]=c):d[a]=c}var d={},i=!1,k="";e.fn=e.prototype={element:null,init:function(a){"string"===typeof a&&(a=document.getElementById(a));this.element=a;a=this.element.getAttribute("src");"//"===a.substr(0,2)&&(a=window.location.protocol+a);for(var a=a.split("/"),c="",b=0,f=a.length;b<f;b++){if(3>b)c+=a[b];else break;2>b&&(c+="/")}k=c;return this},api:function(a,c){if(!this.element||
|
4 |
-
!a)return!1;var b=this.element,f=""!==b.id?b.id:null,d=!c||!c.constructor||!c.call||!c.apply?c:null,e=c&&c.constructor&&c.call&&c.apply?c:null;e&&l(a,e,f);h(a,d,b);return this},addEvent:function(a,c){if(!this.element)return!1;var b=this.element,d=""!==b.id?b.id:null;l(a,c,d);"ready"!=a?h("addEventListener",a,b):"ready"==a&&i&&c.call(null,d);return this},removeEvent:function(a){if(!this.element)return!1;var c=this.element,b;a:{if((b=""!==c.id?c.id:null)&&d[b]){if(!d[b][a]){b=!1;break a}d[b][a]=null}else{if(!d[a]){b=
|
5 |
!1;break a}d[a]=null}b=!0}"ready"!=a&&b&&h("removeEventListener",a,c)}};e.fn.init.prototype=e.fn;window.addEventListener?window.addEventListener("message",j,!1):window.attachEvent("onmessage",j);return window.Froogaloop=window.$f=e}();
|
1 |
+
; // for better merging
|
2 |
+
var Froogaloop=function(){function e(a){return new e.fn.init(a)}function h(a,c,b){if(!b.contentWindow.postMessage)return!1;var f=b.getAttribute("src").split("?")[0],a=JSON.stringify({method:a,value:c});"//"===f.substr(0,2)&&(f=window.location.protocol+f);b.contentWindow.postMessage(a,f)}function j(a){var c,b;try{c=JSON.parse(a.data),b=c.event||c.method}catch(f){}"ready"==b&&!i&&(i=!0);if(a.origin!=k)return!1;var a=c.value,e=c.data,g=""===g?null:c.player_id;c=g?d[g][b]:d[b];b=[];if(!c)return!1;void 0!==
|
3 |
+
a&&b.push(a);e&&b.push(e);g&&b.push(g);return 0<b.length?c.apply(null,b):c.call()}function l(a,c,b){b?(d[b]||(d[b]={}),d[b][a]=c):d[a]=c}var d={},i=!1,k="";e.fn=e.prototype={element:null,init:function(a){"string"===typeof a&&(a=document.getElementById(a));this.element=a;a=this.element.getAttribute("src");"//"===a.substr(0,2)&&(a=window.location.protocol+a);for(var a=a.split("/"),c="",b=0,f=a.length;b<f;b++){if(3>b)c+=a[b];else break;2>b&&(c+="/")}k=c;return this},api:function(a,c){if(!this.element||
|
4 |
+
!a)return!1;var b=this.element,f=""!==b.id?b.id:null,d=!c||!c.constructor||!c.call||!c.apply?c:null,e=c&&c.constructor&&c.call&&c.apply?c:null;e&&l(a,e,f);h(a,d,b);return this},addEvent:function(a,c){if(!this.element)return!1;var b=this.element,d=""!==b.id?b.id:null;l(a,c,d);"ready"!=a?h("addEventListener",a,b):"ready"==a&&i&&c.call(null,d);return this},removeEvent:function(a){if(!this.element)return!1;var c=this.element,b;a:{if((b=""!==c.id?c.id:null)&&d[b]){if(!d[b][a]){b=!1;break a}d[b][a]=null}else{if(!d[a]){b=
|
5 |
!1;break a}d[a]=null}b=!0}"ready"!=a&&b&&h("removeEventListener",a,c)}};e.fn.init.prototype=e.fn;window.addEventListener?window.addEventListener("message",j,!1):window.attachEvent("onmessage",j);return window.Froogaloop=window.$f=e}();
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mana_Filters</name>
|
4 |
-
<version>13.10.17.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
@@ -9,10 +9,10 @@
|
|
9 |
<summary>Advanced layered navigation</summary>
|
10 |
<description>Add multiple selection features for attribute and price filters in Magento layered navigation</description>
|
11 |
<notes>Adds multiple selection features for attribute and price filters in Magento layered navigation.</notes>
|
12 |
-
<authors><author><name>Mana Team</name><user>
|
13 |
<date>2013-10-18</date>
|
14 |
-
<time>20:
|
15 |
-
<contents><target name="magelocal"><dir name="Mana"><dir name="Core"><dir name="Block"><file name="Js.php" hash="f4f5da9060891521b275fcf5e6f9ebf5"/><file name="List.php" hash="8a54149b3d24b8f1447ee77dc7c691ed"/><file name="Require.php" hash="39764e20e72f331223f1ad85a21c15a3"/><file name="Singleton.php" hash="74e1cb457680fb2f999af95fa3af26c2"/></dir><dir name="Helper"><file name="Data.php" hash="18a6687ae2ef22d90aea3ed29159b15f"/><file name="Debug.php" hash="6fd3859ac2e817d36aadd8ba6c47405a"/><file name="Files.php" hash="1a6d3869c8f7b752057299a4f6562694"/><file name="Image.php" hash="75ade04d12f104d05314f2d9343ec539"/><file name="Js.php" hash="901d974ebc5903e813e269d5b3f8dd48"/><file name="Json.php" hash="308275754075cc319f85527a3cba74d3"/><file name="Layer.php" hash="30a33c43ac0b4fdcd8cb4e20968ea664"/><file name="Layout.php" hash="ed9e70f7a133bd0ddb94cd5cae15d451"/><file name="Lock.php" hash="7567ccb21cef8c90dac0e9bbac321801"/><file name="Logger.php" hash="6fc13c5afbd795a4d0ecfe9c576baaac"/><file name="Mbstring.php" hash="1702040a0138b88445a36bdd23d44566"/><dir name="PageType"><file name="Category.php" hash="db7b627f3cd7a61622f8a0eb30bcfb1e"/><file name="CmsPage.php" hash="4fe9e843b5bd9122691fca8c1f260cf1"/><file name="HomePage.php" hash="46a9b90008a40394957fa372de87f974"/><file name="Search.php" hash="eff6acc97b37192af0e9e6d98ad939d8"/></dir><file name="PageType.php" hash="231df1f506545b008ce7f2d997b28ce7"/><file name="Router.php" hash="9713a66ad89d22b0d0a5c6d5a5937ae6"/><file name="Seo.php" hash="b8aafbf9d4ec1d796e83c9ff2f7fac0b"/><file name="UrlTemplate.php" hash="2e04649154b3c1a80e40df17cc1846a6"/><file name="Utils.php" hash="611650a169c7747bbc8177dcd31ee2a4"/></dir><dir name="Model"><dir name="Attribute"><file name="Scope.php" hash="7277aac766688c59886cff561b8c44a3"/></dir><file name="Callback.php" hash="2e8955cf399ea302e8b19c6ccb999cc5"/><file name="Closure.php" hash="f1456fc3e6aa04906339198be3a0a544"/><dir name="Config"><file name="Default.php" hash="b69bd384a59f38f214f565d21af1ca3a"/></dir><file name="Eav.php" hash="ed4adbb339497fefe1db29a59c2ed110"/><dir name="Html"><file name="Filter.php" hash="ca77f8b76bd39d00001d6dfb12ff6929"/><file name="Parser.php" hash="5f4c098e69b582025f909ddeeab6e630"/><file name="Reader.php" hash="41a66c26ce51f3803eba50cea5b95d96"/><file name="State.php" hash="5952deebd020273729594ace8a2cae9b"/><file name="Token.php" hash="5c7a4ef3150a35b8a6bf9e296e53e739"/></dir><file name="Indexer.php" hash="3fcaafc332c5fe3dca0cdef383228603"/><file name="Object.php" hash="dcb759ec94621a28c4e531715813513c"/><file name="Observer.php" hash="ca5d42b0d4bef6a312575f07df964d2d"/><dir name="Source"><file name="Abstract.php" hash="bb05e3ce9f5e01ef2843a5a558a86fd8"/><file name="Config.php" hash="59b1d6927157e4b34bde55794a7a86be"/><file name="Country.php" hash="cd5c9dd00c4456db2e6b4f6316303a8c"/><file name="Js.php" hash="71852d9a46c5fca27d4b0403e9ee19d9"/><file name="YesNoDefault.php" hash="4a13c8de30d7f27b71dac16bbf1e18ae"/><file name="Yesno.php" hash="3082e75e81e111aed0ac9f1cc17e579e"/></dir></dir><file name="Profiler.php" hash="750f9a6490534be89ef5a55ddf62db21"/><dir name="Resource"><dir name="Attribute"><file name="Collection.php" hash="7f01d6480b5110a431a5b50571a9ec62"/></dir><dir name="Eav"><dir name="Collection"><file name="Derived.php" hash="03a87d87a781c8256b6414fb132ed30e"/></dir><file name="Collection.php" hash="5153a97a4021aebced2b0a538d10b4e7"/><file name="Setup.php" hash="13360360cbfada91713159a38c82e6b2"/></dir><file name="Eav.php" hash="2ada400977d3a8b0883a03998e1a4e47"/><file name="Indexer.php" hash="6ced1a9ad6696345071a189c8c3e657d"/><dir name="Virtual"><file name="Collection.php" hash="ac2d11980e9dc015ed0cfbe12fbf3fc7"/></dir></dir><dir name="Rewrite"><dir name="PageCache"><file name="Processor.php" hash="d5175e3a150d92ec32016654c8a7988a"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="6245429c5bc31a6b9667afe2e714cdb9"/><file name="config.xml" hash="8db1ae8bebd6a65037a30019444a48ff"/><file name="system.xml" hash="1228c3fdc44376809312e561d6d54b41"/></dir><dir name="sql"><dir name="mana_core_setup"><file name="mysql4-install-1.1.1.php" hash="a169406e2cc37282d001e9415eda219a"/></dir></dir></dir><dir name="Db"><dir name="Exception"><file name="Formula.php" hash="f791f3d718241b9b004ae1719dd8fca8"/><file name="Validation.php" hash="7238432db3b3a24615dc186e60afc546"/></dir><dir name="Helper"><file name="Config.php" hash="947e93e74329de11cffe102dad3b5002"/><file name="Data.php" hash="e5edeab32a90b2a15584ccc6b7244e2b"/><dir name="Formula"><file name="Abstract.php" hash="88283737316ebd8cafddce5e42ac2bd8"/><file name="DependencyFinder.php" hash="480e4097ef5e9b21c527f5c61dbd3987"/><dir name="Entity"><dir name="Aggregate"><file name="Field.php" hash="682fc6e82caf400025ba22f6b1c40156"/></dir><file name="Aggregate.php" hash="fab53a31e480228474de7015100d6498"/><file name="Foreign.php" hash="6d4159dcb6ff3f7e5a958b6e891057c1"/><file name="Frontend.php" hash="4bef999e0ca552c3fa8b518c36b6e239"/><file name="Normal.php" hash="6a91af1bd600ca9b8be40ee5be5c4fa5"/></dir><file name="Entity.php" hash="e5f500a86b18b37dd43fc8ab151fd204"/><file name="Evaluator.php" hash="8dc9cf1b9ddf8cefd053909ba841d985"/><dir name="Function"><file name="Count.php" hash="62d463301d3eac82f9f8c2952cc23ed4"/><file name="Glue.php" hash="00abff0970bc94ef46ebdb91d773ab02"/><file name="If.php" hash="215287632f25bd541fe29051cc11fba4"/><file name="Lower.php" hash="7e91d1e618e66d262b0967f0a053adfd"/><file name="Seo.php" hash="70ce3da277c48fc84363c58baba3dd37"/><file name="SkinUrl.php" hash="059ac4b6d44bf7714886c023c30a1490"/></dir><file name="Function.php" hash="db3fb341c32f9c285d37df84a36fb82c"/><file name="Parser.php" hash="7828e59f31c03e31da92a889b4e8b52f"/><dir name="Processor"><file name="Eav.php" hash="722b0888661d38b399f74eaf9ec4247e"/><file name="Entity.php" hash="b3d6e11b78cf782c9eae78ce1eefd155"/><file name="System.php" hash="c7a3c7bf6194b041dd17dc2b3a605f6f"/><file name="Table.php" hash="771155e0a194fcf7a821e51172100138"/></dir><file name="Processor.php" hash="4bf7bfa8a2cdcfbecaede6ab3aa67f04"/><file name="Selector.php" hash="91bee56da8ee75aa06edacb19cb925b9"/></dir><file name="Formula.php" hash="c5761ee937e3490d1508a3ed0cfac805"/></dir><dir name="Model"><dir name="Entity"><file name="Indexer.php" hash="c807d323f91e2c38344332ae8e9654b3"/></dir><file name="Entity.php" hash="88e63ed2ebdeb129757d7acbd6f4d805"/><dir name="Formula"><dir name="Alias"><file name="Array.php" hash="6719df8e4123c881980f5a2b6ef93a8f"/><file name="Empty.php" hash="93e05898f60e111f12b5febb119305dd"/><file name="Single.php" hash="8603f08d6415110c8c0f04a805055fab"/></dir><file name="Alias.php" hash="d14575f9f0477021a2e53ff1fd9c5501"/><dir name="Closure"><file name="AggregateFieldJoin.php" hash="f1d19cb54eaf620d038508b7ad31fc60"/><file name="ForeignJoin.php" hash="b07167a5ef2a7caf479266269f232edf"/><file name="ForeignJoinEnd.php" hash="6b9000298615ce69eadc04e707fbe17f"/><file name="Join.php" hash="b8d368c1042754f18d027027acccb27a"/></dir><file name="Closure.php" hash="d773c0f5ed1f593acb5458bfb3187a7b"/><file name="Context.php" hash="5fd16cf22bc1bac09856606ee0d0a141"/><file name="Entity.php" hash="c0eb7a9362996c104bde5cd2c469db10"/><file name="Expr.php" hash="b739ab589ea0e3378e32c12a69ba78cc"/><file name="Field.php" hash="d00b8c25724e34f6cad819edf1497ede"/><dir name="Node"><file name="Add.php" hash="22f6ec02b3226ce2c9313f713d1b03fb"/><file name="Field.php" hash="93c6bf27b93091ebe7672500e7e94e48"/><file name="FormulaExpr.php" hash="b6a36a818533775fa778c6dc66ec40f7"/><file name="FunctionCall.php" hash="bac31778c670aca74c9db49dcb40007a"/><file name="Identifier.php" hash="a38aa478e6485ef9ea95fb0758c2ea49"/><file name="Multiply.php" hash="292881a092500642e4d98aeb33aa2f75"/><file name="NullValue.php" hash="2ddeb334ac3e12cdec1b413904e02210"/><file name="NumberConstant.php" hash="fd2524859dc3ed2a3fb46468b8352f72"/><file name="StringConstant.php" hash="04cdb7baa502e001dfb35af748efde30"/></dir><file name="Node.php" hash="e28d2d8d0af762abbe3b9677937103fe"/></dir><file name="Indexer.php" hash="8596a12b7ee26e686937cef3d2985685"/><file name="Object.php" hash="91dac5c80f75dcb81c1aadaa8984b466"/><file name="Observer.php" hash="278f386a08a7321eb61d7609ffa8a518"/><dir name="Replication"><file name="Target.php" hash="b918ef992096a72080a743352385b64b"/></dir><dir name="Setup"><file name="Abstract.php" hash="d8e84857de7b1cdb6ba6c03e5f4aa867"/><file name="V13012122.php" hash="a2ca004389d5145d819ff791f965ef9e"/></dir><file name="Setup.php" hash="f3793eb6b2aa2a898a1ffb16cb83da8c"/><file name="Validation.php" hash="f2dd026c3d73f3fd345e1b7abde51e7d"/><dir name="Virtual"><file name="Result.php" hash="33f35c946b2285e62a5a1c08c1bb3ec8"/></dir></dir><dir name="Resource"><dir name="Edit"><file name="Session.php" hash="07474c4d34f6ec1cd91ade3e871ec096"/></dir><dir name="Entity"><file name="Collection.php" hash="291cbdeef792ab848175c0ae9bb65fad"/><file name="Indexer.php" hash="9e102278a3cf4e69ead0a34b12d3c91c"/><file name="JsonCollection.php" hash="bf1f5a893a33affb7c1b182f803d600a"/></dir><file name="Entity.php" hash="c5f9ee0f1475f2d4a2075b5cead6199d"/><file name="Formula.php" hash="53b21b55b710d119fc91bbcf841caea2"/><dir name="Object"><file name="Collection.php" hash="6f7f393abef136226ed22eb8f45d2fdd"/></dir><file name="Object.php" hash="9106bec7565a3bedaf2de81b18569157"/><file name="Replicate.php" hash="e4c75872344dde3ed8a04744110faace"/></dir><dir name="etc"><file name="config.xml" hash="b05eeb89de04b83b0f40635363a8009a"/><file name="m_db.xml" hash="7fb95c96ed440dfc5efb8d3ed598dd20"/></dir><dir name="sql"><dir name="mana_db_setup"><file name="mysql4-install-11.09.28.09.php" hash="0d8c0873cbbabb1db406e1c0b709b4de"/><file name="mysql4-upgrade-11.09.28.09-11.09.28.10.php" hash="04ccee17b3b04906e8fed2b1ac9214a3"/><file name="mysql4-upgrade-11.10.08.23-11.10.20.22.php" hash="847b24ea006e99af80cc8980ff7ff021"/></dir></dir></dir><dir name="Filters"><dir name="Block"><file name="Filter.php" hash="7460ab6dc2a4787be60e5cb18e55eca7"/><file name="Layer.php" hash="0f8fac9a9277fb6e204a8ed32b164902"/><file name="Search.php" hash="e7c5d74b36406fb181ba149588070f95"/><file name="State.php" hash="c9a00b949def21806686fa144a997bcb"/><file name="View.php" hash="94e80aa607ab1fbb819962f4081d3b1a"/></dir><dir name="Helper"><file name="Data.php" hash="f3948cddd233be262c827348bb048c84"/><file name="Extended.php" hash="5b065cc2be0a8b96dc4db32bc8279304"/></dir><dir name="Interface"><file name="Filter.php" hash="883a29e42087529428e73b4ae785609a"/></dir><dir name="Model"><dir name="Config"><dir name="Display"><file name="Default.php" hash="e16716300e514ef6ee7fa4c1c5fd3331"/></dir></dir><dir name="Filter"><file name="Attribute.php" hash="bc424650d58ca120a24c3741cf9ae0c3"/><file name="Category.php" hash="31258e6ab7ced0737658b4f174255bd4"/><file name="Common.php" hash="522b1695cf4f4f545c7174b90a8b06ba"/><file name="Decimal.php" hash="6e7c7b13d687c8277da108071a708ee0"/><file name="Default.php" hash="960d7b6f0fd9c32cf9726e11a62cbb1e"/><file name="Price.php" hash="badca3bf0a10ba605acd9efd40f676f2"/></dir><file name="Filter.php" hash="cd3bc9276ff4566802e2d43280394e6f"/><dir name="Filter2"><file name="Store.php" hash="d82d20f485c4417bc51a73bcf01cd374"/><dir name="Value"><file name="Store.php" hash="695bf8aad7ff431fe5a511098cf23f48"/></dir><file name="Value.php" hash="bc0f76d7b7e2b7341ba3ac51c9a88bb6"/></dir><file name="Filter2.php" hash="7e57bc59a4cf6464975cef52f6c4ab78"/><file name="Item.php" hash="f98cae91e08449950545f56d7e7cf79b"/><file name="Observer.php" hash="e835045553a7e4d8d821eed81e6492a1"/><file name="Operation.php" hash="54d01ace78c5b6ba3facf1a2f3255618"/><file name="Query.php" hash="5bc5ffb4c592198a2b2ad105dcc98f29"/><file name="Repository.php" hash="e0cf842a98aa5ae27fc107c18f190fab"/><dir name="Solr"><dir name="Adapter"><file name="HttpStream.php" hash="b58657f23ca2829dec0a725f302c525f"/><file name="PhpExtension.php" hash="866e113bce375b16d3a531ba705ffacb"/></dir><dir name="And"><file name="Attribute.php" hash="3df0798bc675483dd4b327299fc00b33"/></dir><file name="Attribute.php" hash="c60628b8ec074147918ea7a96e85ecd5"/><file name="Category.php" hash="281864a88dc542de2dd8bd15812a64d4"/><file name="Decimal.php" hash="4c732a1189b7cd5c96ece2f2040c4704"/><file name="Price.php" hash="aa4ec52784e2a5084f635388421b3c54"/><dir name="Reverse"><file name="Attribute.php" hash="c23dc7f104559c3df2f3394438735537"/><file name="Decimal.php" hash="89810a0c5fe707af354d7be73b8dfe36"/><file name="Price.php" hash="bf207efb2854f99a15775f38f019f5b4"/></dir></dir><file name="Sort.php" hash="95804fcd46ca143587747dc7dfe9845e"/><dir name="Source"><dir name="Display"><file name="All.php" hash="1875630a7565c9655c8c8724dad45bba"/><file name="Attribute.php" hash="d2bd347e70e3924490dff6e57274ff40"/><file name="Category.php" hash="437b3f678edd292a0110529aadfb1530"/><file name="Decimal.php" hash="b432f32e93fb1991f8882bfe25f0514e"/><file name="Price.php" hash="c6a017240beaf76666e9f702a9fcd48d"/></dir><file name="Display.php" hash="509e389d33e3175e304ab67ffdb79325"/><file name="Filterable.php" hash="618680f75072220ad711dec6e220d43b"/></dir></dir><dir name="Resource"><dir name="EnterpriseSearch"><file name="Engine.php" hash="51d77208587d1c55c8d508a3024bd269"/></dir><dir name="Filter"><dir name="And"><file name="Attribute.php" hash="cdc41ca223083360b35bd5f455733cd8"/></dir><dir name="Attribute"><file name="Collection.php" hash="c854270f63ca3bfd44cfd6ab27888676"/></dir><file name="Attribute.php" hash="030ac9139139d8266ce0cf6cd49b6b01"/><dir name="Collection"><file name="Derived.php" hash="5240ac10d2989122c49665919a9555ff"/></dir><file name="Collection.php" hash="6831f054791977048641d43c288ff53c"/><file name="Decimal.php" hash="d22ff135473b926dce9fbd8d4b877bae"/><file name="Price.php" hash="b165981a092366d05b3537c4684e6087"/><dir name="Reverse"><file name="Attribute.php" hash="0be2e3f5eef03862e13b37deb1f7f7a3"/><file name="Decimal.php" hash="9d9974cf64c5178812bcc6fca83bc9ff"/><file name="Price.php" hash="3be48facf6596b618fc0a621f625d460"/></dir></dir><file name="Filter.php" hash="e74d789c7751fe0a126b38ab0bd3ac40"/><dir name="Filter2"><file name="Collection.php" hash="822b71198d05e41e90d096cb7cc47fa5"/><dir name="Store"><file name="Collection.php" hash="791101a5eac8aceb6398a24b433a2d1f"/></dir><file name="Store.php" hash="0c8554f52a7a0886ce0defbb749713e2"/><dir name="Value"><file name="Collection.php" hash="3273b517dd65a46034cb3ef8adb3c610"/><dir name="Store"><file name="Collection.php" hash="073931492acfc99a3b5cd1ecf7113982"/></dir><file name="Store.php" hash="48d9631e8d34b15a72fc22e6bb3a98c2"/></dir><file name="Value.php" hash="356a37914ecc112d9de1b4a1152d7fc1"/></dir><file name="Filter2.php" hash="6cbe26e2c70b0fc9ee5ff97e25ab1133"/><dir name="Indexer"><file name="Source.php" hash="251589738ea54dcf6e986921f3810931"/></dir><file name="Setup.php" hash="83b12b7939ac1c7696360f77304d9d84"/><dir name="Solr"><dir name="And"><file name="Attribute.php" hash="a7dd5fbb9388a4b73efeeaa7e91a9b7b"/></dir><file name="Attribute.php" hash="f2b30e509881147f2f73ede11ac2fbed"/><file name="Collection.php" hash="9b35d28e731fc47f420447251a5e976b"/><file name="Engine.php" hash="e3c3306e436e6943aa10f9b1a77404be"/><dir name="Reverse"><file name="Attribute.php" hash="1084278692e5ffe1d16640b530e33662"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="fbd0893a7205f37c4999a2c3ecdb1236"/></dir><dir name="sql"><dir name="mana_filters_setup"><file name="mysql4-install-1.1.1.php" hash="22f7381b5ea9261a2e8a00fda28f28ef"/><file name="mysql4-upgrade-1.1.1-1.9.1.php" hash="04c761bab20de6e0fed68e141fb68112"/><file name="mysql4-upgrade-11.09.24.09-11.09.28.09.php" hash="a007f769d492c43b1e7a583a2763300a"/><file name="mysql4-upgrade-11.10.19.18-11.10.23.01.php" hash="ef0b7b4f4530e5b01f349e3d534ebb16"/><file name="mysql4-upgrade-12.01.14.09-12.01.15.14.php" hash="001d8e035bc798d8779c29ac38912543"/><file name="mysql4-upgrade-12.04.10.23-12.04.17.18.php" hash="48f2d8cc8ca6afe014a95dea808e5087"/><file name="mysql4-upgrade-12.10.25.17-12.10.25.18.php" hash="5d726b388ac30fc00cd95bb86ab5641b"/><file name="mysql4-upgrade-12.11.02.16-12.11.13.15.php" hash="11fc0db6ff2f56fe95bfaf89ab758f61"/><file name="mysql4-upgrade-13.09.11.14-13.09.23.17.php" hash="aca62ea5d13c5bc3259a48e5cd4d5282"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mana_core.xml" hash="b5dd1c5ec1a7d527463d70e4320a7ea8"/></dir><dir name="template"><dir name="mana"><dir name="core"><file name="js.phtml" hash="53a4035fe21537c0cd7fde286ed4a611"/><file name="require.phtml" hash="b85203a9ecf3808b5cdde85fcb03ec6e"/><file name="wait.phtml" hash="7c0ffe76e7b3aca2163d9ecc5145e81b"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mana_core.xml" hash="67573b93ead87e30c31eedf5f39af2a2"/><file name="mana_filters.xml" hash="0437a11880f49cd42d32626d64b22e48"/></dir><dir name="template"><dir name="mana"><dir name="core"><file name="js.phtml" hash="1aa41c842f1984142a864f667f99d33b"/><file name="popup.phtml" hash="e2823a07a8eefcad23f1ea416e95f84c"/><file name="require.phtml" hash="b85203a9ecf3808b5cdde85fcb03ec6e"/><file name="wait.phtml" hash="2fdb82f90c1aa8705fa76f500b967fef"/></dir><dir name="filters"><file name="cms.phtml" hash="b4c954289a496a8e79bddac6f89abbbe"/><dir name="items"><file name="list.phtml" hash="59d6b292fad30b666fbd1aae563505b0"/><file name="list_popup.phtml" hash="4034da62447f67ea524e16bf61f0a232"/><file name="standard.phtml" hash="c84f5b423a10a37bfeeae74945102592"/><file name="standard_popup.phtml" hash="a49c8f07082be26fbae6d6e5af99c014"/></dir><file name="state.phtml" hash="b3aa66f4e50046e293c817034ac72610"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mana_Core.xml" hash="0ca7883c0f5fcaa12b32842f142f92eb"/><file name="Mana_Db.xml" hash="9b4669b284f2a688e165abaac373c358"/><file name="Mana_Filters.xml" hash="85a5d5c92f66f775131459c3bfc2fc30"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Mana_Core.csv" hash="78cd42474e623beb806d55121e7fa24c"/><file name="Mana_Db.csv" hash="754c3b5f318886cb1eae04af5e841ada"/><file name="Mana_Filters.csv" hash="7a4c41f5f3d3a4f4389db3ba7cac53e4"/></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><file name="advListRotator.js" hash="6629920522d9fd8364469abe1ae705c9"/><file name="fileuploader.js" hash="164c23d4b94b5424c8e1c00057d45ce4"/><file name="froogaloop.js" hash="e2260846e094906b27274d9b7db67c24"/><file name="froogaloop.min.js" hash="5fd3058d7e04a3f66559dbe78242f0cb"/><file name="history.adapter.jquery.js" hash="8e34662937b6021c290077b353800702"/><file name="history.js" hash="0e0786e868304d9afea164a777bad023"/><file name="jquery-ui.js" hash="6ac9f97eaab22d1a1f91572a20ef516b"/><file name="jquery-ui.min.js" hash="c1e83e4d225186ec057ea9eb18742dea"/><file name="jquery.easing.js" hash="cc674e02a06874bb5888ede6e0b1c977"/><file name="jquery.flexslider-min.js" hash="c236f33e84d73c1a873ec63cc25d7bd1"/><file name="jquery.js" hash="67dfa0103ec3677a14bed88a757351d7"/><file name="jquery.min.js" hash="0d7c1fdc97e46fa306aa49d98a8f2e95"/><file name="jquery.noconflict.js" hash="0da09155d7323809b48494da0846bf34"/><file name="jquery.printf.js" hash="71e34de7c90b12d738ca6b912fef04da"/><file name="require.js" hash="a7afdceabeb04107653fdc7d274a00d1"/><file name="require.min.js" hash="215507e3b7eb905c61e436921c5736bd"/><dir name="validate"><file name="jquery.validate.js" hash="0bb7a2f5eea19acc7bb65f6c82ec15fb"/><dir name="localization"><file name="messages_ar.js" hash="a42cc9c91da7c4f6d2f48492dda14273"/><file name="messages_bg.js" hash="bc4ebf054b6a399abf518ef28bbad839"/><file name="messages_cn.js" hash="886e45b3ffd60a683ecc8e6ea644e519"/><file name="messages_cs.js" hash="6b794f90ab955c17fe02b6553876050c"/><file name="messages_da.js" hash="cc862df2998db2cc18c8276aa7bfe0f0"/><file name="messages_de.js" hash="70a9eb9abfc4365f36718b06b38f6725"/><file name="messages_el.js" hash="bd18b65d9f876e12997281e09d2a8bf3"/><file name="messages_es.js" hash="2f3a18c6d0377bc4658839a070853ed7"/><file name="messages_fa.js" hash="e32dd026bd9d2f626b7371bf025eb5c1"/><file name="messages_fi.js" hash="d8810a4f5b025594129f32957e521210"/><file name="messages_fr.js" hash="3081f76c1368d03d2e1a84a7ed9748e2"/><file name="messages_he.js" hash="028af705c2c07e946ce6de5e63223611"/><file name="messages_hu.js" hash="7612f6525fd5922f970d40b5929c88bb"/><file name="messages_it.js" hash="824964b0dcf1ea4904d18a125ff10b09"/><file name="messages_kk.js" hash="28c0dac0417ec5e0ec9271bfd11b7129"/><file name="messages_lt.js" hash="ef0a5dea6d4bfe7965ff9c719238f2b0"/><file name="messages_lv.js" hash="6d1d834333de4f018259481658d79e85"/><file name="messages_nl.js" hash="9f8aad8e3d769b0a636a02c672044232"/><file name="messages_no.js" hash="1a00dddbef393a2b8bc2e78934243566"/><file name="messages_pl.js" hash="28cea41b05ff80cc721b6896a2f658ba"/><file name="messages_ptbr.js" hash="194f1a4cbe9483dea4363400e046b923"/><file name="messages_ptpt.js" hash="3a9a7730cc461866e37f2cd8b0507f3a"/><file name="messages_ro.js" hash="eaf4c868e8fde6f5dee2f0a3ee0cbe12"/><file name="messages_ru.js" hash="e3d6e8809230c758b95438de4c783474"/><file name="messages_se.js" hash="b80035c9f1fdfba7c7f523838ec6510b"/><file name="messages_sk.js" hash="9e1b0a7378aff7add6100dc3c3e8d80c"/><file name="messages_tr.js" hash="7ecf31a65c2eefd8c7da62f65ccf33a7"/><file name="messages_tw.js" hash="b660609f8ddf6b17d71b72aa43512f1f"/><file name="messages_ua.js" hash="80e565078f016c8ea1cffc6c8cdd5a93"/><file name="methods_de.js" hash="a9d8792f8e46298165daaf4e9a5d98ad"/><file name="methods_nl.js" hash="8505eec534134eac849adca1cf8f2f9d"/><file name="methods_pt.js" hash="09b350c9c069b5a82d5811339ac15ab6"/></dir></dir></dir><dir name="mana"><file name="core.js" hash="9ab974337c11cceb4bfb8cef5c2c8242"/></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="mana_core.css" hash="146f6612e4af69b09c8dabdd04034956"/></dir><dir name="images"><dir name="mana_core"><file name="m-wait.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="jquery"><dir name="images"><file name="animated-overlay.gif" hash="2b912f7c0653008ca28ebacda49025e7"/><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="95f9cceeb9d742dd3e917ec16ed754f8"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_0_aaaaaa_40x100.png" hash="2a44fbdb7360c60122bcf6dcef0387d8"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_flat_75_ffffff_40x100.png" hash="8692e6efddf882acbff144c38ea7dfdf"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="5f1847175ba18c41322cb9cb0581e0fb"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="d386adb3d23db4588a3271526a530f51"/><file name="ui-bg_glass_55_fbf9ee_1x400.png" hash="f8f4558e0b92ff2cd6136781533902ec"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_glass_75_dadada_1x400.png" hash="c12c6510dad3ebfa64c8a30e959a2469"/><file name="ui-bg_glass_75_e6e6e6_1x400.png" hash="f4254356c2a8c9a383205ef2c4de22c4"/><file name="ui-bg_glass_95_fef1ec_1x400.png" hash="5a3be2d8fff8324d59aec3df7b0a0c83"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="34c616d227cbdaefd8a81534d6ca7813"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="384c3f17709ba0f809b023b6e7b10b84"/><file name="ui-bg_highlight-soft_75_cccccc_1x100.png" hash="72c593d16e998952cd8d798fee33c6f3"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-icons_222222_256x240.png" hash="9129e086dc488d8bcaf808510bc646ba"/><file name="ui-icons_228ef1_256x240.png" hash="79f41c0765e9ec18562b20b0801d748b"/><file name="ui-icons_2e83ff_256x240.png" hash="25162bf857a8eb83ea932a58436e1049"/><file name="ui-icons_454545_256x240.png" hash="771099482bdc1571ece41073b1752596"/><file name="ui-icons_888888_256x240.png" hash="faf6f5dc44e713178784c1fb053990aa"/><file name="ui-icons_cd0a0a_256x240.png" hash="5d8808d43cefca6f6781a5316d176632"/><file name="ui-icons_ef8c08_256x240.png" hash="380c866362e1e42896f973ea92f67013"/><file name="ui-icons_ffd27a_256x240.png" hash="2a20f483ddcbc84e6469ce5bbd280699"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir><file name="ui.css" hash="4ab351feeb25bfbcb84f61e722545525"/></dir><file name="mana_core.css" hash="bc5b7191ba25e69b8fee72188536aaf6"/><file name="mana_filters.css" hash="14b44583102d94145fea8cd683862ebd"/></dir><dir name="images"><dir name="mana_core"><file name="m-wait.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
-
<dependencies
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Mana_Filters</name>
|
4 |
+
<version>13.10.17.20</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>Advanced layered navigation</summary>
|
10 |
<description>Add multiple selection features for attribute and price filters in Magento layered navigation</description>
|
11 |
<notes>Adds multiple selection features for attribute and price filters in Magento layered navigation.</notes>
|
12 |
+
<authors><author><name>Mana Team</name><user>auto-converted</user><email>team@manadev.com</email></author></authors>
|
13 |
<date>2013-10-18</date>
|
14 |
+
<time>20:45:39</time>
|
15 |
+
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="mana_core.css" hash="146f6612e4af69b09c8dabdd04034956"/></dir><dir name="images"><dir name="mana_core"><file name="m-wait.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="jquery"><file name="ui.css" hash="4ab351feeb25bfbcb84f61e722545525"/><dir name="images"><file name="animated-overlay.gif" hash="2b912f7c0653008ca28ebacda49025e7"/><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="95f9cceeb9d742dd3e917ec16ed754f8"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_0_aaaaaa_40x100.png" hash="2a44fbdb7360c60122bcf6dcef0387d8"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_flat_75_ffffff_40x100.png" hash="8692e6efddf882acbff144c38ea7dfdf"/><file name="ui-bg_glass_55_fbf9ee_1x400.png" hash="f8f4558e0b92ff2cd6136781533902ec"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="e5a8f32e28fd5c27bf0fed33c8a8b9b5"/><file name="ui-bg_glass_75_dadada_1x400.png" hash="c12c6510dad3ebfa64c8a30e959a2469"/><file name="ui-bg_glass_75_e6e6e6_1x400.png" hash="f4254356c2a8c9a383205ef2c4de22c4"/><file name="ui-bg_glass_95_fef1ec_1x400.png" hash="5a3be2d8fff8324d59aec3df7b0a0c83"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="5f1847175ba18c41322cb9cb0581e0fb"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="d386adb3d23db4588a3271526a530f51"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="34c616d227cbdaefd8a81534d6ca7813"/><file name="ui-bg_highlight-soft_75_cccccc_1x100.png" hash="72c593d16e998952cd8d798fee33c6f3"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="384c3f17709ba0f809b023b6e7b10b84"/><file name="ui-icons_2e83ff_256x240.png" hash="25162bf857a8eb83ea932a58436e1049"/><file name="ui-icons_228ef1_256x240.png" hash="79f41c0765e9ec18562b20b0801d748b"/><file name="ui-icons_222222_256x240.png" hash="9129e086dc488d8bcaf808510bc646ba"/><file name="ui-icons_454545_256x240.png" hash="771099482bdc1571ece41073b1752596"/><file name="ui-icons_888888_256x240.png" hash="faf6f5dc44e713178784c1fb053990aa"/><file name="ui-icons_cd0a0a_256x240.png" hash="5d8808d43cefca6f6781a5316d176632"/><file name="ui-icons_ef8c08_256x240.png" hash="380c866362e1e42896f973ea92f67013"/><file name="ui-icons_ffd27a_256x240.png" hash="2a20f483ddcbc84e6469ce5bbd280699"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir></dir><file name="mana_core.css" hash="bc5b7191ba25e69b8fee72188536aaf6"/><file name="mana_filters.css" hash="14b44583102d94145fea8cd683862ebd"/></dir><dir name="images"><dir name="mana_core"><file name="m-wait.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="mana_core.xml" hash="b5dd1c5ec1a7d527463d70e4320a7ea8"/></dir><dir name="template"><dir name="mana"><dir name="core"><file name="js.phtml" hash="53a4035fe21537c0cd7fde286ed4a611"/><file name="require.phtml" hash="b85203a9ecf3808b5cdde85fcb03ec6e"/><file name="wait.phtml" hash="7c0ffe76e7b3aca2163d9ecc5145e81b"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="mana_core.xml" hash="67573b93ead87e30c31eedf5f39af2a2"/><file name="mana_filters.xml" hash="0437a11880f49cd42d32626d64b22e48"/></dir><dir name="template"><dir name="mana"><dir name="core"><file name="js.phtml" hash="1aa41c842f1984142a864f667f99d33b"/><file name="popup.phtml" hash="e2823a07a8eefcad23f1ea416e95f84c"/><file name="require.phtml" hash="b85203a9ecf3808b5cdde85fcb03ec6e"/><file name="wait.phtml" hash="2fdb82f90c1aa8705fa76f500b967fef"/></dir><dir name="filters"><file name="cms.phtml" hash="b4c954289a496a8e79bddac6f89abbbe"/><file name="state.phtml" hash="b3aa66f4e50046e293c817034ac72610"/><dir name="items"><file name="list.phtml" hash="59d6b292fad30b666fbd1aae563505b0"/><file name="list_popup.phtml" hash="4034da62447f67ea524e16bf61f0a232"/><file name="standard.phtml" hash="c84f5b423a10a37bfeeae74945102592"/><file name="standard_popup.phtml" hash="a49c8f07082be26fbae6d6e5af99c014"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Mana_Core.csv" hash="78cd42474e623beb806d55121e7fa24c"/><file name="Mana_Db.csv" hash="754c3b5f318886cb1eae04af5e841ada"/><file name="Mana_Filters.csv" hash="7a4c41f5f3d3a4f4389db3ba7cac53e4"/></dir></target><target name="mageweb"><dir name="js"><dir name="jquery"><file name="advListRotator.js" hash="6629920522d9fd8364469abe1ae705c9"/><file name="fileuploader.js" hash="164c23d4b94b5424c8e1c00057d45ce4"/><file name="froogaloop.js" hash="aefc485211db6c55726e13759063d312"/><file name="froogaloop.min.js" hash="d39fd09571c0cae46b8c35d75cffeb77"/><file name="history.adapter.jquery.js" hash="8e34662937b6021c290077b353800702"/><file name="history.js" hash="0e0786e868304d9afea164a777bad023"/><file name="jquery-ui.js" hash="6ac9f97eaab22d1a1f91572a20ef516b"/><file name="jquery-ui.min.js" hash="c1e83e4d225186ec057ea9eb18742dea"/><file name="jquery.easing.js" hash="cc674e02a06874bb5888ede6e0b1c977"/><file name="jquery.flexslider-min.js" hash="c236f33e84d73c1a873ec63cc25d7bd1"/><file name="jquery.js" hash="67dfa0103ec3677a14bed88a757351d7"/><file name="jquery.min.js" hash="0d7c1fdc97e46fa306aa49d98a8f2e95"/><file name="jquery.noconflict.js" hash="0da09155d7323809b48494da0846bf34"/><file name="jquery.printf.js" hash="71e34de7c90b12d738ca6b912fef04da"/><file name="require.js" hash="a7afdceabeb04107653fdc7d274a00d1"/><file name="require.min.js" hash="215507e3b7eb905c61e436921c5736bd"/><dir name="validate"><file name="jquery.validate.js" hash="0bb7a2f5eea19acc7bb65f6c82ec15fb"/><dir name="localization"><file name="messages_ar.js" hash="a42cc9c91da7c4f6d2f48492dda14273"/><file name="messages_bg.js" hash="bc4ebf054b6a399abf518ef28bbad839"/><file name="messages_cn.js" hash="886e45b3ffd60a683ecc8e6ea644e519"/><file name="messages_cs.js" hash="6b794f90ab955c17fe02b6553876050c"/><file name="messages_da.js" hash="cc862df2998db2cc18c8276aa7bfe0f0"/><file name="messages_de.js" hash="70a9eb9abfc4365f36718b06b38f6725"/><file name="messages_el.js" hash="bd18b65d9f876e12997281e09d2a8bf3"/><file name="messages_es.js" hash="2f3a18c6d0377bc4658839a070853ed7"/><file name="messages_fa.js" hash="e32dd026bd9d2f626b7371bf025eb5c1"/><file name="messages_fi.js" hash="d8810a4f5b025594129f32957e521210"/><file name="messages_fr.js" hash="3081f76c1368d03d2e1a84a7ed9748e2"/><file name="messages_he.js" hash="028af705c2c07e946ce6de5e63223611"/><file name="messages_hu.js" hash="7612f6525fd5922f970d40b5929c88bb"/><file name="messages_it.js" hash="824964b0dcf1ea4904d18a125ff10b09"/><file name="messages_kk.js" hash="28c0dac0417ec5e0ec9271bfd11b7129"/><file name="messages_lt.js" hash="ef0a5dea6d4bfe7965ff9c719238f2b0"/><file name="messages_lv.js" hash="6d1d834333de4f018259481658d79e85"/><file name="messages_nl.js" hash="9f8aad8e3d769b0a636a02c672044232"/><file name="messages_no.js" hash="1a00dddbef393a2b8bc2e78934243566"/><file name="messages_pl.js" hash="28cea41b05ff80cc721b6896a2f658ba"/><file name="messages_ptbr.js" hash="194f1a4cbe9483dea4363400e046b923"/><file name="messages_ptpt.js" hash="3a9a7730cc461866e37f2cd8b0507f3a"/><file name="messages_ro.js" hash="eaf4c868e8fde6f5dee2f0a3ee0cbe12"/><file name="messages_ru.js" hash="e3d6e8809230c758b95438de4c783474"/><file name="messages_se.js" hash="b80035c9f1fdfba7c7f523838ec6510b"/><file name="messages_sk.js" hash="9e1b0a7378aff7add6100dc3c3e8d80c"/><file name="messages_tr.js" hash="7ecf31a65c2eefd8c7da62f65ccf33a7"/><file name="messages_tw.js" hash="b660609f8ddf6b17d71b72aa43512f1f"/><file name="messages_ua.js" hash="80e565078f016c8ea1cffc6c8cdd5a93"/><file name="methods_de.js" hash="a9d8792f8e46298165daaf4e9a5d98ad"/><file name="methods_nl.js" hash="8505eec534134eac849adca1cf8f2f9d"/><file name="methods_pt.js" hash="09b350c9c069b5a82d5811339ac15ab6"/></dir></dir></dir><dir name="mana"><file name="core.js" hash="9ab974337c11cceb4bfb8cef5c2c8242"/></dir></dir></target><target name="magelocal"><dir name="Mana"><dir name="Core"><file name="Profiler.php" hash="750f9a6490534be89ef5a55ddf62db21"/><dir name="Block"><file name="Js.php" hash="f4f5da9060891521b275fcf5e6f9ebf5"/><file name="List.php" hash="8a54149b3d24b8f1447ee77dc7c691ed"/><file name="Require.php" hash="39764e20e72f331223f1ad85a21c15a3"/><file name="Singleton.php" hash="74e1cb457680fb2f999af95fa3af26c2"/></dir><dir name="etc"><file name="adminhtml.xml" hash="6245429c5bc31a6b9667afe2e714cdb9"/><file name="config.xml" hash="8db1ae8bebd6a65037a30019444a48ff"/><file name="system.xml" hash="1228c3fdc44376809312e561d6d54b41"/></dir><dir name="Helper"><file name="Data.php" hash="18a6687ae2ef22d90aea3ed29159b15f"/><file name="Debug.php" hash="6fd3859ac2e817d36aadd8ba6c47405a"/><file name="Files.php" hash="1a6d3869c8f7b752057299a4f6562694"/><file name="Image.php" hash="75ade04d12f104d05314f2d9343ec539"/><file name="Js.php" hash="901d974ebc5903e813e269d5b3f8dd48"/><file name="Json.php" hash="308275754075cc319f85527a3cba74d3"/><file name="Layer.php" hash="30a33c43ac0b4fdcd8cb4e20968ea664"/><file name="Layout.php" hash="ed9e70f7a133bd0ddb94cd5cae15d451"/><file name="Lock.php" hash="7567ccb21cef8c90dac0e9bbac321801"/><file name="Logger.php" hash="6fc13c5afbd795a4d0ecfe9c576baaac"/><file name="Mbstring.php" hash="1702040a0138b88445a36bdd23d44566"/><file name="PageType.php" hash="231df1f506545b008ce7f2d997b28ce7"/><file name="Router.php" hash="9713a66ad89d22b0d0a5c6d5a5937ae6"/><file name="Seo.php" hash="b8aafbf9d4ec1d796e83c9ff2f7fac0b"/><file name="UrlTemplate.php" hash="2e04649154b3c1a80e40df17cc1846a6"/><file name="Utils.php" hash="611650a169c7747bbc8177dcd31ee2a4"/><dir name="PageType"><file name="Category.php" hash="db7b627f3cd7a61622f8a0eb30bcfb1e"/><file name="CmsPage.php" hash="4fe9e843b5bd9122691fca8c1f260cf1"/><file name="HomePage.php" hash="46a9b90008a40394957fa372de87f974"/><file name="Search.php" hash="eff6acc97b37192af0e9e6d98ad939d8"/></dir></dir><dir name="Model"><file name="Callback.php" hash="2e8955cf399ea302e8b19c6ccb999cc5"/><file name="Closure.php" hash="f1456fc3e6aa04906339198be3a0a544"/><file name="Eav.php" hash="ed4adbb339497fefe1db29a59c2ed110"/><file name="Indexer.php" hash="3fcaafc332c5fe3dca0cdef383228603"/><file name="Object.php" hash="dcb759ec94621a28c4e531715813513c"/><file name="Observer.php" hash="ca5d42b0d4bef6a312575f07df964d2d"/><dir name="Attribute"><file name="Scope.php" hash="7277aac766688c59886cff561b8c44a3"/></dir><dir name="Config"><file name="Default.php" hash="b69bd384a59f38f214f565d21af1ca3a"/></dir><dir name="Html"><file name="Filter.php" hash="ca77f8b76bd39d00001d6dfb12ff6929"/><file name="Parser.php" hash="5f4c098e69b582025f909ddeeab6e630"/><file name="Reader.php" hash="41a66c26ce51f3803eba50cea5b95d96"/><file name="State.php" hash="5952deebd020273729594ace8a2cae9b"/><file name="Token.php" hash="5c7a4ef3150a35b8a6bf9e296e53e739"/></dir><dir name="Source"><file name="Abstract.php" hash="bb05e3ce9f5e01ef2843a5a558a86fd8"/><file name="Config.php" hash="59b1d6927157e4b34bde55794a7a86be"/><file name="Country.php" hash="cd5c9dd00c4456db2e6b4f6316303a8c"/><file name="Js.php" hash="71852d9a46c5fca27d4b0403e9ee19d9"/><file name="Yesno.php" hash="3082e75e81e111aed0ac9f1cc17e579e"/><file name="YesNoDefault.php" hash="4a13c8de30d7f27b71dac16bbf1e18ae"/></dir></dir><dir name="Resource"><file name="Eav.php" hash="2ada400977d3a8b0883a03998e1a4e47"/><file name="Indexer.php" hash="6ced1a9ad6696345071a189c8c3e657d"/><dir name="Attribute"><file name="Collection.php" hash="7f01d6480b5110a431a5b50571a9ec62"/></dir><dir name="Eav"><file name="Collection.php" hash="5153a97a4021aebced2b0a538d10b4e7"/><file name="Setup.php" hash="13360360cbfada91713159a38c82e6b2"/><dir name="Collection"><file name="Derived.php" hash="03a87d87a781c8256b6414fb132ed30e"/></dir></dir><dir name="Virtual"><file name="Collection.php" hash="ac2d11980e9dc015ed0cfbe12fbf3fc7"/></dir></dir><dir name="Rewrite"><dir name="PageCache"><file name="Processor.php" hash="d5175e3a150d92ec32016654c8a7988a"/></dir></dir><dir name="sql"><dir name="mana_core_setup"><file name="mysql4-install-1.1.1.php" hash="a169406e2cc37282d001e9415eda219a"/></dir></dir></dir><dir name="Db"><dir name="etc"><file name="config.xml" hash="b05eeb89de04b83b0f40635363a8009a"/><file name="m_db.xml" hash="7fb95c96ed440dfc5efb8d3ed598dd20"/></dir><dir name="Exception"><file name="Formula.php" hash="f791f3d718241b9b004ae1719dd8fca8"/><file name="Validation.php" hash="7238432db3b3a24615dc186e60afc546"/></dir><dir name="Helper"><file name="Config.php" hash="947e93e74329de11cffe102dad3b5002"/><file name="Data.php" hash="e5edeab32a90b2a15584ccc6b7244e2b"/><file name="Formula.php" hash="c5761ee937e3490d1508a3ed0cfac805"/><dir name="Formula"><file name="Abstract.php" hash="88283737316ebd8cafddce5e42ac2bd8"/><file name="DependencyFinder.php" hash="480e4097ef5e9b21c527f5c61dbd3987"/><file name="Entity.php" hash="e5f500a86b18b37dd43fc8ab151fd204"/><file name="Evaluator.php" hash="8dc9cf1b9ddf8cefd053909ba841d985"/><file name="Function.php" hash="db3fb341c32f9c285d37df84a36fb82c"/><file name="Parser.php" hash="7828e59f31c03e31da92a889b4e8b52f"/><file name="Processor.php" hash="4bf7bfa8a2cdcfbecaede6ab3aa67f04"/><file name="Selector.php" hash="91bee56da8ee75aa06edacb19cb925b9"/><dir name="Entity"><file name="Aggregate.php" hash="fab53a31e480228474de7015100d6498"/><file name="Foreign.php" hash="6d4159dcb6ff3f7e5a958b6e891057c1"/><file name="Frontend.php" hash="4bef999e0ca552c3fa8b518c36b6e239"/><file name="Normal.php" hash="6a91af1bd600ca9b8be40ee5be5c4fa5"/><dir name="Aggregate"><file name="Field.php" hash="682fc6e82caf400025ba22f6b1c40156"/></dir></dir><dir name="Function"><file name="Count.php" hash="62d463301d3eac82f9f8c2952cc23ed4"/><file name="Glue.php" hash="00abff0970bc94ef46ebdb91d773ab02"/><file name="If.php" hash="215287632f25bd541fe29051cc11fba4"/><file name="Lower.php" hash="7e91d1e618e66d262b0967f0a053adfd"/><file name="Seo.php" hash="70ce3da277c48fc84363c58baba3dd37"/><file name="SkinUrl.php" hash="059ac4b6d44bf7714886c023c30a1490"/></dir><dir name="Processor"><file name="Eav.php" hash="722b0888661d38b399f74eaf9ec4247e"/><file name="Entity.php" hash="b3d6e11b78cf782c9eae78ce1eefd155"/><file name="System.php" hash="c7a3c7bf6194b041dd17dc2b3a605f6f"/><file name="Table.php" hash="771155e0a194fcf7a821e51172100138"/></dir></dir></dir><dir name="Model"><file name="Entity.php" hash="88e63ed2ebdeb129757d7acbd6f4d805"/><file name="Indexer.php" hash="8596a12b7ee26e686937cef3d2985685"/><file name="Object.php" hash="91dac5c80f75dcb81c1aadaa8984b466"/><file name="Observer.php" hash="278f386a08a7321eb61d7609ffa8a518"/><file name="Setup.php" hash="f3793eb6b2aa2a898a1ffb16cb83da8c"/><file name="Validation.php" hash="f2dd026c3d73f3fd345e1b7abde51e7d"/><dir name="Entity"><file name="Indexer.php" hash="c807d323f91e2c38344332ae8e9654b3"/></dir><dir name="Formula"><file name="Alias.php" hash="d14575f9f0477021a2e53ff1fd9c5501"/><file name="Closure.php" hash="d773c0f5ed1f593acb5458bfb3187a7b"/><file name="Context.php" hash="5fd16cf22bc1bac09856606ee0d0a141"/><file name="Entity.php" hash="c0eb7a9362996c104bde5cd2c469db10"/><file name="Expr.php" hash="b739ab589ea0e3378e32c12a69ba78cc"/><file name="Field.php" hash="d00b8c25724e34f6cad819edf1497ede"/><file name="Node.php" hash="e28d2d8d0af762abbe3b9677937103fe"/><dir name="Alias"><file name="Array.php" hash="6719df8e4123c881980f5a2b6ef93a8f"/><file name="Empty.php" hash="93e05898f60e111f12b5febb119305dd"/><file name="Single.php" hash="8603f08d6415110c8c0f04a805055fab"/></dir><dir name="Closure"><file name="AggregateFieldJoin.php" hash="f1d19cb54eaf620d038508b7ad31fc60"/><file name="ForeignJoin.php" hash="b07167a5ef2a7caf479266269f232edf"/><file name="ForeignJoinEnd.php" hash="6b9000298615ce69eadc04e707fbe17f"/><file name="Join.php" hash="b8d368c1042754f18d027027acccb27a"/></dir><dir name="Node"><file name="Add.php" hash="22f6ec02b3226ce2c9313f713d1b03fb"/><file name="Field.php" hash="93c6bf27b93091ebe7672500e7e94e48"/><file name="FormulaExpr.php" hash="b6a36a818533775fa778c6dc66ec40f7"/><file name="FunctionCall.php" hash="bac31778c670aca74c9db49dcb40007a"/><file name="Identifier.php" hash="a38aa478e6485ef9ea95fb0758c2ea49"/><file name="Multiply.php" hash="292881a092500642e4d98aeb33aa2f75"/><file name="NullValue.php" hash="2ddeb334ac3e12cdec1b413904e02210"/><file name="NumberConstant.php" hash="fd2524859dc3ed2a3fb46468b8352f72"/><file name="StringConstant.php" hash="04cdb7baa502e001dfb35af748efde30"/></dir></dir><dir name="Replication"><file name="Target.php" hash="b918ef992096a72080a743352385b64b"/></dir><dir name="Setup"><file name="Abstract.php" hash="d8e84857de7b1cdb6ba6c03e5f4aa867"/><file name="V13012122.php" hash="a2ca004389d5145d819ff791f965ef9e"/></dir><dir name="Virtual"><file name="Result.php" hash="33f35c946b2285e62a5a1c08c1bb3ec8"/></dir></dir><dir name="Resource"><file name="Entity.php" hash="c5f9ee0f1475f2d4a2075b5cead6199d"/><file name="Formula.php" hash="53b21b55b710d119fc91bbcf841caea2"/><file name="Object.php" hash="9106bec7565a3bedaf2de81b18569157"/><file name="Replicate.php" hash="e4c75872344dde3ed8a04744110faace"/><dir name="Edit"><file name="Session.php" hash="07474c4d34f6ec1cd91ade3e871ec096"/></dir><dir name="Entity"><file name="Collection.php" hash="291cbdeef792ab848175c0ae9bb65fad"/><file name="Indexer.php" hash="9e102278a3cf4e69ead0a34b12d3c91c"/><file name="JsonCollection.php" hash="bf1f5a893a33affb7c1b182f803d600a"/></dir><dir name="Object"><file name="Collection.php" hash="6f7f393abef136226ed22eb8f45d2fdd"/></dir></dir><dir name="sql"><dir name="mana_db_setup"><file name="mysql4-install-11.09.28.09.php" hash="0d8c0873cbbabb1db406e1c0b709b4de"/><file name="mysql4-upgrade-11.09.28.09-11.09.28.10.php" hash="04ccee17b3b04906e8fed2b1ac9214a3"/><file name="mysql4-upgrade-11.10.08.23-11.10.20.22.php" hash="847b24ea006e99af80cc8980ff7ff021"/></dir></dir></dir><dir name="Filters"><dir name="Block"><file name="Filter.php" hash="7460ab6dc2a4787be60e5cb18e55eca7"/><file name="Layer.php" hash="0f8fac9a9277fb6e204a8ed32b164902"/><file name="Search.php" hash="e7c5d74b36406fb181ba149588070f95"/><file name="State.php" hash="c9a00b949def21806686fa144a997bcb"/><file name="View.php" hash="94e80aa607ab1fbb819962f4081d3b1a"/></dir><dir name="etc"><file name="config.xml" hash="fbd0893a7205f37c4999a2c3ecdb1236"/></dir><dir name="Helper"><file name="Data.php" hash="f3948cddd233be262c827348bb048c84"/><file name="Extended.php" hash="5b065cc2be0a8b96dc4db32bc8279304"/></dir><dir name="Interface"><file name="Filter.php" hash="883a29e42087529428e73b4ae785609a"/></dir><dir name="Model"><file name="Filter.php" hash="cd3bc9276ff4566802e2d43280394e6f"/><file name="Filter2.php" hash="7e57bc59a4cf6464975cef52f6c4ab78"/><file name="Item.php" hash="f98cae91e08449950545f56d7e7cf79b"/><file name="Observer.php" hash="e835045553a7e4d8d821eed81e6492a1"/><file name="Operation.php" hash="54d01ace78c5b6ba3facf1a2f3255618"/><file name="Query.php" hash="5bc5ffb4c592198a2b2ad105dcc98f29"/><file name="Repository.php" hash="e0cf842a98aa5ae27fc107c18f190fab"/><file name="Sort.php" hash="95804fcd46ca143587747dc7dfe9845e"/><dir name="Config"><dir name="Display"><file name="Default.php" hash="e16716300e514ef6ee7fa4c1c5fd3331"/></dir></dir><dir name="Filter"><file name="Attribute.php" hash="bc424650d58ca120a24c3741cf9ae0c3"/><file name="Category.php" hash="31258e6ab7ced0737658b4f174255bd4"/><file name="Common.php" hash="522b1695cf4f4f545c7174b90a8b06ba"/><file name="Decimal.php" hash="6e7c7b13d687c8277da108071a708ee0"/><file name="Default.php" hash="960d7b6f0fd9c32cf9726e11a62cbb1e"/><file name="Price.php" hash="badca3bf0a10ba605acd9efd40f676f2"/></dir><dir name="Filter2"><file name="Store.php" hash="d82d20f485c4417bc51a73bcf01cd374"/><file name="Value.php" hash="bc0f76d7b7e2b7341ba3ac51c9a88bb6"/><dir name="Value"><file name="Store.php" hash="695bf8aad7ff431fe5a511098cf23f48"/></dir></dir><dir name="Solr"><file name="Attribute.php" hash="c60628b8ec074147918ea7a96e85ecd5"/><file name="Category.php" hash="281864a88dc542de2dd8bd15812a64d4"/><file name="Decimal.php" hash="4c732a1189b7cd5c96ece2f2040c4704"/><file name="Price.php" hash="aa4ec52784e2a5084f635388421b3c54"/><dir name="Adapter"><file name="HttpStream.php" hash="b58657f23ca2829dec0a725f302c525f"/><file name="PhpExtension.php" hash="866e113bce375b16d3a531ba705ffacb"/></dir><dir name="And"><file name="Attribute.php" hash="3df0798bc675483dd4b327299fc00b33"/></dir><dir name="Reverse"><file name="Attribute.php" hash="c23dc7f104559c3df2f3394438735537"/><file name="Decimal.php" hash="89810a0c5fe707af354d7be73b8dfe36"/><file name="Price.php" hash="bf207efb2854f99a15775f38f019f5b4"/></dir></dir><dir name="Source"><file name="Display.php" hash="509e389d33e3175e304ab67ffdb79325"/><file name="Filterable.php" hash="618680f75072220ad711dec6e220d43b"/><dir name="Display"><file name="All.php" hash="1875630a7565c9655c8c8724dad45bba"/><file name="Attribute.php" hash="d2bd347e70e3924490dff6e57274ff40"/><file name="Category.php" hash="437b3f678edd292a0110529aadfb1530"/><file name="Decimal.php" hash="b432f32e93fb1991f8882bfe25f0514e"/><file name="Price.php" hash="c6a017240beaf76666e9f702a9fcd48d"/></dir></dir></dir><dir name="Resource"><file name="Filter.php" hash="e74d789c7751fe0a126b38ab0bd3ac40"/><file name="Filter2.php" hash="6cbe26e2c70b0fc9ee5ff97e25ab1133"/><file name="Setup.php" hash="83b12b7939ac1c7696360f77304d9d84"/><dir name="EnterpriseSearch"><file name="Engine.php" hash="51d77208587d1c55c8d508a3024bd269"/></dir><dir name="Filter"><file name="Attribute.php" hash="030ac9139139d8266ce0cf6cd49b6b01"/><file name="Collection.php" hash="6831f054791977048641d43c288ff53c"/><file name="Decimal.php" hash="d22ff135473b926dce9fbd8d4b877bae"/><file name="Price.php" hash="b165981a092366d05b3537c4684e6087"/><dir name="And"><file name="Attribute.php" hash="cdc41ca223083360b35bd5f455733cd8"/></dir><dir name="Attribute"><file name="Collection.php" hash="c854270f63ca3bfd44cfd6ab27888676"/></dir><dir name="Collection"><file name="Derived.php" hash="5240ac10d2989122c49665919a9555ff"/></dir><dir name="Reverse"><file name="Attribute.php" hash="0be2e3f5eef03862e13b37deb1f7f7a3"/><file name="Decimal.php" hash="9d9974cf64c5178812bcc6fca83bc9ff"/><file name="Price.php" hash="3be48facf6596b618fc0a621f625d460"/></dir></dir><dir name="Filter2"><file name="Collection.php" hash="822b71198d05e41e90d096cb7cc47fa5"/><file name="Store.php" hash="0c8554f52a7a0886ce0defbb749713e2"/><file name="Value.php" hash="356a37914ecc112d9de1b4a1152d7fc1"/><dir name="Store"><file name="Collection.php" hash="791101a5eac8aceb6398a24b433a2d1f"/></dir><dir name="Value"><file name="Collection.php" hash="3273b517dd65a46034cb3ef8adb3c610"/><file name="Store.php" hash="48d9631e8d34b15a72fc22e6bb3a98c2"/><dir name="Store"><file name="Collection.php" hash="073931492acfc99a3b5cd1ecf7113982"/></dir></dir></dir><dir name="Indexer"><file name="Source.php" hash="251589738ea54dcf6e986921f3810931"/></dir><dir name="Solr"><file name="Attribute.php" hash="f2b30e509881147f2f73ede11ac2fbed"/><file name="Collection.php" hash="9b35d28e731fc47f420447251a5e976b"/><file name="Engine.php" hash="e3c3306e436e6943aa10f9b1a77404be"/><dir name="And"><file name="Attribute.php" hash="a7dd5fbb9388a4b73efeeaa7e91a9b7b"/></dir><dir name="Reverse"><file name="Attribute.php" hash="1084278692e5ffe1d16640b530e33662"/></dir></dir></dir><dir name="sql"><dir name="mana_filters_setup"><file name="mysql4-install-1.1.1.php" hash="22f7381b5ea9261a2e8a00fda28f28ef"/><file name="mysql4-upgrade-1.1.1-1.9.1.php" hash="04c761bab20de6e0fed68e141fb68112"/><file name="mysql4-upgrade-11.09.24.09-11.09.28.09.php" hash="a007f769d492c43b1e7a583a2763300a"/><file name="mysql4-upgrade-11.10.19.18-11.10.23.01.php" hash="ef0b7b4f4530e5b01f349e3d534ebb16"/><file name="mysql4-upgrade-12.01.14.09-12.01.15.14.php" hash="001d8e035bc798d8779c29ac38912543"/><file name="mysql4-upgrade-12.04.10.23-12.04.17.18.php" hash="48f2d8cc8ca6afe014a95dea808e5087"/><file name="mysql4-upgrade-12.10.25.17-12.10.25.18.php" hash="5d726b388ac30fc00cd95bb86ab5641b"/><file name="mysql4-upgrade-12.11.02.16-12.11.13.15.php" hash="11fc0db6ff2f56fe95bfaf89ab758f61"/><file name="mysql4-upgrade-13.09.11.14-13.09.23.17.php" hash="aca62ea5d13c5bc3259a48e5cd4d5282"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mana_Core.xml" hash="0ca7883c0f5fcaa12b32842f142f92eb"/><file name="Mana_Db.xml" hash="9b4669b284f2a688e165abaac373c358"/><file name="Mana_Filters.xml" hash="85a5d5c92f66f775131459c3bfc2fc30"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies/>
|
18 |
</package>
|