483c48a5ac749dc8d6ce791a21dea37793ff3736
[bookreader.git] / GnuBook / GnuBook.js
1 /*
2 Copyright(c)2008-2009 Internet Archive. Software license AGPL version 3.
3
4 This file is part of GnuBook.
5
6     GnuBook is free software: you can redistribute it and/or modify
7     it under the terms of the GNU Affero General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     GnuBook is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU Affero General Public License for more details.
15
16     You should have received a copy of the GNU Affero General Public License
17     along with GnuBook.  If not, see <http://www.gnu.org/licenses/>.
18     
19     The GnuBook source is hosted at http://github.com/openlibrary/bookreader/
20
21     archive.org cvs $Revision: 1.2 $ $Date: 2009-06-22 18:42:51 $
22 */
23
24 // GnuBook()
25 //______________________________________________________________________________
26 // After you instantiate this object, you must supply the following
27 // book-specific functions, before calling init():
28 //  - getPageWidth()
29 //  - getPageHeight()
30 //  - getPageURI()
31 // You must also add a numLeafs property before calling init().
32
33 function GnuBook() {
34     this.reduce  = 4;
35     this.padding = 10;
36     this.mode    = 1; //1 or 2
37     this.ui = 'full'; // UI mode
38     
39     this.displayedIndices = []; 
40     //this.indicesToDisplay = [];
41     this.imgs = {};
42     this.prefetchedImgs = {}; //an object with numeric keys cooresponding to page index
43     
44     this.timer     = null;
45     this.animating = false;
46     this.auto      = false;
47     this.autoTimer = null;
48     this.flipSpeed = 'fast';
49
50     this.twoPagePopUp = null;
51     this.leafEdgeTmp  = null;
52     this.embedPopup = null;
53     this.printPopup = null;
54     
55     this.searchTerm = '';
56     this.searchResults = {};
57     
58     this.firstIndex = null;
59     
60     this.lastDisplayableIndex2up = null;
61     
62     // We link to index.php to avoid redirect which breaks back button
63     this.logoURL = 'http://www.archive.org/index.php';
64     
65     // Base URL for images
66     this.imagesBaseURL = '/bookreader/images/';
67     
68     // Mode constants
69     this.constMode1up = 1;
70     this.constMode2up = 2;
71     
72     // Zoom levels
73     this.reductionFactors = [0.5, 1, 2, 4, 8, 16];
74
75     // Object to hold parameters related to 2up mode
76     this.twoPage = {
77         coverInternalPadding: 10, // Width of cover
78         coverExternalPadding: 10, // Padding outside of cover
79         bookSpineDivWidth: 30,    // Width of book spine  $$$ consider sizing based on book length
80         autofit: true
81     };
82     
83     // Background color for pages (e.g. when loading page image)
84     // $$$ TODO dynamically calculate based on page images
85     this.pageDefaultBackgroundColor = 'rgb(234, 226, 205)';
86 };
87
88 // init()
89 //______________________________________________________________________________
90 GnuBook.prototype.init = function() {
91
92     var startIndex = undefined;
93     
94     // Find start index and mode if set in location hash
95     var params = this.paramsFromFragment(window.location.hash);
96         
97     if ('undefined' != typeof(params.index)) {
98         startIndex = params.index;
99     } else if ('undefined' != typeof(params.page)) {
100         startIndex = this.getPageIndex(params.page);
101     }
102     
103     if ('undefined' == typeof(startIndex)) {
104         if ('undefined' != typeof(this.titleLeaf)) {
105             startIndex = this.leafNumToIndex(this.titleLeaf);
106         }
107     }
108     
109     if ('undefined' == typeof(startIndex)) {
110         startIndex = 0;
111     }
112     
113     if ('undefined' != typeof(params.mode)) {
114         this.mode = params.mode;
115     }
116     
117     // Set document title -- may have already been set in enclosing html for
118     // search engine visibility
119     document.title = this.shortTitle(50);
120     
121     // Sanitize parameters
122     if ( !this.canSwitchToMode( this.mode ) ) {
123         this.mode = this.constMode1up;
124     }
125     
126     $("#GnuBook").empty();
127     this.initToolbar(this.mode, this.ui); // Build inside of toolbar div
128     $("#GnuBook").append("<div id='GBcontainer'></div>");
129     $("#GBcontainer").append("<div id='GBpageview'></div>");
130
131     $("#GBcontainer").bind('scroll', this, function(e) {
132         e.data.loadLeafs();
133     });
134
135     this.setupKeyListeners();
136     this.startLocationPolling();
137
138     $(window).bind('resize', this, function(e) {
139         //console.log('resize!');
140         if (1 == e.data.mode) {
141             //console.log('centering 1page view');
142             e.data.centerPageView();
143             $('#GBpageview').empty()
144             e.data.displayedIndices = [];
145             e.data.updateSearchHilites(); //deletes hilights but does not call remove()            
146             e.data.loadLeafs();
147         } else {
148             //console.log('drawing 2 page view');
149             
150             // We only need to prepare again in autofit (size of spread changes)
151             if (e.data.twoPage.autofit) {
152                 e.data.prepareTwoPageView();
153             } else {
154                 // Re-center if the scrollbars have disappeared
155                 var center = e.data.twoPageGetViewCenter();
156                 var doRecenter = false;
157                 if (e.data.twoPage.totalWidth < $('#GBcontainer').attr('clientWidth')) {
158                     center.percentageX = 0.5;
159                     doRecenter = true;
160                 }
161                 if (e.data.twoPage.totalHeight < $('#GBcontainer').attr('clientHeight')) {
162                     center.percentageY = 0.5;
163                     doRecenter = true;
164                 }
165                 if (doRecenter) {
166                     e.data.twoPageCenterView(center.percentageX, center.percentageY);
167                 }
168             }
169         }
170     });
171     
172     $('.GBpagediv1up').bind('mousedown', this, function(e) {
173         // $$$ the purpose of this is to disable selection of the image (makes it turn blue)
174         //     but this also interferes with right-click.  See https://bugs.edge.launchpad.net/gnubook/+bug/362626
175     });
176
177     if (1 == this.mode) {
178         this.resizePageView();
179         this.firstIndex = startIndex;
180         this.jumpToIndex(startIndex);
181     } else {
182         //this.resizePageView();
183         
184         this.displayedIndices=[0];
185         this.firstIndex = startIndex;
186         this.displayedIndices = [this.firstIndex];
187         //console.log('titleLeaf: %d', this.titleLeaf);
188         //console.log('displayedIndices: %s', this.displayedIndices);
189         this.prepareTwoPageView();
190     }
191         
192     // Enact other parts of initial params
193     this.updateFromParams(params);
194 }
195
196 GnuBook.prototype.setupKeyListeners = function() {
197     var self = this;
198     
199     var KEY_PGUP = 33;
200     var KEY_PGDOWN = 34;
201     var KEY_END = 35;
202     var KEY_HOME = 36;
203
204     var KEY_LEFT = 37;
205     var KEY_UP = 38;
206     var KEY_RIGHT = 39;
207     var KEY_DOWN = 40;
208
209     // We use document here instead of window to avoid a bug in jQuery on IE7
210     $(document).keydown(function(e) {
211     
212         // Keyboard navigation        
213         if (!self.keyboardNavigationIsDisabled(e)) {
214             switch(e.keyCode) {
215                 case KEY_PGUP:
216                 case KEY_UP:            
217                     // In 1up mode page scrolling is handled by browser
218                     if (2 == self.mode) {
219                         e.preventDefault();
220                         self.prev();
221                     }
222                     break;
223                 case KEY_DOWN:
224                 case KEY_PGDOWN:
225                     if (2 == self.mode) {
226                         e.preventDefault();
227                         self.next();
228                     }
229                     break;
230                 case KEY_END:
231                     e.preventDefault();
232                     self.last();
233                     break;
234                 case KEY_HOME:
235                     e.preventDefault();
236                     self.first();
237                     break;
238                 case KEY_LEFT:
239                     if (2 == self.mode) {
240                         e.preventDefault();
241                         self.left();
242                     }
243                     break;
244                 case KEY_RIGHT:
245                     if (2 == self.mode) {
246                         e.preventDefault();
247                         self.right();
248                     }
249                     break;
250             }
251         }
252     });
253 }
254
255 // drawLeafs()
256 //______________________________________________________________________________
257 GnuBook.prototype.drawLeafs = function() {
258     if (1 == this.mode) {
259         this.drawLeafsOnePage();
260     } else {
261         this.drawLeafsTwoPage();
262     }
263 }
264
265 // setDragHandler()
266 //______________________________________________________________________________
267 GnuBook.prototype.setDragHandler = function(div) {
268     div.dragging = false;
269
270     $(div).unbind('mousedown').bind('mousedown', function(e) {
271         e.preventDefault();
272         
273         //console.log('mousedown at ' + e.pageY);
274
275         this.dragging = true;
276         this.prevMouseX = e.pageX;
277         this.prevMouseY = e.pageY;
278     
279         var startX    = e.pageX;
280         var startY    = e.pageY;
281         var startTop  = $('#GBcontainer').attr('scrollTop');
282         var startLeft =  $('#GBcontainer').attr('scrollLeft');
283
284     });
285         
286     $(div).unbind('mousemove').bind('mousemove', function(ee) {
287         ee.preventDefault();
288
289         // console.log('mousemove ' + ee.pageX + ',' + ee.pageY);
290         
291         var offsetX = ee.pageX - this.prevMouseX;
292         var offsetY = ee.pageY - this.prevMouseY;
293         
294         if (this.dragging) {
295             $('#GBcontainer').attr('scrollTop', $('#GBcontainer').attr('scrollTop') - offsetY);
296             $('#GBcontainer').attr('scrollLeft', $('#GBcontainer').attr('scrollLeft') - offsetX);
297         }
298         
299         this.prevMouseX = ee.pageX;
300         this.prevMouseY = ee.pageY;
301         
302     });
303     
304     $(div).unbind('mouseup').bind('mouseup', function(ee) {
305         ee.preventDefault();
306         //console.log('mouseup');
307
308         this.dragging = false;
309     });
310     
311     $(div).unbind('mouseleave').bind('mouseleave', function(e) {
312         e.preventDefault();
313         //console.log('mouseleave');
314
315         this.dragging = false;        
316     });
317     
318     $(div).unbind('mouseenter').bind('mouseenter', function(e) {
319         e.preventDefault();
320         //console.log('mouseenter');
321         
322         this.dragging = false;
323     });
324 }
325
326 // setDragHandler2UP()
327 //______________________________________________________________________________
328 GnuBook.prototype.setDragHandler2UP = function(div) {
329     div.dragging = false;
330     
331     $(div).unbind('mousedown').bind('mousedown', function(e) {
332         e.preventDefault();
333         
334         //console.log('mousedown at ' + e.pageY);
335
336         this.dragStart = {x: e.pageX, y: e.pageY };
337         this.mouseDown = true;
338         this.dragging = false; // wait until drag distance
339         this.prevMouseX = e.pageX;
340         this.prevMouseY = e.pageY;
341     
342         var startX    = e.pageX;
343         var startY    = e.pageY;
344         var startTop  = $('#GBcontainer').attr('scrollTop');
345         var startLeft =  $('#GBcontainer').attr('scrollLeft');
346
347     });
348         
349     $(div).unbind('mousemove').bind('mousemove', function(ee) {
350         ee.preventDefault();
351
352         // console.log('mousemove ' + ee.pageX + ',' + ee.pageY);
353         
354         var offsetX = ee.pageX - this.prevMouseX;
355         var offsetY = ee.pageY - this.prevMouseY;
356         
357         var minDragDistance = 5; // $$$ constant
358
359         var distance = Math.max(Math.abs(offsetX), Math.abs(offsetY));
360                 
361         if (this.mouseDown && (distance > minDragDistance)) {
362             //console.log('drag start!');
363             
364             this.dragging = true;
365         }
366         
367         if (this.dragging) {        
368             $('#GBcontainer').attr('scrollTop', $('#GBcontainer').attr('scrollTop') - offsetY);
369             $('#GBcontainer').attr('scrollLeft', $('#GBcontainer').attr('scrollLeft') - offsetX);
370             this.prevMouseX = ee.pageX;
371             this.prevMouseY = ee.pageY;
372         }
373         
374         
375     });
376     
377     /*
378     $(div).unbind('mouseup').bind('mouseup', function(ee) {
379         ee.preventDefault();
380         //console.log('mouseup');
381
382         this.dragging = false;
383         this.mouseDown = false;
384     });
385     */
386     
387     
388     $(div).unbind('mouseleave').bind('mouseleave', function(e) {
389         e.preventDefault();
390         //console.log('mouseleave');
391
392         this.dragging = false;  
393         this.mouseDown = false;
394     });
395     
396     $(div).unbind('mouseenter').bind('mouseenter', function(e) {
397         e.preventDefault();
398         //console.log('mouseenter');
399         
400         this.dragging = false;
401         this.mouseDown = false;
402     });
403 }
404
405 GnuBook.prototype.setClickHandler2UP = function( element, data, handler) {
406     //console.log('setting handler');
407     //console.log(element.tagName);
408     
409     $(element).unbind('click').bind('click', data, function(e) {
410         e.preventDefault();
411         
412         //console.log('click!');
413         
414         if (this.mouseDown && (!this.dragging)) {
415             //console.log('click not dragging!');
416             handler(e);
417         }
418         
419         this.dragging = false;
420         this.mouseDown = false;
421     });
422 }
423
424 // drawLeafsOnePage()
425 //______________________________________________________________________________
426 GnuBook.prototype.drawLeafsOnePage = function() {
427     //alert('drawing leafs!');
428     this.timer = null;
429
430
431     var scrollTop = $('#GBcontainer').attr('scrollTop');
432     var scrollBottom = scrollTop + $('#GBcontainer').height();
433     //console.log('top=' + scrollTop + ' bottom='+scrollBottom);
434     
435     var indicesToDisplay = [];
436     
437     var i;
438     var leafTop = 0;
439     var leafBottom = 0;
440     for (i=0; i<this.numLeafs; i++) {
441         var height  = parseInt(this.getPageHeight(i)/this.reduce); 
442     
443         leafBottom += height;
444         //console.log('leafTop = '+leafTop+ ' pageH = ' + this.pageH[i] + 'leafTop>=scrollTop=' + (leafTop>=scrollTop));
445         var topInView    = (leafTop >= scrollTop) && (leafTop <= scrollBottom);
446         var bottomInView = (leafBottom >= scrollTop) && (leafBottom <= scrollBottom);
447         var middleInView = (leafTop <=scrollTop) && (leafBottom>=scrollBottom);
448         if (topInView | bottomInView | middleInView) {
449             //console.log('displayed: ' + this.displayedIndices);
450             //console.log('to display: ' + i);
451             indicesToDisplay.push(i);
452         }
453         leafTop += height +10;      
454         leafBottom += 10;
455     }
456
457     var firstIndexToDraw  = indicesToDisplay[0];
458     this.firstIndex      = firstIndexToDraw;
459     
460     // Update hash, but only if we're currently displaying a leaf
461     // Hack that fixes #365790
462     if (this.displayedIndices.length > 0) {
463         this.updateLocationHash();
464     }
465
466     if ((0 != firstIndexToDraw) && (1 < this.reduce)) {
467         firstIndexToDraw--;
468         indicesToDisplay.unshift(firstIndexToDraw);
469     }
470     
471     var lastIndexToDraw = indicesToDisplay[indicesToDisplay.length-1];
472     if ( ((this.numLeafs-1) != lastIndexToDraw) && (1 < this.reduce) ) {
473         indicesToDisplay.push(lastIndexToDraw+1);
474     }
475     
476     leafTop = 0;
477     var i;
478     for (i=0; i<firstIndexToDraw; i++) {
479         leafTop += parseInt(this.getPageHeight(i)/this.reduce) +10;
480     }
481
482     //var viewWidth = $('#GBpageview').width(); //includes scroll bar width
483     var viewWidth = $('#GBcontainer').attr('scrollWidth');
484
485
486     for (i=0; i<indicesToDisplay.length; i++) {
487         var index = indicesToDisplay[i];    
488         var height  = parseInt(this.getPageHeight(index)/this.reduce); 
489
490         if(-1 == jQuery.inArray(indicesToDisplay[i], this.displayedIndices)) {            
491             var width   = parseInt(this.getPageWidth(index)/this.reduce); 
492             //console.log("displaying leaf " + indicesToDisplay[i] + ' leafTop=' +leafTop);
493             var div = document.createElement("div");
494             div.className = 'GBpagediv1up';
495             div.id = 'pagediv'+index;
496             div.style.position = "absolute";
497             $(div).css('top', leafTop + 'px');
498             var left = (viewWidth-width)>>1;
499             if (left<0) left = 0;
500             $(div).css('left', left+'px');
501             $(div).css('width', width+'px');
502             $(div).css('height', height+'px');
503             //$(div).text('loading...');
504             
505             this.setDragHandler(div);
506             
507             $('#GBpageview').append(div);
508
509             var img = document.createElement("img");
510             img.src = this.getPageURI(index, this.reduce, 0);
511             $(img).css('width', width+'px');
512             $(img).css('height', height+'px');
513             $(div).append(img);
514
515         } else {
516             //console.log("not displaying " + indicesToDisplay[i] + ' score=' + jQuery.inArray(indicesToDisplay[i], this.displayedIndices));            
517         }
518
519         leafTop += height +10;
520
521     }
522     
523     for (i=0; i<this.displayedIndices.length; i++) {
524         if (-1 == jQuery.inArray(this.displayedIndices[i], indicesToDisplay)) {
525             var index = this.displayedIndices[i];
526             //console.log('Removing leaf ' + index);
527             //console.log('id='+'#pagediv'+index+ ' top = ' +$('#pagediv'+index).css('top'));
528             $('#pagediv'+index).remove();
529         } else {
530             //console.log('NOT Removing leaf ' + this.displayedIndices[i]);
531         }
532     }
533     
534     this.displayedIndices = indicesToDisplay.slice();
535     this.updateSearchHilites();
536     
537     if (null != this.getPageNum(firstIndexToDraw))  {
538         $("#GBpagenum").val(this.getPageNum(this.currentIndex()));
539     } else {
540         $("#GBpagenum").val('');
541     }
542             
543     this.updateToolbarZoom(this.reduce);
544     
545 }
546
547 // drawLeafsTwoPage()
548 //______________________________________________________________________________
549 GnuBook.prototype.drawLeafsTwoPage = function() {
550     var scrollTop = $('#GBtwopageview').attr('scrollTop');
551     var scrollBottom = scrollTop + $('#GBtwopageview').height();
552     
553     // $$$ we should use calculated values in this.twoPage (recalc if necessary)
554     
555     var indexL = this.twoPage.currentIndexL;
556         
557     var heightL  = this.getPageHeight(indexL); 
558     var widthL   = this.getPageWidth(indexL);
559
560     var leafEdgeWidthL = this.leafEdgeWidth(indexL);
561     var leafEdgeWidthR = this.twoPage.edgeWidth - leafEdgeWidthL;
562     //var bookCoverDivWidth = this.twoPage.width*2 + 20 + this.twoPage.edgeWidth; // $$$ hardcoded cover width
563     var bookCoverDivWidth = this.twoPage.bookCoverDivWidth;
564     //console.log(leafEdgeWidthL);
565
566     var middle = this.twoPage.middle; // $$$ getter instead?
567     var top = this.twoPageTop();
568     var bookCoverDivLeft = this.twoPage.bookCoverDivLeft;
569
570     this.twoPage.scaledWL = this.getPageWidth2UP(indexL);
571     this.twoPage.gutter = this.twoPageGutter();
572     
573     this.prefetchImg(indexL);
574     $(this.prefetchedImgs[indexL]).css({
575         position: 'absolute',
576         left: this.twoPage.gutter-this.twoPage.scaledWL+'px',
577         right: '',
578         top:    top+'px',
579         backgroundColor: 'rgb(234, 226, 205)',
580         height: this.twoPage.height +'px', // $$$ height forced the same for both pages
581         width:  this.twoPage.scaledWL + 'px',
582         borderRight: '1px solid black',
583         zIndex: 2
584     }).appendTo('#GBtwopageview');
585     
586     var indexR = this.twoPage.currentIndexR;
587     var heightR  = this.getPageHeight(indexR); 
588     var widthR   = this.getPageWidth(indexR);
589
590     // $$$ should use getwidth2up?
591     //var scaledWR = this.twoPage.height*widthR/heightR;
592     this.twoPage.scaledWR = this.getPageWidth2UP(indexR);
593     this.prefetchImg(indexR);
594     $(this.prefetchedImgs[indexR]).css({
595         position: 'absolute',
596         left:   this.twoPage.gutter+'px',
597         right: '',
598         top:    top+'px',
599         backgroundColor: 'rgb(234, 226, 205)',
600         height: this.twoPage.height + 'px', // $$$ height forced the same for both pages
601         width:  this.twoPage.scaledWR + 'px',
602         borderLeft: '1px solid black',
603         zIndex: 2
604     }).appendTo('#GBtwopageview');
605         
606
607     this.displayedIndices = [this.twoPage.currentIndexL, this.twoPage.currentIndexR];
608     this.setMouseHandlers2UP();
609     this.twoPageSetCursor();
610
611     this.updatePageNumBox2UP();
612     this.updateToolbarZoom(this.reduce);
613     
614     // this.twoPagePlaceFlipAreas();  // No longer used
615
616 }
617
618 // updatePageNumBox2UP
619 //______________________________________________________________________________
620 GnuBook.prototype.updatePageNumBox2UP = function() {
621     if (null != this.getPageNum(this.twoPage.currentIndexL))  {
622         $("#GBpagenum").val(this.getPageNum(this.twoPage.currentIndexL));
623     } else {
624         $("#GBpagenum").val('');
625     }
626     this.updateLocationHash();
627 }
628
629 // loadLeafs()
630 //______________________________________________________________________________
631 GnuBook.prototype.loadLeafs = function() {
632
633
634     var self = this;
635     if (null == this.timer) {
636         this.timer=setTimeout(function(){self.drawLeafs()},250);
637     } else {
638         clearTimeout(this.timer);
639         this.timer=setTimeout(function(){self.drawLeafs()},250);    
640     }
641 }
642
643 // zoom(direction)
644 //
645 // Pass 1 to zoom in, anything else to zoom out
646 //______________________________________________________________________________
647 GnuBook.prototype.zoom = function(direction) {
648     switch (this.mode) {
649         case this.constMode1up:
650             return this.zoom1up(direction);
651         case this.constMode2up:
652             return this.zoom2up(direction);
653     }
654 }
655
656 // zoom1up(dir)
657 //______________________________________________________________________________
658 GnuBook.prototype.zoom1up = function(dir) {
659     if (2 == this.mode) {     //can only zoom in 1-page mode
660         this.switchMode(1);
661         return;
662     }
663     
664     // $$$ with flexible zoom we could "snap" to /2 page reductions
665     //     for better scaling
666     if (1 == dir) {
667         if (this.reduce <= 0.5) return;
668         this.reduce*=0.5;           //zoom in
669     } else {
670         if (this.reduce >= 8) return;
671         this.reduce*=2;             //zoom out
672     }
673     
674     this.resizePageView();
675
676     $('#GBpageview').empty()
677     this.displayedIndices = [];
678     this.loadLeafs();
679     
680     this.updateToolbarZoom(this.reduce);
681 }
682
683 // resizePageView()
684 //______________________________________________________________________________
685 GnuBook.prototype.resizePageView = function() {
686     var i;
687     var viewHeight = 0;
688     //var viewWidth  = $('#GBcontainer').width(); //includes scrollBar
689     var viewWidth  = $('#GBcontainer').attr('clientWidth');   
690
691     var oldScrollTop  = $('#GBcontainer').attr('scrollTop');
692     var oldScrollLeft = $('#GBcontainer').attr('scrollLeft');
693     var oldPageViewHeight = $('#GBpageview').height();
694     var oldPageViewWidth = $('#GBpageview').width();
695     
696     var oldCenterY = this.centerY1up();
697     var oldCenterX = this.centerX1up();
698     
699     if (0 != oldPageViewHeight) {
700         var scrollRatio = oldCenterY / oldPageViewHeight;
701     } else {
702         var scrollRatio = 0;
703     }
704     
705     for (i=0; i<this.numLeafs; i++) {
706         viewHeight += parseInt(this.getPageHeight(i)/this.reduce) + this.padding; 
707         var width = parseInt(this.getPageWidth(i)/this.reduce);
708         if (width>viewWidth) viewWidth=width;
709     }
710     $('#GBpageview').height(viewHeight);
711     $('#GBpageview').width(viewWidth);    
712
713     var newCenterY = scrollRatio*viewHeight;
714     var newTop = Math.max(0, Math.floor( newCenterY - $('#GBcontainer').height()/2 ));
715     $('#GBcontainer').attr('scrollTop', newTop);
716     
717     // We use clientWidth here to avoid miscalculating due to scroll bar
718     var newCenterX = oldCenterX * (viewWidth / oldPageViewWidth);
719     var newLeft = newCenterX - $('#GBcontainer').attr('clientWidth') / 2;
720     newLeft = Math.max(newLeft, 0);
721     $('#GBcontainer').attr('scrollLeft', newLeft);
722     //console.log('oldCenterX ' + oldCenterX + ' newCenterX ' + newCenterX + ' newLeft ' + newLeft);
723     
724     //this.centerPageView();
725     this.loadLeafs();
726     
727 }
728
729 // centerX1up()
730 //______________________________________________________________________________
731 // Returns the current offset of the viewport center in scaled document coordinates.
732 GnuBook.prototype.centerX1up = function() {
733     var centerX;
734     if ($('#GBpageview').width() < $('#GBcontainer').attr('clientWidth')) { // fully shown
735         centerX = $('#GBpageview').width();
736     } else {
737         centerX = $('#GBcontainer').attr('scrollLeft') + $('#GBcontainer').attr('clientWidth') / 2;
738     }
739     centerX = Math.floor(centerX);
740     return centerX;
741 }
742
743 // centerY1up()
744 //______________________________________________________________________________
745 // Returns the current offset of the viewport center in scaled document coordinates.
746 GnuBook.prototype.centerY1up = function() {
747     var centerY = $('#GBcontainer').attr('scrollTop') + $('#GBcontainer').height() / 2;
748     return Math.floor(centerY);
749 }
750
751 // centerPageView()
752 //______________________________________________________________________________
753 GnuBook.prototype.centerPageView = function() {
754
755     var scrollWidth  = $('#GBcontainer').attr('scrollWidth');
756     var clientWidth  =  $('#GBcontainer').attr('clientWidth');
757     //console.log('sW='+scrollWidth+' cW='+clientWidth);
758     if (scrollWidth > clientWidth) {
759         $('#GBcontainer').attr('scrollLeft', (scrollWidth-clientWidth)/2);
760     }
761
762 }
763
764 // zoom2up(direction)
765 //______________________________________________________________________________
766 GnuBook.prototype.zoom2up = function(direction) {
767
768     // Hard stop autoplay
769     this.stopFlipAnimations();
770     
771     // Get new zoom state    
772     var newZoom = this.twoPageNextReduce(this.reduce, direction);
773     if ((this.reduce == newZoom.reduce) && (this.twoPage.autofit == newZoom.autofit)) {
774         return;
775     }
776     this.twoPage.autofit = newZoom.autofit;
777     this.reduce = newZoom.reduce;
778
779     // Preserve view center position
780     var oldCenter = this.twoPageGetViewCenter();
781     
782     // If zooming in, reload imgs.  DOM elements will be removed by prepareTwoPageView
783     // $$$ An improvement would be to use the low res image until the larger one is loaded.
784     if (1 == direction) {
785         for (var img in this.prefetchedImgs) {
786             delete this.prefetchedImgs[img];
787         }
788     }
789     
790     // Prepare view with new center to minimize visual glitches
791     this.prepareTwoPageView(oldCenter.percentageX, oldCenter.percentageY);
792 }
793
794
795 // quantizeReduce(reduce)
796 //______________________________________________________________________________
797 // Quantizes the given reduction factor to closest power of two from set from 12.5% to 200%
798 GnuBook.prototype.quantizeReduce = function(reduce) {
799     var quantized = this.reductionFactors[0];
800     var distance = Math.abs(reduce - quantized);
801     for (var i = 1; i < this.reductionFactors.length; i++) {
802         newDistance = Math.abs(reduce - this.reductionFactors[i]);
803         if (newDistance < distance) {
804             distance = newDistance;
805             quantized = this.reductionFactors[i];
806         }
807     }
808     
809     return quantized;
810 }
811
812 // twoPageNextReduce()
813 //______________________________________________________________________________
814 // Returns the next reduction level
815 GnuBook.prototype.twoPageNextReduce = function(reduce, direction) {
816     var result = {};
817     var autofitReduce = this.twoPageGetAutofitReduce();
818
819     if (0 == direction) { // autofit
820         result.autofit = true;
821         result.reduce = autofitReduce;
822         
823     } else if (1 == direction) { // zoom in
824         var newReduce = this.reductionFactors[0];
825     
826         for (var i = 1; i < this.reductionFactors.length; i++) {
827             if (this.reductionFactors[i] < reduce) {
828                 newReduce = this.reductionFactors[i];
829             }
830         }
831         
832         if (!this.twoPage.autofit && (autofitReduce < reduce && autofitReduce > newReduce)) {
833             // use autofit
834             result.autofit = true;
835             result.reduce = autofitReduce;
836         } else {        
837             result.autofit = false;
838             result.reduce = newReduce;
839         }
840         
841     } else { // zoom out
842         var lastIndex = this.reductionFactors.length - 1;
843         var newReduce = this.reductionFactors[lastIndex];
844         
845         for (var i = lastIndex; i >= 0; i--) {
846             if (this.reductionFactors[i] > reduce) {
847                 newReduce = this.reductionFactors[i];
848             }
849         }
850          
851         if (!this.twoPage.autofit && (autofitReduce > reduce && autofitReduce < newReduce)) {
852             // use autofit
853             result.autofit = true;
854             result.reduce = autofitReduce;
855         } else {
856             result.autofit = false;
857             result.reduce = newReduce;
858         }
859     }
860     
861     return result;
862 }
863
864 // jumpToPage()
865 //______________________________________________________________________________
866 // Attempts to jump to page.  Returns true if page could be found, false otherwise.
867 GnuBook.prototype.jumpToPage = function(pageNum) {
868
869     var pageIndex = this.getPageIndex(pageNum);
870
871     if ('undefined' != typeof(pageIndex)) {
872         var leafTop = 0;
873         var h;
874         this.jumpToIndex(pageIndex);
875         $('#GBcontainer').attr('scrollTop', leafTop);
876         return true;
877     }
878     
879     // Page not found
880     return false;
881 }
882
883 // jumpToIndex()
884 //______________________________________________________________________________
885 GnuBook.prototype.jumpToIndex = function(index) {
886
887     if (2 == this.mode) {
888         this.autoStop();
889         
890         // By checking against min/max we do nothing if requested index
891         // is current
892         if (index < Math.min(this.twoPage.currentIndexL, this.twoPage.currentIndexR)) {
893             this.flipBackToIndex(index);
894         } else if (index > Math.max(this.twoPage.currentIndexL, this.twoPage.currentIndexR)) {
895             this.flipFwdToIndex(index);
896         }
897
898     } else {        
899         var i;
900         var leafTop = 0;
901         var h;
902         for (i=0; i<index; i++) {
903             h = parseInt(this.getPageHeight(i)/this.reduce); 
904             leafTop += h + this.padding;
905         }
906         //$('#GBcontainer').attr('scrollTop', leafTop);
907         $('#GBcontainer').animate({scrollTop: leafTop },'fast');
908     }
909 }
910
911
912
913 // switchMode()
914 //______________________________________________________________________________
915 GnuBook.prototype.switchMode = function(mode) {
916
917     //console.log('  asked to switch to mode ' + mode + ' from ' + this.mode);
918     
919     if (mode == this.mode) return;
920     
921     if (!this.canSwitchToMode(mode)) {
922         return;
923     }
924
925     this.autoStop();
926     this.removeSearchHilites();
927
928     this.mode = mode;
929     
930     this.switchToolbarMode(mode);
931     
932     // $$$ TODO preserve center of view when switching between mode
933     //     See https://bugs.edge.launchpad.net/gnubook/+bug/416682
934     
935     if (1 == mode) {
936         this.reduce = this.quantizeReduce(this.reduce);
937         this.prepareOnePageView();
938     } else {
939         this.twoPage.autofit = false; // Take zoom level from other mode
940         this.reduce = this.quantizeReduce(this.reduce);
941         this.prepareTwoPageView();
942         this.twoPageCenterView(0.5, 0.5); // $$$ TODO preserve center
943     }
944
945 }
946
947 //prepareOnePageView()
948 //______________________________________________________________________________
949 GnuBook.prototype.prepareOnePageView = function() {
950
951     // var startLeaf = this.displayedIndices[0];
952     var startLeaf = this.currentIndex();
953     
954     $('#GBcontainer').empty();
955     $('#GBcontainer').css({
956         overflowY: 'scroll',
957         overflowX: 'auto'
958     });
959     
960     var gbPageView = $("#GBcontainer").append("<div id='GBpageview'></div>");
961     
962     this.resizePageView();
963     
964     this.jumpToIndex(startLeaf);
965     this.displayedIndices = [];
966     
967     this.drawLeafsOnePage();
968         
969     // Bind mouse handlers
970     // Disable mouse click to avoid selected/highlighted page images - bug 354239
971     gbPageView.bind('mousedown', function(e) {
972         // $$$ check here for right-click and don't disable.  Also use jQuery style
973         //     for stopping propagation. See https://bugs.edge.launchpad.net/gnubook/+bug/362626
974         return false;
975     })
976     // Special hack for IE7
977     gbPageView[0].onselectstart = function(e) { return false; };
978 }
979
980 // prepareTwoPageView()
981 //______________________________________________________________________________
982 // Some decisions about two page view:
983 //
984 // Both pages will be displayed at the same height, even if they were different physical/scanned
985 // sizes.  This simplifies the animation (from a design as well as technical standpoint).  We
986 // examine the page aspect ratios (in calculateSpreadSize) and use the page with the most "normal"
987 // aspect ratio to determine the height.
988 //
989 // The two page view div is resized to keep the middle of the book in the middle of the div
990 // even as the page sizes change.  To e.g. keep the middle of the book in the middle of the GBcontent
991 // div requires adjusting the offset of GBtwpageview and/or scrolling in GBcontent.
992 GnuBook.prototype.prepareTwoPageView = function(centerPercentageX, centerPercentageY) {
993     $('#GBcontainer').empty();
994     $('#GBcontainer').css('overflow', 'auto');
995         
996     // We want to display two facing pages.  We may be missing
997     // one side of the spread because it is the first/last leaf,
998     // foldouts, missing pages, etc
999
1000     //var targetLeaf = this.displayedIndices[0];
1001     var targetLeaf = this.firstIndex;
1002
1003     if (targetLeaf < this.firstDisplayableIndex()) {
1004         targetLeaf = this.firstDisplayableIndex();
1005     }
1006     
1007     if (targetLeaf > this.lastDisplayableIndex()) {
1008         targetLeaf = this.lastDisplayableIndex();
1009     }
1010     
1011     //this.twoPage.currentIndexL = null;
1012     //this.twoPage.currentIndexR = null;
1013     //this.pruneUnusedImgs();
1014     
1015     var currentSpreadIndices = this.getSpreadIndices(targetLeaf);
1016     this.twoPage.currentIndexL = currentSpreadIndices[0];
1017     this.twoPage.currentIndexR = currentSpreadIndices[1];
1018     this.firstIndex = this.twoPage.currentIndexL;
1019     
1020     this.calculateSpreadSize(); //sets twoPage.width, twoPage.height and others
1021
1022     this.pruneUnusedImgs();
1023     this.prefetch(); // Preload images or reload if scaling has changed
1024
1025     //console.dir(this.twoPage);
1026     
1027     // Add the two page view
1028     // $$$ Can we get everything set up and then append?
1029     $('#GBcontainer').append('<div id="GBtwopageview"></div>');
1030
1031     // $$$ calculate first then set
1032     $('#GBtwopageview').css( {
1033         height: this.twoPage.totalHeight + 'px',
1034         width: this.twoPage.totalWidth + 'px',
1035         position: 'absolute'
1036         });
1037         
1038     // If there will not be scrollbars (e.g. when zooming out) we center the book
1039     // since otherwise the book will be stuck off-center
1040     if (this.twoPage.totalWidth < $('#GBcontainer').attr('clientWidth')) {
1041         centerPercentageX = 0.5;
1042     }
1043     if (this.twoPage.totalHeight < $('#GBcontainer').attr('clientHeight')) {
1044         centerPercentageY = 0.5;
1045     }
1046         
1047     this.twoPageCenterView(centerPercentageX, centerPercentageY);
1048     
1049     this.twoPage.coverDiv = document.createElement('div');
1050     $(this.twoPage.coverDiv).attr('id', 'GBbookcover').css({
1051         border: '1px solid rgb(68, 25, 17)',
1052         width:  this.twoPage.bookCoverDivWidth + 'px',
1053         height: this.twoPage.bookCoverDivHeight+'px',
1054         visibility: 'visible',
1055         position: 'absolute',
1056         backgroundColor: '#663929',
1057         left: this.twoPage.bookCoverDivLeft + 'px',
1058         top: this.twoPage.bookCoverDivTop+'px',
1059         MozBorderRadiusTopleft: '7px',
1060         MozBorderRadiusTopright: '7px',
1061         MozBorderRadiusBottomright: '7px',
1062         MozBorderRadiusBottomleft: '7px'
1063     }).appendTo('#GBtwopageview');
1064     
1065     this.leafEdgeR = document.createElement('div');
1066     this.leafEdgeR.className = 'leafEdgeR'; // $$$ the static CSS should be moved into the .css file
1067     $(this.leafEdgeR).css({
1068         borderStyle: 'solid solid solid none',
1069         borderColor: 'rgb(51, 51, 34)',
1070         borderWidth: '1px 1px 1px 0px',
1071         background: 'transparent url(' + this.imagesBaseURL + 'right_edges.png) repeat scroll 0% 0%',
1072         width: this.twoPage.leafEdgeWidthR + 'px',
1073         height: this.twoPage.height-1 + 'px',
1074         /*right: '10px',*/
1075         left: this.twoPage.gutter+this.twoPage.scaledWR+'px',
1076         top: this.twoPage.bookCoverDivTop+this.twoPage.coverInternalPadding+'px',
1077         position: 'absolute'
1078     }).appendTo('#GBtwopageview');
1079     
1080     this.leafEdgeL = document.createElement('div');
1081     this.leafEdgeL.className = 'leafEdgeL';
1082     $(this.leafEdgeL).css({ // $$$ static CSS should be moved to file
1083         borderStyle: 'solid none solid solid',
1084         borderColor: 'rgb(51, 51, 34)',
1085         borderWidth: '1px 0px 1px 1px',
1086         background: 'transparent url(' + this.imagesBaseURL + 'left_edges.png) repeat scroll 0% 0%',
1087         width: this.twoPage.leafEdgeWidthL + 'px',
1088         height: this.twoPage.height-1 + 'px',
1089         left: this.twoPage.bookCoverDivLeft+this.twoPage.coverInternalPadding+'px',
1090         top: this.twoPage.bookCoverDivTop+this.twoPage.coverInternalPadding+'px',    
1091         position: 'absolute'
1092     }).appendTo('#GBtwopageview');
1093
1094     div = document.createElement('div');
1095     $(div).attr('id', 'GBbookspine').css({
1096         border:          '1px solid rgb(68, 25, 17)',
1097         width:           this.twoPage.bookSpineDivWidth+'px',
1098         height:          this.twoPage.bookSpineDivHeight+'px',
1099         position:        'absolute',
1100         backgroundColor: 'rgb(68, 25, 17)',
1101         left:            this.twoPage.bookSpineDivLeft+'px',
1102         top:             this.twoPage.bookSpineDivTop+'px'
1103     }).appendTo('#GBtwopageview');
1104     
1105     var self = this; // for closure
1106     
1107     /* Flip areas no longer used
1108     this.twoPage.leftFlipArea = document.createElement('div');
1109     this.twoPage.leftFlipArea.className = 'GBfliparea';
1110     $(this.twoPage.leftFlipArea).attr('id', 'GBleftflip').css({
1111         border: '0',
1112         width:  this.twoPageFlipAreaWidth() + 'px',
1113         height: this.twoPageFlipAreaHeight() + 'px',
1114         position: 'absolute',
1115         left:   this.twoPageLeftFlipAreaLeft() + 'px',
1116         top:    this.twoPageFlipAreaTop() + 'px',
1117         cursor: 'w-resize',
1118         zIndex: 100
1119     }).bind('click', function(e) {
1120         self.left();
1121     }).bind('mousedown', function(e) {
1122         e.preventDefault();
1123     }).appendTo('#GBtwopageview');
1124     
1125     this.twoPage.rightFlipArea = document.createElement('div');
1126     this.twoPage.rightFlipArea.className = 'GBfliparea';
1127     $(this.twoPage.rightFlipArea).attr('id', 'GBrightflip').css({
1128         border: '0',
1129         width:  this.twoPageFlipAreaWidth() + 'px',
1130         height: this.twoPageFlipAreaHeight() + 'px',
1131         position: 'absolute',
1132         left:   this.twoPageRightFlipAreaLeft() + 'px',
1133         top:    this.twoPageFlipAreaTop() + 'px',
1134         cursor: 'e-resize',
1135         zIndex: 100
1136     }).bind('click', function(e) {
1137         self.right();
1138     }).bind('mousedown', function(e) {
1139         e.preventDefault();
1140     }).appendTo('#GBtwopageview');
1141     */
1142     
1143     this.prepareTwoPagePopUp();
1144     
1145     this.displayedIndices = [];
1146     
1147     //this.indicesToDisplay=[firstLeaf, firstLeaf+1];
1148     //console.log('indicesToDisplay: ' + this.indicesToDisplay[0] + ' ' + this.indicesToDisplay[1]);
1149     
1150     this.drawLeafsTwoPage();
1151     this.updateSearchHilites2UP();
1152     this.updateToolbarZoom(this.reduce);
1153     
1154     this.prefetch();
1155 }
1156
1157 // prepareTwoPagePopUp()
1158 //
1159 // This function prepares the "View Page n" popup that shows while the mouse is
1160 // over the left/right "stack of sheets" edges.  It also binds the mouse
1161 // events for these divs.
1162 //______________________________________________________________________________
1163 GnuBook.prototype.prepareTwoPagePopUp = function() {
1164
1165     this.twoPagePopUp = document.createElement('div');
1166     $(this.twoPagePopUp).css({
1167         border: '1px solid black',
1168         padding: '2px 6px',
1169         position: 'absolute',
1170         fontFamily: 'sans-serif',
1171         fontSize: '14px',
1172         zIndex: '1000',
1173         backgroundColor: 'rgb(255, 255, 238)',
1174         opacity: 0.85
1175     }).appendTo('#GBcontainer');
1176     $(this.twoPagePopUp).hide();
1177     
1178     $(this.leafEdgeL).add(this.leafEdgeR).bind('mouseenter', this, function(e) {
1179         $(e.data.twoPagePopUp).show();
1180     });
1181
1182     $(this.leafEdgeL).add(this.leafEdgeR).bind('mouseleave', this, function(e) {
1183         $(e.data.twoPagePopUp).hide();
1184     });
1185
1186     $(this.leafEdgeL).bind('click', this, function(e) { 
1187         e.data.autoStop();
1188         var jumpIndex = e.data.jumpIndexForLeftEdgePageX(e.pageX);
1189         e.data.jumpToIndex(jumpIndex);
1190     });
1191
1192     $(this.leafEdgeR).bind('click', this, function(e) { 
1193         e.data.autoStop();
1194         var jumpIndex = e.data.jumpIndexForRightEdgePageX(e.pageX);
1195         e.data.jumpToIndex(jumpIndex);    
1196     });
1197
1198     $(this.leafEdgeR).bind('mousemove', this, function(e) {
1199
1200         var jumpIndex = e.data.jumpIndexForRightEdgePageX(e.pageX);
1201         $(e.data.twoPagePopUp).text('View ' + e.data.getPageName(jumpIndex));
1202         
1203         // $$$ TODO: Make sure popup is positioned so that it is in view
1204         // (https://bugs.edge.launchpad.net/gnubook/+bug/327456)        
1205         $(e.data.twoPagePopUp).css({
1206             left: e.pageX- $('#GBcontainer').offset().left + $('#GBcontainer').scrollLeft() + 20 + 'px',
1207             top: e.pageY - $('#GBcontainer').offset().top + $('#GBcontainer').scrollTop() + 'px'
1208         });
1209     });
1210
1211     $(this.leafEdgeL).bind('mousemove', this, function(e) {
1212     
1213         var jumpIndex = e.data.jumpIndexForLeftEdgePageX(e.pageX);
1214         $(e.data.twoPagePopUp).text('View '+ e.data.getPageName(jumpIndex));
1215
1216         // $$$ TODO: Make sure popup is positioned so that it is in view
1217         //           (https://bugs.edge.launchpad.net/gnubook/+bug/327456)        
1218         $(e.data.twoPagePopUp).css({
1219             left: e.pageX - $('#GBcontainer').offset().left + $('#GBcontainer').scrollLeft() - $(e.data.twoPagePopUp).width() - 25 + 'px',
1220             top: e.pageY-$('#GBcontainer').offset().top + $('#GBcontainer').scrollTop() + 'px'
1221         });
1222     });
1223 }
1224
1225 // calculateSpreadSize()
1226 //______________________________________________________________________________
1227 // Calculates 2-page spread dimensions based on this.twoPage.currentIndexL and
1228 // this.twoPage.currentIndexR
1229 // This function sets this.twoPage.height, twoPage.width
1230
1231 GnuBook.prototype.calculateSpreadSize = function() {
1232
1233     var firstIndex  = this.twoPage.currentIndexL;
1234     var secondIndex = this.twoPage.currentIndexR;
1235     //console.log('first page is ' + firstIndex);
1236
1237     // Calculate page sizes and total leaf width
1238     var spreadSize;
1239     if ( this.twoPage.autofit) {    
1240         spreadSize = this.getIdealSpreadSize(firstIndex, secondIndex);
1241     } else {
1242         // set based on reduction factor
1243         spreadSize = this.getSpreadSizeFromReduce(firstIndex, secondIndex, this.reduce);
1244     }
1245     
1246     // Both pages together
1247     this.twoPage.height = spreadSize.height;
1248     this.twoPage.width = spreadSize.width;
1249     
1250     // Individual pages
1251     this.twoPage.scaledWL = this.getPageWidth2UP(firstIndex);
1252     this.twoPage.scaledWR = this.getPageWidth2UP(secondIndex);
1253     
1254     // Leaf edges
1255     this.twoPage.edgeWidth = spreadSize.totalLeafEdgeWidth; // The combined width of both edges
1256     this.twoPage.leafEdgeWidthL = this.leafEdgeWidth(this.twoPage.currentIndexL);
1257     this.twoPage.leafEdgeWidthR = this.twoPage.edgeWidth - this.twoPage.leafEdgeWidthL;
1258     
1259     
1260     // Book cover
1261     // The width of the book cover div.  The combined width of both pages, twice the width
1262     // of the book cover internal padding (2*10) and the page edges
1263     this.twoPage.bookCoverDivWidth = this.twoPage.scaledWL + this.twoPage.scaledWR + 2 * this.twoPage.coverInternalPadding + this.twoPage.edgeWidth;
1264     // The height of the book cover div
1265     this.twoPage.bookCoverDivHeight = this.twoPage.height + 2 * this.twoPage.coverInternalPadding;
1266     
1267     
1268     // We calculate the total width and height for the div so that we can make the book
1269     // spine centered
1270     var leftGutterOffset = this.gutterOffsetForIndex(firstIndex);
1271     var leftWidthFromCenter = this.twoPage.scaledWL - leftGutterOffset + this.twoPage.leafEdgeWidthL;
1272     var rightWidthFromCenter = this.twoPage.scaledWR + leftGutterOffset + this.twoPage.leafEdgeWidthR;
1273     var largestWidthFromCenter = Math.max( leftWidthFromCenter, rightWidthFromCenter );
1274     this.twoPage.totalWidth = 2 * (largestWidthFromCenter + this.twoPage.coverInternalPadding + this.twoPage.coverExternalPadding);
1275     this.twoPage.totalHeight = this.twoPage.height + 2 * (this.twoPage.coverInternalPadding + this.twoPage.coverExternalPadding);
1276         
1277     // We want to minimize the unused space in two-up mode (maximize the amount of page
1278     // shown).  We give width to the leaf edges and these widths change (though the sum
1279     // of the two remains constant) as we flip through the book.  With the book
1280     // cover centered and fixed in the GBcontainer div the page images will meet
1281     // at the "gutter" which is generally offset from the center.
1282     this.twoPage.middle = this.twoPage.totalWidth >> 1;
1283     this.twoPage.gutter = this.twoPage.middle + this.gutterOffsetForIndex(firstIndex);
1284     
1285     // The left edge of the book cover moves depending on the width of the pages
1286     // $$$ change to getter
1287     this.twoPage.bookCoverDivLeft = this.twoPage.gutter - this.twoPage.scaledWL - this.twoPage.leafEdgeWidthL - this.twoPage.coverInternalPadding;
1288     // The top edge of the book cover stays a fixed distance from the top
1289     this.twoPage.bookCoverDivTop = this.twoPage.coverExternalPadding;
1290
1291     // Book spine
1292     this.twoPage.bookSpineDivHeight = this.twoPage.height + 2*this.twoPage.coverInternalPadding;
1293     this.twoPage.bookSpineDivLeft = this.twoPage.middle - (this.twoPage.bookSpineDivWidth >> 1);
1294     this.twoPage.bookSpineDivTop = this.twoPage.bookCoverDivTop;
1295
1296
1297     this.reduce = spreadSize.reduce; // $$$ really set this here?
1298 }
1299
1300 GnuBook.prototype.getIdealSpreadSize = function(firstIndex, secondIndex) {
1301     var ideal = {};
1302
1303     // We check which page is closest to a "normal" page and use that to set the height
1304     // for both pages.  This means that foldouts and other odd size pages will be displayed
1305     // smaller than the nominal zoom amount.
1306     var canon5Dratio = 1.5;
1307     
1308     var first = {
1309         height: this.getPageHeight(firstIndex),
1310         width: this.getPageWidth(firstIndex)
1311     }
1312     
1313     var second = {
1314         height: this.getPageHeight(secondIndex),
1315         width: this.getPageWidth(secondIndex)
1316     }
1317     
1318     var firstIndexRatio  = first.height / first.width;
1319     var secondIndexRatio = second.height / second.width;
1320     //console.log('firstIndexRatio = ' + firstIndexRatio + ' secondIndexRatio = ' + secondIndexRatio);
1321
1322     var ratio;
1323     if (Math.abs(firstIndexRatio - canon5Dratio) < Math.abs(secondIndexRatio - canon5Dratio)) {
1324         ratio = firstIndexRatio;
1325         //console.log('using firstIndexRatio ' + ratio);
1326     } else {
1327         ratio = secondIndexRatio;
1328         //console.log('using secondIndexRatio ' + ratio);
1329     }
1330
1331     var totalLeafEdgeWidth = parseInt(this.numLeafs * 0.1);
1332     var maxLeafEdgeWidth   = parseInt($('#GBcontainer').attr('clientWidth') * 0.1);
1333     ideal.totalLeafEdgeWidth     = Math.min(totalLeafEdgeWidth, maxLeafEdgeWidth);
1334     
1335     var widthOutsidePages = 2 * (this.twoPage.coverInternalPadding + this.twoPage.coverExternalPadding) + ideal.totalLeafEdgeWidth;
1336     var heightOutsidePages = 2* (this.twoPage.coverInternalPadding + this.twoPage.coverExternalPadding);
1337     
1338     ideal.width = ($('#GBcontainer').width() - widthOutsidePages) >> 1;
1339     ideal.width -= 10; // $$$ fudge factor
1340     ideal.height = $('#GBcontainer').height() - heightOutsidePages;
1341     ideal.height -= 20; // fudge factor
1342     //console.log('init idealWidth='+ideal.width+' idealHeight='+ideal.height + ' ratio='+ratio);
1343
1344     if (ideal.height/ratio <= ideal.width) {
1345         //use height
1346         ideal.width = parseInt(ideal.height/ratio);
1347     } else {
1348         //use width
1349         ideal.height = parseInt(ideal.width*ratio);
1350     }
1351     
1352     // $$$ check this logic with large spreads
1353     ideal.reduce = ((first.height + second.height) / 2) / ideal.height;
1354     
1355     return ideal;
1356 }
1357
1358 // getSpreadSizeFromReduce()
1359 //______________________________________________________________________________
1360 // Returns the spread size calculated from the reduction factor for the given pages
1361 GnuBook.prototype.getSpreadSizeFromReduce = function(firstIndex, secondIndex, reduce) {
1362     var spreadSize = {};
1363     // $$$ Scale this based on reduce?
1364     var totalLeafEdgeWidth = parseInt(this.numLeafs * 0.1);
1365     var maxLeafEdgeWidth   = parseInt($('#GBcontainer').attr('clientWidth') * 0.1); // $$$ Assumes leaf edge width constant at all zoom levels
1366     spreadSize.totalLeafEdgeWidth     = Math.min(totalLeafEdgeWidth, maxLeafEdgeWidth);
1367
1368     // $$$ Possibly incorrect -- we should make height "dominant"
1369     var nativeWidth = this.getPageWidth(firstIndex) + this.getPageWidth(secondIndex);
1370     var nativeHeight = this.getPageHeight(firstIndex) + this.getPageHeight(secondIndex);
1371     spreadSize.height = parseInt( (nativeHeight / 2) / this.reduce );
1372     spreadSize.width = parseInt( (nativeWidth / 2) / this.reduce );
1373     spreadSize.reduce = reduce;
1374     
1375     return spreadSize;
1376 }
1377
1378 // twoPageGetAutofitReduce()
1379 //______________________________________________________________________________
1380 // Returns the current ideal reduction factor
1381 GnuBook.prototype.twoPageGetAutofitReduce = function() {
1382     var spreadSize = this.getIdealSpreadSize(this.twoPage.currentIndexL, this.twoPage.currentIndexR);
1383     return spreadSize.reduce;
1384 }
1385
1386 // twoPageSetCursor()
1387 //______________________________________________________________________________
1388 // Set the cursor for two page view
1389 GnuBook.prototype.twoPageSetCursor = function() {
1390     // console.log('setting cursor');
1391     if ( ($('#GBtwopageview').width() > $('#GBcontainer').attr('clientWidth')) ||
1392          ($('#GBtwopageview').height() > $('#GBcontainer').attr('clientHeight')) ) {
1393         $(this.prefetchedImgs[this.twoPage.currentIndexL]).css('cursor','move');
1394         $(this.prefetchedImgs[this.twoPage.currentIndexR]).css('cursor','move');
1395     } else {
1396         $(this.prefetchedImgs[this.twoPage.currentIndexL]).css('cursor','');
1397         $(this.prefetchedImgs[this.twoPage.currentIndexR]).css('cursor','');
1398     }
1399 }
1400
1401 // currentIndex()
1402 //______________________________________________________________________________
1403 // Returns the currently active index.
1404 GnuBook.prototype.currentIndex = function() {
1405     // $$$ we should be cleaner with our idea of which index is active in 1up/2up
1406     if (this.mode == this.constMode1up || this.mode == this.constMode2up) {
1407         return this.firstIndex;
1408     } else {
1409         throw 'currentIndex called for unimplemented mode ' + this.mode;
1410     }
1411 }
1412
1413 // right()
1414 //______________________________________________________________________________
1415 // Flip the right page over onto the left
1416 GnuBook.prototype.right = function() {
1417     if ('rl' != this.pageProgression) {
1418         // LTR
1419         gb.next();
1420     } else {
1421         // RTL
1422         gb.prev();
1423     }
1424 }
1425
1426 // rightmost()
1427 //______________________________________________________________________________
1428 // Flip to the rightmost page
1429 GnuBook.prototype.rightmost = function() {
1430     if ('rl' != this.pageProgression) {
1431         gb.last();
1432     } else {
1433         gb.first();
1434     }
1435 }
1436
1437 // left()
1438 //______________________________________________________________________________
1439 // Flip the left page over onto the right.
1440 GnuBook.prototype.left = function() {
1441     if ('rl' != this.pageProgression) {
1442         // LTR
1443         gb.prev();
1444     } else {
1445         // RTL
1446         gb.next();
1447     }
1448 }
1449
1450 // leftmost()
1451 //______________________________________________________________________________
1452 // Flip to the leftmost page
1453 GnuBook.prototype.leftmost = function() {
1454     if ('rl' != this.pageProgression) {
1455         gb.first();
1456     } else {
1457         gb.last();
1458     }
1459 }
1460
1461 // next()
1462 //______________________________________________________________________________
1463 GnuBook.prototype.next = function() {
1464     if (2 == this.mode) {
1465         this.autoStop();
1466         this.flipFwdToIndex(null);
1467     } else {
1468         if (this.firstIndex < this.lastDisplayableIndex()) {
1469             this.jumpToIndex(this.firstIndex+1);
1470         }
1471     }
1472 }
1473
1474 // prev()
1475 //______________________________________________________________________________
1476 GnuBook.prototype.prev = function() {
1477     if (2 == this.mode) {
1478         this.autoStop();
1479         this.flipBackToIndex(null);
1480     } else {
1481         if (this.firstIndex >= 1) {
1482             this.jumpToIndex(this.firstIndex-1);
1483         }    
1484     }
1485 }
1486
1487 GnuBook.prototype.first = function() {
1488     this.jumpToIndex(this.firstDisplayableIndex());
1489 }
1490
1491 GnuBook.prototype.last = function() {
1492     this.jumpToIndex(this.lastDisplayableIndex());
1493 }
1494
1495 // flipBackToIndex()
1496 //______________________________________________________________________________
1497 // to flip back one spread, pass index=null
1498 GnuBook.prototype.flipBackToIndex = function(index) {
1499     
1500     if (1 == this.mode) return;
1501
1502     var leftIndex = this.twoPage.currentIndexL;
1503     
1504     if (this.animating) return;
1505
1506     if (null != this.leafEdgeTmp) {
1507         alert('error: leafEdgeTmp should be null!');
1508         return;
1509     }
1510     
1511     if (null == index) {
1512         index = leftIndex-2;
1513     }
1514     //if (index<0) return;
1515     
1516     var previousIndices = this.getSpreadIndices(index);
1517     
1518     if (previousIndices[0] < this.firstDisplayableIndex() || previousIndices[1] < this.firstDisplayableIndex()) {
1519         return;
1520     }
1521     
1522     this.animating = true;
1523     
1524     if ('rl' != this.pageProgression) {
1525         // Assume LTR and we are going backward    
1526         this.prepareFlipLeftToRight(previousIndices[0], previousIndices[1]);        
1527         this.flipLeftToRight(previousIndices[0], previousIndices[1]);
1528     } else {
1529         // RTL and going backward
1530         var gutter = this.prepareFlipRightToLeft(previousIndices[0], previousIndices[1]);
1531         this.flipRightToLeft(previousIndices[0], previousIndices[1], gutter);
1532     }
1533 }
1534
1535 // flipLeftToRight()
1536 //______________________________________________________________________________
1537 // Flips the page on the left towards the page on the right
1538 GnuBook.prototype.flipLeftToRight = function(newIndexL, newIndexR) {
1539
1540     var leftLeaf = this.twoPage.currentIndexL;
1541     
1542     var oldLeafEdgeWidthL = this.leafEdgeWidth(this.twoPage.currentIndexL);
1543     var newLeafEdgeWidthL = this.leafEdgeWidth(newIndexL);    
1544     var leafEdgeTmpW = oldLeafEdgeWidthL - newLeafEdgeWidthL;
1545     
1546     var currWidthL   = this.getPageWidth2UP(leftLeaf);
1547     var newWidthL    = this.getPageWidth2UP(newIndexL);
1548     var newWidthR    = this.getPageWidth2UP(newIndexR);
1549
1550     var top  = this.twoPageTop();
1551     var gutter = this.twoPage.middle + this.gutterOffsetForIndex(newIndexL);
1552     
1553     //console.log('leftEdgeTmpW ' + leafEdgeTmpW);
1554     //console.log('  gutter ' + gutter + ', scaledWL ' + scaledWL + ', newLeafEdgeWL ' + newLeafEdgeWidthL);
1555     
1556     //animation strategy:
1557     // 0. remove search highlight, if any.
1558     // 1. create a new div, called leafEdgeTmp to represent the leaf edge between the leftmost edge 
1559     //    of the left leaf and where the user clicked in the leaf edge.
1560     //    Note that if this function was triggered by left() and not a
1561     //    mouse click, the width of leafEdgeTmp is very small (zero px).
1562     // 2. animate both leafEdgeTmp to the gutter (without changing its width) and animate
1563     //    leftLeaf to width=0.
1564     // 3. When step 2 is finished, animate leafEdgeTmp to right-hand side of new right leaf
1565     //    (left=gutter+newWidthR) while also animating the new right leaf from width=0 to
1566     //    its new full width.
1567     // 4. After step 3 is finished, do the following:
1568     //      - remove leafEdgeTmp from the dom.
1569     //      - resize and move the right leaf edge (leafEdgeR) to left=gutter+newWidthR
1570     //          and width=twoPage.edgeWidth-newLeafEdgeWidthL.
1571     //      - resize and move the left leaf edge (leafEdgeL) to left=gutter-newWidthL-newLeafEdgeWidthL
1572     //          and width=newLeafEdgeWidthL.
1573     //      - resize the back cover (twoPage.coverDiv) to left=gutter-newWidthL-newLeafEdgeWidthL-10
1574     //          and width=newWidthL+newWidthR+twoPage.edgeWidth+20
1575     //      - move new left leaf (newIndexL) forward to zindex=2 so it can receive clicks.
1576     //      - remove old left and right leafs from the dom [pruneUnusedImgs()].
1577     //      - prefetch new adjacent leafs.
1578     //      - set up click handlers for both new left and right leafs.
1579     //      - redraw the search highlight.
1580     //      - update the pagenum box and the url.
1581     
1582     
1583     var leftEdgeTmpLeft = gutter - currWidthL - leafEdgeTmpW;
1584
1585     this.leafEdgeTmp = document.createElement('div');
1586     $(this.leafEdgeTmp).css({
1587         borderStyle: 'solid none solid solid',
1588         borderColor: 'rgb(51, 51, 34)',
1589         borderWidth: '1px 0px 1px 1px',
1590         background: 'transparent url(' + this.imagesBaseURL + 'left_edges.png) repeat scroll 0% 0%',
1591         width: leafEdgeTmpW + 'px',
1592         height: this.twoPage.height-1 + 'px',
1593         left: leftEdgeTmpLeft + 'px',
1594         top: top+'px',    
1595         position: 'absolute',
1596         zIndex:1000
1597     }).appendTo('#GBtwopageview');
1598     
1599     //$(this.leafEdgeL).css('width', newLeafEdgeWidthL+'px');
1600     $(this.leafEdgeL).css({
1601         width: newLeafEdgeWidthL+'px', 
1602         left: gutter-currWidthL-newLeafEdgeWidthL+'px'
1603     });   
1604
1605     // Left gets the offset of the current left leaf from the document
1606     var left = $(this.prefetchedImgs[leftLeaf]).offset().left;
1607     // $$$ This seems very similar to the gutter.  May be able to consolidate the logic.
1608     var right = $('#GBtwopageview').attr('clientWidth')-left-$(this.prefetchedImgs[leftLeaf]).width()+$('#GBtwopageview').offset().left-2+'px';
1609     
1610     // We change the left leaf to right positioning
1611     // $$$ This causes animation glitches during resize.  See https://bugs.edge.launchpad.net/gnubook/+bug/328327
1612     $(this.prefetchedImgs[leftLeaf]).css({
1613         right: right,
1614         left: ''
1615     });
1616
1617     $(this.leafEdgeTmp).animate({left: gutter}, this.flipSpeed, 'easeInSine');    
1618     //$(this.prefetchedImgs[leftLeaf]).animate({width: '0px'}, 'slow', 'easeInSine');
1619     
1620     var self = this;
1621
1622     this.removeSearchHilites();
1623
1624     //console.log('animating leafLeaf ' + leftLeaf + ' to 0px');
1625     $(this.prefetchedImgs[leftLeaf]).animate({width: '0px'}, self.flipSpeed, 'easeInSine', function() {
1626     
1627         //console.log('     and now leafEdgeTmp to left: gutter+newWidthR ' + (gutter + newWidthR));
1628         $(self.leafEdgeTmp).animate({left: gutter+newWidthR+'px'}, self.flipSpeed, 'easeOutSine');
1629
1630         //console.log('  animating newIndexR ' + newIndexR + ' to ' + newWidthR + ' from ' + $(self.prefetchedImgs[newIndexR]).width());
1631         $(self.prefetchedImgs[newIndexR]).animate({width: newWidthR+'px'}, self.flipSpeed, 'easeOutSine', function() {
1632             $(self.prefetchedImgs[newIndexL]).css('zIndex', 2);
1633             
1634             $(self.leafEdgeR).css({
1635                 // Moves the right leaf edge
1636                 width: self.twoPage.edgeWidth-newLeafEdgeWidthL+'px',
1637                 left:  gutter+newWidthR+'px'
1638             });
1639
1640             $(self.leafEdgeL).css({
1641                 // Moves and resizes the left leaf edge
1642                 width: newLeafEdgeWidthL+'px',
1643                 left:  gutter-newWidthL-newLeafEdgeWidthL+'px'
1644             });
1645
1646             // Resizes the brown border div
1647             $(self.twoPage.coverDiv).css({
1648                 width: self.twoPageCoverWidth(newWidthL+newWidthR)+'px',
1649                 left: gutter-newWidthL-newLeafEdgeWidthL-self.twoPage.coverInternalPadding+'px'
1650             });
1651             
1652             $(self.leafEdgeTmp).remove();
1653             self.leafEdgeTmp = null;
1654
1655             // $$$ TODO refactor with opposite direction flip
1656             
1657             self.twoPage.currentIndexL = newIndexL;
1658             self.twoPage.currentIndexR = newIndexR;
1659             self.twoPage.scaledWL = newWidthL;
1660             self.twoPage.scaledWR = newWidthR;
1661             self.twoPage.gutter = gutter;
1662             
1663             self.firstIndex = self.twoPage.currentIndexL;
1664             self.displayedIndices = [newIndexL, newIndexR];
1665             self.pruneUnusedImgs();
1666             self.prefetch();            
1667             self.animating = false;
1668             
1669             self.updateSearchHilites2UP();
1670             self.updatePageNumBox2UP();
1671             
1672             // self.twoPagePlaceFlipAreas(); // No longer used
1673             self.setMouseHandlers2UP();
1674             self.twoPageSetCursor();
1675             
1676             if (self.animationFinishedCallback) {
1677                 self.animationFinishedCallback();
1678                 self.animationFinishedCallback = null;
1679             }
1680         });
1681     });        
1682     
1683 }
1684
1685 // flipFwdToIndex()
1686 //______________________________________________________________________________
1687 // Whether we flip left or right is dependent on the page progression
1688 // to flip forward one spread, pass index=null
1689 GnuBook.prototype.flipFwdToIndex = function(index) {
1690
1691     if (this.animating) return;
1692
1693     if (null != this.leafEdgeTmp) {
1694         alert('error: leafEdgeTmp should be null!');
1695         return;
1696     }
1697
1698     if (null == index) {
1699         index = this.twoPage.currentIndexR+2; // $$$ assumes indices are continuous
1700     }
1701     if (index > this.lastDisplayableIndex()) return;
1702
1703     this.animating = true;
1704     
1705     var nextIndices = this.getSpreadIndices(index);
1706     
1707     //console.log('flipfwd to indices ' + nextIndices[0] + ',' + nextIndices[1]);
1708
1709     if ('rl' != this.pageProgression) {
1710         // We did not specify RTL
1711         var gutter = this.prepareFlipRightToLeft(nextIndices[0], nextIndices[1]);
1712         this.flipRightToLeft(nextIndices[0], nextIndices[1], gutter);
1713     } else {
1714         // RTL
1715         var gutter = this.prepareFlipLeftToRight(nextIndices[0], nextIndices[1]);
1716         this.flipLeftToRight(nextIndices[0], nextIndices[1]);
1717     }
1718 }
1719
1720 // flipRightToLeft(nextL, nextR, gutter)
1721 // $$$ better not to have to pass gutter in
1722 //______________________________________________________________________________
1723 // Flip from left to right and show the nextL and nextR indices on those sides
1724 GnuBook.prototype.flipRightToLeft = function(newIndexL, newIndexR) {
1725     var oldLeafEdgeWidthL = this.leafEdgeWidth(this.twoPage.currentIndexL);
1726     var oldLeafEdgeWidthR = this.twoPage.edgeWidth-oldLeafEdgeWidthL;
1727     var newLeafEdgeWidthL = this.leafEdgeWidth(newIndexL);  
1728     var newLeafEdgeWidthR = this.twoPage.edgeWidth-newLeafEdgeWidthL;
1729
1730     var leafEdgeTmpW = oldLeafEdgeWidthR - newLeafEdgeWidthR;
1731
1732     var top = this.twoPageTop();
1733     var scaledW = this.getPageWidth2UP(this.twoPage.currentIndexR);
1734
1735     var middle = this.twoPage.middle;
1736     var gutter = middle + this.gutterOffsetForIndex(newIndexL);
1737     
1738     this.leafEdgeTmp = document.createElement('div');
1739     $(this.leafEdgeTmp).css({
1740         borderStyle: 'solid none solid solid',
1741         borderColor: 'rgb(51, 51, 34)',
1742         borderWidth: '1px 0px 1px 1px',
1743         background: 'transparent url(' + this.imagesBaseURL + 'left_edges.png) repeat scroll 0% 0%',
1744         width: leafEdgeTmpW + 'px',
1745         height: this.twoPage.height-1 + 'px',
1746         left: gutter+scaledW+'px',
1747         top: top+'px',    
1748         position: 'absolute',
1749         zIndex:1000
1750     }).appendTo('#GBtwopageview');
1751
1752     //var scaledWR = this.getPageWidth2UP(newIndexR); // $$$ should be current instead?
1753     //var scaledWL = this.getPageWidth2UP(newIndexL); // $$$ should be current instead?
1754     
1755     var currWidthL = this.getPageWidth2UP(this.twoPage.currentIndexL);
1756     var currWidthR = this.getPageWidth2UP(this.twoPage.currentIndexR);
1757     var newWidthL = this.getPageWidth2UP(newIndexL);
1758     var newWidthR = this.getPageWidth2UP(newIndexR);
1759     
1760     $(this.leafEdgeR).css({width: newLeafEdgeWidthR+'px', left: gutter+newWidthR+'px' });
1761
1762     var self = this; // closure-tastic!
1763
1764     var speed = this.flipSpeed;
1765
1766     this.removeSearchHilites();
1767     
1768     $(this.leafEdgeTmp).animate({left: gutter}, speed, 'easeInSine');    
1769     $(this.prefetchedImgs[this.twoPage.currentIndexR]).animate({width: '0px'}, speed, 'easeInSine', function() {
1770         $(self.leafEdgeTmp).animate({left: gutter-newWidthL-leafEdgeTmpW+'px'}, speed, 'easeOutSine');    
1771         $(self.prefetchedImgs[newIndexL]).animate({width: newWidthL+'px'}, speed, 'easeOutSine', function() {
1772             $(self.prefetchedImgs[newIndexR]).css('zIndex', 2);
1773             
1774             $(self.leafEdgeL).css({
1775                 width: newLeafEdgeWidthL+'px', 
1776                 left: gutter-newWidthL-newLeafEdgeWidthL+'px'
1777             });
1778             
1779             // Resizes the book cover
1780             $(self.twoPage.coverDiv).css({
1781                 width: self.twoPageCoverWidth(newWidthL+newWidthR)+'px',
1782                 left: gutter - newWidthL - newLeafEdgeWidthL - self.twoPage.coverInternalPadding + 'px'
1783             });
1784             
1785             $(self.leafEdgeTmp).remove();
1786             self.leafEdgeTmp = null;
1787             
1788             self.twoPage.currentIndexL = newIndexL;
1789             self.twoPage.currentIndexR = newIndexR;
1790             self.twoPage.scaledWL = newWidthL;
1791             self.twoPage.scaledWR = newWidthR;
1792             self.twoPage.gutter = gutter;
1793
1794             self.firstIndex = self.twoPage.currentIndexL;
1795             self.displayedIndices = [newIndexL, newIndexR];
1796             self.pruneUnusedImgs();
1797             self.prefetch();
1798             self.animating = false;
1799
1800
1801             self.updateSearchHilites2UP();
1802             self.updatePageNumBox2UP();
1803             
1804             // self.twoPagePlaceFlipAreas(); // No longer used
1805             self.setMouseHandlers2UP();     
1806             self.twoPageSetCursor();
1807             
1808             if (self.animationFinishedCallback) {
1809                 self.animationFinishedCallback();
1810                 self.animationFinishedCallback = null;
1811             }
1812         });
1813     });    
1814 }
1815
1816 // setMouseHandlers2UP
1817 //______________________________________________________________________________
1818 GnuBook.prototype.setMouseHandlers2UP = function() {
1819     /*
1820     $(this.prefetchedImgs[this.twoPage.currentIndexL]).bind('dblclick', function() {
1821         //self.prevPage();
1822         self.autoStop();
1823         self.left();
1824     });
1825     $(this.prefetchedImgs[this.twoPage.currentIndexR]).bind('dblclick', function() {
1826         //self.nextPage();'
1827         self.autoStop();
1828         self.right();        
1829     });
1830     */
1831     
1832     this.setDragHandler2UP( this.prefetchedImgs[this.twoPage.currentIndexL] );
1833     this.setClickHandler2UP( this.prefetchedImgs[this.twoPage.currentIndexL],
1834         { self: this },
1835         function(e) {
1836             e.data.self.left();
1837         }
1838     );
1839         
1840     this.setDragHandler2UP( this.prefetchedImgs[this.twoPage.currentIndexR] );
1841     this.setClickHandler2UP( this.prefetchedImgs[this.twoPage.currentIndexR],
1842         { self: this },
1843         function(e) {
1844             e.data.self.right();
1845         }
1846     );
1847 }
1848
1849 // prefetchImg()
1850 //______________________________________________________________________________
1851 GnuBook.prototype.prefetchImg = function(index) {
1852     var pageURI = this.getPageURI(index);
1853
1854     // Load image if not loaded or URI has changed (e.g. due to scaling)
1855     var loadImage = false;
1856     if (undefined == this.prefetchedImgs[index]) {
1857         //console.log('no image for ' + index);
1858         loadImage = true;
1859     } else if (pageURI != this.prefetchedImgs[index].uri) {
1860         //console.log('uri changed for ' + index);
1861         loadImage = true;
1862     }
1863     
1864     if (loadImage) {
1865         //console.log('prefetching ' + index);
1866         var img = document.createElement("img");
1867         img.src = pageURI;
1868         img.uri = pageURI; // browser may rewrite src so we stash raw URI here
1869         this.prefetchedImgs[index] = img;
1870     }
1871 }
1872
1873
1874 // prepareFlipLeftToRight()
1875 //
1876 //______________________________________________________________________________
1877 //
1878 // Prepare to flip the left page towards the right.  This corresponds to moving
1879 // backward when the page progression is left to right.
1880 GnuBook.prototype.prepareFlipLeftToRight = function(prevL, prevR) {
1881
1882     //console.log('  preparing left->right for ' + prevL + ',' + prevR);
1883
1884     this.prefetchImg(prevL);
1885     this.prefetchImg(prevR);
1886     
1887     var height  = this.getPageHeight(prevL); 
1888     var width   = this.getPageWidth(prevL);    
1889     var middle = this.twoPage.middle;
1890     var top  = this.twoPageTop();                
1891     var scaledW = this.twoPage.height*width/height; // $$$ assumes height of page is dominant
1892
1893     // The gutter is the dividing line between the left and right pages.
1894     // It is offset from the middle to create the illusion of thickness to the pages
1895     var gutter = middle + this.gutterOffsetForIndex(prevL);
1896     
1897     //console.log('    gutter for ' + prevL + ' is ' + gutter);
1898     //console.log('    prevL.left: ' + (gutter - scaledW) + 'px');
1899     //console.log('    changing prevL ' + prevL + ' to left: ' + (gutter-scaledW) + ' width: ' + scaledW);
1900     
1901     leftCSS = {
1902         position: 'absolute',
1903         left: gutter-scaledW+'px',
1904         right: '', // clear right property
1905         top:    top+'px',
1906         height: this.twoPage.height,
1907         width:  scaledW+'px',
1908         backgroundColor: this.getPageBackgroundColor(prevL),
1909         borderRight: '1px solid black',
1910         zIndex: 1
1911     }
1912     
1913     $(this.prefetchedImgs[prevL]).css(leftCSS);
1914
1915     $('#GBtwopageview').append(this.prefetchedImgs[prevL]);
1916
1917     //console.log('    changing prevR ' + prevR + ' to left: ' + gutter + ' width: 0');
1918
1919     rightCSS = {
1920         position: 'absolute',
1921         left:   gutter+'px',
1922         right: '',
1923         top:    top+'px',
1924         height: this.twoPage.height,
1925         width:  '0px',
1926         backgroundColor: this.getPageBackgroundColor(prevR),
1927         borderLeft: '1px solid black',
1928         zIndex: 2
1929     }
1930     
1931     $(this.prefetchedImgs[prevR]).css(rightCSS);
1932
1933     $('#GBtwopageview').append(this.prefetchedImgs[prevR]);
1934             
1935 }
1936
1937 // $$$ mang we're adding an extra pixel in the middle.  See https://bugs.edge.launchpad.net/gnubook/+bug/411667
1938 // prepareFlipRightToLeft()
1939 //______________________________________________________________________________
1940 GnuBook.prototype.prepareFlipRightToLeft = function(nextL, nextR) {
1941
1942     //console.log('  preparing left<-right for ' + nextL + ',' + nextR);
1943
1944     // Prefetch images
1945     this.prefetchImg(nextL);
1946     this.prefetchImg(nextR);
1947
1948     var height  = this.getPageHeight(nextR); 
1949     var width   = this.getPageWidth(nextR);    
1950     var middle = this.twoPage.middle;
1951     var top  = this.twoPageTop();               
1952     var scaledW = this.twoPage.height*width/height;
1953
1954     var gutter = middle + this.gutterOffsetForIndex(nextL);
1955         
1956     //console.log(' prepareRTL changing nextR ' + nextR + ' to left: ' + gutter);
1957     $(this.prefetchedImgs[nextR]).css({
1958         position: 'absolute',
1959         left:   gutter+'px',
1960         top:    top+'px',
1961         backgroundColor: this.getPageBackgroundColor(nextR),
1962         height: this.twoPage.height,
1963         width:  scaledW+'px',
1964         borderLeft: '1px solid black',
1965         zIndex: 1
1966     });
1967
1968     $('#GBtwopageview').append(this.prefetchedImgs[nextR]);
1969
1970     height  = this.getPageHeight(nextL); 
1971     width   = this.getPageWidth(nextL);      
1972     scaledW = this.twoPage.height*width/height;
1973
1974     //console.log(' prepareRTL changing nextL ' + nextL + ' to right: ' + $('#GBcontainer').width()-gutter);
1975     $(this.prefetchedImgs[nextL]).css({
1976         position: 'absolute',
1977         right:   $('#GBtwopageview').attr('clientWidth')-gutter+'px',
1978         top:    top+'px',
1979         backgroundColor: this.getPageBackgroundColor(nextL),
1980         height: this.twoPage.height,
1981         width:  0+'px', // Start at 0 width, then grow to the left
1982         borderRight: '1px solid black',
1983         zIndex: 2
1984     });
1985
1986     $('#GBtwopageview').append(this.prefetchedImgs[nextL]);    
1987             
1988 }
1989
1990 // getNextLeafs() -- NOT RTL AWARE
1991 //______________________________________________________________________________
1992 // GnuBook.prototype.getNextLeafs = function(o) {
1993 //     //TODO: we might have two left or two right leafs in a row (damaged book)
1994 //     //For now, assume that leafs are contiguous.
1995 //     
1996 //     //return [this.twoPage.currentIndexL+2, this.twoPage.currentIndexL+3];
1997 //     o.L = this.twoPage.currentIndexL+2;
1998 //     o.R = this.twoPage.currentIndexL+3;
1999 // }
2000
2001 // getprevLeafs() -- NOT RTL AWARE
2002 //______________________________________________________________________________
2003 // GnuBook.prototype.getPrevLeafs = function(o) {
2004 //     //TODO: we might have two left or two right leafs in a row (damaged book)
2005 //     //For now, assume that leafs are contiguous.
2006 //     
2007 //     //return [this.twoPage.currentIndexL-2, this.twoPage.currentIndexL-1];
2008 //     o.L = this.twoPage.currentIndexL-2;
2009 //     o.R = this.twoPage.currentIndexL-1;
2010 // }
2011
2012 // pruneUnusedImgs()
2013 //______________________________________________________________________________
2014 GnuBook.prototype.pruneUnusedImgs = function() {
2015     //console.log('current: ' + this.twoPage.currentIndexL + ' ' + this.twoPage.currentIndexR);
2016     for (var key in this.prefetchedImgs) {
2017         //console.log('key is ' + key);
2018         if ((key != this.twoPage.currentIndexL) && (key != this.twoPage.currentIndexR)) {
2019             //console.log('removing key '+ key);
2020             $(this.prefetchedImgs[key]).remove();
2021         }
2022         if ((key < this.twoPage.currentIndexL-4) || (key > this.twoPage.currentIndexR+4)) {
2023             //console.log('deleting key '+ key);
2024             delete this.prefetchedImgs[key];
2025         }
2026     }
2027 }
2028
2029 // prefetch()
2030 //______________________________________________________________________________
2031 GnuBook.prototype.prefetch = function() {
2032
2033     // prefetch visible pages first
2034     this.prefetchImg(this.twoPage.currentIndexL);
2035     this.prefetchImg(this.twoPage.currentIndexR);
2036     
2037     var adjacentPagesToLoad = 3;
2038     
2039     var lowCurrent = Math.min(this.twoPage.currentIndexL, this.twoPage.currentIndexR);
2040     var highCurrent = Math.max(this.twoPage.currentIndexL, this.twoPage.currentIndexR);
2041         
2042     var start = Math.max(lowCurrent - adjacentPagesToLoad, 0);
2043     var end = Math.min(highCurrent + adjacentPagesToLoad, this.numLeafs - 1);
2044     
2045     // Load images spreading out from current
2046     for (var i = 1; i <= adjacentPagesToLoad; i++) {
2047         var goingDown = lowCurrent - i;
2048         if (goingDown >= start) {
2049             this.prefetchImg(goingDown);
2050         }
2051         var goingUp = highCurrent + i;
2052         if (goingUp <= end) {
2053             this.prefetchImg(goingUp);
2054         }
2055     }
2056
2057     /*
2058     var lim = this.twoPage.currentIndexL-4;
2059     var i;
2060     lim = Math.max(lim, 0);
2061     for (i = lim; i < this.twoPage.currentIndexL; i++) {
2062         this.prefetchImg(i);
2063     }
2064     
2065     if (this.numLeafs > (this.twoPage.currentIndexR+1)) {
2066         lim = Math.min(this.twoPage.currentIndexR+4, this.numLeafs-1);
2067         for (i=this.twoPage.currentIndexR+1; i<=lim; i++) {
2068             this.prefetchImg(i);
2069         }
2070     }
2071     */
2072 }
2073
2074 // getPageWidth2UP()
2075 //______________________________________________________________________________
2076 GnuBook.prototype.getPageWidth2UP = function(index) {
2077     // We return the width based on the dominant height
2078     var height  = this.getPageHeight(index); 
2079     var width   = this.getPageWidth(index);    
2080     return Math.floor(this.twoPage.height*width/height); // $$$ we assume width is relative to current spread
2081 }    
2082
2083 // search()
2084 //______________________________________________________________________________
2085 GnuBook.prototype.search = function(term) {
2086     term = term.replace(/\//g, ' '); // strip slashes
2087     this.searchTerm = term;
2088     $('#GnuBookSearchScript').remove();
2089         var script  = document.createElement("script");
2090         script.setAttribute('id', 'GnuBookSearchScript');
2091         script.setAttribute("type", "text/javascript");
2092         script.setAttribute("src", 'http://'+this.server+'/GnuBook/flipbook_search_gb.php?url='+escape(this.bookPath + '_djvu.xml')+'&term='+term+'&format=XML&callback=gb.GBSearchCallback');
2093         document.getElementsByTagName('head')[0].appendChild(script);
2094         $('#GnuBookSearchBox').val(term);
2095         $('#GnuBookSearchResults').html('Searching...');
2096 }
2097
2098 // GBSearchCallback()
2099 //______________________________________________________________________________
2100 GnuBook.prototype.GBSearchCallback = function(txt) {
2101     //alert(txt);
2102     if (jQuery.browser.msie) {
2103         var dom=new ActiveXObject("Microsoft.XMLDOM");
2104         dom.async="false";
2105         dom.loadXML(txt);    
2106     } else {
2107         var parser = new DOMParser();
2108         var dom = parser.parseFromString(txt, "text/xml");    
2109     }
2110     
2111     $('#GnuBookSearchResults').empty();    
2112     $('#GnuBookSearchResults').append('<ul>');
2113     
2114     for (var key in this.searchResults) {
2115         if (null != this.searchResults[key].div) {
2116             $(this.searchResults[key].div).remove();
2117         }
2118         delete this.searchResults[key];
2119     }
2120     
2121     var pages = dom.getElementsByTagName('PAGE');
2122     
2123     if (0 == pages.length) {
2124         // $$$ it would be nice to echo the (sanitized) search result here
2125         $('#GnuBookSearchResults').append('<li>No search results found</li>');
2126     } else {    
2127         for (var i = 0; i < pages.length; i++){
2128             //console.log(pages[i].getAttribute('file').substr(1) +'-'+ parseInt(pages[i].getAttribute('file').substr(1), 10));
2129     
2130             
2131             var re = new RegExp (/_(\d{4})/);
2132             var reMatch = re.exec(pages[i].getAttribute('file'));
2133             var index = parseInt(reMatch[1], 10);
2134             //var index = parseInt(pages[i].getAttribute('file').substr(1), 10);
2135             
2136             var children = pages[i].childNodes;
2137             var context = '';
2138             for (var j=0; j<children.length; j++) {
2139                 //console.log(j + ' - ' + children[j].nodeName);
2140                 //console.log(children[j].firstChild.nodeValue);
2141                 if ('CONTEXT' == children[j].nodeName) {
2142                     context += children[j].firstChild.nodeValue;
2143                 } else if ('WORD' == children[j].nodeName) {
2144                     context += '<b>'+children[j].firstChild.nodeValue+'</b>';
2145                     
2146                     var index = this.leafNumToIndex(index);
2147                     if (null != index) {
2148                         //coordinates are [left, bottom, right, top, [baseline]]
2149                         //we'll skip baseline for now...
2150                         var coords = children[j].getAttribute('coords').split(',',4);
2151                         if (4 == coords.length) {
2152                             this.searchResults[index] = {'l':coords[0], 'b':coords[1], 'r':coords[2], 't':coords[3], 'div':null};
2153                         }
2154                     }
2155                 }
2156             }
2157             var pageName = this.getPageName(index);
2158             //TODO: remove hardcoded instance name
2159             $('#GnuBookSearchResults').append('<li><b><a href="javascript:gb.jumpToIndex('+index+');">' + pageName + '</a></b> - ' + context + '</li>');
2160         }
2161     }
2162     $('#GnuBookSearchResults').append('</ul>');
2163
2164     // $$$ update again for case of loading search URL in new browser window (search box may not have been ready yet)
2165         $('#GnuBookSearchBox').val(this.searchTerm);
2166
2167     this.updateSearchHilites();
2168 }
2169
2170 // updateSearchHilites()
2171 //______________________________________________________________________________
2172 GnuBook.prototype.updateSearchHilites = function() {
2173     if (2 == this.mode) {
2174         this.updateSearchHilites2UP();
2175     } else {
2176         this.updateSearchHilites1UP();
2177     }
2178 }
2179
2180 // showSearchHilites1UP()
2181 //______________________________________________________________________________
2182 GnuBook.prototype.updateSearchHilites1UP = function() {
2183
2184     for (var key in this.searchResults) {
2185         
2186         if (-1 != jQuery.inArray(parseInt(key), this.displayedIndices)) {
2187             var result = this.searchResults[key];
2188             if(null == result.div) {
2189                 result.div = document.createElement('div');
2190                 $(result.div).attr('className', 'GnuBookSearchHilite').appendTo('#pagediv'+key);
2191                 //console.log('appending ' + key);
2192             }    
2193             $(result.div).css({
2194                 width:  (result.r-result.l)/this.reduce + 'px',
2195                 height: (result.b-result.t)/this.reduce + 'px',
2196                 left:   (result.l)/this.reduce + 'px',
2197                 top:    (result.t)/this.reduce +'px'
2198             });
2199
2200         } else {
2201             //console.log(key + ' not displayed');
2202             this.searchResults[key].div=null;
2203         }
2204     }
2205 }
2206
2207 // twoPageGutter()
2208 //______________________________________________________________________________
2209 // Returns the position of the gutter (line between the page images)
2210 GnuBook.prototype.twoPageGutter = function() {
2211     return this.twoPage.middle + this.gutterOffsetForIndex(this.twoPage.currentIndexL);
2212 }
2213
2214 // twoPageTop()
2215 //______________________________________________________________________________
2216 // Returns the offset for the top of the page images
2217 GnuBook.prototype.twoPageTop = function() {
2218     return this.twoPage.coverExternalPadding + this.twoPage.coverInternalPadding; // $$$ + border?
2219 }
2220
2221 // twoPageCoverWidth()
2222 //______________________________________________________________________________
2223 // Returns the width of the cover div given the total page width
2224 GnuBook.prototype.twoPageCoverWidth = function(totalPageWidth) {
2225     return totalPageWidth + this.twoPage.edgeWidth + 2*this.twoPage.coverInternalPadding;
2226 }
2227
2228 // twoPageGetViewCenter()
2229 //______________________________________________________________________________
2230 // Returns the percentage offset into twopageview div at the center of container div
2231 // { percentageX: float, percentageY: float }
2232 GnuBook.prototype.twoPageGetViewCenter = function() {
2233     var center = {};
2234
2235     var containerOffset = $('#GBcontainer').offset();
2236     var viewOffset = $('#GBtwopageview').offset();
2237     center.percentageX = (containerOffset.left - viewOffset.left + ($('#GBcontainer').attr('clientWidth') >> 1)) / this.twoPage.totalWidth;
2238     center.percentageY = (containerOffset.top - viewOffset.top + ($('#GBcontainer').attr('clientHeight') >> 1)) / this.twoPage.totalHeight;
2239     
2240     return center;
2241 }
2242
2243 // twoPageCenterView(percentageX, percentageY)
2244 //______________________________________________________________________________
2245 // Centers the point given by percentage from left,top of twopageview
2246 GnuBook.prototype.twoPageCenterView = function(percentageX, percentageY) {
2247     if ('undefined' == typeof(percentageX)) {
2248         percentageX = 0.5;
2249     }
2250     if ('undefined' == typeof(percentageY)) {
2251         percentageY = 0.5;
2252     }
2253
2254     var viewWidth = $('#GBtwopageview').width();
2255     var containerClientWidth = $('#GBcontainer').attr('clientWidth');
2256     var intoViewX = percentageX * viewWidth;
2257     
2258     var viewHeight = $('#GBtwopageview').height();
2259     var containerClientHeight = $('#GBcontainer').attr('clientHeight');
2260     var intoViewY = percentageY * viewHeight;
2261     
2262     if (viewWidth < containerClientWidth) {
2263         // Can fit width without scrollbars - center by adjusting offset
2264         $('#GBtwopageview').css('left', (containerClientWidth >> 1) - intoViewX + 'px');    
2265     } else {
2266         // Need to scroll to center
2267         $('#GBtwopageview').css('left', 0);
2268         $('#GBcontainer').scrollLeft(intoViewX - (containerClientWidth >> 1));
2269     }
2270     
2271     if (viewHeight < containerClientHeight) {
2272         // Fits with scrollbars - add offset
2273         $('#GBtwopageview').css('top', (containerClientHeight >> 1) - intoViewY + 'px');
2274     } else {
2275         $('#GBtwopageview').css('top', 0);
2276         $('#GBcontainer').scrollTop(intoViewY - (containerClientHeight >> 1));
2277     }
2278 }
2279
2280 // twoPageFlipAreaHeight
2281 //______________________________________________________________________________
2282 // Returns the integer height of the click-to-flip areas at the edges of the book
2283 GnuBook.prototype.twoPageFlipAreaHeight = function() {
2284     return parseInt(this.twoPage.height);
2285 }
2286
2287 // twoPageFlipAreaWidth
2288 //______________________________________________________________________________
2289 // Returns the integer width of the flip areas 
2290 GnuBook.prototype.twoPageFlipAreaWidth = function() {
2291     var max = 100; // $$$ TODO base on view width?
2292     var min = 10;
2293     
2294     var width = this.twoPage.width * 0.15;
2295     return parseInt(GnuBook.util.clamp(width, min, max));
2296 }
2297
2298 // twoPageFlipAreaTop
2299 //______________________________________________________________________________
2300 // Returns integer top offset for flip areas
2301 GnuBook.prototype.twoPageFlipAreaTop = function() {
2302     return parseInt(this.twoPage.bookCoverDivTop + this.twoPage.coverInternalPadding);
2303 }
2304
2305 // twoPageLeftFlipAreaLeft
2306 //______________________________________________________________________________
2307 // Left offset for left flip area
2308 GnuBook.prototype.twoPageLeftFlipAreaLeft = function() {
2309     return parseInt(this.twoPage.gutter - this.twoPage.scaledWL);
2310 }
2311
2312 // twoPageRightFlipAreaLeft
2313 //______________________________________________________________________________
2314 // Left offset for right flip area
2315 GnuBook.prototype.twoPageRightFlipAreaLeft = function() {
2316     return parseInt(this.twoPage.gutter + this.twoPage.scaledWR - this.twoPageFlipAreaWidth());
2317 }
2318
2319 // twoPagePlaceFlipAreas
2320 //______________________________________________________________________________
2321 // Readjusts position of flip areas based on current layout
2322 GnuBook.prototype.twoPagePlaceFlipAreas = function() {
2323     // We don't set top since it shouldn't change relative to view
2324     $(this.twoPage.leftFlipArea).css({
2325         left: this.twoPageLeftFlipAreaLeft() + 'px',
2326         width: this.twoPageFlipAreaWidth() + 'px'
2327     });
2328     $(this.twoPage.rightFlipArea).css({
2329         left: this.twoPageRightFlipAreaLeft() + 'px',
2330         width: this.twoPageFlipAreaWidth() + 'px'
2331     });
2332 }
2333     
2334 // showSearchHilites2UP()
2335 //______________________________________________________________________________
2336 GnuBook.prototype.updateSearchHilites2UP = function() {
2337
2338     for (var key in this.searchResults) {
2339         key = parseInt(key, 10);
2340         if (-1 != jQuery.inArray(key, this.displayedIndices)) {
2341             var result = this.searchResults[key];
2342             if(null == result.div) {
2343                 result.div = document.createElement('div');
2344                 $(result.div).attr('className', 'GnuBookSearchHilite').css('zIndex', 3).appendTo('#GBtwopageview');
2345                 //console.log('appending ' + key);
2346             }
2347
2348             // We calculate the reduction factor for the specific page because it can be different
2349             // for each page in the spread
2350             var height = this.getPageHeight(key);
2351             var width  = this.getPageWidth(key)
2352             var reduce = this.twoPage.height/height;
2353             var scaledW = parseInt(width*reduce);
2354             
2355             var gutter = this.twoPageGutter();
2356             var pageL;
2357             if ('L' == this.getPageSide(key)) {
2358                 pageL = gutter-scaledW;
2359             } else {
2360                 pageL = gutter;
2361             }
2362             var pageT  = this.twoPageTop();
2363             
2364             $(result.div).css({
2365                 width:  (result.r-result.l)*reduce + 'px',
2366                 height: (result.b-result.t)*reduce + 'px',
2367                 left:   pageL+(result.l)*reduce + 'px',
2368                 top:    pageT+(result.t)*reduce +'px'
2369             });
2370
2371         } else {
2372             //console.log(key + ' not displayed');
2373             if (null != this.searchResults[key].div) {
2374                 //console.log('removing ' + key);
2375                 $(this.searchResults[key].div).remove();
2376             }
2377             this.searchResults[key].div=null;
2378         }
2379     }
2380 }
2381
2382 // removeSearchHilites()
2383 //______________________________________________________________________________
2384 GnuBook.prototype.removeSearchHilites = function() {
2385     for (var key in this.searchResults) {
2386         if (null != this.searchResults[key].div) {
2387             $(this.searchResults[key].div).remove();
2388             this.searchResults[key].div=null;
2389         }        
2390     }
2391 }
2392
2393 // printPage
2394 //______________________________________________________________________________
2395 GnuBook.prototype.printPage = function() {
2396     window.open(this.getPrintURI(), 'printpage', 'width=400, height=500, resizable=yes, scrollbars=no, toolbar=no, location=no');
2397
2398     /* iframe implementation
2399
2400     if (null != this.printPopup) { // check if already showing
2401         return;
2402     }
2403     this.printPopup = document.createElement("div");
2404     $(this.printPopup).css({
2405         position: 'absolute',
2406         top:      '20px',
2407         left:     ($('#GBcontainer').width()-400)/2 + 'px',
2408         width:    '400px',
2409         padding:  "20px",
2410         border:   "3px double #999999",
2411         zIndex:   3,
2412         backgroundColor: "#fff"
2413     }).appendTo('#GnuBook');
2414
2415     var indexToPrint;
2416     if (this.constMode1up == this.mode) {
2417         indexToPrint = this.firstIndex;
2418     } else {
2419         indexToPrint = this.twoPage.currentIndexL;
2420     }
2421     
2422     this.indexToPrint = indexToPrint;
2423     
2424     var htmlStr = '<div style="text-align: center;">';
2425     htmlStr =  '<p style="text-align:center;"><b><a href="javascript:void(0);" onclick="window.frames[0].focus(); window.frames[0].print(); return false;">Click here to print this page</a></b></p>';
2426     htmlStr += '<div id="printDiv" name="printDiv" style="text-align: center; width: 233px; margin: auto">'
2427     htmlStr +=   '<p style="text-align:right; margin: 0; font-size: 0.85em">';
2428     //htmlStr +=     '<button class="GBicon rollover book_up" onclick="gb.updatePrintFrame(-1); return false;"></button> ';
2429     //htmlStr +=     '<button class="GBicon rollover book_down" onclick="gb.updatePrintFrame(1); return false;"></button>';
2430     htmlStr += '<a href="#" onclick="gb.updatePrintFrame(-1); return false;">Prev</a> <a href="#" onclick="gb.updatePrintFrame(1); return false;">Next</a>';
2431     htmlStr +=   '</p>';
2432     htmlStr += '</div>';
2433     htmlStr += '<p style="text-align:center;"><a href="" onclick="gb.printPopup = null; $(this.parentNode.parentNode).remove(); return false">Close popup</a></p>';
2434     htmlStr += '</div>';
2435     
2436     this.printPopup.innerHTML = htmlStr;
2437     
2438     var iframe = document.createElement('iframe');
2439     iframe.id = 'printFrame';
2440     iframe.name = 'printFrame';
2441     iframe.width = '233px'; // 8.5 x 11 aspect
2442     iframe.height = '300px';
2443     
2444     var self = this; // closure
2445         
2446     $(iframe).load(function() {
2447         var doc = GnuBook.util.getIFrameDocument(this);
2448         $('body', doc).html(self.getPrintFrameContent(self.indexToPrint));
2449     });
2450     
2451     $('#printDiv').prepend(iframe);
2452     */
2453 }
2454
2455 // Get print URI from current indices and mode
2456 GnuBook.prototype.getPrintURI = function() {
2457     var indexToPrint;
2458     if (this.constMode2up == this.mode) {
2459         indexToPrint = this.twoPage.currentIndexL;        
2460     } else {
2461         indexToPrint = this.firstIndex; // $$$ the index in the middle of the viewport would make more sense
2462     }
2463     
2464     var options = 'id=' + this.bookId + '&server=' + this.server + '&zip=' + this.zip
2465         + '&format=' + this.imageFormat + '&file=' + this._getPageFile(indexToPrint)
2466         + '&width=' + this.getPageWidth(indexToPrint) + '&height=' + this.getPageHeight(indexToPrint);
2467    
2468     if (this.constMode2up == this.mode) {
2469         options += '&file2=' + this._getPageFile(this.twoPage.currentIndexR) + '&width2=' + this.getPageWidth(this.twoPage.currentIndexR);
2470         options += '&height2=' + this.getPageHeight(this.twoPage.currentIndexR);
2471         options += '&title=' + encodeURIComponent(this.shortTitle(50) + ' - Pages ' + this.getPageNum(this.twoPage.currentIndexL) + ', ' + this.getPageNum(this.twoPage.currentIndexR));
2472     } else {
2473         options += '&title=' + encodeURIComponent(this.shortTitle(50) + ' - Page ' + this.getPageNum(indexToPrint));
2474     }
2475
2476     return '/bookreader/print.php?' + options;
2477 }
2478
2479 /* iframe implementation
2480 GnuBook.prototype.getPrintFrameContent = function(index) {    
2481     // We fit the image based on an assumed A4 aspect ratio.  A4 is a bit taller aspect than
2482     // 8.5x11 so we should end up not overflowing on either paper size.
2483     var paperAspect = 8.5 / 11;
2484     var imageAspect = this.getPageWidth(index) / this.getPageHeight(index);
2485     
2486     var rotate = 0;
2487     
2488     // Rotate if possible and appropriate, to get larger image size on printed page
2489     if (this.canRotatePage(index)) {
2490         if (imageAspect > 1 && imageAspect > paperAspect) {
2491             // more wide than square, and more wide than paper
2492             rotate = 90;
2493             imageAspect = 1/imageAspect;
2494         }
2495     }
2496     
2497     var fitAttrs;
2498     if (imageAspect > paperAspect) {
2499         // wider than paper, fit width
2500         fitAttrs = 'width="95%"';
2501     } else {
2502         // taller than paper, fit height
2503         fitAttrs = 'height="95%"';
2504     }
2505
2506     var imageURL = this.getPageURI(index, 1, rotate);
2507     var iframeStr = '<html style="padding: 0; border: 0; margin: 0"><head><title>' + this.bookTitle + '</title></head><body style="padding: 0; border:0; margin: 0">';
2508     iframeStr += '<div style="text-align: center; width: 99%; height: 99%; overflow: hidden;">';
2509     iframeStr +=   '<img src="' + imageURL + '" ' + fitAttrs + ' />';
2510     iframeStr += '</div>';
2511     iframeStr += '</body></html>';
2512     
2513     return iframeStr;
2514 }
2515
2516 GnuBook.prototype.updatePrintFrame = function(delta) {
2517     var newIndex = this.indexToPrint + delta;
2518     newIndex = GnuBook.util.clamp(newIndex, 0, this.numLeafs - 1);
2519     if (newIndex == this.indexToPrint) {
2520         return;
2521     }
2522     this.indexToPrint = newIndex;
2523     var doc = GnuBook.util.getIFrameDocument($('#printFrame')[0]);
2524     $('body', doc).html(this.getPrintFrameContent(this.indexToPrint));
2525 }
2526 */
2527
2528 // showEmbedCode()
2529 //______________________________________________________________________________
2530 GnuBook.prototype.showEmbedCode = function() {
2531     if (null != this.embedPopup) { // check if already showing
2532         return;
2533     }
2534     this.autoStop();
2535     this.embedPopup = document.createElement("div");
2536     $(this.embedPopup).css({
2537         position: 'absolute',
2538         top:      '20px',
2539         left:     ($('#GBcontainer').attr('clientWidth')-400)/2 + 'px',
2540         width:    '400px',
2541         padding:  "20px",
2542         border:   "3px double #999999",
2543         zIndex:   3,
2544         backgroundColor: "#fff"
2545     }).appendTo('#GnuBook');
2546
2547     htmlStr =  '<p style="text-align:center;"><b>Embed Bookreader in your blog!</b></p>';
2548     htmlStr += '<p>The bookreader uses iframes for embedding. It will not work on web hosts that block iframes. The embed feature has been tested on blogspot.com blogs as well as self-hosted Wordpress blogs. This feature will NOT work on wordpress.com blogs.</p>';
2549     htmlStr += '<p>Embed Code: <input type="text" size="40" value="' + this.getEmbedCode() + '"></p>';
2550     htmlStr += '<p style="text-align:center;"><a href="" onclick="gb.embedPopup = null; $(this.parentNode.parentNode).remove(); return false">Close popup</a></p>';    
2551
2552     this.embedPopup.innerHTML = htmlStr;
2553     $(this.embedPopup).find('input').bind('click', function() {
2554         this.select();
2555     })
2556 }
2557
2558 // autoToggle()
2559 //______________________________________________________________________________
2560 GnuBook.prototype.autoToggle = function() {
2561
2562     var bComingFrom1up = false;
2563     if (2 != this.mode) {
2564         bComingFrom1up = true;
2565         this.switchMode(2);
2566     }
2567     
2568     // Change to autofit if book is too large
2569     if (this.reduce < this.twoPageGetAutofitReduce()) {
2570         this.zoom2up(0);
2571     }
2572
2573     var self = this;
2574     if (null == this.autoTimer) {
2575         this.flipSpeed = 2000;
2576         
2577         // $$$ Draw events currently cause layout problems when they occur during animation.
2578         //     There is a specific problem when changing from 1-up immediately to autoplay in RTL so
2579         //     we workaround for now by not triggering immediate animation in that case.
2580         //     See https://bugs.launchpad.net/gnubook/+bug/328327
2581         if (('rl' == this.pageProgression) && bComingFrom1up) {
2582             // don't flip immediately -- wait until timer fires
2583         } else {
2584             // flip immediately
2585             this.flipFwdToIndex();        
2586         }
2587
2588         $('#GBtoolbar .play').hide();
2589         $('#GBtoolbar .pause').show();
2590         this.autoTimer=setInterval(function(){
2591             if (self.animating) {return;}
2592             
2593             if (Math.max(self.twoPage.currentIndexL, self.twoPage.currentIndexR) >= self.lastDisplayableIndex()) {
2594                 self.flipBackToIndex(1); // $$$ really what we want?
2595             } else {            
2596                 self.flipFwdToIndex();
2597             }
2598         },5000);
2599     } else {
2600         this.autoStop();
2601     }
2602 }
2603
2604 // autoStop()
2605 //______________________________________________________________________________
2606 // Stop autoplay mode, allowing animations to finish
2607 GnuBook.prototype.autoStop = function() {
2608     if (null != this.autoTimer) {
2609         clearInterval(this.autoTimer);
2610         this.flipSpeed = 'fast';
2611         $('#GBtoolbar .pause').hide();
2612         $('#GBtoolbar .play').show();
2613         this.autoTimer = null;
2614     }
2615 }
2616
2617 // stopFlipAnimations
2618 //______________________________________________________________________________
2619 // Immediately stop flip animations.  Callbacks are triggered.
2620 GnuBook.prototype.stopFlipAnimations = function() {
2621
2622     this.autoStop(); // Clear timers
2623
2624     // Stop animation, clear queue, trigger callbacks
2625     if (this.leafEdgeTmp) {
2626         $(this.leafEdgeTmp).stop(false, true);
2627     }
2628     jQuery.each(this.prefetchedImgs, function() {
2629         $(this).stop(false, true);
2630         });
2631
2632     // And again since animations also queued in callbacks
2633     if (this.leafEdgeTmp) {
2634         $(this.leafEdgeTmp).stop(false, true);
2635     }
2636     jQuery.each(this.prefetchedImgs, function() {
2637         $(this).stop(false, true);
2638         });
2639    
2640 }
2641
2642 // keyboardNavigationIsDisabled(event)
2643 //   - returns true if keyboard navigation should be disabled for the event
2644 //______________________________________________________________________________
2645 GnuBook.prototype.keyboardNavigationIsDisabled = function(event) {
2646     if (event.target.tagName == "INPUT") {
2647         return true;
2648     }   
2649     return false;
2650 }
2651
2652 // gutterOffsetForIndex
2653 //______________________________________________________________________________
2654 //
2655 // Returns the gutter offset for the spread containing the given index.
2656 // This function supports RTL
2657 GnuBook.prototype.gutterOffsetForIndex = function(pindex) {
2658
2659     // To find the offset of the gutter from the middle we calculate our percentage distance
2660     // through the book (0..1), remap to (-0.5..0.5) and multiply by the total page edge width
2661     var offset = parseInt(((pindex / this.numLeafs) - 0.5) * this.twoPage.edgeWidth);
2662     
2663     // But then again for RTL it's the opposite
2664     if ('rl' == this.pageProgression) {
2665         offset = -offset;
2666     }
2667     
2668     return offset;
2669 }
2670
2671 // leafEdgeWidth
2672 //______________________________________________________________________________
2673 // Returns the width of the leaf edge div for the page with index given
2674 GnuBook.prototype.leafEdgeWidth = function(pindex) {
2675     // $$$ could there be single pixel rounding errors for L vs R?
2676     if ((this.getPageSide(pindex) == 'L') && (this.pageProgression != 'rl')) {
2677         return parseInt( (pindex/this.numLeafs) * this.twoPage.edgeWidth + 0.5);
2678     } else {
2679         return parseInt( (1 - pindex/this.numLeafs) * this.twoPage.edgeWidth + 0.5);
2680     }
2681 }
2682
2683 // jumpIndexForLeftEdgePageX
2684 //______________________________________________________________________________
2685 // Returns the target jump leaf given a page coordinate (inside the left page edge div)
2686 GnuBook.prototype.jumpIndexForLeftEdgePageX = function(pageX) {
2687     if ('rl' != this.pageProgression) {
2688         // LTR - flipping backward
2689         var jumpIndex = this.twoPage.currentIndexL - ($(this.leafEdgeL).offset().left + $(this.leafEdgeL).width() - pageX) * 10;
2690
2691         // browser may have resized the div due to font size change -- see https://bugs.launchpad.net/gnubook/+bug/333570        
2692         jumpIndex = GnuBook.util.clamp(Math.round(jumpIndex), this.firstDisplayableIndex(), this.twoPage.currentIndexL - 2);
2693         return jumpIndex;
2694
2695     } else {
2696         var jumpIndex = this.twoPage.currentIndexL + ($(this.leafEdgeL).offset().left + $(this.leafEdgeL).width() - pageX) * 10;
2697         jumpIndex = GnuBook.util.clamp(Math.round(jumpIndex), this.twoPage.currentIndexL + 2, this.lastDisplayableIndex());
2698         return jumpIndex;
2699     }
2700 }
2701
2702 // jumpIndexForRightEdgePageX
2703 //______________________________________________________________________________
2704 // Returns the target jump leaf given a page coordinate (inside the right page edge div)
2705 GnuBook.prototype.jumpIndexForRightEdgePageX = function(pageX) {
2706     if ('rl' != this.pageProgression) {
2707         // LTR
2708         var jumpIndex = this.twoPage.currentIndexR + (pageX - $(this.leafEdgeR).offset().left) * 10;
2709         jumpIndex = GnuBook.util.clamp(Math.round(jumpIndex), this.twoPage.currentIndexR + 2, this.lastDisplayableIndex());
2710         return jumpIndex;
2711     } else {
2712         var jumpIndex = this.twoPage.currentIndexR - (pageX - $(this.leafEdgeR).offset().left) * 10;
2713         jumpIndex = GnuBook.util.clamp(Math.round(jumpIndex), this.firstDisplayableIndex(), this.twoPage.currentIndexR - 2);
2714         return jumpIndex;
2715     }
2716 }
2717
2718 GnuBook.prototype.initToolbar = function(mode, ui) {
2719
2720     $("#GnuBook").append("<div id='GBtoolbar'>"
2721         + "<span id='GBtoolbarbuttons' style='float: right'>"
2722         +   "<button class='GBicon print rollover' /> <button class='GBicon rollover embed' />"
2723         +   "<form class='GBpageform' action='javascript:' onsubmit='gb.jumpToPage(this.elements[0].value)'> <span class='label'>Page:<input id='GBpagenum' type='text' size='3' onfocus='gb.autoStop();'></input></span></form>"
2724         +   "<div class='GBtoolbarmode2' style='display: none'><button class='GBicon rollover book_leftmost' /><button class='GBicon rollover book_left' /><button class='GBicon rollover book_right' /><button class='GBicon rollover book_rightmost' /></div>"
2725         +   "<div class='GBtoolbarmode1' style='display: none'><button class='GBicon rollover book_top' /><button class='GBicon rollover book_up' /> <button class='GBicon rollover book_down' /><button class='GBicon rollover book_bottom' /></div>"
2726         +   "<button class='GBicon rollover play' /><button class='GBicon rollover pause' style='display: none' />"
2727         + "</span>"
2728         
2729         + "<span>"
2730         +   "<a class='GBicon logo rollover' href='" + this.logoURL + "'>&nbsp;</a>"
2731         +   " <button class='GBicon rollover zoom_out' onclick='gb.zoom(-1); return false;'/>" 
2732         +   "<button class='GBicon rollover zoom_in' onclick='gb.zoom(1); return false;'/>"
2733         +   " <span class='label'>Zoom: <span id='GBzoom'>"+parseInt(100/this.reduce)+"</span></span>"
2734         +   " <button class='GBicon rollover one_page_mode' onclick='gb.switchMode(1); return false;'/>"
2735         +   " <button class='GBicon rollover two_page_mode' onclick='gb.switchMode(2); return false;'/>"
2736         + "</span>"
2737         
2738         + "<span id='#GBbooktitle'>"
2739         +   "&nbsp;&nbsp;<a class='GBblack title' href='"+this.bookUrl+"' target='_blank'>"+this.bookTitle+"</a>"
2740         + "</span>"
2741         + "</div>");
2742     
2743     this.updateToolbarZoom(this.reduce); // Pretty format
2744         
2745     if (ui == "embed") {
2746         $("#GnuBook a.logo").attr("target","_blank");
2747     }
2748
2749     // $$$ turn this into a member variable
2750     var jToolbar = $('#GBtoolbar'); // j prefix indicates jQuery object
2751     
2752     // We build in mode 2
2753     jToolbar.append();
2754
2755     this.bindToolbarNavHandlers(jToolbar);
2756     
2757     // Setup tooltips -- later we could load these from a file for i18n
2758     var titles = { '.logo': 'Go to Archive.org',
2759                    '.zoom_in': 'Zoom in',
2760                    '.zoom_out': 'Zoom out',
2761                    '.one_page_mode': 'One-page view',
2762                    '.two_page_mode': 'Two-page view',
2763                    '.print': 'Print this page',
2764                    '.embed': 'Embed bookreader',
2765                    '.book_left': 'Flip left',
2766                    '.book_right': 'Flip right',
2767                    '.book_up': 'Page up',
2768                    '.book_down': 'Page down',
2769                    '.play': 'Play',
2770                    '.pause': 'Pause',
2771                    '.book_top': 'First page',
2772                    '.book_bottom': 'Last page'
2773                   };
2774     if ('rl' == this.pageProgression) {
2775         titles['.book_leftmost'] = 'Last page';
2776         titles['.book_rightmost'] = 'First page';
2777     } else { // LTR
2778         titles['.book_leftmost'] = 'First page';
2779         titles['.book_rightmost'] = 'Last page';
2780     }
2781                   
2782     for (var icon in titles) {
2783         jToolbar.find(icon).attr('title', titles[icon]);
2784     }
2785     
2786     // Hide mode buttons and autoplay if 2up is not available
2787     // $$$ if we end up with more than two modes we should show the applicable buttons
2788     if ( !this.canSwitchToMode(this.constMode2up) ) {
2789         jToolbar.find('.one_page_mode, .two_page_mode, .play, .pause').hide();
2790     }
2791
2792     // Switch to requested mode -- binds other click handlers
2793     this.switchToolbarMode(mode);
2794     
2795 }
2796
2797
2798 // switchToolbarMode
2799 //______________________________________________________________________________
2800 // Update the toolbar for the given mode (changes navigation buttons)
2801 // $$$ we should soon split the toolbar out into its own module
2802 GnuBook.prototype.switchToolbarMode = function(mode) {
2803     if (1 == mode) {
2804         // 1-up     
2805         $('#GBtoolbar .GBtoolbarmode2').hide();
2806         $('#GBtoolbar .GBtoolbarmode1').show().css('display', 'inline');
2807     } else {
2808         // 2-up
2809         $('#GBtoolbar .GBtoolbarmode1').hide();
2810         $('#GBtoolbar .GBtoolbarmode2').show().css('display', 'inline');
2811     }
2812 }
2813
2814 // bindToolbarNavHandlers
2815 //______________________________________________________________________________
2816 // Binds the toolbar handlers
2817 GnuBook.prototype.bindToolbarNavHandlers = function(jToolbar) {
2818
2819     jToolbar.find('.book_left').bind('click', function(e) {
2820         gb.left();
2821         return false;
2822     });
2823          
2824     jToolbar.find('.book_right').bind('click', function(e) {
2825         gb.right();
2826         return false;
2827     });
2828         
2829     jToolbar.find('.book_up').bind('click', function(e) {
2830         gb.prev();
2831         return false;
2832     });        
2833         
2834     jToolbar.find('.book_down').bind('click', function(e) {
2835         gb.next();
2836         return false;
2837     });
2838
2839     jToolbar.find('.print').bind('click', function(e) {
2840         gb.printPage();
2841         return false;
2842     });
2843         
2844     jToolbar.find('.embed').bind('click', function(e) {
2845         gb.showEmbedCode();
2846         return false;
2847     });
2848
2849     jToolbar.find('.play').bind('click', function(e) {
2850         gb.autoToggle();
2851         return false;
2852     });
2853
2854     jToolbar.find('.pause').bind('click', function(e) {
2855         gb.autoToggle();
2856         return false;
2857     });
2858     
2859     jToolbar.find('.book_top').bind('click', function(e) {
2860         gb.first();
2861         return false;
2862     });
2863
2864     jToolbar.find('.book_bottom').bind('click', function(e) {
2865         gb.last();
2866         return false;
2867     });
2868     
2869     jToolbar.find('.book_leftmost').bind('click', function(e) {
2870         gb.leftmost();
2871         return false;
2872     });
2873   
2874     jToolbar.find('.book_rightmost').bind('click', function(e) {
2875         gb.rightmost();
2876         return false;
2877     });
2878 }
2879
2880 // updateToolbarZoom(reduce)
2881 //______________________________________________________________________________
2882 // Update the displayed zoom factor based on reduction factor
2883 GnuBook.prototype.updateToolbarZoom = function(reduce) {
2884     var value;
2885     if (this.constMode2up == this.mode && this.twoPage.autofit) {
2886         value = 'Auto';
2887     } else {
2888         value = (100 / reduce).toFixed(2);
2889         // Strip trailing zeroes and decimal if all zeroes
2890         value = value.replace(/0+$/,'');
2891         value = value.replace(/\.$/,'');
2892         value += '%';
2893     }
2894     $('#GBzoom').text(value);
2895 }
2896
2897 // firstDisplayableIndex
2898 //______________________________________________________________________________
2899 // Returns the index of the first visible page, dependent on the mode.
2900 // $$$ Currently we cannot display the front/back cover in 2-up and will need to update
2901 // this function when we can as part of https://bugs.launchpad.net/gnubook/+bug/296788
2902 GnuBook.prototype.firstDisplayableIndex = function() {
2903     if (this.mode != this.constMode2up) {
2904         return 0;
2905     }
2906     
2907     if ('rl' != this.pageProgression) {
2908         // LTR
2909         if (this.getPageSide(0) == 'L') {
2910             return 0;
2911         } else {
2912             return -1;
2913         }
2914     } else {
2915         // RTL
2916         if (this.getPageSide(0) == 'R') {
2917             return 0;
2918         } else {
2919             return -1;
2920         }
2921     }
2922 }
2923
2924 // lastDisplayableIndex
2925 //______________________________________________________________________________
2926 // Returns the index of the last visible page, dependent on the mode.
2927 // $$$ Currently we cannot display the front/back cover in 2-up and will need to update
2928 // this function when we can as pa  rt of https://bugs.launchpad.net/gnubook/+bug/296788
2929 GnuBook.prototype.lastDisplayableIndex = function() {
2930
2931     var lastIndex = this.numLeafs - 1;
2932     
2933     if (this.mode != this.constMode2up) {
2934         return lastIndex;
2935     }
2936
2937     if ('rl' != this.pageProgression) {
2938         // LTR
2939         if (this.getPageSide(lastIndex) == 'R') {
2940             return lastIndex;
2941         } else {
2942             return lastIndex + 1;
2943         }
2944     } else {
2945         // RTL
2946         if (this.getPageSide(lastIndex) == 'L') {
2947             return lastIndex;
2948         } else {
2949             return lastIndex + 1;
2950         }
2951     }
2952 }
2953
2954 // shortTitle(maximumCharacters)
2955 //________
2956 // Returns a shortened version of the title with the maximum number of characters
2957 GnuBook.prototype.shortTitle = function(maximumCharacters) {
2958     if (this.bookTitle.length < maximumCharacters) {
2959         return this.bookTitle;
2960     }
2961     
2962     var title = this.bookTitle.substr(0, maximumCharacters - 3);
2963     title += '...';
2964     return title;
2965 }
2966
2967 // Parameter related functions
2968
2969 // updateFromParams(params)
2970 //________
2971 // Update ourselves from the params object.
2972 //
2973 // e.g. this.updateFromParams(this.paramsFromFragment(window.location.hash))
2974 GnuBook.prototype.updateFromParams = function(params) {
2975     if ('undefined' != typeof(params.mode)) {
2976         this.switchMode(params.mode);
2977     }
2978
2979     // process /search
2980     if ('undefined' != typeof(params.searchTerm)) {
2981         if (this.searchTerm != params.searchTerm) {
2982             this.search(params.searchTerm);
2983         }
2984     }
2985     
2986     // $$$ process /zoom
2987     
2988     // We only respect page if index is not set
2989     if ('undefined' != typeof(params.index)) {
2990         if (params.index != this.currentIndex()) {
2991             this.jumpToIndex(params.index);
2992         }
2993     } else if ('undefined' != typeof(params.page)) {
2994         // $$$ this assumes page numbers are unique
2995         if (params.page != this.getPageNum(this.currentIndex())) {
2996             this.jumpToPage(params.page);
2997         }
2998     }
2999     
3000     // $$$ process /region
3001     // $$$ process /highlight
3002 }
3003
3004 // paramsFromFragment(urlFragment)
3005 //________
3006 // Returns a object with configuration parametes from a URL fragment.
3007 //
3008 // E.g paramsFromFragment(window.location.hash)
3009 GnuBook.prototype.paramsFromFragment = function(urlFragment) {
3010     // URL fragment syntax specification: http://openlibrary.org/dev/docs/bookurls
3011     
3012     var params = {};
3013     
3014     // For convenience we allow an initial # character (as from window.location.hash)
3015     // but don't require it
3016     if (urlFragment.substr(0,1) == '#') {
3017         urlFragment = urlFragment.substr(1);
3018     }
3019     
3020     // Simple #nn syntax
3021     var oldStyleLeafNum = parseInt( /^\d+$/.exec(urlFragment) );
3022     if ( !isNaN(oldStyleLeafNum) ) {
3023         params.index = oldStyleLeafNum;
3024         
3025         // Done processing if using old-style syntax
3026         return params;
3027     }
3028     
3029     // Split into key-value pairs
3030     var urlArray = urlFragment.split('/');
3031     var urlHash = {};
3032     for (var i = 0; i < urlArray.length; i += 2) {
3033         urlHash[urlArray[i]] = urlArray[i+1];
3034     }
3035     
3036     // Mode
3037     if ('1up' == urlHash['mode']) {
3038         params.mode = this.constMode1up;
3039     } else if ('2up' == urlHash['mode']) {
3040         params.mode = this.constMode2up;
3041     }
3042     
3043     // Index and page
3044     if ('undefined' != typeof(urlHash['page'])) {
3045         // page was set -- may not be int
3046         params.page = urlHash['page'];
3047     }
3048     
3049     // $$$ process /region
3050     // $$$ process /search
3051     
3052     if (urlHash['search'] != undefined) {
3053         params.searchTerm = GnuBook.util.decodeURIComponentPlus(urlHash['search']);
3054     }
3055     
3056     // $$$ process /highlight
3057         
3058     return params;
3059 }
3060
3061 // paramsFromCurrent()
3062 //________
3063 // Create a params object from the current parameters.
3064 GnuBook.prototype.paramsFromCurrent = function() {
3065
3066     var params = {};
3067     
3068     var index = GnuBook.util.clamp(this.currentIndex(), 0, this.numLeafs - 1);
3069
3070     var pageNum = this.getPageNum(index);
3071     if ((pageNum === 0) || pageNum) {
3072         params.page = pageNum;
3073     }
3074     
3075     params.index = index;
3076     params.mode = this.mode;
3077     
3078     // $$$ highlight
3079     // $$$ region
3080
3081     // search    
3082     if (this.searchHighlightVisible()) {
3083         params.searchTerm = this.searchTerm;
3084     }
3085     
3086     return params;
3087 }
3088
3089 // fragmentFromParams(params)
3090 //________
3091 // Create a fragment string from the params object.
3092 // See http://openlibrary.org/dev/docs/bookurls for an explanation of the fragment syntax.
3093 GnuBook.prototype.fragmentFromParams = function(params) {
3094     var separator = '/';
3095     
3096     var fragments = [];
3097     
3098     if ('undefined' != typeof(params.page)) {
3099         fragments.push('page', params.page);
3100     } else {
3101         // Don't have page numbering -- use index instead
3102         fragments.push('page', 'n' + params.index);
3103     }
3104     
3105     // $$$ highlight
3106     // $$$ region
3107     
3108     // mode
3109     if ('undefined' != typeof(params.mode)) {    
3110         if (params.mode == this.constMode1up) {
3111             fragments.push('mode', '1up');
3112         } else if (params.mode == this.constMode2up) {
3113             fragments.push('mode', '2up');
3114         } else {
3115             throw 'fragmentFromParams called with unknown mode ' + params.mode;
3116         }
3117     }
3118     
3119     // search
3120     if (params.searchTerm) {
3121         fragments.push('search', params.searchTerm);
3122     }
3123     
3124     return GnuBook.util.encodeURIComponentPlus(fragments.join(separator)).replace(/%2F/g, '/');
3125 }
3126
3127 // getPageIndex(pageNum)
3128 //________
3129 // Returns the *highest* index the given page number, or undefined
3130 GnuBook.prototype.getPageIndex = function(pageNum) {
3131     var pageIndices = this.getPageIndices(pageNum);
3132     
3133     if (pageIndices.length > 0) {
3134         return pageIndices[pageIndices.length - 1];
3135     }
3136
3137     return undefined;
3138 }
3139
3140 // getPageIndices(pageNum)
3141 //________
3142 // Returns an array (possibly empty) of the indices with the given page number
3143 GnuBook.prototype.getPageIndices = function(pageNum) {
3144     var indices = [];
3145
3146     // Check for special "nXX" page number
3147     if (pageNum.slice(0,1) == 'n') {
3148         try {
3149             var pageIntStr = pageNum.slice(1, pageNum.length);
3150             var pageIndex = parseInt(pageIntStr);
3151             indices.push(pageIndex);
3152             return indices;
3153         } catch(err) {
3154             // Do nothing... will run through page names and see if one matches
3155         }
3156     }
3157
3158     var i;
3159     for (i=0; i<this.numLeafs; i++) {
3160         if (this.getPageNum(i) == pageNum) {
3161             indices.push(i);
3162         }
3163     }
3164     
3165     return indices;
3166 }
3167
3168 // getPageName(index)
3169 //________
3170 // Returns the name of the page as it should be displayed in the user interface
3171 GnuBook.prototype.getPageName = function(index) {
3172     return 'Page ' + this.getPageNum(index);
3173 }
3174
3175 // updateLocationHash
3176 //________
3177 // Update the location hash from the current parameters.  Call this instead of manually
3178 // using window.location.replace
3179 GnuBook.prototype.updateLocationHash = function() {
3180     var newHash = '#' + this.fragmentFromParams(this.paramsFromCurrent());
3181     window.location.replace(newHash);
3182     
3183     // This is the variable checked in the timer.  Only user-generated changes
3184     // to the URL will trigger the event.
3185     this.oldLocationHash = newHash;
3186 }
3187
3188 // startLocationPolling
3189 //________
3190 // Starts polling of window.location to see hash fragment changes
3191 GnuBook.prototype.startLocationPolling = function() {
3192     var self = this; // remember who I am
3193     self.oldLocationHash = window.location.hash;
3194     
3195     if (this.locationPollId) {
3196         clearInterval(this.locationPollID);
3197         this.locationPollId = null;
3198     }
3199     
3200     this.locationPollId = setInterval(function() {
3201         var newHash = window.location.hash;
3202         if (newHash != self.oldLocationHash) {
3203             if (newHash != self.oldUserHash) { // Only process new user hash once
3204                 //console.log('url change detected ' + self.oldLocationHash + " -> " + newHash);
3205                 
3206                 // Queue change if animating
3207                 if (self.animating) {
3208                     self.autoStop();
3209                     self.animationFinishedCallback = function() {
3210                         self.updateFromParams(self.paramsFromFragment(newHash));
3211                     }                        
3212                 } else { // update immediately
3213                     self.updateFromParams(self.paramsFromFragment(newHash));
3214                 }
3215                 self.oldUserHash = newHash;
3216             }
3217         }
3218     }, 500);
3219 }
3220
3221 // canSwitchToMode
3222 //________
3223 // Returns true if we can switch to the requested mode
3224 GnuBook.prototype.canSwitchToMode = function(mode) {
3225     if (mode == this.constMode2up) {
3226         // check there are enough pages to display
3227         // $$$ this is a workaround for the mis-feature that we can't display
3228         //     short books in 2up mode
3229         if (this.numLeafs < 6) {
3230             return false;
3231         }
3232     }
3233     
3234     return true;
3235 }
3236
3237 // searchHighlightVisible
3238 //________
3239 // Returns true if a search highlight is currently being displayed
3240 GnuBook.prototype.searchHighlightVisible = function() {
3241     if (this.constMode2up == this.mode) {
3242         if (this.searchResults[this.twoPage.currentIndexL]
3243                 || this.searchResults[this.twoPage.currentIndexR]) {
3244             return true;
3245         }
3246     } else { // 1up
3247         if (this.searchResults[this.currentIndex()]) {
3248             return true;
3249         }
3250     }
3251     return false;
3252 }
3253
3254 // getPageBackgroundColor
3255 //--------
3256 // Returns a CSS property string for the background color for the given page
3257 // $$$ turn into regular CSS?
3258 GnuBook.prototype.getPageBackgroundColor = function(index) {
3259     if (index >= 0 && index < this.numLeafs) {
3260         // normal page
3261         return this.pageDefaultBackgroundColor;
3262     }
3263     
3264     return '';
3265 }
3266
3267 // Library functions
3268 GnuBook.util = {
3269     clamp: function(value, min, max) {
3270         return Math.min(Math.max(value, min), max);
3271     },
3272
3273     getIFrameDocument: function(iframe) {
3274         // Adapted from http://xkr.us/articles/dom/iframe-document/
3275         var outer = (iframe.contentWindow || iframe.contentDocument);
3276         return (outer.document || outer);
3277     },
3278     
3279     decodeURIComponentPlus: function(value) {
3280         // Decodes a URI component and converts '+' to ' '
3281         return decodeURIComponent(value).replace(/\+/g, ' ');
3282     },
3283     
3284     encodeURIComponentPlus: function(value) {
3285         // Encodes a URI component and converts ' ' to '+'
3286         return encodeURIComponent(value).replace(/%20/g, '+');
3287     }
3288     // The final property here must NOT have a comma after it - IE7
3289 }