| 
									
										
										
										
											1998-08-10 19:42:37 +00:00
										 |  |  | \section{\module{binhex} --- | 
					
						
							| 
									
										
										
										
											1999-02-20 00:14:17 +00:00
										 |  |  |          Encode and decode binhex4 files} | 
					
						
							| 
									
										
										
										
											1998-07-23 17:59:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-20 00:14:17 +00:00
										 |  |  | \declaremodule{standard}{binhex} | 
					
						
							| 
									
										
										
										
											1998-07-23 17:59:49 +00:00
										 |  |  | \modulesynopsis{Encode and decode files in binhex4 format.} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | This module encodes and decodes files in binhex4 format, a format | 
					
						
							| 
									
										
										
										
											2001-11-28 07:26:15 +00:00
										 |  |  | allowing representation of Macintosh files in \ASCII.  On the Macintosh, | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | both forks of a file and the finder information are encoded (or | 
					
						
							|  |  |  | decoded), on other platforms only the data fork is handled. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | The \module{binhex} module defines the following functions: | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-17 06:33:25 +00:00
										 |  |  | \begin{funcdesc}{binhex}{input, output} | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | Convert a binary file with filename \var{input} to binhex file | 
					
						
							|  |  |  | \var{output}. The \var{output} parameter can either be a filename or a | 
					
						
							| 
									
										
										
										
											1999-04-23 15:41:53 +00:00
										 |  |  | file-like object (any object supporting a \method{write()} and | 
					
						
							|  |  |  | \method{close()} method). | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-17 06:33:25 +00:00
										 |  |  | \begin{funcdesc}{hexbin}{input\optional{, output}} | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | Decode a binhex file \var{input}. \var{input} may be a filename or a | 
					
						
							| 
									
										
										
										
											1999-04-23 15:41:53 +00:00
										 |  |  | file-like object supporting \method{read()} and \method{close()} methods. | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | The resulting file is written to a file named \var{output}, unless the | 
					
						
							| 
									
										
										
										
											1999-04-23 15:41:53 +00:00
										 |  |  | argument is omitted in which case the output filename is read from the | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | binhex file. | 
					
						
							|  |  |  | \end{funcdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-25 16:37:56 +00:00
										 |  |  | The following exception is also defined: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | \begin{excdesc}{Error} | 
					
						
							|  |  |  | Exception raised when something can't be encoded using the binhex | 
					
						
							|  |  |  | format (for example, a filename is too long to fit in the filename | 
					
						
							|  |  |  | field), or when input is not properly encoded binhex data. | 
					
						
							|  |  |  | \end{excdesc} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-23 15:41:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | \begin{seealso} | 
					
						
							| 
									
										
										
										
											2000-10-18 17:43:06 +00:00
										 |  |  |   \seemodule{binascii}{Support module containing \ASCII-to-binary | 
					
						
							|  |  |  |                        and binary-to-\ASCII{} conversions.} | 
					
						
							| 
									
										
										
										
											1999-04-23 15:41:53 +00:00
										 |  |  | \end{seealso} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-02-20 00:14:17 +00:00
										 |  |  | \subsection{Notes \label{binhex-notes}} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | There is an alternative, more powerful interface to the coder and | 
					
						
							|  |  |  | decoder, see the source for details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | If you code or decode textfiles on non-Macintosh platforms they will | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | still use the Macintosh newline convention (carriage-return as end of | 
					
						
							| 
									
										
										
										
											1998-02-19 18:29:18 +00:00
										 |  |  | line). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-04 07:15:02 +00:00
										 |  |  | As of this writing, \function{hexbin()} appears to not work in all | 
					
						
							|  |  |  | cases. |