-rw-r--r-- | content/fireflix.js | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/content/fireflix.js b/content/fireflix.js index 92c42f4..966630c 100644 --- a/content/fireflix.js +++ b/content/fireflix.js | |||
@@ -289,659 +289,665 @@ var fireflix = { | |||
289 | document.getElementById('fireflix_tabs').selectedTab | 289 | document.getElementById('fireflix_tabs').selectedTab |
290 | = document.getElementById('tab_upload'); | 290 | = document.getElementById('tab_upload'); |
291 | break; | 291 | break; |
292 | case 'text/uri-list': | 292 | case 'text/uri-list': |
293 | // is it ascii or could it be utf8? | 293 | // is it ascii or could it be utf8? |
294 | this.drop_urilist(ev,splitascii(d.data),s); | 294 | this.drop_urilist(ev,splitascii(d.data),s); |
295 | break; | 295 | break; |
296 | default: alert(d.flavour.contentType+':'+d.data); break; | 296 | default: alert(d.flavour.contentType+':'+d.data); break; |
297 | }; | 297 | }; |
298 | }, | 298 | }, |
299 | drop_urilist: function(ev,ul,s) { | 299 | drop_urilist: function(ev,ul,s) { |
300 | // TODO: check for being a file? | 300 | // TODO: check for being a file? |
301 | var us = decodeURIComponent(ul).split(/[\r\n]/); | 301 | var us = decodeURIComponent(ul).split(/[\r\n]/); |
302 | for(var ui in us) | 302 | for(var ui in us) |
303 | if(/\S/.test(us[ui])) | 303 | if(/\S/.test(us[ui])) |
304 | this.fireflix.uploads.add(us[ui]); | 304 | this.fireflix.uploads.add(us[ui]); |
305 | document.getElementById('fireflix_tabs').selectedTab | 305 | document.getElementById('fireflix_tabs').selectedTab |
306 | = document.getElementById('tab_upload'); | 306 | = document.getElementById('tab_upload'); |
307 | } | 307 | } |
308 | }, | 308 | }, |
309 | 309 | ||
310 | uploads: { | 310 | uploads: { |
311 | fireflix: null, | 311 | fireflix: null, |
312 | init: function(f) { | 312 | init: function(f) { |
313 | this.fireflix=f; | 313 | this.fireflix=f; |
314 | pull_elements(this,document,[ | 314 | pull_elements(this,document,[ |
315 | 'upload_filename','upload_title','upload_file_preview', | 315 | 'upload_filename','upload_title','upload_file_preview', |
316 | 'upload_file_props','upload_progress','upload_tags', | 316 | 'upload_file_props','upload_progress','upload_tags', |
317 | 'cmd_uploads_upload' | 317 | 'cmd_uploads_upload' |
318 | ]); | 318 | ]); |
319 | }, | 319 | }, |
320 | files: new Array(), | 320 | files: new Array(), |
321 | rowCount: 0, | 321 | rowCount: 0, |
322 | getCellText: function(r,c) { | 322 | getCellText: function(r,c) { |
323 | var f = this.files[r]; | 323 | var f = this.files[r]; |
324 | if(c.id=='up_file') return f.file; | 324 | if(c.id=='up_file') return f.file; |
325 | if(c.id=='up_title') return f.title; | 325 | if(c.id=='up_title') return f.title; |
326 | if(c.id=='up_status') return f.state; | 326 | if(c.id=='up_status') return f.state; |
327 | return c.id; | 327 | return c.id; |
328 | }, | 328 | }, |
329 | setTree: function(t) { this.tree = t }, | 329 | setTree: function(t) { this.tree = t }, |
330 | isContainer: function(r) { return false; }, | 330 | isContainer: function(r) { return false; }, |
331 | isSeparator: function(r) { return false; }, | 331 | isSeparator: function(r) { return false; }, |
332 | isSorted: function(r) { return false; }, | 332 | isSorted: function(r) { return false; }, |
333 | getLevel: function(r) { return 0; }, | 333 | getLevel: function(r) { return 0; }, |
334 | getImageSrc: function(r,c) { return null }, | 334 | getImageSrc: function(r,c) { return null }, |
335 | getRowProperties: function(r,p) { | 335 | getRowProperties: function(r,p) { |
336 | try { | 336 | try { |
337 | if(!Components) return; | 337 | if(!Components) return; |
338 | }catch(e) { return } | 338 | }catch(e) { return } |
339 | var f = this.files[r]; | 339 | var f = this.files[r]; |
340 | var as = Components.classes['@mozilla.org/atom-service;1']. | 340 | var as = Components.classes['@mozilla.org/atom-service;1']. |
341 | getService(Components.interfaces.nsIAtomService); | 341 | getService(Components.interfaces.nsIAtomService); |
342 | p.AppendElement(as.getAtom(f.state)); | 342 | p.AppendElement(as.getAtom(f.state)); |
343 | }, | 343 | }, |
344 | getCellProperties: function(r,c,p) { this.getRowProperties(r,p); }, | 344 | getCellProperties: function(r,c,p) { this.getRowProperties(r,p); }, |
345 | getColumnProperties: function(c,p) { }, | 345 | getColumnProperties: function(c,p) { }, |
346 | cycleHeader: function(cid,e) { }, | 346 | cycleHeader: function(cid,e) { }, |
347 | getParentIndex: function(r) { return -1; }, | 347 | getParentIndex: function(r) { return -1; }, |
348 | drop: function(r,o) { }, | 348 | drop: function(r,o) { }, |
349 | canDropBeforeAfter: function(r,b) { return false }, | 349 | canDropBeforeAfter: function(r,b) { return false }, |
350 | 350 | ||
351 | add: function(f) { | 351 | add: function(f) { |
352 | if(f.indexOf('file:/')==0) { | 352 | if(f.indexOf('file:/')==0) { |
353 | f = f.substr(5); | 353 | f = f.substr(5); |
354 | while(f.substr(0,2)=='//') { // XXX: not very performant, is it? ;-) | 354 | while(f.substr(0,2)=='//') { // XXX: not very performant, is it? ;-) |
355 | f = f.substr(1); | 355 | f = f.substr(1); |
356 | } | 356 | } |
357 | } | 357 | } |
358 | var t = f; | 358 | var t = f; |
359 | var ls = t.lastIndexOf('/'); | 359 | var ls = t.lastIndexOf('/'); |
360 | if(ls>0) t = t.substr(ls+1); | 360 | if(ls>0) t = t.substr(ls+1); |
361 | ls = t.lastIndexOf('\\'); | 361 | ls = t.lastIndexOf('\\'); |
362 | if(ls>0) t = t.substr(ls+1); | 362 | if(ls>0) t = t.substr(ls+1); |
363 | var ld = t.lastIndexOf('.'); | 363 | var ld = t.lastIndexOf('.'); |
364 | if(ld>0) t = t.substr(0,ld); | 364 | if(ld>0) t = t.substr(0,ld); |
365 | this.files.push( { | 365 | this.files.push( { |
366 | file: f, | 366 | file: f, |
367 | title: t, | 367 | title: t, |
368 | tags: '', | 368 | tags: '', |
369 | state: 'pending' | 369 | state: 'pending' |
370 | } ); | 370 | } ); |
371 | this.rowCount = this.files.length; | 371 | this.rowCount = this.files.length; |
372 | this.tree.rowCountChanged(this.rowCount-1,1); | 372 | this.tree.rowCountChanged(this.rowCount-1,1); |
373 | }, | 373 | }, |
374 | 374 | ||
375 | upload_worker: function() { | 375 | upload_worker: function() { |
376 | for(var f in this.files) { | 376 | for(var f in this.files) { |
377 | if(this.files[f].state=='pending') { | 377 | if(this.files[f].state=='pending') { |
378 | var ff = this.files[f]; | 378 | var ff = this.files[f]; |
379 | dump('upload '+ff.file+'\n'); | 379 | dump('upload '+ff.file+'\n'); |
380 | this.on_file_upload(ff); | 380 | this.on_file_upload(ff); |
381 | ff.state='uploading'; | 381 | ff.state='uploading'; |
382 | this.tree.invalidate(); | 382 | this.tree.invalidate(); |
383 | var _this = this; | 383 | var _this = this; |
384 | this.fireflix.flickr.upload_file( | 384 | this.fireflix.flickr.upload_file( |
385 | ff.file, { title: ff.title, tags: ff.tags }, | 385 | ff.file, { title: ff.title, tags: ff.tags }, |
386 | function(x,p) { | 386 | function(x,p) { |
387 | ff.photoid = p; | 387 | ff.photoid = p; |
388 | _this.batch_ids.push(p); | 388 | _this.batch_ids.push(p); |
389 | ff.state='completed'; | 389 | ff.state='completed'; |
390 | _this.tree.invalidate(); | 390 | _this.tree.invalidate(); |
391 | window.setTimeout(_this.upload_to,0,_this); | 391 | window.setTimeout(_this.upload_to,0,_this); |
392 | }, function(x,s,c,m) { | 392 | }, function(x,s,c,m) { |
393 | ff.state='failed'; | 393 | ff.state='failed'; |
394 | ff.flickr_errcode = c; | 394 | ff.flickr_errcode = c; |
395 | ff.flickr_errmsg = m; | 395 | ff.flickr_errmsg = m; |
396 | _this.tree.invalidate(); | 396 | _this.tree.invalidate(); |
397 | window.setTimeout(_this.upload_to,0,_this); | 397 | window.setTimeout(_this.upload_to,0,_this); |
398 | } | 398 | } |
399 | ); | 399 | ); |
400 | return; | 400 | return; |
401 | } | 401 | } |
402 | } | 402 | } |
403 | dump('uploading done\n'); | 403 | dump('uploading done\n'); |
404 | this.on_finish_upload(); | 404 | this.on_finish_upload(); |
405 | }, | 405 | }, |
406 | upload_to: function(_this) { _this.upload_worker(); }, | 406 | upload_to: function(_this) { _this.upload_worker(); }, |
407 | on_file_upload: function(f) { | 407 | on_file_upload: function(f) { |
408 | this.cmd_uploads_upload.setAttribute('disabled','true'); | 408 | this.cmd_uploads_upload.setAttribute('disabled','true'); |
409 | for(var fi in this.files) { | 409 | for(var fi in this.files) { |
410 | if(this.files[fi].file==f.file) { | 410 | if(this.files[fi].file==f.file) { |
411 | this.tree.ensureRowIsVisible(fi); | 411 | this.tree.ensureRowIsVisible(fi); |
412 | this.selection.rangedSelect(fi,fi,false); | 412 | this.selection.rangedSelect(fi,fi,false); |
413 | this.selection.currentIndex = fi; | 413 | this.selection.currentIndex = fi; |
414 | this.selToProps(); | 414 | this.selToProps(); |
415 | break; | 415 | break; |
416 | } | 416 | } |
417 | } | 417 | } |
418 | }, | 418 | }, |
419 | on_finish_upload: function() { | 419 | on_finish_upload: function() { |
420 | if(this.batch_ids.length) { | 420 | if(this.batch_ids.length) { |
421 | var psn = prompt(this.fireflix.loc_strings.getString('postUploadPhotoset')); | 421 | var psn = prompt(this.fireflix.loc_strings.getString('postUploadPhotoset')); |
422 | if(psn!=null) { | 422 | if(psn!=null) { |
423 | var pids = this.batch_ids.join(','); | 423 | var pids = this.batch_ids.join(','); |
424 | var ppid = this.batch_ids[0]; | 424 | var ppid = this.batch_ids[0]; |
425 | var _this = this; | 425 | var _this = this; |
426 | this.fireflix.flickr.api_call( | 426 | this.fireflix.flickr.api_call( |
427 | { | 427 | { |
428 | method: 'flickr.photosets.create', | 428 | method: 'flickr.photosets.create', |
429 | auth_token: 'default', | 429 | auth_token: 'default', |
430 | title: psn, | 430 | title: psn, |
431 | primary_photo_id: ppid | 431 | primary_photo_id: ppid |
432 | }, function(x) { | 432 | }, function(x) { |
433 | var npid = | 433 | var npid = |
434 | x.responseXML.getElementsByTagName('photoset').item(0).getAttribute('id'); | 434 | x.responseXML.getElementsByTagName('photoset').item(0).getAttribute('id'); |
435 | _this.fireflix.flickr.api_call( | 435 | _this.fireflix.flickr.api_call( |
436 | { | 436 | { |
437 | method: 'flickr.photosets.editPhotos', | 437 | method: 'flickr.photosets.editPhotos', |
438 | auth_token: 'default', | 438 | auth_token: 'default', |
439 | photoset_id: npid, | 439 | photoset_id: npid, |
440 | primary_photo_id: ppid, | 440 | primary_photo_id: ppid, |
441 | photo_ids: pids | 441 | photo_ids: pids |
442 | }, function(x) { | 442 | }, function(x) { |
443 | _this.fireflix.refresh_sets(); | 443 | _this.fireflix.refresh_sets(); |
444 | }, function(x,s,c,m) { | 444 | }, function(x,s,c,m) { |
445 | _this.fireflix.flickr_failure(x,s,c,m); | 445 | _this.fireflix.flickr_failure(x,s,c,m); |
446 | } | 446 | } |
447 | ); | 447 | ); |
448 | }, function(x,s,c,m) { | 448 | }, function(x,s,c,m) { |
449 | _this.fireflix.flickr_failure(x,s,c,m); | 449 | _this.fireflix.flickr_failure(x,s,c,m); |
450 | } | 450 | } |
451 | ); | 451 | ); |
452 | } | 452 | } |
453 | } | 453 | } |
454 | this.selection.clearSelection(); | 454 | this.selection.clearSelection(); |
455 | this.cmd_uploads_upload.setAttribute('disabled','false'); | 455 | this.cmd_uploads_upload.setAttribute('disabled','false'); |
456 | this.upload_progress.setAttribute('hidden','true'); | 456 | this.upload_progress.setAttribute('hidden','true'); |
457 | }, | 457 | }, |
458 | 458 | ||
459 | clear_list: function() { | 459 | clear_list: function() { |
460 | this.tree.beginUpdateBatch(); | 460 | this.tree.beginUpdateBatch(); |
461 | this.rowCount = 0; | 461 | this.rowCount = 0; |
462 | this.files = new Array(); | 462 | this.files = new Array(); |
463 | this.tree.endUpdateBatch(); | 463 | this.tree.endUpdateBatch(); |
464 | this.selToProps(); | 464 | this.selToProps(); |
465 | }, | 465 | }, |
466 | selectionChanged: function() { | 466 | selectionChanged: function() { |
467 | this.selToProps(); | 467 | this.selToProps(); |
468 | }, | 468 | }, |
469 | disableProps: function() { | 469 | disableProps: function() { |
470 | this.upload_filename.value=''; | 470 | this.upload_filename.value=''; |
471 | this.upload_filename.disabled = true; | 471 | this.upload_filename.disabled = true; |
472 | this.upload_title.value=''; | 472 | this.upload_title.value=''; |
473 | this.upload_title.disabled = true; | 473 | this.upload_title.disabled = true; |
474 | this.upload_file_preview.src = null; | 474 | this.upload_file_preview.src = null; |
475 | this.upload_file_props.hidden = true; | 475 | this.upload_file_props.hidden = true; |
476 | this.upload_tags.value=''; | 476 | this.upload_tags.value=''; |
477 | this.upload_tags.disabled = true; | 477 | this.upload_tags.disabled = true; |
478 | }, | 478 | }, |
479 | selToProps: function() { | 479 | selToProps: function() { |
480 | if(!this.selection.count) { | 480 | if(!this.selection.count) { |
481 | this.disableProps(); | 481 | this.disableProps(); |
482 | }else if(this.selection.count==1) { | 482 | }else if(this.selection.count==1) { |
483 | var f=this.files[this.selection.currentIndex]; | 483 | var f=this.files[this.selection.currentIndex]; |
484 | if(f==null || f.state!='pending') { | 484 | if(f==null || f.state!='pending') { |
485 | this.disableProps(); | 485 | this.disableProps(); |
486 | }else{ | 486 | }else{ |
487 | this.upload_filename.value = f.file; | 487 | this.upload_filename.value = f.file; |
488 | this.upload_filename.disabled = false; | 488 | this.upload_filename.disabled = false; |
489 | this.upload_title.value = f.title; | 489 | this.upload_title.value = f.title; |
490 | this.upload_title.disabled = false; | 490 | this.upload_title.disabled = false; |
491 | this.upload_file_preview.src = 'file:///'+f.file; | 491 | this.upload_file_preview.src = 'file:///'+f.file; |
492 | this.upload_file_props.hidden = false; | 492 | this.upload_file_props.hidden = false; |
493 | this.upload_tags.value = f.tags; | 493 | this.upload_tags.value = f.tags; |
494 | this.upload_tags.disabled = false; | 494 | this.upload_tags.disabled = false; |
495 | } | 495 | } |
496 | }else{ | 496 | }else{ |
497 | var ftitle = null; var onetitle = true; | 497 | var ftitle = null; var onetitle = true; |
498 | var ftags = null; var onetag = true; | 498 | var ftags = null; var onetag = true; |
499 | var fs = 0; | 499 | var fs = 0; |
500 | for(var ff in this.files) { | 500 | for(var ff in this.files) { |
501 | if(this.selection.isSelected(ff) && this.files[ff].state=='pending' ) { | 501 | if(this.selection.isSelected(ff) && this.files[ff].state=='pending' ) { |
502 | ++fs; | 502 | ++fs; |
503 | if(ftitle==null) { | 503 | if(ftitle==null) { |
504 | ftitle = this.files[ff].title; | 504 | ftitle = this.files[ff].title; |
505 | }else if(ftitle!=this.files[ff].title) { | 505 | }else if(ftitle!=this.files[ff].title) { |
506 | onetitle = false; | 506 | onetitle = false; |
507 | } | 507 | } |
508 | if(ftags==null) { | 508 | if(ftags==null) { |
509 | ftags = this.files[ff].tags; | 509 | ftags = this.files[ff].tags; |
510 | }else if(ftags!=this.files[ff].tags) { | 510 | }else if(ftags!=this.files[ff].tags) { |
511 | onetag = false; | 511 | onetag = false; |
512 | } | 512 | } |
513 | } | 513 | } |
514 | } | 514 | } |
515 | if(fs) { | 515 | if(fs) { |
516 | this.upload_filename.value=''; | 516 | this.upload_filename.value=''; |
517 | this.upload_filename.disabled = true; | 517 | this.upload_filename.disabled = true; |
518 | if(onetitle) | 518 | if(onetitle) |
519 | this.upload_title.value = ftitle; | 519 | this.upload_title.value = ftitle; |
520 | this.upload_title.disabled = false; | 520 | this.upload_title.disabled = false; |
521 | if(onetag) | 521 | if(onetag) |
522 | this.upload_tags.value = ftags; | 522 | this.upload_tags.value = ftags; |
523 | this.upload_tags.disabled = false; | 523 | this.upload_tags.disabled = false; |
524 | this.upload_file_preview.src = null; | 524 | this.upload_file_preview.src = null; |
525 | this.upload_file_props.hidden = false; | 525 | this.upload_file_props.hidden = false; |
526 | }else | 526 | }else |
527 | this.disableProps(); | 527 | this.disableProps(); |
528 | } | 528 | } |
529 | }, | 529 | }, |
530 | propsToSel: function(prop) { | 530 | propsToSel: function(prop) { |
531 | if(this.selection.count<=0) return; | 531 | if(this.selection.count<=0) return; |
532 | for(var ff in this.files) { | 532 | for(var ff in this.files) { |
533 | if(this.selection.isSelected(ff) && this.files[ff].state=='pending') { | 533 | if(this.selection.isSelected(ff) && this.files[ff].state=='pending') { |
534 | if(prop=='filename') | 534 | if(prop=='filename') |
535 | this.files[ff].file = this.upload_filename.value; | 535 | this.files[ff].file = this.upload_filename.value; |
536 | if(prop=='title') | 536 | if(prop=='title') |
537 | this.files[ff].title = this.upload_title.value; | 537 | this.files[ff].title = this.upload_title.value; |
538 | if(prop=='tags') | 538 | if(prop=='tags') |
539 | this.files[ff].tags = this.upload_tags.value; | 539 | this.files[ff].tags = this.upload_tags.value; |
540 | this.tree.invalidateRow(ff); | 540 | this.tree.invalidateRow(ff); |
541 | } | 541 | } |
542 | } | 542 | } |
543 | }, | 543 | }, |
544 | 544 | ||
545 | on_upload: function() { | 545 | on_upload: function() { |
546 | this.selToProps(); | 546 | this.selToProps(); |
547 | this.batch_ids = new Array(); | 547 | this.batch_ids = new Array(); |
548 | this.upload_progress.value=0; | 548 | this.upload_progress.value=0; |
549 | this.upload_progress.setAttribute('hidden','false'); | 549 | this.upload_progress.setAttribute('hidden','false'); |
550 | this.upload_worker(); | 550 | this.upload_worker(); |
551 | }, | 551 | }, |
552 | on_clear: function() { | 552 | on_clear: function() { |
553 | this.clear_list(); | 553 | this.clear_list(); |
554 | }, | 554 | }, |
555 | on_remove: function() { | 555 | on_remove: function() { |
556 | if(this.selection.count) { | 556 | if(this.selection.count) { |
557 | this.tree.beginUpdateBatch(); | 557 | this.tree.beginUpdateBatch(); |
558 | for(var i=this.files.length-1;i>=0;--i) { | 558 | for(var i=this.files.length-1;i>=0;--i) { |
559 | if(this.selection.isSelected(i)) { | 559 | if(this.selection.isSelected(i)) { |
560 | this.files.splice(i,1); | 560 | this.files.splice(i,1); |
561 | this.rowCount--; | 561 | this.rowCount--; |
562 | } | 562 | } |
563 | } | 563 | } |
564 | this.tree.endUpdateBatch(); | 564 | this.tree.endUpdateBatch(); |
565 | this.selection.clearSelection(); | 565 | this.selection.clearSelection(); |
566 | } | 566 | } |
567 | }, | 567 | }, |
568 | on_add: function() { | 568 | on_add: function() { |
569 | var ifp = Components.interfaces.nsIFilePicker; | 569 | var ifp = Components.interfaces.nsIFilePicker; |
570 | var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(ifp); | 570 | var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(ifp); |
571 | fp.init(window, "Select a File", ifp.modeOpenMultiple); | 571 | fp.init(window, "Select a File", ifp.modeOpenMultiple); |
572 | fp.appendFilters(ifp.filterImages); | 572 | fp.appendFilters(ifp.filterImages); |
573 | var rv = fp.show(); | 573 | var rv = fp.show(); |
574 | if(rv==ifp.returnOK) { | 574 | if(rv==ifp.returnOK) { |
575 | var ff = fp.files; | 575 | var ff = fp.files; |
576 | while(ff.hasMoreElements()) { | 576 | while(ff.hasMoreElements()) { |
577 | var f = ff.getNext(); | 577 | var f = ff.getNext(); |
578 | f.QueryInterface(Components.interfaces.nsIFile); | 578 | f.QueryInterface(Components.interfaces.nsIFile); |
579 | this.add(f.path); | 579 | this.add(f.path); |
580 | } | 580 | } |
581 | } | 581 | } |
582 | } | 582 | } |
583 | }, | 583 | }, |
584 | 584 | ||
585 | on_set_props: function() { | 585 | on_set_props: function() { |
586 | var pset = this.photosets.sets[this.photosets.selection.currentIndex]; | 586 | var pset = this.photosets.sets[this.photosets.selection.currentIndex]; |
587 | window.openDialog( | 587 | window.openDialog( |
588 | "chrome://fireflix/content/photoset-props.xul", | 588 | "chrome://fireflix/content/photoset-props.xul", |
589 | null, "dependent,modal,dialog,chrome", this, | 589 | null, "dependent,modal,dialog,chrome", this, |
590 | pset ); | 590 | pset ); |
591 | if(pset.dirty) { | 591 | if(pset.dirty) { |
592 | var _this = this; | 592 | var _this = this; |
593 | this.flickr.api_call( | 593 | this.flickr.api_call( |
594 | { | 594 | { |
595 | method: 'flickr.photosets.editMeta', | 595 | method: 'flickr.photosets.editMeta', |
596 | auth_token: 'default', | 596 | auth_token: 'default', |
597 | photoset_id: pset.id, | 597 | photoset_id: pset.id, |
598 | title: pset.title, | 598 | title: pset.title, |
599 | description: pset.description | 599 | description: pset.description |
600 | }, function(xr) { | 600 | }, function(xr) { |
601 | pset.dirty = false; | 601 | pset.dirty = false; |
602 | _this.flickr.api_call( | 602 | _this.flickr.api_call( |
603 | { | 603 | { |
604 | method: 'flickr.photosets.getPhotos', | 604 | method: 'flickr.photosets.getPhotos', |
605 | auth_token: 'default', | 605 | auth_token: 'default', |
606 | photoset_id: pset.id | 606 | photoset_id: pset.id |
607 | }, function(xr) { | 607 | }, function(xr) { |
608 | var x = xr.responseXML; | 608 | var x = xr.responseXML; |
609 | var xp = x.evaluate( | 609 | var xp = x.evaluate( |
610 | '/rsp/photoset/photo', x, null, | 610 | '/rsp/photoset/photo', x, null, |
611 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); | 611 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); |
612 | var phids = new Array(); | 612 | var phids = new Array(); |
613 | var priph = null; | 613 | var priph = null; |
614 | var n; while(n=xp.iterateNext()) { | 614 | var n; while(n=xp.iterateNext()) { |
615 | var pid = n.getAttribute('id'); | 615 | var pid = n.getAttribute('id'); |
616 | phids.push( pid ); | 616 | phids.push( pid ); |
617 | if(pid==pset.primary && n.getAttribute('isprimary')!='1') | 617 | if(pid==pset.primary && n.getAttribute('isprimary')!='1') |
618 | priph = pid; | 618 | priph = pid; |
619 | } | 619 | } |
620 | if(priph) { | 620 | if(priph) { |
621 | _this.flickr.api_call( | 621 | _this.flickr.api_call( |
622 | { | 622 | { |
623 | method: 'flickr.photosets.editPhotos', | 623 | method: 'flickr.photosets.editPhotos', |
624 | auth_token: 'default', | 624 | auth_token: 'default', |
625 | photoset_id: pset.id, | 625 | photoset_id: pset.id, |
626 | primary_photo_id: priph, | 626 | primary_photo_id: priph, |
627 | photo_ids: phids.join(',') | 627 | photo_ids: phids.join(',') |
628 | }, function() { }, function(x,s,c,m) { /* flickr.photosets.editPhotos */ | 628 | }, function() { }, function(x,s,c,m) { /* flickr.photosets.editPhotos */ |
629 | _this.flickr_failure(x,s,c,m); | 629 | _this.flickr_failure(x,s,c,m); |
630 | } | 630 | } |
631 | ); | 631 | ); |
632 | } | 632 | } |
633 | }, function(x,s,c,m) { /* flickr.photosets.getPhotos */ | 633 | }, function(x,s,c,m) { /* flickr.photosets.getPhotos */ |
634 | _this.flickr_failure(x,s,c,m); | 634 | _this.flickr_failure(x,s,c,m); |
635 | } | 635 | } |
636 | ); | 636 | ); |
637 | }, function(x,s,c,m) { /* flickr.photosets.editMeta */ | 637 | }, function(x,s,c,m) { /* flickr.photosets.editMeta */ |
638 | _this.flickr_failure(x,s,c,m); | 638 | _this.flickr_failure(x,s,c,m); |
639 | } | 639 | } |
640 | ); | 640 | ); |
641 | } | 641 | } |
642 | }, | 642 | }, |
643 | on_refresh_sets: function() { | 643 | on_refresh_sets: function() { |
644 | this.refresh_sets(); | 644 | this.refresh_sets(); |
645 | }, | 645 | }, |
646 | on_cmd_sets_html: function(csfx,ev) { | 646 | on_cmd_sets_html: function(csfx,ev) { |
647 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); | 647 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); |
648 | var rv = this.build_html(this.photoset.photos,uti,utl); | 648 | var rv = this.build_html(this.photoset.photos,uti,utl); |
649 | this.popup_content(rv); | 649 | this.popup_content(rv); |
650 | }, | 650 | }, |
651 | 651 | ||
652 | on_cmd_uploads_html: function(csfx,ev) { | 652 | on_cmd_uploads_html: function(csfx,ev) { |
653 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); | 653 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); |
654 | var pids = new Array(); | 654 | var pids = new Array(); |
655 | for(var f in this.uploads.files) { | 655 | for(var f in this.uploads.files) { |
656 | if(this.uploads.selection.isSelected(f)) | 656 | if(this.uploads.selection.isSelected(f)) |
657 | if(this.uploads.files[f].photoid) | 657 | if(this.uploads.files[f].photoid) |
658 | pids.push(this.uploads.files[f].photoid); | 658 | pids.push(this.uploads.files[f].photoid); |
659 | } | 659 | } |
660 | var pp = this.uploads.rowCount*2; if(pp>500) pp = 500; | 660 | var pp = this.uploads.rowCount*2; if(pp>500) pp = 500; |
661 | var _this = this; | 661 | var _this = this; |
662 | this.flickr.api_call( | 662 | this.flickr.api_call( |
663 | { | 663 | { |
664 | method: 'flickr.photos.search', | 664 | method: 'flickr.photos.search', |
665 | auth_token: 'default', | 665 | auth_token: 'default', |
666 | extras: 'original_format', | 666 | extras: 'original_format', |
667 | user_id: 'me', | 667 | user_id: 'me', |
668 | per_page: pp | 668 | per_page: pp |
669 | }, | 669 | }, |
670 | function(xr) { | 670 | function(xr) { |
671 | var x = xr.responseXML; | 671 | var x = xr.responseXML; |
672 | var rv = ''; | 672 | var rv = ''; |
673 | for(var pn in pids) { | 673 | for(var pn in pids) { |
674 | var p = pids[pn]; | 674 | var p = pids[pn]; |
675 | var pp = new Photo(xp_node('/rsp/photos/photo[@id='+p+']',x)); | 675 | var pp = new Photo(xp_node('/rsp/photos/photo[@id='+p+']',x)); |
676 | rv += _this.photo_html(pp,uti,utl)+'\n'; | 676 | rv += _this.photo_html(pp,uti,utl)+'\n'; |
677 | } | 677 | } |
678 | _this.popup_content(rv); | 678 | _this.popup_content(rv); |
679 | }, function(x,s,c,m) { | 679 | }, function(x,s,c,m) { |
680 | _this.flickr_failure(x,s,c,m); | 680 | _this.flickr_failure(x,s,c,m); |
681 | } | 681 | } |
682 | ); | 682 | ); |
683 | }, | 683 | }, |
684 | 684 | ||
685 | /* | 685 | /* |
686 | * | 686 | * |
687 | */ | 687 | */ |
688 | foundphotos: { | 688 | foundphotos: { |
689 | fireflix: null, | 689 | fireflix: null, |
690 | init: function(f) { | 690 | init: function(f) { |
691 | this.fireflix = f; | 691 | this.fireflix = f; |
692 | pull_elements(this,document,[ | 692 | pull_elements(this,document,[ |
693 | 'search_for','search_tags','search_mine', | 693 | 'search_for','search_tags','search_mine', |
694 | 'searchresult_props','search_photo', | 694 | 'searchresult_props','search_photo', |
695 | 'searchresult_title','searchresult_description', | 695 | 'searchresult_title','searchresult_description', |
696 | 'search_page','cmd_search_prev_page','cmd_search_next_page' | 696 | 'search_page','cmd_search_prev_page','cmd_search_next_page' |
697 | ]); | 697 | ]); |
698 | document.getElementById('searchresults').view = this; | 698 | document.getElementById('searchresults').view = this; |
699 | }, | 699 | }, |
700 | photos: new Array(), | 700 | photos: new Array(), |
701 | rowCount: 0, | 701 | rowCount: 0, |
702 | getCellText: function(r,c) { | 702 | getCellText: function(r,c) { |
703 | var p = this.photos[r]; | 703 | var p = this.photos[r]; |
704 | if(c.id=='sr_title') return p.title; | 704 | if(c.id=='sr_title') return p.title; |
705 | return c.id; | 705 | return c.id; |
706 | }, | 706 | }, |
707 | setTree: function(t) { this.tree = t }, | 707 | setTree: function(t) { this.tree = t }, |
708 | isContainer: function(r) { return false }, | 708 | isContainer: function(r) { return false }, |
709 | isSeparator: function(r) { return false }, | 709 | isSeparator: function(r) { return false }, |
710 | isSorted: function(r) { return false }, | 710 | isSorted: function(r) { return false }, |
711 | getLevel: function(r) { return 0 }, | 711 | getLevel: function(r) { return 0 }, |
712 | getImageSrc: function(r,c) { return null }, | 712 | getImageSrc: function(r,c) { return null }, |
713 | getRowProperties: function(r,p) { }, | 713 | getRowProperties: function(r,p) { }, |
714 | getCellProperties: function(cid,cel,p) { }, | 714 | getCellProperties: function(cid,cel,p) { }, |
715 | getColumnProperties: function(cid,cel,p) { }, | 715 | getColumnProperties: function(cid,cel,p) { }, |
716 | cycleHeader: function(cid,e) { }, | 716 | cycleHeader: function(cid,e) { }, |
717 | getParentIndex: function(r) { return -1 }, | 717 | getParentIndex: function(r) { return -1 }, |
718 | drop: function(r,o) { }, | 718 | drop: function(r,o) { }, |
719 | canDropBeforeAfter: function(r,b) { return false }, | 719 | canDropBeforeAfter: function(r,b) { return false }, |
720 | 720 | ||
721 | importXPR: function(xp) { | 721 | importXPR: function(xp) { |
722 | this.selection.clearSelection(); | 722 | this.selection.clearSelection(); |
723 | this.selection.currentIndex = -1; | 723 | this.selection.currentIndex = -1; |
724 | this.searchresult_props.hidden = true; | 724 | this.searchresult_props.hidden = true; |
725 | this.tree.beginUpdateBatch(); | 725 | this.tree.beginUpdateBatch(); |
726 | this.photos = new Array(); | 726 | this.photos = new Array(); |
727 | var n; while(n=xp.iterateNext()) { | 727 | var n; while(n=xp.iterateNext()) { |
728 | this.photos.push(new Photo(n)); | 728 | this.photos.push(new Photo(n)); |
729 | } | 729 | } |
730 | this.rowCount = this.photos.length; | 730 | this.rowCount = this.photos.length; |
731 | this.tree.endUpdateBatch(); | 731 | this.tree.endUpdateBatch(); |
732 | }, | 732 | }, |
733 | paging: { | 733 | paging: { |
734 | pars: null, | 734 | pars: null, |
735 | page: null, pages: null, perpage: null, total: null | 735 | page: null, pages: null, perpage: null, total: null |
736 | }, | 736 | }, |
737 | search_photos: function() { | 737 | search_photos: function() { |
738 | var pars = { | 738 | var pars = { |
739 | method: 'flickr.photos.search', | 739 | method: 'flickr.photos.search', |
740 | auth_token: 'default', | 740 | auth_token: 'default', |
741 | extras: 'license,date_upload,date_taken,owner_name,icon_server,original_format,last_update,geo' | 741 | extras: 'license,date_upload,date_taken,owner_name,icon_server,original_format,last_update,geo' |
742 | }; | 742 | }; |
743 | if(this.search_mine.checked) | 743 | if(this.search_mine.checked) |
744 | pars.user_id='me'; | 744 | pars.user_id='me'; |
745 | if(this.search_tags.checked) { | 745 | if(this.search_tags.checked) { |
746 | pars.tags=this.search_for.value.split(/ +/).join(','); | 746 | pars.tags=this.search_for.value.split(/ +/).join(','); |
747 | }else{ | 747 | }else{ |
748 | pars.text=this.search_for.value; | 748 | pars.text=this.search_for.value; |
749 | } | 749 | } |
750 | this.paging.pars = new Object(); | 750 | this.paging.pars = new Object(); |
751 | this.paging.page = null; this.paging.pages = null; | 751 | this.paging.page = null; this.paging.pages = null; |
752 | this.paging.perpage = null; this.paging.total = null; | 752 | this.paging.perpage = null; this.paging.total = null; |
753 | for(var p in pars) this.paging.pars[p] = pars[p]; | 753 | for(var p in pars) this.paging.pars[p] = pars[p]; |
754 | this.perform_search(pars); | 754 | this.perform_search(pars); |
755 | }, | 755 | }, |
756 | perform_search: function(p) { | 756 | perform_search: function(p) { |
757 | var _this = this; | 757 | var _this = this; |
758 | this.fireflix.flickr.api_call( p, | 758 | this.fireflix.flickr.api_call( p, |
759 | function(xr) { | 759 | function(xr) { |
760 | var x = xr.responseXML; | 760 | var x = xr.responseXML; |
761 | var xp = xp_nodes('/rsp/photos/photo',x); | 761 | var xp = xp_nodes('/rsp/photos/photo',x); |
762 | _this.importXPR(xp); | 762 | _this.importXPR(xp); |
763 | _this.tree.ensureRowIsVisible(0); | 763 | _this.tree.ensureRowIsVisible(0); |
764 | xp = xp_node('/rsp/photos',x); | 764 | xp = xp_node('/rsp/photos',x); |
765 | _this.paging.page = parseInt(xp.getAttribute('page')); | 765 | _this.paging.page = parseInt(xp.getAttribute('page')); |
766 | _this.paging.pages = parseInt(xp.getAttribute('pages')); | 766 | _this.paging.pages = parseInt(xp.getAttribute('pages')); |
767 | _this.paging.perpage = parseInt(xp.getAttribute('perpage')); | 767 | _this.paging.perpage = parseInt(xp.getAttribute('perpage')); |
768 | _this.paging.total = parseInt(xp.getAttribute('total')); | 768 | _this.paging.total = parseInt(xp.getAttribute('total')); |
769 | _this.update_paging(); | 769 | _this.update_paging(); |
770 | _this.on_select(); | 770 | _this.on_select(); |
771 | }, function(x,s,c,m) { | 771 | }, function(x,s,c,m) { |
772 | _this.fireflix.flickr_failure(x,s,c,m); | 772 | _this.fireflix.flickr_failure(x,s,c,m); |
773 | } | 773 | } |
774 | ); | 774 | ); |
775 | }, | 775 | }, |
776 | on_cmd_prev: function(ev) { | 776 | on_cmd_prev: function(ev) { |
777 | var pars = new Object(); | 777 | var pars = new Object(); |
778 | for(var p in this.paging.pars) pars[p] = this.paging.pars[p]; | 778 | for(var p in this.paging.pars) pars[p] = this.paging.pars[p]; |
779 | pars.page=this.paging.page-1; pars.per_page=this.paging.perpage; | 779 | pars.page=this.paging.page-1; pars.per_page=this.paging.perpage; |
780 | this.perform_search(pars); | 780 | this.perform_search(pars); |
781 | }, | 781 | }, |
782 | on_cmd_next: function(ev) { | 782 | on_cmd_next: function(ev) { |
783 | var pars = new Object(); | 783 | var pars = new Object(); |
784 | for(var p in this.paging.pars) pars[p] = this.paging.pars[p]; | 784 | for(var p in this.paging.pars) pars[p] = this.paging.pars[p]; |
785 | pars.page=this.paging.page+1; pars.per_page=this.paging.perpage; | 785 | pars.page=this.paging.page+1; pars.per_page=this.paging.perpage; |
786 | this.perform_search(pars); | 786 | this.perform_search(pars); |
787 | }, | 787 | }, |
788 | update_paging: function() { | 788 | update_paging: function() { |
789 | if(! (this.paging.pars && this.paging.page && this.paging.pages) ) { | 789 | if(! (this.paging.pars && this.paging.page && this.paging.pages) ) { |
790 | this.search_page.value=''; this.search_page.hidden = true; | 790 | this.search_page.value=''; this.search_page.hidden = true; |
791 | this.cmd_search_prev_page.setAttribute('disabled','true'); | 791 | this.cmd_search_prev_page.setAttribute('disabled','true'); |
792 | this.cmd_search_next_page.setAttribute('disabled','true'); | 792 | this.cmd_search_next_page.setAttribute('disabled','true'); |
793 | }else{ | 793 | }else{ |
794 | this.search_page.value=this.fireflix.loc_strings.getFormattedString('search_page',[this.paging.page,this.paging.pages]); | 794 | this.search_page.value=this.fireflix.loc_strings.getFormattedString('search_page',[this.paging.page,this.paging.pages]); |
795 | this.search_page.hidden=false; | 795 | this.search_page.hidden=false; |
796 | this.cmd_search_prev_page.setAttribute('disabled',(this.paging.page>1)?'false':'true'); | 796 | this.cmd_search_prev_page.setAttribute('disabled',(this.paging.page>1)?'false':'true'); |
797 | this.cmd_search_next_page.setAttribute('disabled',(this.paging.page<this.paging.pages)?'false':'true'); | 797 | this.cmd_search_next_page.setAttribute('disabled',(this.paging.page<this.paging.pages)?'false':'true'); |
798 | } | 798 | } |
799 | }, | 799 | }, |
800 | render_description_frame: function(content) { | 800 | render_description_frame: function(content) { |
801 | if(!content) { | 801 | this.searchresult_description.innerHTML = ''; |
802 | this.searchresult_description.innerHTML = ''; | 802 | if(content) { |
803 | }else{ | 803 | var dp = new DOMParser(); |
804 | this.searchresult_description.innerHTML = content?content:''; | 804 | var pd = dp.parseFromString( |
805 | '<div xmlns="http://www.w3.org/1999/xhtml">'+content+'</div>', 'text/xml' ); | ||
806 | var de = pd.documentElement; | ||
807 | if(de.tagName=='parsererror') | ||
808 | this.searchresult_description.innerHTML=this.fireflix.loc_strings.getString('broken_description'); | ||
809 | else | ||
810 | this.searchresult_description.appendChild(de); | ||
805 | /* of all linking elements flickr only allows a */ | 811 | /* of all linking elements flickr only allows a */ |
806 | var as = this.searchresult_description.getElementsByTagName('a'); | 812 | var as = this.searchresult_description.getElementsByTagName('a'); |
807 | for(var a=0;a<as.length;++a) | 813 | for(var a=0;a<as.length;++a) |
808 | as.item(a).setAttribute('target','_blank'); | 814 | as.item(a).setAttribute('target','_blank'); |
809 | } | 815 | } |
810 | }, | 816 | }, |
811 | on_select: function() { | 817 | on_select: function() { |
812 | if(this.selection.currentIndex<0) { | 818 | if(this.selection.currentIndex<0) { |
813 | this.searchresult_props.hidden = true; | 819 | this.searchresult_props.hidden = true; |
814 | }else{ | 820 | }else{ |
815 | var p = this.photos[this.selection.currentIndex]; | 821 | var p = this.photos[this.selection.currentIndex]; |
816 | if(!p) { | 822 | if(!p) { |
817 | this.searchresult_props.hidden = true; | 823 | this.searchresult_props.hidden = true; |
818 | }else{ | 824 | }else{ |
819 | this.search_photo.src = this.fireflix.flickr.make_photo_url(p,'t'); | 825 | this.search_photo.src = this.fireflix.flickr.make_photo_url(p,'t'); |
820 | this.searchresult_title.value = p.title; | 826 | this.searchresult_title.value = p.title; |
821 | this.searchresult_title.tooltipText = p.title; | 827 | this.searchresult_title.tooltipText = p.title; |
822 | this.render_description_frame(null); | 828 | this.render_description_frame(null); |
823 | if(p.description==null && p.description==undefined) { | 829 | if(p.description==null && p.description==undefined) { |
824 | var pid = p.id; | 830 | var pid = p.id; |
825 | var ci = this.selection.currentIndex; | 831 | var ci = this.selection.currentIndex; |
826 | var _this = this; | 832 | var _this = this; |
827 | this.fireflix.flickr.api_call( | 833 | this.fireflix.flickr.api_call( |
828 | { | 834 | { |
829 | method: 'flickr.photos.getInfo', | 835 | method: 'flickr.photos.getInfo', |
830 | auth_token: 'default', | 836 | auth_token: 'default', |
831 | photo_id: p.id, | 837 | photo_id: p.id, |
832 | secret: p.secret | 838 | secret: p.secret |
833 | }, function(xr) { | 839 | }, function(xr) { |
834 | var pp = _this.photos[ci]; | 840 | var pp = _this.photos[ci]; |
835 | if(ci==_this.selection.currentIndex && pp.id==pid) { | 841 | if(ci==_this.selection.currentIndex && pp.id==pid) { |
836 | var n = xp_node('/rsp/photo',xr.responseXML); | 842 | var n = xp_node('/rsp/photo',xr.responseXML); |
837 | pp.fromNode_(n); | 843 | pp.fromNode_(n); |
838 | _this.render_description_frame(pp.description); | 844 | _this.render_description_frame(pp.description); |
839 | } | 845 | } |
840 | }, function(x,s,c,m) { | 846 | }, function(x,s,c,m) { |
841 | _this.fireflix.flickr_failure(x,s,c,m); | 847 | _this.fireflix.flickr_failure(x,s,c,m); |
842 | } | 848 | } |
843 | ); | 849 | ); |
844 | this.searchresult_props.hidden = false; | 850 | this.searchresult_props.hidden = false; |
845 | }else{ | 851 | }else{ |
846 | this.render_description_frame(p.description); | 852 | this.render_description_frame(p.description); |
847 | } | 853 | } |
848 | } | 854 | } |
849 | } | 855 | } |
850 | }, | 856 | }, |
851 | on_cmd_open: function(ev) { | 857 | on_cmd_open: function(ev) { |
852 | if(this.selection.currentIndex<0) | 858 | if(this.selection.currentIndex<0) |
853 | return; | 859 | return; |
854 | var p = this.photos[this.selection.currentIndex]; | 860 | var p = this.photos[this.selection.currentIndex]; |
855 | if(!p.id) | 861 | if(!p.id) |
856 | return; | 862 | return; |
857 | this.fireflix.openTab(this.fireflix.flickr.make_photo_url(p,'p')); | 863 | this.fireflix.openTab(this.fireflix.flickr.make_photo_url(p,'p')); |
858 | } | 864 | } |
859 | }, | 865 | }, |
860 | 866 | ||
861 | photo_html: function(p,i,l) { | 867 | photo_html: function(p,i,l) { |
862 | // TODO: add alt/title when possible | 868 | // TODO: add alt/title when possible |
863 | var rv = | 869 | var rv = |
864 | '<a href="'+this.flickr.make_photo_url(p,l)+'">' + | 870 | '<a href="'+this.flickr.make_photo_url(p,l)+'">' + |
865 | '<img src="'+this.flickr.make_photo_url(p,i)+'" />'+ | 871 | '<img src="'+this.flickr.make_photo_url(p,i)+'" />'+ |
866 | '</a>'; | 872 | '</a>'; |
867 | return rv; | 873 | return rv; |
868 | }, | 874 | }, |
869 | build_html: function(photos,uti,utl) { | 875 | build_html: function(photos,uti,utl) { |
870 | var rv = ''; | 876 | var rv = ''; |
871 | for(var i in photos) { | 877 | for(var i in photos) { |
872 | var p = photos[i]; | 878 | var p = photos[i]; |
873 | rv += this.photo_html(p,utl,uti)+'\n'; | 879 | rv += this.photo_html(p,utl,uti)+'\n'; |
874 | } | 880 | } |
875 | return rv; | 881 | return rv; |
876 | }, | 882 | }, |
877 | 883 | ||
878 | popup_content: function(s) { | 884 | popup_content: function(s) { |
879 | window.openDialog( | 885 | window.openDialog( |
880 | "chrome://fireflix/content/generated-content.xul", | 886 | "chrome://fireflix/content/generated-content.xul", |
881 | null, "dialog,chrome", this, s ); | 887 | null, "dialog,chrome", this, s ); |
882 | }, | 888 | }, |
883 | copy_to_clipboard: function(s) { | 889 | copy_to_clipboard: function(s) { |
884 | var ch = Components.classes["@mozilla.org/widget/clipboardhelper;1"] | 890 | var ch = Components.classes["@mozilla.org/widget/clipboardhelper;1"] |
885 | .getService(Components.interfaces.nsIClipboardHelper); | 891 | .getService(Components.interfaces.nsIClipboardHelper); |
886 | ch.copyString(s); | 892 | ch.copyString(s); |
887 | }, | 893 | }, |
888 | openTab: function(l) { | 894 | openTab: function(l) { |
889 | var wm = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService( | 895 | var wm = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService( |
890 | Components.interfaces.nsIWindowMediator ); | 896 | Components.interfaces.nsIWindowMediator ); |
891 | var bw = wm.getMostRecentWindow('navigator:browser'); | 897 | var bw = wm.getMostRecentWindow('navigator:browser'); |
892 | var b = bw.getBrowser(); | 898 | var b = bw.getBrowser(); |
893 | var t = b.addTab(l); | 899 | var t = b.addTab(l); |
894 | b.selectedTab = t; | 900 | b.selectedTab = t; |
895 | }, | 901 | }, |
896 | 902 | ||
897 | build_menus: function() { | 903 | build_menus: function() { |
898 | this.append_html_menu( | 904 | this.append_html_menu( |
899 | document.getElementById('sets_html_menu'), | 905 | document.getElementById('sets_html_menu'), |
900 | 'stm_','m_bop','cmdset_sets','cmd_sets_html' | 906 | 'stm_','m_bop','cmdset_sets','cmd_sets_html' |
901 | ); | 907 | ); |
902 | this.append_html_menu( | 908 | this.append_html_menu( |
903 | document.getElementById('uploads_html_menu'), | 909 | document.getElementById('uploads_html_menu'), |
904 | 'stm_','m_bop','cmdset_uploads','cmd_uploads_html' | 910 | 'stm_','m_bop','cmdset_uploads','cmd_uploads_html' |
905 | ); | 911 | ); |
906 | return; | 912 | return; |
907 | }, | 913 | }, |
908 | append_html_menu: function(m,imgt,lnkt,csid,cpfx) { | 914 | append_html_menu: function(m,imgt,lnkt,csid,cpfx) { |
909 | var mp = m.appendChild(document.createElement('menupopup')); | 915 | var mp = m.appendChild(document.createElement('menupopup')); |
910 | var t; | 916 | var t; |
911 | t=mp.appendChild(document.createElement('menuitem')); | 917 | t=mp.appendChild(document.createElement('menuitem')); |
912 | t.setAttribute('label',this.loc_strings.getString('menutitle_Images')); | 918 | t.setAttribute('label',this.loc_strings.getString('menutitle_Images')); |
913 | t.setAttribute('class','menuhead');t.setAttribute('disabled','true'); | 919 | t.setAttribute('class','menuhead');t.setAttribute('disabled','true'); |
914 | mp.appendChild(document.createElement('menuseparator')); | 920 | mp.appendChild(document.createElement('menuseparator')); |
915 | var cs = document.getElementById(csid); | 921 | var cs = document.getElementById(csid); |
916 | for(var iti=0;iti<imgt.length;++iti) { | 922 | for(var iti=0;iti<imgt.length;++iti) { |
917 | t = mp.appendChild(document.createElement('menu')); | 923 | t = mp.appendChild(document.createElement('menu')); |
918 | t.setAttribute('label',this.loc_strings.getString('urltype_'+imgt.charAt(iti))); | 924 | t.setAttribute('label',this.loc_strings.getString('urltype_'+imgt.charAt(iti))); |
919 | var smp = t.appendChild(document.createElement('menupopup')); | 925 | var smp = t.appendChild(document.createElement('menupopup')); |
920 | t=smp.appendChild(document.createElement('menuitem')); | 926 | t=smp.appendChild(document.createElement('menuitem')); |
921 | t.setAttribute('label',this.loc_strings.getString('menutitle_Links')); | 927 | t.setAttribute('label',this.loc_strings.getString('menutitle_Links')); |
922 | t.setAttribute('class','menuhead');t.setAttribute('disabled','true'); | 928 | t.setAttribute('class','menuhead');t.setAttribute('disabled','true'); |
923 | smp.appendChild(document.createElement('menuseparator')); | 929 | smp.appendChild(document.createElement('menuseparator')); |
924 | for(var lti=0;lti<lnkt.length;++lti) { | 930 | for(var lti=0;lti<lnkt.length;++lti) { |
925 | var csfx = imgt.charAt(iti)+lnkt.charAt(lti); | 931 | var csfx = imgt.charAt(iti)+lnkt.charAt(lti); |
926 | t=smp.appendChild(document.createElement('menuitem')); | 932 | t=smp.appendChild(document.createElement('menuitem')); |
927 | t.setAttribute('label',this.loc_strings.getString('urltype_'+lnkt.charAt(lti))); | 933 | t.setAttribute('label',this.loc_strings.getString('urltype_'+lnkt.charAt(lti))); |
928 | t.setAttribute('command',cpfx+'_'+csfx); | 934 | t.setAttribute('command',cpfx+'_'+csfx); |
929 | t=cs.appendChild(document.createElement('command')); | 935 | t=cs.appendChild(document.createElement('command')); |
930 | t.setAttribute('id',cpfx+'_'+csfx); | 936 | t.setAttribute('id',cpfx+'_'+csfx); |
931 | t.setAttribute('oncommand','fireflix.on_'+cpfx+"('"+csfx+"',event)"); | 937 | t.setAttribute('oncommand','fireflix.on_'+cpfx+"('"+csfx+"',event)"); |
932 | } | 938 | } |
933 | } | 939 | } |
934 | return mp; | 940 | return mp; |
935 | }, | 941 | }, |
936 | 942 | ||
937 | flickr_failure: function(x,s,c,m) { | 943 | flickr_failure: function(x,s,c,m) { |
938 | if(c==98) { // Invalid auth token | 944 | if(c==98) { // Invalid auth token |
939 | this.flickr.reset_token(); | 945 | this.flickr.reset_token(); |
940 | this.set_auth_state(false,false); | 946 | this.set_auth_state(false,false); |
941 | return; | 947 | return; |
942 | } | 948 | } |
943 | // TODO: is that beauty? | 949 | // TODO: is that beauty? |
944 | alert('flickr api call failed\n'+c+' '+m); | 950 | alert('flickr api call failed\n'+c+' '+m); |
945 | } | 951 | } |
946 | 952 | ||
947 | }; | 953 | }; |