2011-07-02 06:59:20 +09:00
<!DOCTYPE html>
2012-05-02 07:08:30 +09:00
< html dir = "ltr" >
2012-04-12 08:12:51 +09:00
< head >
2012-05-01 11:55:21 +09:00
< meta charset = "utf-8" >
2012-05-24 06:50:54 +09:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1" >
2012-04-19 04:02:49 +09:00
< title > PDF.js viewer< / title >
2012-04-12 08:12:51 +09:00
<!-- PDFJSSCRIPT_INCLUDE_FIREFOX_EXTENSION -->
< link rel = "stylesheet" href = "viewer.css" / >
2012-05-01 11:55:21 +09:00
< link rel = "resource" type = "application/l10n" href = "locale.properties" / > <!-- PDFJSSCRIPT_REMOVE_CORE -->
2012-04-12 08:12:51 +09:00
< script type = "text/javascript" src = "compatibility.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_FIREFOX_EXTENSION -->
2012-05-01 08:32:37 +09:00
< script type = "text/javascript" src = "../external/webL10n/l10n.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
2012-04-12 08:12:51 +09:00
<!-- PDFJSSCRIPT_INCLUDE_BUILD -->
< script type = "text/javascript" src = "../src/core.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/util.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
2012-04-19 04:02:49 +09:00
< script type = "text/javascript" src = "../src/api.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
2012-04-12 08:12:51 +09:00
< script type = "text/javascript" src = "../src/metadata.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/canvas.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/obj.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/function.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/charsets.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/cidmaps.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/colorspace.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/crypto.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/evaluator.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/fonts.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/glyphlist.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/image.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/metrics.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/parser.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/pattern.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/stream.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/worker.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../external/jpgjs/jpg.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "../src/jpx.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
2012-06-19 05:03:20 +09:00
< script type = "text/javascript" src = "../src/jbig2.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
2012-04-12 08:12:51 +09:00
< script type = "text/javascript" src = "../src/bidi.js" > < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" > PDFJS . workerSrc = '../src/worker_loader.js' ; < / script > <!-- PDFJSSCRIPT_REMOVE_CORE -->
< script type = "text/javascript" src = "debugger.js" > < / script >
< script type = "text/javascript" src = "viewer.js" > < / script >
< / head >
2011-05-26 23:02:52 +09:00
2011-07-29 02:48:05 +09:00
< body >
2012-04-12 08:12:51 +09:00
< div id = "outerContainer" >
2011-07-29 02:48:05 +09:00
2012-04-26 05:46:17 +09:00
< div id = "sidebarContainer" >
2012-06-08 05:51:29 +09:00
< div id = "toolbarSidebar" class = "splitToolbarButton toggled" >
2012-05-09 06:22:48 +09:00
< button id = "viewThumbnail" class = "toolbarButton group toggled" title = "Show Thumbnails" onclick = "PDFView.switchSidebarView('thumbs')" tabindex = "1" data-l10n-id = "thumbs" >
< span data-l10n-id = "thumbs_label" > Thumbnails< / span >
< / button >
< button id = "viewOutline" class = "toolbarButton group" title = "Show Document Outline" onclick = "PDFView.switchSidebarView('outline')" tabindex = "2" data-l10n-id = "outline" >
< span data-l10n-id = "outline_label" > Document Outline< / span >
< / button >
2012-06-01 06:13:27 +09:00
< button id = "viewSearch" class = "toolbarButton group hidden" title = "Search Document" onclick = "PDFView.switchSidebarView('search')" tabindex = "3" data-l10n-id = "search_panel" >
< span data-l10n-id = "search_panel_label" > Search Document< / span >
2012-05-09 06:22:48 +09:00
< / button >
2011-07-29 02:48:05 +09:00
< / div >
2012-04-26 03:34:28 +09:00
< div id = "sidebarContent" >
< div id = "thumbnailView" >
2012-04-12 08:12:51 +09:00
< / div >
2012-04-26 03:34:28 +09:00
< div id = "outlineView" class = "hidden" >
2012-04-12 08:12:51 +09:00
< / div >
2012-05-09 06:22:48 +09:00
< div id = "searchView" class = "hidden" >
< div id = "searchToolbar" >
2012-06-08 05:51:29 +09:00
< input id = "searchTermsInput" class = "toolbarField" onkeydown = 'if (event.keyCode == 13) PDFView.search()' >
< button id = "searchButton" class = "textButton toolbarButton" onclick = 'PDFView.search()' data-l10n-id = "search" > Find< / button >
2012-05-09 06:22:48 +09:00
< / div >
< div id = "searchResults" > < / div >
< / div >
2011-08-22 11:05:10 +09:00
< / div >
2012-04-26 03:34:28 +09:00
< / div > <!-- sidebarContainer -->
< div id = "mainContainer" >
< div class = "toolbar" >
< div id = "toolbarContainer" >
< div id = "toolbarViewer" >
< div id = "toolbarViewerLeft" >
2012-05-22 01:23:12 +09:00
< button id = "sidebarToggle" class = "toolbarButton" title = "Toggle Sidebar" tabindex = "4" data-l10n-id = "toggle_slider" >
2012-05-05 03:13:29 +09:00
< span data-l10n-id = "toggle_slider_label" > Toggle Sidebar< / span >
2012-05-04 23:51:21 +09:00
< / button >
2012-04-26 03:34:28 +09:00
< div class = "toolbarButtonSpacer" > < / div >
< div class = "splitToolbarButton" >
2012-05-22 01:23:12 +09:00
< button class = "toolbarButton pageUp" title = "Previous Page" onclick = "PDFView.page--" id = "previous" tabindex = "5" data-l10n-id = "previous" >
2012-05-05 03:13:29 +09:00
< span data-l10n-id = "previous_label" > Previous< / span >
2012-05-04 23:51:21 +09:00
< / button >
2012-04-26 03:34:28 +09:00
< div class = "splitToolbarButtonSeparator" > < / div >
2012-05-22 01:23:12 +09:00
< button class = "toolbarButton pageDown" title = "Next Page" onclick = "PDFView.page++" id = "next" tabindex = "6" data-l10n-id = "next" >
2012-05-05 03:13:29 +09:00
< span data-l10n-id = "next_label" > Next< / span >
2012-05-04 23:51:21 +09:00
< / button >
2012-04-26 03:34:28 +09:00
< / div >
2012-05-16 04:47:33 +09:00
< label id = "pageNumberLabel" class = "toolbarLabel" for = "pageNumber" data-l10n-id = "page_label" > Page: < / label >
2012-05-22 01:23:12 +09:00
< input type = "number" id = "pageNumber" class = "toolbarField pageNumber" onchange = "PDFView.page = this.value;" value = "1" size = "4" min = "1" tabindex = "7" >
2012-04-26 03:34:28 +09:00
< / input >
< span id = "numPages" class = "toolbarLabel" > < / span >
< / div >
< div id = "toolbarViewerRight" >
2012-05-04 23:51:21 +09:00
< input id = "fileInput" class = "fileInput" type = "file" oncontextmenu = "return false;" style = "visibility: hidden; position: fixed; right: 0; top: 0" / >
2012-05-22 04:07:30 +09:00
< button id = "openFile" class = "toolbarButton openFile" title = "Open File" tabindex = "11" data-l10n-id = "open_file" onclick = "document.getElementById('fileInput').click()" >
2012-05-05 03:13:29 +09:00
< span data-l10n-id = "open_file_label" > Open< / span >
2012-05-04 23:51:21 +09:00
< / button >
2012-05-02 01:43:48 +09:00
2012-05-05 03:13:29 +09:00
< button id = "print" class = "toolbarButton print" title = "Print" tabindex = "11" data-l10n-id = "print" onclick = "window.print()" >
< span data-l10n-id = "print_label" > Print< / span >
2012-05-04 23:51:21 +09:00
< / button >
2012-05-05 03:13:29 +09:00
< button id = "download" class = "toolbarButton download" title = "Download" onclick = "PDFView.download();" tabindex = "12" data-l10n-id = "download" >
< span data-l10n-id = "download_label" > Download< / span >
2012-05-04 23:51:21 +09:00
< / button >
2012-04-27 23:59:31 +09:00
<!-- <div class="toolbarButtonSpacer"></div> -->
2012-05-05 03:13:29 +09:00
< a href = "#" id = "viewBookmark" class = "toolbarButton bookmark" title = "Current view (copy or open in new window)" tabindex = "13" data-l10n-id = "bookmark" > < span data-l10n-id = "bookmark_label" > Current View< / span > < / a >
2012-04-26 03:34:28 +09:00
< / div >
< div class = "outerCenter" >
< div class = "innerCenter" id = "toolbarViewerMiddle" >
< div class = "splitToolbarButton" >
2012-05-22 01:23:12 +09:00
< button class = "toolbarButton zoomOut" title = "Zoom Out" onclick = "PDFView.zoomOut();" tabindex = "8" data-l10n-id = "zoom_out" >
2012-05-05 03:13:29 +09:00
< span data-l10n-id = "zoom_out_label" > Zoom Out< / span >
2012-05-04 23:51:21 +09:00
< / button >
2012-04-26 03:34:28 +09:00
< div class = "splitToolbarButtonSeparator" > < / div >
2012-05-22 01:23:12 +09:00
< button class = "toolbarButton zoomIn" title = "Zoom In" onclick = "PDFView.zoomIn();" tabindex = "9" data-l10n-id = "zoom_in" >
2012-05-05 03:13:29 +09:00
< span data-l10n-id = "zoom_in_label" > Zoom In< / span >
2012-05-04 23:51:21 +09:00
< / button >
2012-04-26 03:34:28 +09:00
< / div >
2012-05-16 04:47:33 +09:00
< span id = "scaleSelectContainer" class = "dropdownToolbarButton" >
2012-05-22 01:23:12 +09:00
< select id = "scaleSelect" onchange = "PDFView.parseScale(this.value);" title = "Zoom" oncontextmenu = "return false;" tabindex = "10" data-l10n-id = "zoom" >
2012-05-01 08:32:37 +09:00
< option id = "pageAutoOption" value = "auto" selected = "selected" data-l10n-id = "page_scale_auto" > Automatic Zoom< / option >
< option id = "pageActualOption" value = "page-actual" data-l10n-id = "page_scale_actual" > Actual Size< / option >
< option id = "pageFitOption" value = "page-fit" data-l10n-id = "page_scale_fit" > Fit Page< / option >
< option id = "pageWidthOption" value = "page-width" data-l10n-id = "page_scale_width" > Full Width< / option >
2012-04-26 03:34:28 +09:00
< option id = "customScaleOption" value = "custom" > < / option >
< option value = "0.5" > 50%< / option >
< option value = "0.75" > 75%< / option >
< option value = "1" > 100%< / option >
< option value = "1.25" > 125%< / option >
< option value = "1.5" > 150%< / option >
< option value = "2" > 200%< / option >
< / select >
< / span >
< / div >
< / div >
< / div >
2011-12-12 10:38:20 +09:00
< / div >
< / div >
2011-05-26 23:02:52 +09:00
2012-04-26 03:34:28 +09:00
< div id = "viewerContainer" >
2012-05-02 09:39:24 +09:00
< div id = "viewer" > < / div >
2011-07-29 02:48:05 +09:00
< / div >
2012-04-12 08:12:51 +09:00
2012-04-26 03:34:28 +09:00
< div id = "loadingBox" >
2012-06-08 05:51:29 +09:00
< div id = "loading" > < / div >
< div id = "loadingBar" > < div class = "progress" > < / div > < / div >
2011-08-22 11:05:10 +09:00
< / div >
2012-04-26 09:20:13 +09:00
< div id = "errorWrapper" hidden = 'true' >
< div id = "errorMessageLeft" >
< span id = "errorMessage" > < / span >
2012-05-01 08:32:37 +09:00
< button id = "errorShowMore" onclick = "" oncontextmenu = "return false;" data-l10n-id = "error_more_info" >
2012-04-26 09:20:13 +09:00
More Information
< / button >
2012-05-01 08:32:37 +09:00
< button id = "errorShowLess" onclick = "" oncontextmenu = "return false;" data-l10n-id = "error_less_info" hidden = 'true' >
2012-04-26 09:20:13 +09:00
Less Information
< / button >
< / div >
< div id = "errorMessageRight" >
2012-05-01 08:32:37 +09:00
< button id = "errorClose" oncontextmenu = "return false;" data-l10n-id = "error_close" >
2012-04-26 09:20:13 +09:00
Close
< / button >
< / div >
< div class = "clearBoth" > < / div >
< textarea id = "errorMoreInfo" hidden = 'true' readonly = "readonly" > < / textarea >
2011-08-22 11:05:10 +09:00
< / div >
2012-04-26 03:34:28 +09:00
< / div > <!-- mainContainer -->
2011-10-28 21:32:36 +09:00
2012-04-13 08:29:15 +09:00
< / div > <!-- outerContainer -->
2012-06-29 01:50:25 +09:00
< div id = "printContainer" > < / div >
2011-05-26 23:02:52 +09:00
< / body >
2011-05-05 09:32:59 +09:00
< / html >