var zoom = "sm/";
var input_index = -1;
+function endsWith(str, suffix) {
+ return str.indexOf(suffix, str.length - suffix.length) !== -1;
+}
+
+function stripFromEnd(str, suffix) {
+ if (endsWith(str, suffix)) {
+ return str.substr(0, str.length - suffix.length);
+ }
+ return str;
+}
function setpic() {
- if ("exposure" in picinfo[files[input_index]]) {
- exposure = picinfo[files[input_index]].exposure;
+ var display_filename;
+ if (endsWith(files[input_index], ".NEF")) {
+ if ("exposure" in picinfo[files[input_index]]) {
+ exposure = picinfo[files[input_index]].exposure;
+ } else {
+ picinfo[files[input_index]].exposure = exposure;
+ save_picinfo();
+ }
+ display_filename = zoom + exposure + "/" + stripFromEnd(files[input_index], ".NEF") + ".jpeg";
} else {
- picinfo[files[input_index]].exposure = exposure;
- save_picinfo();
+ display_filename = zoom + files[input_index];
}
- $("#pic").attr("src", zoom + exposure + "/" + files[input_index]);
+ $("#pic").attr("src", display_filename);
}
function say(message) {
Mousetrap.bind('z', toggle_zoom);
Mousetrap.bind('Z', function() { $("#pic").toggleClass("fit_view"); });
-Mousetrap.bind('n', function() { move_to_nondeleted(1); });
-Mousetrap.bind('p', function() { move_to_nondeleted(-1); });
-Mousetrap.bind('N', function() { input_index ++; say(input_index); setpic(); });
-Mousetrap.bind('P', function() { input_index --; say(input_index); setpic(); });
-Mousetrap.bind('b', function() { change_exposure(1); });
-Mousetrap.bind('d', function() { change_exposure(-1); });
+Mousetrap.bind(['n', 'l'], function() { move_to_nondeleted(1); });
+Mousetrap.bind(['p', 'h'], function() { move_to_nondeleted(-1); });
+Mousetrap.bind(['N', 'L'], function() { input_index ++; say(input_index); setpic(); });
+Mousetrap.bind(['P', 'H'], function() { input_index --; say(input_index); setpic(); });
+Mousetrap.bind(['b', 'k'], function() { change_exposure(1); });
+Mousetrap.bind(['d', 'j'], function() { change_exposure(-1); });
Mousetrap.bind('x', mark_deleted);
Mousetrap.bind('X', mark_not_deleted);
Mousetrap.bind('c', function() { $("#name").show().focus(); return false; });