File: yencode.man

package info (click to toggle)
tcllib 1.10-dfsg-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 17,708 kB
  • ctags: 6,122
  • sloc: tcl: 106,354; ansic: 9,205; sh: 8,707; xml: 1,766; yacc: 753; makefile: 115; perl: 84; f90: 84; python: 33; ruby: 13; php: 11
file content (96 lines) | stat: -rw-r--r-- 2,859 bytes parent folder | download
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
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[manpage_begin yencode n 1.1.1]
[copyright {2002, Pat Thoyts}]
[moddesc   {Text encoding & decoding binary data}]
[titledesc {Y-encode/decode binary data}]
[require Tcl 8.2]
[require yencode [opt 1.1.1]]
[description]
[para]

This package provides a Tcl-only implementation of the yEnc file
encoding. This is a recently introduced method of encoding binary
files for transmission through Usenet. This encoding packs binary data
into a format that requires an 8-bit clean transmission layer but that
escapes characters special to the [term NNTP] posting protocols. See 
[uri http://www.yenc.org/] for details concerning the algorithm.

[list_begin definitions]

[call [cmd ::yencode::encode] [arg string]]

returns the yEnc encoded data.

[call [cmd ::yencode::decode] [arg "string"]]

Decodes the given yEnc encoded data.

[call [cmd ::yencode::yencode] \
  [opt "[option -name] [arg string]"] \
  [opt "[option -line] [arg integer]"] \
  [opt "[option -crc32] [arg boolean]"] \
  "([option -file] [arg filename] | [opt [option --]] [arg string])"]

Encode a file or block of data.

[call [cmd ::yencode::ydecode] \
  "([option -file] [arg filename] | [opt [option --]] [arg string])"]

Decode a file or block of data. A file may contain more than one
embedded file so the result is a list where each element is a three
element list of filename, file size and data.

[list_end]

[section OPTIONS]

[list_begin definitions]

[def "-filename name"]

Cause the yencode or ydecode commands to read their data from the
named file rather that taking a string parameter.

[def "-name string"]

The encoded data header line contains the suggested file name to be
used when unpacking the data. Use this option to change this from the
default of "data.dat".

[def "-line integer"]

The yencoded data header line contains records the line length used
during the encoding. Use this option to select a line length other
that the default of 128. Note that NNTP imposes a 1000 character line
length limit and some gateways may have trouble with more than 255
characters per line.

[def "-crc32 boolean"]

The yEnc specification recommends the inclusion of a cyclic redundancy
check value in the footer. Use this option to change the default from
[arg true] to [arg false].

[list_end]

[para]
[example {
% set d [yencode::yencode -file testfile.txt]
=ybegin line=128 size=584 name=testfile.txt
 -o- data not shown -o-
=yend size=584 crc32=ded29f4f
}]

[section {BUGS, IDEAS, FEEDBACK}]

This document, and the package it describes, will undoubtedly contain
bugs and other problems.

Please report such in the category [emph base64] of the
[uri {http://sourceforge.net/tracker/?group_id=12883} {Tcllib SF Trackers}].

Please also report any ideas for enhancements you may have for either
package and/or documentation.


[keywords encoding yEnc yencode ydecode]
[manpage_end]