| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | <!DOCTYPE html> | 
					
						
							| 
									
										
										
										
											2017-07-28 08:41:07 +00:00
										 |  |  | <!-- adler32.js (C) 2014-present  SheetJS http://sheetjs.com --> | 
					
						
							| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | <!-- vim: set ts=2: --> | 
					
						
							|  |  |  | <html> | 
					
						
							|  |  |  | <head> | 
					
						
							|  |  |  | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
					
						
							|  |  |  | <title>JS-ADLER32 Live Demo</title> | 
					
						
							|  |  |  | <style> | 
					
						
							|  |  |  | #drop{ | 
					
						
							|  |  |  | 	border:2px dashed #bbb; | 
					
						
							|  |  |  | 	-moz-border-radius:5px; | 
					
						
							|  |  |  | 	-webkit-border-radius:5px; | 
					
						
							|  |  |  | 	border-radius:5px; | 
					
						
							|  |  |  | 	padding:25px; | 
					
						
							|  |  |  | 	text-align:center; | 
					
						
							|  |  |  | 	font:20pt bold,"Vollkorn";color:#bbb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #rawdata{ | 
					
						
							|  |  |  | 	width:100%; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-28 08:41:07 +00:00
										 |  |  | a { text-decoration: none } | 
					
						
							| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | </style> | 
					
						
							|  |  |  | </head> | 
					
						
							|  |  |  | <body> | 
					
						
							| 
									
										
										
										
											2017-07-28 08:41:07 +00:00
										 |  |  | <pre> | 
					
						
							|  |  |  | <b><a href="http://sheetjs.com/bits">SheetJS JS-ADLER32 Live Demo</a></b> | 
					
						
							|  |  |  | (text works back to IE6; drag and drop works back to IE10) | 
					
						
							|  |  |  | (<b>This demo loads the entire file at once!</b>  For newer browsers, <a href="large.html">try the large file demo</a>) | 
					
						
							| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-28 08:41:07 +00:00
										 |  |  | <a href="https://git.io/adler32">Source Code Repo</a> | 
					
						
							|  |  |  | <a href="https://git.io/adler32_issues">Issues?  Something look weird?  Click here and report an issue</a> | 
					
						
							|  |  |  | <br /> | 
					
						
							| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | <div id="drop">Drop a text file to compute the ADLER-32 checksum</div> | 
					
						
							| 
									
										
										
										
											2017-07-28 08:41:07 +00:00
										 |  |  | <input type="file" name="xlfile" id="xlf" /> ... or click here to select a file | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <textarea id="rawdata">... or paste text here</textarea> | 
					
						
							| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | <input type="button" id="dotext" value="Click here to process the text"/><br /> | 
					
						
							| 
									
										
										
										
											2017-07-28 08:41:07 +00:00
										 |  |  | <b>Advanced Demo Options:</b> | 
					
						
							| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | Use readAsBinaryString: (when available) <input type="checkbox" name="userabs" checked><br /> | 
					
						
							| 
									
										
										
										
											2017-07-28 08:41:07 +00:00
										 |  |  | </pre> | 
					
						
							|  |  |  | <pre id="out"></pre> | 
					
						
							| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | <br /> | 
					
						
							|  |  |  | <script type="text/javascript">/* jshint browser: true */</script> | 
					
						
							| 
									
										
										
										
											2016-10-13 01:23:45 +00:00
										 |  |  | <script src="shim.js"></script> | 
					
						
							| 
									
										
										
										
											2016-05-29 23:13:34 +00:00
										 |  |  | <script src="adler32.js"></script> | 
					
						
							|  |  |  | <script src="demo/browser.flow.js"></script> | 
					
						
							|  |  |  | <script type="text/javascript"> | 
					
						
							|  |  |  | 	var _gaq = _gaq || []; | 
					
						
							|  |  |  | 	_gaq.push(['_setAccount', 'UA-36810333-1']); | 
					
						
							|  |  |  | 	_gaq.push(['_trackPageview']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	(function() { | 
					
						
							|  |  |  | 		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | 
					
						
							|  |  |  | 		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | 
					
						
							|  |  |  | 		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | 
					
						
							|  |  |  | 	})(); | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> |