1 import DS from 'ember-data'; |
1 import DS from 'ember-data'; |
2 |
2 |
3 var Sound = DS.Model.extend({ |
3 var Sound = DS.Model.extend({ |
4 name: DS.attr('string'), |
4 title: DS.attr('string'), |
5 location: DS.attr('string'), |
5 description: DS.attr('string'), |
|
6 interviewer: DS.attr('string'), |
|
7 type: DS.attr('string'), |
|
8 spatial: DS.attr('string'), |
6 language: DS.attr('string'), |
9 language: DS.attr('string'), |
7 datetime: DS.attr('integer'), |
10 created: DS.attr('integer'), |
8 audio: DS.attr('url') |
11 master: DS.attr('url') |
9 }); |
12 }); |
10 |
13 |
11 Sound.reopenClass({ |
14 Sound.reopenClass({ |
12 FIXTURES: [ |
15 FIXTURES: [ |
13 { |
16 { |
14 id: 1, |
17 "id": 0, |
15 name: "Sound 1", |
18 "title": "ea excepteur", |
16 location: "France", |
19 "description": "Ullamco ullamco dolore ad et elit Lorem id consectetur amet. Dolor qui proident occaecat deserunt commodo velit.", |
17 language: "Alsacien", |
20 "interviewer": "<ReferenceError: gender is not defined>", |
18 datetime: 1990, |
21 "type": "Entretien", |
19 audio: "http://sound1.mp3" |
22 "spatial": "France", |
20 }, |
23 "language": "Corse", |
21 { |
24 "created": 1962, |
22 id: 2, |
25 "master": "http://www.noiseaddicts.com/samples_1w72b820/3921.mp3" |
23 name: "Sound 2", |
26 }, |
24 location: "France", |
27 { |
25 language: "Breton", |
28 "id": 1, |
26 datetime: 1965, |
29 "title": "proident sit", |
27 audio: "http://sound2.mp3" |
30 "description": "Pariatur cillum officia est veniam anim id esse. Esse magna eiusmod aute consequat amet duis non amet nisi Lorem.", |
28 }, |
31 "interviewer": "<ReferenceError: gender is not defined>", |
29 { |
32 "type": "Discussion", |
30 id: 3, |
33 "spatial": "Spain", |
31 name: "Sound 3", |
34 "language": "Français", |
32 location: "Germany", |
35 "created": 1986, |
33 language: "Breton", |
36 "master": "http://www.noiseaddicts.com/samples_1w72b820/3921.mp3" |
34 datetime: 1965, |
37 }, |
35 audio: "http://sound2.mp3" |
38 { |
36 }, |
39 "id": 2, |
37 { |
40 "title": "nostrud minim", |
38 id: 4, |
41 "description": "Do excepteur cillum magna nisi. Proident tempor id incididunt enim officia ea ea.", |
39 name: "Sound 4", |
42 "interviewer": "<ReferenceError: gender is not defined>", |
40 location: "Spain", |
43 "type": "Reunion", |
41 language: "Judéo-espagnol", |
44 "spatial": "France", |
42 datetime: 2002, |
45 "language": "Breton", |
43 audio: "http://sound3.mp3" |
46 "created": 1971, |
44 } |
47 "master": "http://www.noiseaddicts.com/free-samples-mp3?id=3924" |
|
48 }, |
|
49 { |
|
50 "id": 3, |
|
51 "title": "dolor aliqua", |
|
52 "description": "Commodo ex nostrud ut nisi nisi laboris eu labore. Duis et sit tempor dolor sit exercitation qui aliquip.", |
|
53 "interviewer": "<ReferenceError: gender is not defined>", |
|
54 "type": "Argumentation", |
|
55 "spatial": "France", |
|
56 "language": "Breton", |
|
57 "created": 2002, |
|
58 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
59 }, |
|
60 { |
|
61 "id": 4, |
|
62 "title": "quis nostrud", |
|
63 "description": "Consectetur consectetur labore minim aute nulla sit aliqua. Esse fugiat laboris aliqua ex dolor veniam ut dolore ex dolore tempor aliqua.", |
|
64 "interviewer": "<ReferenceError: gender is not defined>", |
|
65 "type": "Discussion", |
|
66 "spatial": "Spain", |
|
67 "language": "Corse", |
|
68 "created": 1968, |
|
69 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
70 }, |
|
71 { |
|
72 "id": 5, |
|
73 "title": "minim tempor", |
|
74 "description": "Fugiat sunt nulla nostrud labore eiusmod incididunt aute. Id commodo quis voluptate mollit incididunt in pariatur irure Lorem magna exercitation eu eiusmod.", |
|
75 "interviewer": "<ReferenceError: gender is not defined>", |
|
76 "type": "Discussion", |
|
77 "spatial": "France", |
|
78 "language": "Alsacien", |
|
79 "created": 1966, |
|
80 "master": "http://www.noiseaddicts.com/samples_1w72b820/138.mp3" |
|
81 }, |
|
82 { |
|
83 "id": 6, |
|
84 "title": "qui nulla", |
|
85 "description": "Ut tempor id in tempor et irure. Amet dolore velit dolor et enim tempor occaecat veniam ea ut.", |
|
86 "interviewer": "<ReferenceError: gender is not defined>", |
|
87 "type": "Entretien", |
|
88 "spatial": "Africa", |
|
89 "language": "Français", |
|
90 "created": 2000, |
|
91 "master": "http://www.noiseaddicts.com/samples_1w72b820/138.mp3" |
|
92 }, |
|
93 { |
|
94 "id": 7, |
|
95 "title": "incididunt anim", |
|
96 "description": "Dolore sit fugiat commodo laboris id nulla duis incididunt tempor sunt. Duis in culpa amet commodo culpa.", |
|
97 "interviewer": "<ReferenceError: gender is not defined>", |
|
98 "type": "Entretien", |
|
99 "spatial": "France", |
|
100 "language": "Alsacien", |
|
101 "created": 1984, |
|
102 "master": "http://www.noiseaddicts.com/free-samples-mp3?id=3924" |
|
103 }, |
|
104 { |
|
105 "id": 8, |
|
106 "title": "enim elit", |
|
107 "description": "Id voluptate Lorem nulla eu est. Labore nostrud aute tempor officia ea cupidatat sit pariatur do nulla.", |
|
108 "interviewer": "<ReferenceError: gender is not defined>", |
|
109 "type": "Negociation", |
|
110 "spatial": "France", |
|
111 "language": "Breton", |
|
112 "created": 1971, |
|
113 "master": "http://www.noiseaddicts.com/samples_1w72b820/138.mp3" |
|
114 }, |
|
115 { |
|
116 "id": 9, |
|
117 "title": "fugiat excepteur", |
|
118 "description": "Consectetur occaecat ad dolor occaecat veniam ullamco pariatur nulla mollit est aliquip nulla. Mollit aliqua exercitation esse quis culpa ad ex reprehenderit.", |
|
119 "interviewer": "<ReferenceError: gender is not defined>", |
|
120 "type": "Conversation", |
|
121 "spatial": "Spain", |
|
122 "language": "Français", |
|
123 "created": 1986, |
|
124 "master": "http://www.noiseaddicts.com/samples_1w72b820/3921.mp3" |
|
125 }, |
|
126 { |
|
127 "id": 10, |
|
128 "title": "eu id", |
|
129 "description": "Excepteur sint ullamco elit amet aliquip cillum dolore velit officia deserunt. Sint excepteur sunt incididunt laborum est et sit magna elit qui est eiusmod.", |
|
130 "interviewer": "<ReferenceError: gender is not defined>", |
|
131 "type": "Discussion", |
|
132 "spatial": "Africa", |
|
133 "language": "Alsacien", |
|
134 "created": 1974, |
|
135 "master": "http://www.noiseaddicts.com/samples_1w72b820/138.mp3" |
|
136 }, |
|
137 { |
|
138 "id": 11, |
|
139 "title": "irure elit", |
|
140 "description": "Mollit anim dolore consectetur nostrud ipsum nulla consectetur elit do ad et cillum velit. Elit ea non qui aliqua magna duis irure anim nisi mollit voluptate.", |
|
141 "interviewer": "<ReferenceError: gender is not defined>", |
|
142 "type": "Entretien", |
|
143 "spatial": "France", |
|
144 "language": "Corse", |
|
145 "created": 1983, |
|
146 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
147 }, |
|
148 { |
|
149 "id": 12, |
|
150 "title": "cillum anim", |
|
151 "description": "Reprehenderit ipsum duis non aliquip cupidatat est ad commodo fugiat exercitation mollit commodo. Duis exercitation cupidatat et aliquip deserunt culpa qui.", |
|
152 "interviewer": "<ReferenceError: gender is not defined>", |
|
153 "type": "Discours", |
|
154 "spatial": "Spain", |
|
155 "language": "Breton", |
|
156 "created": 1996, |
|
157 "master": "http://www.noiseaddicts.com/samples_1w72b820/3921.mp3" |
|
158 }, |
|
159 { |
|
160 "id": 13, |
|
161 "title": "pariatur ad", |
|
162 "description": "Proident do culpa fugiat nisi enim cupidatat eiusmod mollit laboris laboris qui eu quis. Laborum mollit mollit ad sit amet laboris aute duis.", |
|
163 "interviewer": "<ReferenceError: gender is not defined>", |
|
164 "type": "Entretien", |
|
165 "spatial": "Spain", |
|
166 "language": "Breton", |
|
167 "created": 2008, |
|
168 "master": "http://www.noiseaddicts.com/free-samples-mp3?id=3924" |
|
169 }, |
|
170 { |
|
171 "id": 14, |
|
172 "title": "ea consequat", |
|
173 "description": "Excepteur nisi consectetur amet Lorem mollit dolore id do. Ullamco cupidatat voluptate cupidatat aliqua non nisi duis mollit reprehenderit do in amet.", |
|
174 "interviewer": "<ReferenceError: gender is not defined>", |
|
175 "type": "Dialogue", |
|
176 "spatial": "Africa", |
|
177 "language": "Français", |
|
178 "created": 2003, |
|
179 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
180 }, |
|
181 { |
|
182 "id": 15, |
|
183 "title": "ex minim", |
|
184 "description": "Excepteur id magna labore labore officia reprehenderit mollit proident ullamco ullamco labore mollit. Occaecat do enim minim incididunt cupidatat eiusmod excepteur.", |
|
185 "interviewer": "<ReferenceError: gender is not defined>", |
|
186 "type": "Conversation", |
|
187 "spatial": "Africa", |
|
188 "language": "Français", |
|
189 "created": 1979, |
|
190 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
191 }, |
|
192 { |
|
193 "id": 16, |
|
194 "title": "pariatur exercitation", |
|
195 "description": "Nostrud voluptate eu do anim. Sint dolor sint aute veniam exercitation anim nostrud ullamco pariatur enim et excepteur.", |
|
196 "interviewer": "<ReferenceError: gender is not defined>", |
|
197 "type": "Entretien", |
|
198 "spatial": "France", |
|
199 "language": "Alsacien", |
|
200 "created": 1965, |
|
201 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
202 }, |
|
203 { |
|
204 "id": 17, |
|
205 "title": "amet eu", |
|
206 "description": "Eu dolore minim ullamco eiusmod Lorem deserunt occaecat sit. Amet pariatur anim fugiat irure ullamco qui laboris mollit sint.", |
|
207 "interviewer": "<ReferenceError: gender is not defined>", |
|
208 "type": "Dialogue", |
|
209 "spatial": "France", |
|
210 "language": "Corse", |
|
211 "created": 1976, |
|
212 "master": "http://www.noiseaddicts.com/free-samples-mp3?id=3924" |
|
213 }, |
|
214 { |
|
215 "id": 18, |
|
216 "title": "ut sint", |
|
217 "description": "Esse quis duis pariatur elit ea elit. Incididunt sunt aliqua veniam cupidatat adipisicing ipsum aliqua qui ex do laboris nostrud.", |
|
218 "interviewer": "<ReferenceError: gender is not defined>", |
|
219 "type": "Reunion", |
|
220 "spatial": "France", |
|
221 "language": "Breton", |
|
222 "created": 1977, |
|
223 "master": "http://www.noiseaddicts.com/samples_1w72b820/3921.mp3" |
|
224 }, |
|
225 { |
|
226 "id": 19, |
|
227 "title": "et excepteur", |
|
228 "description": "Consectetur et laboris eiusmod aliquip. Aliquip magna esse mollit cupidatat consequat qui adipisicing non duis sunt irure in.", |
|
229 "interviewer": "<ReferenceError: gender is not defined>", |
|
230 "type": "Negociation", |
|
231 "spatial": "Africa", |
|
232 "language": "Breton", |
|
233 "created": 1963, |
|
234 "master": "http://www.noiseaddicts.com/free-samples-mp3?id=3924" |
|
235 }, |
|
236 { |
|
237 "id": 20, |
|
238 "title": "laboris proident", |
|
239 "description": "Eu ex ea elit duis ex reprehenderit occaecat deserunt et qui excepteur. Voluptate culpa sunt eu aliquip elit est incididunt proident velit ipsum adipisicing reprehenderit.", |
|
240 "interviewer": "<ReferenceError: gender is not defined>", |
|
241 "type": "Discussion", |
|
242 "spatial": "France", |
|
243 "language": "Breton", |
|
244 "created": 1981, |
|
245 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
246 }, |
|
247 { |
|
248 "id": 21, |
|
249 "title": "pariatur ea", |
|
250 "description": "Sunt voluptate est cupidatat labore amet qui. Deserunt aliquip occaecat ullamco adipisicing exercitation adipisicing deserunt eiusmod aliquip.", |
|
251 "interviewer": "<ReferenceError: gender is not defined>", |
|
252 "type": "Conversation", |
|
253 "spatial": "France", |
|
254 "language": "Breton", |
|
255 "created": 1972, |
|
256 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
257 }, |
|
258 { |
|
259 "id": 22, |
|
260 "title": "ea ex", |
|
261 "description": "Eiusmod eiusmod occaecat qui nulla tempor in incididunt nulla ut ex. Eiusmod laborum est reprehenderit nulla non ea cupidatat est sit nostrud.", |
|
262 "interviewer": "<ReferenceError: gender is not defined>", |
|
263 "type": "Dialogue", |
|
264 "spatial": "France", |
|
265 "language": "Français", |
|
266 "created": 2005, |
|
267 "master": "http://www.noiseaddicts.com/samples_1w72b820/3921.mp3" |
|
268 }, |
|
269 { |
|
270 "id": 23, |
|
271 "title": "in adipisicing", |
|
272 "description": "Consequat tempor ipsum sunt do enim do. Minim esse proident et exercitation.", |
|
273 "interviewer": "<ReferenceError: gender is not defined>", |
|
274 "type": "Bavardage", |
|
275 "spatial": "Spain", |
|
276 "language": "Alsacien", |
|
277 "created": 1966, |
|
278 "master": "http://www.noiseaddicts.com/samples_1w72b820/3921.mp3" |
|
279 }, |
|
280 { |
|
281 "id": 24, |
|
282 "title": "dolore minim", |
|
283 "description": "Fugiat adipisicing sint ex laborum adipisicing ea est tempor labore cupidatat officia tempor. Aliqua cillum aliqua incididunt id pariatur sint.", |
|
284 "interviewer": "<ReferenceError: gender is not defined>", |
|
285 "type": "Negociation", |
|
286 "spatial": "France", |
|
287 "language": "Français", |
|
288 "created": 1967, |
|
289 "master": "http://www.noiseaddicts.com/samples_1w72b820/138.mp3" |
|
290 }, |
|
291 { |
|
292 "id": 25, |
|
293 "title": "ut duis", |
|
294 "description": "Culpa ipsum sunt quis proident nisi consequat deserunt in elit ipsum incididunt nulla aliquip. Dolor dolore amet mollit dolor nisi irure esse nostrud nulla.", |
|
295 "interviewer": "<ReferenceError: gender is not defined>", |
|
296 "type": "Conversation", |
|
297 "spatial": "France", |
|
298 "language": "Breton", |
|
299 "created": 2005, |
|
300 "master": "http://www.noiseaddicts.com/samples_1w72b820/138.mp3" |
|
301 }, |
|
302 { |
|
303 "id": 26, |
|
304 "title": "reprehenderit aliquip", |
|
305 "description": "Excepteur laboris et est amet amet amet sunt Lorem officia velit Lorem incididunt. Excepteur reprehenderit ut esse fugiat amet enim pariatur nostrud reprehenderit sit esse culpa magna.", |
|
306 "interviewer": "<ReferenceError: gender is not defined>", |
|
307 "type": "Negociation", |
|
308 "spatial": "France", |
|
309 "language": "Français", |
|
310 "created": 1979, |
|
311 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
312 }, |
|
313 { |
|
314 "id": 27, |
|
315 "title": "dolore aliqua", |
|
316 "description": "Velit velit dolore culpa laboris nisi irure tempor in amet non laboris consectetur aute ad. Enim anim officia tempor non cillum exercitation tempor consequat.", |
|
317 "interviewer": "<ReferenceError: gender is not defined>", |
|
318 "type": "Negociation", |
|
319 "spatial": "Spain", |
|
320 "language": "Alsacien", |
|
321 "created": 1977, |
|
322 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
323 }, |
|
324 { |
|
325 "id": 28, |
|
326 "title": "culpa amet", |
|
327 "description": "Cillum nulla excepteur aute dolore aliquip quis anim laborum fugiat sunt. Anim sint cillum ut in velit consequat aliqua fugiat.", |
|
328 "interviewer": "<ReferenceError: gender is not defined>", |
|
329 "type": "Reunion", |
|
330 "spatial": "France", |
|
331 "language": "Breton", |
|
332 "created": 1975, |
|
333 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
334 }, |
|
335 { |
|
336 "id": 29, |
|
337 "title": "proident cillum", |
|
338 "description": "Ea deserunt nostrud laborum minim ut exercitation voluptate cillum. Nostrud excepteur qui quis duis ut.", |
|
339 "interviewer": "<ReferenceError: gender is not defined>", |
|
340 "type": "Conversation", |
|
341 "spatial": "Africa", |
|
342 "language": "Corse", |
|
343 "created": 1968, |
|
344 "master": "http://www.noiseaddicts.com/samples_1w72b820/142.mp3" |
|
345 } |
45 ] |
346 ] |
46 }); |
347 }); |
47 |
348 |
48 export default Sound; |
349 export default Sound; |