Преглед изворни кода

对预览的pdf流进行base64编解码

sunyj пре 9 година
родитељ
комит
a268140505

+ 17 - 33
src/main/java/com/uas/report/controller/PrintController.java

@@ -8,6 +8,7 @@ import java.util.Map;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 
+import org.apache.commons.codec.binary.Base64;
 import org.apache.commons.lang.ArrayUtils;
 import org.apache.log4j.Logger;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -15,6 +16,7 @@ import org.springframework.stereotype.Controller;
 import org.springframework.util.CollectionUtils;
 import org.springframework.util.StringUtils;
 import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
 
 import com.uas.report.service.PrintService;
 
@@ -118,7 +120,7 @@ public class PrintController {
 	}
 
 	/**
-	 * 报表预览
+	 * 报表预览时获取pdf流
 	 * 
 	 * @param userName
 	 *            不为null;当前账套用户名
@@ -130,59 +132,41 @@ public class PrintController {
 	 *            若模板已指定需要的参数,则不可为null;其他参数,区别于whereCondition,报表某些字段的值取决于这些参数
 	 * @param pageIndex
 	 *            分页展示,当前页码,从0开始
-	 * @param request
-	 * @param response
 	 * @return
 	 */
-	@RequestMapping(value = "/getData")
-	public String getData(String userName, String reportName, String whereCondition,
-			Map<String, Object> otherParameters, Integer pageIndex, HttpServletRequest request,
-			HttpServletResponse response) {
+	@RequestMapping(value = "/loadPdfData")
+	@ResponseBody
+	public Map<String, Object> loadPdfData(String userName, String reportName, String whereCondition,
+			Map<String, Object> otherParameters, Integer pageIndex) {
 		String message = "";
 		if (StringUtils.isEmpty(userName)) {
 			message = "未传入当前账套用户名!";
 			logger.error(message);
-			request.setAttribute("message", message);
-			return "error.jsp";
+			return null;
 		}
 		if (StringUtils.isEmpty(reportName)) {
 			message = "报表名称无效!";
 			logger.error(message);
-			request.setAttribute("message", message);
-			return "error.jsp";
+			return null;
 		}
 
 		logger.info("开始预览报表: " + reportName);
 		Map<String, Object> result = printService.preview(userName, reportName, whereCondition, otherParameters,
 				pageIndex);
 		byte[] data = null;
-		Integer pageSize = null;
 		if (!CollectionUtils.isEmpty(result)) {
 			data = (byte[]) result.get("data");
-			pageSize = (Integer) result.get("pageSize");
-		}
-		if (ArrayUtils.isEmpty(data)) {
-			message = "报表 " + reportName + " 预览失败!";
-			logger.error(message);
-			request.setAttribute("message", message);
-			return "error.jsp";
 		}
-		if (pageSize != null) {
-			request.setAttribute("pageSize", pageSize);
+		if (!ArrayUtils.isEmpty(data)) {
+			message = "报表 " + reportName + " 预览完成!";
+			logger.info(message);
+			// 对pdf流进行base64编码
+			result.replace("data", Base64.encodeBase64String(data));
+			return result;
 		}
 
-		try {
-			response.setContentType("application/pdf");
-			OutputStream outputStream = response.getOutputStream();
-			outputStream.write(data);
-			outputStream.flush();
-			outputStream.close();
-		} catch (IOException e) {
-			logger.error("浏览器重复请求!");
-		}
-
-		message = "报表 " + reportName + " 预览完成!";
-		logger.info(message);
+		message = "报表 " + reportName + " 预览失败!";
+		logger.error(message);
 		return null;
 	}
 }

+ 0 - 63
src/main/webapp/WEB-INF/views/preview.html

@@ -1,63 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="UTF-8">
-<script>
-	function getUrl() {
-		var userName = getParameter("userName");
-		var reportName = getParameter("reportName");
-		var whereCondition = getParameter("whereCondition");
-		var otherParameters = getParameter("otherParameters");
-		var pageIndex = getParameter("pageIndex");
-		console.log(userName + " -- ");
-		console.log(reportName);
-		console.log(whereCondition);
-		console.log(otherParameters);
-		console.log(pageIndex);
-
-		var previewUrl = "print/getData?";
-		if (userName != null && userName != "") {
-			previewUrl += "userName=" + userName;
-		}
-		if (reportName != null && reportName != "") {
-			previewUrl += "&reportName=" + reportName;
-		}
-		if (whereCondition != null && whereCondition != "") {
-			previewUrl += "&whereCondition=" + whereCondition;
-		}
-		if (otherParameters != null && otherParameters != "") {
-			previewUrl += "&otherParameters=" + otherParameters;
-		}
-		if (pageIndex != null && pageIndex != "") {
-			previewUrl += "&pageIndex=" + pageIndex;
-		}
-		return previewUrl;
-	}
-
-	function getParameter(key) {
-		var reg = new RegExp("(^|&)" + key + "=([^&]*)(&|$)");
-		var r = window.location.search.substr(1).match(reg);
-		if (r != null)
-			return unescape(r[2]);
-		return null;
-	}
-	var previewUrl = getUrl();
-	console.log("previewUrl: " + previewUrl);
-
-	function loadBody() {
-		var previewIframe = document.getElementById("previewIframe");
-		previewIframe.src = previewUrl;
-		previewIframe.hidden = false;
-	}
-</script>
-<title>Report Preview</title>
-</head>
-<body>
-	<button>export as pdf</button>
-	<iframe id="previewIframe" frameBorder="0"
-		style="height: 620px; width: 100%" hidden=true></iframe>
-	<script>
-		loadBody();
-	</script>
-</body>
-</html>

+ 1 - 1
src/main/webapp/WEB-INF/webmvc.xml

@@ -31,6 +31,6 @@
 
 	<mvc:view-controller path="/" view-name="/views/index.html" />
 	<mvc:view-controller path="/viewer" view-name="/pdf.js/web/viewer.html" />
-	<mvc:view-controller path="/preview" view-name="/views/preview.html" />
+	<mvc:view-controller path="/preview" view-name="/static/view/preview.html" />
 
 </beans>

+ 139 - 0
src/main/webapp/resources/js/preview.js

@@ -0,0 +1,139 @@
+var DEFAULT_URL = "";// 重新定义pdf.js的默认pdf路径
+var PDFData = "";
+loadPdfData();
+/**
+ * 从服务器获取报表pdf流
+ */
+function loadPdfData() {
+	var url = getUrl();
+	$.ajax({
+		type : "post",
+		async : false,
+		mimeType : 'text/plain; charset=x-user-defined',
+		url : url,
+		success : function(data) {
+			// 服务器未成功填充报表
+			if (data == null || data.toString().length < 1) {
+				return;
+			}
+			var result = JSON.parse(data);
+			// 服务器端pdf流经过base64编码,需要进行解码
+			PDFData = base64_decode(result.data);
+		}
+	});
+	var rawLength = PDFData.length;
+	// 转换成pdf.js能直接解析的Uint8Array类型,见pdf.js-4068
+	var array = new Uint8Array(new ArrayBuffer(rawLength));
+	for (i = 0; i < rawLength; i++) {
+		array[i] = PDFData.charCodeAt(i) & 0xff;
+	}
+	DEFAULT_URL = array;
+}
+
+/**
+ * 拼接服务器端获取pdf流的url
+ * 
+ * @returns {String}
+ */
+function getUrl() {
+	var userName = getParameter("userName");
+	var reportName = getParameter("reportName");
+	var whereCondition = getParameter("whereCondition");
+	var otherParameters = getParameter("otherParameters");
+	var pageIndex = getParameter("pageIndex");
+
+	var url = "print/loadPdfData?";
+	if (userName != null && userName != "") {
+		url += "userName=" + userName;
+	}
+	if (reportName != null && reportName != "") {
+		url += "&reportName=" + reportName;
+	}
+	if (whereCondition != null && whereCondition != "") {
+		url += "&whereCondition=" + whereCondition;
+	}
+	if (otherParameters != null && otherParameters != "") {
+		url += "&otherParameters=" + otherParameters;
+	}
+	if (pageIndex != null && pageIndex != "") {
+		url += "&pageIndex=" + pageIndex;
+	}
+	return url;
+}
+/**
+ * 从地址中获取参数
+ * 
+ * @param key
+ *            参数名
+ * @returns 参数值
+ */
+function getParameter(key) {
+	var reg = new RegExp("(^|&)" + key + "=([^&]*)(&|$)");
+	var r = window.location.search.substr(1).match(reg);
+	if (r != null)
+		return unescape(r[2]);
+	return null;
+}
+
+/**
+ * base64解码
+ * 
+ * @param {Object}
+ *            str
+ */
+function base64_decode(str) {
+	var c1, c2, c3, c4;
+	var base64DecodeChars = new Array(-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+			-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+			-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62,
+			-1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1,
+			-1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
+			15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1, -1,
+			26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42,
+			43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1);
+	var i = 0, len = str.length, string = '';
+
+	while (i < len) {
+		do {
+			c1 = base64DecodeChars[str.charCodeAt(i++) & 0xff]
+		} while (i < len && c1 == -1);
+
+		if (c1 == -1)
+			break;
+
+		do {
+			c2 = base64DecodeChars[str.charCodeAt(i++) & 0xff]
+		} while (i < len && c2 == -1);
+
+		if (c2 == -1)
+			break;
+
+		string += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));
+
+		do {
+			c3 = str.charCodeAt(i++) & 0xff;
+			if (c3 == 61)
+				return string;
+
+			c3 = base64DecodeChars[c3]
+		} while (i < len && c3 == -1);
+
+		if (c3 == -1)
+			break;
+
+		string += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));
+
+		do {
+			c4 = str.charCodeAt(i++) & 0xff;
+			if (c4 == 61)
+				return string;
+			c4 = base64DecodeChars[c4]
+		} while (i < len && c4 == -1);
+
+		if (c4 == -1)
+			break;
+
+		string += String.fromCharCode(((c3 & 0x03) << 6) | c4)
+	}
+	return string;
+}

+ 2 - 20
src/main/webapp/resources/plugin/pdf.js/web/viewer.html

@@ -44,27 +44,9 @@ See https://github.com/adobe-type-tools/cmap-resources
 
 <script
 	src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
-
+<script src="static/js/preview.js"></script>
 <script>
-	var DEFAULT_URL = "";//注意,删除的变量在这里重新定义  
-	var PDFData = "";
-	$
-			.ajax({
-				type : "post",
-				async : false,
-				mimeType : 'text/plain; charset=x-user-defined',
-				url : "print/getData?userName=UAS&reportName=Purchase&whereCondition=where pu_code='MP150500300'&pageIndex=11",
-				success : function(data) {
-					PDFData = data;
-				}
-			});
-	var rawLength = PDFData.length;
-	//转换成pdf.js能直接解析的Uint8Array类型,见pdf.js-4068  
-	var array = new Uint8Array(new ArrayBuffer(rawLength));
-	for (i = 0; i < rawLength; i++) {
-		array[i] = PDFData.charCodeAt(i) & 0xff;
-	}
-	DEFAULT_URL = array;
+	loadPdfData();
 </script>
 
 <script src="pdf.js/web/debugger.js"></script>

+ 524 - 0
src/main/webapp/resources/view/preview.html

@@ -0,0 +1,524 @@
+<!DOCTYPE html>
+<!--
+Copyright 2012 Mozilla Foundation
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+Adobe CMap resources are covered by their own copyright but the same license:
+
+    Copyright 1990-2015 Adobe Systems Incorporated.
+
+See https://github.com/adobe-type-tools/cmap-resources
+-->
+<html dir="ltr" mozdisallowselectionprint moznomarginboxes>
+<head>
+<meta charset="utf-8">
+<meta name="viewport"
+	content="width=device-width, initial-scale=1, maximum-scale=1">
+<meta name="google" content="notranslate">
+<meta http-equiv="X-UA-Compatible" content="IE=edge">
+<title>Report Preview</title>
+
+
+<link rel="stylesheet" href="pdf.js/web/viewer.css">
+
+<script src="pdf.js/web/compatibility.js"></script>
+
+<!-- This snippet is used in production (included from viewer.html) -->
+<link rel="resource" type="application/l10n"
+	href="pdf.js/web/locale/locale.properties">
+<script src="pdf.js/web/l10n.js"></script>
+<script src="pdf.js/build/pdf.js"></script>
+
+<script
+	src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
+<script src="static/js/preview.js"></script>
+
+<script src="pdf.js/web/debugger.js"></script>
+<script src="pdf.js/web/viewer.js"></script>
+
+</head>
+
+<body tabindex="1" class="loadingInProgress">
+	<div id="outerContainer">
+
+		<div id="sidebarContainer">
+			<div id="toolbarSidebar">
+				<div class="splitToolbarButton toggled">
+					<button id="viewThumbnail" class="toolbarButton group toggled"
+						title="Show Thumbnails" tabindex="2" data-l10n-id="thumbs">
+						<span data-l10n-id="thumbs_label">Thumbnails</span>
+					</button>
+					<button id="viewOutline" class="toolbarButton group"
+						title="Show Document Outline" tabindex="3" data-l10n-id="outline">
+						<span data-l10n-id="outline_label">Document Outline</span>
+					</button>
+					<button id="viewAttachments" class="toolbarButton group"
+						title="Show Attachments" tabindex="4" data-l10n-id="attachments">
+						<span data-l10n-id="attachments_label">Attachments</span>
+					</button>
+				</div>
+			</div>
+			<div id="sidebarContent">
+				<div id="thumbnailView"></div>
+				<div id="outlineView" class="hidden"></div>
+				<div id="attachmentsView" class="hidden"></div>
+			</div>
+		</div>
+		<!-- sidebarContainer -->
+
+		<div id="mainContainer">
+			<div class="findbar hidden doorHanger hiddenSmallView" id="findbar">
+				<label for="findInput" class="toolbarLabel"
+					data-l10n-id="find_label">Find:</label> <input id="findInput"
+					class="toolbarField" tabindex="91">
+				<div class="splitToolbarButton">
+					<button class="toolbarButton findPrevious" title=""
+						id="findPrevious" tabindex="92" data-l10n-id="find_previous">
+						<span data-l10n-id="find_previous_label">Previous</span>
+					</button>
+					<div class="splitToolbarButtonSeparator"></div>
+					<button class="toolbarButton findNext" title="" id="findNext"
+						tabindex="93" data-l10n-id="find_next">
+						<span data-l10n-id="find_next_label">Next</span>
+					</button>
+				</div>
+				<input type="checkbox" id="findHighlightAll" class="toolbarField"
+					tabindex="94"> <label for="findHighlightAll"
+					class="toolbarLabel" data-l10n-id="find_highlight">Highlight
+					all</label> <input type="checkbox" id="findMatchCase" class="toolbarField"
+					tabindex="95"> <label for="findMatchCase"
+					class="toolbarLabel" data-l10n-id="find_match_case_label">Match
+					case</label> <span id="findResultsCount" class="toolbarLabel hidden"></span>
+				<span id="findMsg" class="toolbarLabel"></span>
+			</div>
+			<!-- findbar -->
+
+			<div id="secondaryToolbar"
+				class="secondaryToolbar hidden doorHangerRight">
+				<div id="secondaryToolbarButtonContainer">
+					<button id="secondaryPresentationMode"
+						class="secondaryToolbarButton presentationMode visibleLargeView"
+						title="Switch to Presentation Mode" tabindex="51"
+						data-l10n-id="presentation_mode">
+						<span data-l10n-id="presentation_mode_label">Presentation
+							Mode</span>
+					</button>
+
+					<button id="secondaryOpenFile"
+						class="secondaryToolbarButton openFile visibleLargeView"
+						title="Open File" tabindex="52" data-l10n-id="open_file">
+						<span data-l10n-id="open_file_label">Open</span>
+					</button>
+
+					<button id="secondaryPrint"
+						class="secondaryToolbarButton print visibleMediumView"
+						title="Print" tabindex="53" data-l10n-id="print">
+						<span data-l10n-id="print_label">Print</span>
+					</button>
+
+					<button id="secondaryDownload"
+						class="secondaryToolbarButton download visibleMediumView"
+						title="Download" tabindex="54" data-l10n-id="download">
+						<span data-l10n-id="download_label">Download</span>
+					</button>
+
+					<a href="#" id="secondaryViewBookmark"
+						class="secondaryToolbarButton bookmark visibleSmallView"
+						title="Current view (copy or open in new window)" tabindex="55"
+						data-l10n-id="bookmark"> <span data-l10n-id="bookmark_label">Current
+							View</span>
+					</a>
+
+					<div class="horizontalToolbarSeparator visibleLargeView"></div>
+
+					<button id="firstPage" class="secondaryToolbarButton firstPage"
+						title="Go to First Page" tabindex="56" data-l10n-id="first_page">
+						<span data-l10n-id="first_page_label">Go to First Page</span>
+					</button>
+					<button id="lastPage" class="secondaryToolbarButton lastPage"
+						title="Go to Last Page" tabindex="57" data-l10n-id="last_page">
+						<span data-l10n-id="last_page_label">Go to Last Page</span>
+					</button>
+
+					<div class="horizontalToolbarSeparator"></div>
+
+					<button id="pageRotateCw" class="secondaryToolbarButton rotateCw"
+						title="Rotate Clockwise" tabindex="58"
+						data-l10n-id="page_rotate_cw">
+						<span data-l10n-id="page_rotate_cw_label">Rotate Clockwise</span>
+					</button>
+					<button id="pageRotateCcw" class="secondaryToolbarButton rotateCcw"
+						title="Rotate Counterclockwise" tabindex="59"
+						data-l10n-id="page_rotate_ccw">
+						<span data-l10n-id="page_rotate_ccw_label">Rotate
+							Counterclockwise</span>
+					</button>
+
+					<div class="horizontalToolbarSeparator"></div>
+
+					<button id="toggleHandTool" class="secondaryToolbarButton handTool"
+						title="Enable hand tool" tabindex="60"
+						data-l10n-id="hand_tool_enable">
+						<span data-l10n-id="hand_tool_enable_label">Enable hand
+							tool</span>
+					</button>
+
+					<div class="horizontalToolbarSeparator"></div>
+
+					<button id="documentProperties"
+						class="secondaryToolbarButton documentProperties"
+						title="Document Properties…" tabindex="61"
+						data-l10n-id="document_properties">
+						<span data-l10n-id="document_properties_label">Document
+							Properties…</span>
+					</button>
+				</div>
+			</div>
+			<!-- secondaryToolbar -->
+
+			<div class="toolbar">
+				<div id="toolbarContainer">
+					<div id="toolbarViewer">
+						<div id="toolbarViewerLeft">
+							<button id="sidebarToggle" class="toolbarButton"
+								title="Toggle Sidebar" tabindex="11"
+								data-l10n-id="toggle_sidebar">
+								<span data-l10n-id="toggle_sidebar_label">Toggle Sidebar</span>
+							</button>
+							<div class="toolbarButtonSpacer"></div>
+							<button id="viewFind" class="toolbarButton group hiddenSmallView"
+								title="Find in Document" tabindex="12" data-l10n-id="findbar">
+								<span data-l10n-id="findbar_label">Find</span>
+							</button>
+							<div class="splitToolbarButton">
+								<button class="toolbarButton pageUp" title="Previous Page"
+									id="previous" tabindex="13" data-l10n-id="previous">
+									<span data-l10n-id="previous_label">Previous</span>
+								</button>
+								<div class="splitToolbarButtonSeparator"></div>
+								<button class="toolbarButton pageDown" title="Next Page"
+									id="next" tabindex="14" data-l10n-id="next">
+									<span data-l10n-id="next_label">Next</span>
+								</button>
+							</div>
+							<label id="pageNumberLabel" class="toolbarLabel" for="pageNumber"
+								data-l10n-id="page_label">Page: </label> <input type="number"
+								id="pageNumber" class="toolbarField pageNumber" value="1"
+								size="4" min="1" tabindex="15"> <span id="numPages"
+								class="toolbarLabel"></span>
+						</div>
+						<div id="toolbarViewerRight">
+							<button id="presentationMode"
+								class="toolbarButton presentationMode hiddenLargeView"
+								title="Switch to Presentation Mode" tabindex="31"
+								data-l10n-id="presentation_mode">
+								<span data-l10n-id="presentation_mode_label">Presentation
+									Mode</span>
+							</button>
+
+							<button id="openFile"
+								class="toolbarButton openFile hiddenLargeView" title="Open File"
+								tabindex="32" data-l10n-id="open_file">
+								<span data-l10n-id="open_file_label">Open</span>
+							</button>
+
+							<button id="print" class="toolbarButton print hiddenMediumView"
+								title="Print" tabindex="33" data-l10n-id="print">
+								<span data-l10n-id="print_label">Print</span>
+							</button>
+
+							<button id="download"
+								class="toolbarButton download hiddenMediumView" title="Download"
+								tabindex="34" data-l10n-id="download">
+								<span data-l10n-id="download_label">Download</span>
+							</button>
+							<a href="#" id="viewBookmark"
+								class="toolbarButton bookmark hiddenSmallView"
+								title="Current view (copy or open in new window)" tabindex="35"
+								data-l10n-id="bookmark"> <span data-l10n-id="bookmark_label">Current
+									View</span>
+							</a>
+
+							<div class="verticalToolbarSeparator hiddenSmallView"></div>
+
+							<button id="secondaryToolbarToggle" class="toolbarButton"
+								title="Tools" tabindex="36" data-l10n-id="tools">
+								<span data-l10n-id="tools_label">Tools</span>
+							</button>
+						</div>
+						<div class="outerCenter">
+							<div class="innerCenter" id="toolbarViewerMiddle">
+								<div class="splitToolbarButton">
+									<button id="zoomOut" class="toolbarButton zoomOut"
+										title="Zoom Out" tabindex="21" data-l10n-id="zoom_out">
+										<span data-l10n-id="zoom_out_label">Zoom Out</span>
+									</button>
+									<div class="splitToolbarButtonSeparator"></div>
+									<button id="zoomIn" class="toolbarButton zoomIn"
+										title="Zoom In" tabindex="22" data-l10n-id="zoom_in">
+										<span data-l10n-id="zoom_in_label">Zoom In</span>
+									</button>
+								</div>
+								<span id="scaleSelectContainer" class="dropdownToolbarButton">
+									<select id="scaleSelect" title="Zoom" tabindex="23"
+									data-l10n-id="zoom">
+										<option id="pageAutoOption" title="" value="auto"
+											selected="selected" data-l10n-id="page_scale_auto">Automatic
+											Zoom</option>
+										<option id="pageActualOption" title="" value="page-actual"
+											data-l10n-id="page_scale_actual">Actual Size</option>
+										<option id="pageFitOption" title="" value="page-fit"
+											data-l10n-id="page_scale_fit">Fit Page</option>
+										<option id="pageWidthOption" title="" value="page-width"
+											data-l10n-id="page_scale_width">Full Width</option>
+										<option id="customScaleOption" title="" value="custom"></option>
+										<option title="" value="0.5" data-l10n-id="page_scale_percent"
+											data-l10n-args='{ "scale": 50 }'>50%</option>
+										<option title="" value="0.75"
+											data-l10n-id="page_scale_percent"
+											data-l10n-args='{ "scale": 75 }'>75%</option>
+										<option title="" value="1" data-l10n-id="page_scale_percent"
+											data-l10n-args='{ "scale": 100 }'>100%</option>
+										<option title="" value="1.25"
+											data-l10n-id="page_scale_percent"
+											data-l10n-args='{ "scale": 125 }'>125%</option>
+										<option title="" value="1.5" data-l10n-id="page_scale_percent"
+											data-l10n-args='{ "scale": 150 }'>150%</option>
+										<option title="" value="2" data-l10n-id="page_scale_percent"
+											data-l10n-args='{ "scale": 200 }'>200%</option>
+										<option title="" value="3" data-l10n-id="page_scale_percent"
+											data-l10n-args='{ "scale": 300 }'>300%</option>
+										<option title="" value="4" data-l10n-id="page_scale_percent"
+											data-l10n-args='{ "scale": 400 }'>400%</option>
+								</select>
+								</span>
+							</div>
+						</div>
+					</div>
+					<div id="loadingBar">
+						<div class="progress">
+							<div class="glimmer"></div>
+						</div>
+					</div>
+				</div>
+			</div>
+
+			<menu type="context" id="viewerContextMenu">
+				<menuitem id="contextFirstPage" label="First Page"
+					data-l10n-id="first_page"></menuitem>
+				<menuitem id="contextLastPage" label="Last Page"
+					data-l10n-id="last_page"></menuitem>
+				<menuitem id="contextPageRotateCw" label="Rotate Clockwise"
+					data-l10n-id="page_rotate_cw"></menuitem>
+				<menuitem id="contextPageRotateCcw" label="Rotate Counter-Clockwise"
+					data-l10n-id="page_rotate_ccw"></menuitem>
+			</menu>
+
+			<div id="viewerContainer" tabindex="0">
+				<div id="viewer" class="pdfViewer"></div>
+			</div>
+
+			<div id="errorWrapper" hidden='true'>
+				<div id="errorMessageLeft">
+					<span id="errorMessage"></span>
+					<button id="errorShowMore" data-l10n-id="error_more_info">
+						More Information</button>
+					<button id="errorShowLess" data-l10n-id="error_less_info"
+						hidden='true'>Less Information</button>
+				</div>
+				<div id="errorMessageRight">
+					<button id="errorClose" data-l10n-id="error_close">Close</button>
+				</div>
+				<div class="clearBoth"></div>
+				<textarea id="errorMoreInfo" hidden='true' readonly="readonly"></textarea>
+			</div>
+		</div>
+		<!-- mainContainer -->
+
+		<div id="overlayContainer" class="hidden">
+			<div id="passwordOverlay" class="container hidden">
+				<div class="dialog">
+					<div class="row">
+						<p id="passwordText" data-l10n-id="password_label">Enter the
+							password to open this PDF file:</p>
+					</div>
+					<div class="row">
+						<!-- The type="password" attribute is set via script, to prevent warnings in Firefox for all http:// documents. -->
+						<input id="password" class="toolbarField">
+					</div>
+					<div class="buttonRow">
+						<button id="passwordCancel" class="overlayButton">
+							<span data-l10n-id="password_cancel">Cancel</span>
+						</button>
+						<button id="passwordSubmit" class="overlayButton">
+							<span data-l10n-id="password_ok">OK</span>
+						</button>
+					</div>
+				</div>
+			</div>
+			<div id="documentPropertiesOverlay" class="container hidden">
+				<div class="dialog">
+					<div class="row">
+						<span data-l10n-id="document_properties_file_name">File
+							name:</span>
+						<p id="fileNameField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_file_size">File
+							size:</span>
+						<p id="fileSizeField">-</p>
+					</div>
+					<div class="separator"></div>
+					<div class="row">
+						<span data-l10n-id="document_properties_title">Title:</span>
+						<p id="titleField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_author">Author:</span>
+						<p id="authorField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_subject">Subject:</span>
+						<p id="subjectField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_keywords">Keywords:</span>
+						<p id="keywordsField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_creation_date">Creation
+							Date:</span>
+						<p id="creationDateField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_modification_date">Modification
+							Date:</span>
+						<p id="modificationDateField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_creator">Creator:</span>
+						<p id="creatorField">-</p>
+					</div>
+					<div class="separator"></div>
+					<div class="row">
+						<span data-l10n-id="document_properties_producer">PDF
+							Producer:</span>
+						<p id="producerField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_version">PDF
+							Version:</span>
+						<p id="versionField">-</p>
+					</div>
+					<div class="row">
+						<span data-l10n-id="document_properties_page_count">Page
+							Count:</span>
+						<p id="pageCountField">-</p>
+					</div>
+					<div class="buttonRow">
+						<button id="documentPropertiesClose" class="overlayButton">
+							<span data-l10n-id="document_properties_close">Close</span>
+						</button>
+					</div>
+				</div>
+			</div>
+		</div>
+		<!-- overlayContainer -->
+
+	</div>
+	<!-- outerContainer -->
+	<div id="printContainer"></div>
+	<div id="mozPrintCallback-shim" hidden>
+		<style>
+@media print {
+	#printContainer div {
+		page-break-after: always;
+		page-break-inside: avoid;
+	}
+}
+</style>
+		<style scoped>
+#mozPrintCallback-shim {
+	position: fixed;
+	top: 0;
+	left: 0;
+	height: 100%;
+	width: 100%;
+	z-index: 9999999;
+	display: block;
+	text-align: center;
+	background-color: rgba(0, 0, 0, 0.5);
+}
+
+#mozPrintCallback-shim[hidden] {
+	display: none;
+}
+
+@media print {
+	#mozPrintCallback-shim {
+		display: none;
+	}
+}
+
+#mozPrintCallback-shim .mozPrintCallback-dialog-box {
+	display: inline-block;
+	margin: -50px auto 0;
+	position: relative;
+	top: 45%;
+	left: 0;
+	min-width: 220px;
+	max-width: 400px;
+	padding: 9px;
+	border: 1px solid hsla(0, 0%, 0%, .5);
+	border-radius: 2px;
+	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
+	background-color: #474747;
+	color: hsl(0, 0%, 85%);
+	font-size: 16px;
+	line-height: 20px;
+}
+
+#mozPrintCallback-shim .progress-row {
+	clear: both;
+	padding: 1em 0;
+}
+
+#mozPrintCallback-shim progress {
+	width: 100%;
+}
+
+#mozPrintCallback-shim .relative-progress {
+	clear: both;
+	float: right;
+}
+
+#mozPrintCallback-shim .progress-actions {
+	clear: both;
+}
+</style>
+		<div class="mozPrintCallback-dialog-box">
+			<!-- TODO: Localise the following strings -->
+			Preparing document for printing...
+			<div class="progress-row">
+				<progress value="0" max="100"></progress>
+				<span class="relative-progress">0%</span>
+			</div>
+			<div class="progress-actions">
+				<input type="button" value="Cancel" class="mozPrintCallback-cancel">
+			</div>
+		</div>
+	</div>
+
+</body>
+</html>