Changeset 1914
- Timestamp:
- 02/28/07 09:29:18 (1 year ago)
- Files:
-
- libswish3/trunk/AUTHORS (modified) (1 diff)
- libswish3/trunk/bindings (added)
- libswish3/trunk/bindings/perl (added)
- libswish3/trunk/bindings/perl/3.xs (added)
- libswish3/trunk/bindings/perl/Changes (added)
- libswish3/trunk/bindings/perl/MANIFEST (added)
- libswish3/trunk/bindings/perl/Makefile.PL (added)
- libswish3/trunk/bindings/perl/README (added)
- libswish3/trunk/bindings/perl/lib (added)
- libswish3/trunk/bindings/perl/lib/SWISH (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3 (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3.pm (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3/Config.pm (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3/Data.pm (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3/Doc.pm (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3/MetaName.pm (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3/Property.pm (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3/Word.pm (added)
- libswish3/trunk/bindings/perl/lib/SWISH/3/WordList.pm (added)
- libswish3/trunk/bindings/perl/ppport.h (added)
- libswish3/trunk/bindings/perl/t (added)
- libswish3/trunk/bindings/perl/t/01slurp.t (added)
- libswish3/trunk/bindings/perl/t/02xml2_version.t (added)
- libswish3/trunk/bindings/perl/t/03parse_file.t (added)
- libswish3/trunk/bindings/perl/t/04subclass.t (added)
- libswish3/trunk/bindings/perl/t/05latin1.t (added)
- libswish3/trunk/bindings/perl/t/06constants.t (added)
- libswish3/trunk/bindings/perl/t/SWISH-3.t (added)
- libswish3/trunk/bindings/perl/t/latin1.xml (added)
- libswish3/trunk/bindings/perl/t/t.conf (added)
- libswish3/trunk/bindings/perl/t/test.html (added)
- libswish3/trunk/bindings/perl/t/test.xml (added)
- libswish3/trunk/bindings/perl/typemap (added)
- libswish3/trunk/configure.ac (modified) (1 diff)
- libswish3/trunk/doc/libswish3.3.pod (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libswish3/trunk/AUTHORS
r1913 r1914 1 Peter Karman - swish@peknet.com - http://swish-e.org/swish3/ 1 Peter Karman . peter@peknet.com 2 http://swish-e.org/swish3/ libswish3/trunk/configure.ac
r1913 r1914 1 AC_INIT([libswish3], [ 1.0.0],2 [Peter Karman < swish@peknet.com>],1 AC_INIT([libswish3], [0.1.0], 2 [Peter Karman <peter@peknet.com>], 3 3 [libswish3]) 4 4 AM_INIT_AUTOMAKE libswish3/trunk/doc/libswish3.3.pod
r1913 r1914 15 15 xmlChar ** word; 16 16 }; 17 17 18 18 struct swish_Config 19 19 { … … 22 22 xmlHashTablePtr conf; /* the meat */ 23 23 }; 24 25 24 25 26 26 struct swish_DocInfo 27 27 { … … 37 37 }; 38 38 39 39 40 40 41 41 struct swish_Word … … 325 325 B<libswish3> is the core C library of B<Swish3>. 326 326 327 B<libswish3> uses the GNOME B<libxml2> library to parse words and metadata327 B<libswish3> uses the GNOME L<Libxml2|http://xmlsoft.org/> library to parse words and metadata 328 328 from XML, HTML and plain text files. B<libswish3> supports full UTF-8 encoding. 329 329 330 330 B<libswish3> is a parsing tool for use with information retrieval (IR) libraries. 331 It is written in C. Perl bindings are available on CPAN as B<SWISH::Parser>. 331 Dynamic language bindings are available in the source distribution in the C<bindings> 332 directory. 332 333 333 334 =head1 APIs … … 710 711 aggregator/filter system, then hand the output to libswish3. 711 712 713 =head1 AUTHOR 714 715 Peter Karman (peter@peknet.com). 712 716 713 717 =head1 CREDITS 714 718 715 B<libswish3> is based oncode from719 B<libswish3> is inspired by code from 716 720 Swish-e (http://www.swish-e.org), 717 libxml2 (http://www.xmlsoft.org),721 Libxml2 (http://www.xmlsoft.org), 718 722 Apache (http://www.apache.org), 719 723 Rahul Dhesi (http://www.tug.org/tex-archive/tools/zoo/), … … 724 728 725 729 All mistakes, errors and poor programming choices are, however, those 726 of the author : Peter Karman (http://peknet.com/).730 of the author. 727 731 728 732 =head1 LICENSE … … 752 756 The project homepage: http://swish-e.org/swish3/ 753 757 754 swish 3(7), swish_lint(1), swish_isw(1), swish_words(1)758 swish_lint(1), swish_isw(1), swish_words(1) 755 759 756 760 =cut
