• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H08-Jun-2021-15469

lib/Net/H08-Jun-2021-869562

t/H03-May-2022-2,0181,506

ChangesH A D08-Jun-20218.4 KiB239173

MANIFESTH A D08-Jun-2021404 2120

META.jsonH A D08-Jun-20211.4 KiB6261

META.ymlH A D08-Jun-2021826 3534

Makefile.PLH A D03-May-20221.2 KiB5341

READMEH A D20-Jul-20131.4 KiB4832

TODO.mdH A D12-Dec-2014238 87

dictH A D04-Apr-201413.4 KiB528171

tkdictH A D04-Apr-201421.3 KiB796404

README

1
2				Net::Dict
3
4This distribution contains the Net::Dict module for Perl.
5Net::Dict is a class implementing a simple client API
6for the DICT protocol defined in RFC2229.
7
8To install this module, you should just have to run the following:
9
10	% perl Makefile.PL
11	% make
12	% make test
13	% make install
14
15When you run "perl Makefile.PL" you'll be asked for the hostname
16and port for the DICT server used when testing. If you're not
17going to run "make install", then just press return. You should
18be able to just press return on the two questions anyway.
19
20This module now supports the AUTH optional capability. To use this
21you will need the Digest::MD5 module, available from CPAN.
22
23The module is documented using pod. When you "make install", you
24will get a man-page Net::Dict. You can also generate HTML using pod2html:
25
26	% pod2html lib/Net/Dict.pm
27
28Three sample clients are included in this distribution.
29Any additional modules required are noted, and available from CPAN.
30
31    dict
32	A basic command-line client, based on the C dict client
33	by Rik Faith.
34	Requires: AppConfig, AppConfig::Std
35
36    tkdict
37	A first cut at a Perl/Tk client. This is pretty rough;
38	any suggestions or patches are welcome!
39	Requires: AppConfig, AppConfig::Std, Tk, Tk::Dialog
40
41    examples/simple.pl
42	Illustrates basic use of Net::Dict.
43
44Net::Dict was written by Dmitry Rubinstein, but is now maintained by me.
45
46
47Neil Bowers <neil@bowers.com>
48