summaryrefslogtreecommitdiffabout
path: root/content
Unidiff
Diffstat (limited to 'content') (more/less context) (show whitespace changes)
-rw-r--r--content/fireflix.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/content/fireflix.js b/content/fireflix.js
index 85b4d39..a4f13b6 100644
--- a/content/fireflix.js
+++ b/content/fireflix.js
@@ -80,49 +80,55 @@ var fireflix = {
80 this.flickr.reset_token(); 80 this.flickr.reset_token();
81 this.set_auth_state(false,false); 81 this.set_auth_state(false,false);
82 }, 82 },
83 83
84 refresh_sets: function() { this.photosets.refresh_sets(); }, 84 refresh_sets: function() { this.photosets.refresh_sets(); },
85 refresh_stuff: function() { 85 refresh_stuff: function() {
86 this.refresh_sets(); 86 this.refresh_sets();
87 this.refresh_user_tags(); 87 this.refresh_user_tags();
88 }, 88 },
89 89
90 /* photoset treeview */ 90 /* photoset treeview */
91 photoset: { 91 photoset: {
92 photos: new Array(), 92 photos: new Array(),
93 fireflix: null, 93 fireflix: null,
94 init: function(f) { 94 init: function(f) {
95 this.fireflix = f; 95 this.fireflix = f;
96 pull_elements(this,document,[ 'set_photo' ]); 96 pull_elements(this,document,[ 'set_photo' ]);
97 document.getElementById('setphotos').view = this; 97 document.getElementById('setphotos').view = this;
98 }, 98 },
99 rowCount: 0, 99 rowCount: 0,
100 getCellText: function(r,c) { 100 getCellText: function(r,c) {
101 var p = this.photos[r]; 101 var p = this.photos[r];
102 if(c.id=='sp_title') return p.title; 102 if(c.id=='sp_title') return p.title;
103 if(c.id=='sp_taken') return p.datetaken; 103 if(c.id=='sp_taken') return p.datetaken;
104 if(c.id=='sp_upload') return p.dateupload; /* TODO: unixtime conversion */ 104 if(c.id=='sp_upload') {
105 var du = new Date(p.dateupload*1000);
106 var rv = du.getFullYear()+'-'+(du.getMonth()+1)+'-'+du.getDate()
107 +' '+
108 du.getHours()+':'+du.getMinutes()+':'+du.getSeconds();
109 return rv.replace(/(\D)(\d)(\D)/,'$10$2$3');
110 }
105 return c.id; 111 return c.id;
106 }, 112 },
107 setTree: function(t) { this.tree = t }, 113 setTree: function(t) { this.tree = t },
108 isContainer: function(r) { return false; }, 114 isContainer: function(r) { return false; },
109 isSeparator: function(r) { return false; }, 115 isSeparator: function(r) { return false; },
110 isSorted: function(r) { return false; }, 116 isSorted: function(r) { return false; },
111 getLevel: function(r) { return 0; }, 117 getLevel: function(r) { return 0; },
112 getImageSrc: function(r,c) { return null }, 118 getImageSrc: function(r,c) { return null },
113 getRowProperties: function(r,p) {}, 119 getRowProperties: function(r,p) {},
114 getCellProperties: function(cid,cel,p) {}, 120 getCellProperties: function(cid,cel,p) {},
115 getColumnProperties: function(cid,cel,p) { }, 121 getColumnProperties: function(cid,cel,p) { },
116 cycleHeader: function(cid,e) { }, 122 cycleHeader: function(cid,e) { },
117 getParentIndex: function(r) { return -1; }, 123 getParentIndex: function(r) { return -1; },
118 drop: function(r,o) { }, 124 drop: function(r,o) { },
119 canDropBeforeAfter: function(r,b) { return false }, 125 canDropBeforeAfter: function(r,b) { return false },
120 126
121 importXPR: function(xp) { 127 importXPR: function(xp) {
122 this.tree.beginUpdateBatch(); 128 this.tree.beginUpdateBatch();
123 this.photos = new Array(); 129 this.photos = new Array();
124 var n; while(n=xp.iterateNext()) { 130 var n; while(n=xp.iterateNext()) {
125 this.photos.push(new Photo(n)); 131 this.photos.push(new Photo(n));
126 } 132 }
127 this.rowCount = this.photos.length; 133 this.rowCount = this.photos.length;
128 this.tree.endUpdateBatch(); 134 this.tree.endUpdateBatch();