gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r23669 - in Extractor-docs/WWW: . man1 man3


From: gnunet
Subject: [GNUnet-SVN] r23669 - in Extractor-docs/WWW: . man1 man3
Date: Thu, 6 Sep 2012 13:11:42 +0200

Author: grothoff
Date: 2012-09-06 13:11:42 +0200 (Thu, 06 Sep 2012)
New Revision: 23669

Added:
   Extractor-docs/WWW/gendocs.sh
   Extractor-docs/WWW/gendocs_template
   Extractor-docs/WWW/man1/extract.1.html
   Extractor-docs/WWW/man3/libextractor.3.html
Log:
updating docs

Added: Extractor-docs/WWW/gendocs.sh
===================================================================
--- Extractor-docs/WWW/gendocs.sh                               (rev 0)
+++ Extractor-docs/WWW/gendocs.sh       2012-09-06 11:11:42 UTC (rev 23669)
@@ -0,0 +1,392 @@
+#!/bin/sh -e
+# gendocs.sh -- generate a GNU manual in many formats.  This script is
+#   mentioned in maintain.texi.  See the help message below for usage details.
+
+scriptversion=2012-09-02.17
+
+# Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
+# Free Software Foundation, Inc.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+# Original author: Mohit Agarwal.
+# Send bug reports and any other correspondence to address@hidden
+#
+# The latest version of this script, and the companion template, is
+# available from Texinfo CVS:
+# http://savannah.gnu.org/cgi-bin/viewcvs/texinfo/texinfo/util/gendocs.sh
+# http://savannah.gnu.org/cgi-bin/viewcvs/texinfo/texinfo/util/gendocs_template
+#
+# An up-to-date copy is also maintained in Gnulib (gnu.org/software/gnulib).
+
+prog=`basename "$0"`
+srcdir=`pwd`
+
+scripturl="http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/texinfo/texinfo/util/gendocs.sh";
+templateurl="http://savannah.gnu.org/cgi-bin/viewcvs/~checkout~/texinfo/texinfo/util/gendocs_template";
+
+: ${SETLANG="env LANG= LC_MESSAGES= LC_ALL= LANGUAGE="}
+: ${MAKEINFO="makeinfo"}
+: ${TEXI2DVI="texi2dvi -t @finalout"}
+: ${DVIPS="dvips"}
+: ${DOCBOOK2HTML="docbook2html"}
+: ${DOCBOOK2PDF="docbook2pdf"}
+: ${DOCBOOK2PS="docbook2ps"}
+: ${DOCBOOK2TXT="docbook2txt"}
+: ${GENDOCS_TEMPLATE_DIR="."}
+: ${TEXI2HTML="texi2html"}
+unset CDPATH
+unset use_texi2html
+
+version="gendocs.sh $scriptversion
+
+Copyright 2012 Free Software Foundation, Inc.
+There is NO warranty.  You may redistribute this software
+under the terms of the GNU General Public License.
+For more information about these matters, see the files named COPYING."
+
+usage="Usage: $prog [OPTION]... PACKAGE MANUAL-TITLE
+
+Generate output in various formats from PACKAGE.texinfo (or .texi or
+.txi) source.  See the GNU Maintainers document for a more extensive
+discussion:
+  http://www.gnu.org/prep/maintain_toc.html
+
+Options:
+  -s SRCFILE  read Texinfo from SRCFILE, instead of PACKAGE.{texinfo|texi|txi}
+  -o OUTDIR   write files into OUTDIR, instead of manual/.
+  --email ADR use ADR as contact in generated web pages.
+  --docbook   convert to DocBook too (xml, txt, html, pdf and ps).
+  --html ARG  pass indicated ARG to makeinfo or texi2html for HTML targets.
+  --info ARG  pass indicated ARG to makeinfo for Info, instead of --no-split.
+  --texi2html use texi2html to generate HTML targets.
+  --help      display this help and exit successfully.
+  --version   display version information and exit successfully.
+
+Simple example: $prog --email address@hidden emacs \"GNU Emacs Manual\"
+
+Typical sequence:
+  cd PACKAGESOURCE/doc
+  wget \"$scripturl\"
+  wget \"$templateurl\"
+  $prog --email BUGLIST MANUAL \"GNU MANUAL - One-line description\"
+
+Output will be in a new subdirectory \"manual\" (by default;
+use -o OUTDIR to override).  Move all the new files into your web CVS
+tree, as explained in the Web Pages node of maintain.texi.
+
+Please do use the --email ADDRESS option to specify your bug-reporting
+address in the generated HTML pages.
+
+MANUAL-TITLE is included as part of the HTML <title> of the overall
+manual/index.html file.  It should include the name of the package being
+documented.  manual/index.html is created by substitution from the file
+$GENDOCS_TEMPLATE_DIR/gendocs_template.  (Feel free to modify the
+generic template for your own purposes.)
+
+If you have several manuals, you'll need to run this script several
+times with different MANUAL values, specifying a different output
+directory with -o each time.  Then write (by hand) an overall index.html
+with links to them all.
+
+If a manual's Texinfo sources are spread across several directories,
+first copy or symlink all Texinfo sources into a single directory.
+(Part of the script's work is to make a tar.gz of the sources.)
+
+As implied above, by default monolithic Info files are generated.
+If you want split Info, or other Info options, use --info to override.
+
+You can set the environment variables MAKEINFO, TEXI2DVI, TEXI2HTML, and
+DVIPS to control the programs that get executed, and
+GENDOCS_TEMPLATE_DIR to control where the gendocs_template file is
+looked for.  With --docbook, the environment variables DOCBOOK2HTML,
+DOCBOOK2PDF, DOCBOOK2PS, and DOCBOOK2TXT are also respected.
+
+By default, makeinfo and texi2dvi are run in the default (English)
+locale, since that's the language of most Texinfo manuals.  If you
+happen to have a non-English manual and non-English web site, see the
+SETLANG setting in the source.
+
+Email bug reports or enhancement requests to address@hidden
+"
+
+calcsize()
+{
+  size=`ls -ksl $1 | awk '{print $1}'`
+  echo $size
+}
+
+MANUAL_TITLE=
+PACKAGE=
address@hidden  # please override with --email
+htmlarg=
+infoarg=--no-split
+outdir=manual
+srcfile=
+
+while test $# -gt 0; do
+  case $1 in
+    --email) shift; EMAIL=$1;;
+    --help) echo "$usage"; exit 0;;
+    --version) echo "$version"; exit 0;;
+    -s) shift; srcfile=$1;;
+    -o) shift; outdir=$1;;
+    --docbook) docbook=yes;;
+    --html) shift; htmlarg=$1;;
+    --info) shift; infoarg=$1;;
+    --texi2html) use_texi2html=1;;
+    -*)
+      echo "$0: Unknown option \`$1'." >&2
+      echo "$0: Try \`--help' for more information." >&2
+      exit 1;;
+    *)
+      if test -z "$PACKAGE"; then
+        PACKAGE=$1
+      elif test -z "$MANUAL_TITLE"; then
+        MANUAL_TITLE=$1
+      else
+        echo "$0: extra non-option argument \`$1'." >&2
+        exit 1
+      fi;;
+  esac
+  shift
+done
+
+# For most of the following, the base name is just $PACKAGE
+base=$PACKAGE
+
+if test -n "$srcfile"; then
+  # but here, we use the basename of $srcfile
+  base=`basename "$srcfile"`
+  case $base in
+    *.txi|*.texi|*.texinfo) base=`echo "$base"|sed 's/\.[texinfo]*$//'`;;
+  esac
+  PACKAGE=$base
+elif test -s "$srcdir/$PACKAGE.texinfo"; then
+  srcfile=$srcdir/$PACKAGE.texinfo
+elif test -s "$srcdir/$PACKAGE.texi"; then
+  srcfile=$srcdir/$PACKAGE.texi
+elif test -s "$srcdir/$PACKAGE.txi"; then
+  srcfile=$srcdir/$PACKAGE.txi
+else
+  echo "$0: cannot find .texinfo or .texi or .txi for $PACKAGE in $srcdir." >&2
+  exit 1
+fi
+
+if test ! -r $GENDOCS_TEMPLATE_DIR/gendocs_template; then
+  echo "$0: cannot read $GENDOCS_TEMPLATE_DIR/gendocs_template." >&2
+  echo "$0: it is available from $templateurl." >&2
+  exit 1
+fi
+
+case $outdir in
+  /*) abs_outdir=$outdir;;
+  *)  abs_outdir=$srcdir/$outdir;;
+esac
+
+echo "Generating output formats for $srcfile"
+
+cmd="$SETLANG $MAKEINFO -o $PACKAGE.info $infoarg \"$srcfile\""
+echo "Generating info file(s)... ($cmd)"
+eval "$cmd"
+mkdir -p "$outdir/"
+tar czf "$outdir/$PACKAGE.info.tar.gz" $PACKAGE.info*
+info_tgz_size=`calcsize "$outdir/$PACKAGE.info.tar.gz"`
+# do not mv the info files, there's no point in having them available
+# separately on the web.
+
+cmd="$SETLANG ${TEXI2DVI} \"$srcfile\""
+echo "Generating dvi ... ($cmd)"
+eval "$cmd"
+
+# now, before we compress dvi:
+echo "Generating postscript..."
+${DVIPS} $PACKAGE -o
+gzip -f -9 $PACKAGE.ps
+ps_gz_size=`calcsize $PACKAGE.ps.gz`
+mv $PACKAGE.ps.gz "$outdir/"
+
+# compress/finish dvi:
+gzip -f -9 $PACKAGE.dvi
+dvi_gz_size=`calcsize $PACKAGE.dvi.gz`
+mv $PACKAGE.dvi.gz "$outdir/"
+
+cmd="$SETLANG ${TEXI2DVI} --pdf \"$srcfile\""
+echo "Generating pdf ... ($cmd)"
+eval "$cmd"
+pdf_size=`calcsize $PACKAGE.pdf`
+mv $PACKAGE.pdf "$outdir/"
+
+cmd="$SETLANG $MAKEINFO -o $PACKAGE.txt --no-split --no-headers \"$srcfile\""
+echo "Generating ASCII... ($cmd)"
+eval "$cmd"
+ascii_size=`calcsize $PACKAGE.txt`
+gzip -f -9 -c $PACKAGE.txt >"$outdir/$PACKAGE.txt.gz"
+ascii_gz_size=`calcsize "$outdir/$PACKAGE.txt.gz"`
+mv $PACKAGE.txt "$outdir/"
+
+html_split()
+{
+  opt="--split=$1 $htmlarg --node-files"
+  cmd="$SETLANG $TEXI2HTML --output $PACKAGE.html $opt \"$srcfile\""
+  echo "Generating html by $1... ($cmd)"
+  eval "$cmd"
+  split_html_dir=$PACKAGE.html
+  (
+    cd ${split_html_dir} || exit 1
+    ln -sf ${PACKAGE}.html index.html
+    tar -czf "$abs_outdir/${PACKAGE}.html_$1.tar.gz" -- *.html
+  )
+  eval html_$1_tgz_size=`calcsize "$outdir/${PACKAGE}.html_$1.tar.gz"`
+  rm -f "$outdir"/html_$1/*.html
+  mkdir -p "$outdir/html_$1/"
+  mv ${split_html_dir}/*.html "$outdir/html_$1/"
+  rmdir ${split_html_dir}
+}
+
+if test -z "$use_texi2html"; then
+  opt="--no-split --html -o $PACKAGE.html $htmlarg"
+  cmd="$SETLANG $MAKEINFO $opt \"$srcfile\""
+  echo "Generating monolithic html... ($cmd)"
+  rm -rf $PACKAGE.html  # in case a directory is left over
+  eval "$cmd"
+  html_mono_size=`calcsize $PACKAGE.html`
+  gzip -f -9 -c $PACKAGE.html >"$outdir/$PACKAGE.html.gz"
+  html_mono_gz_size=`calcsize "$outdir/$PACKAGE.html.gz"`
+  mv $PACKAGE.html "$outdir/"
+
+  cmd="$SETLANG $MAKEINFO --html -o $PACKAGE.html $htmlarg \"$srcfile\""
+  echo "Generating html by node... ($cmd)"
+  eval "$cmd"
+  split_html_dir=$PACKAGE.html
+  (
+   cd ${split_html_dir} || exit 1
+   tar -czf "$abs_outdir/${PACKAGE}.html_node.tar.gz" -- *.html
+  )
+  html_node_tgz_size=`calcsize "$outdir/${PACKAGE}.html_node.tar.gz"`
+  rm -f "$outdir"/html_node/*.html
+  mkdir -p "$outdir/html_node/"
+  mv ${split_html_dir}/*.html "$outdir/html_node/"
+  rmdir ${split_html_dir}
+else
+  cmd="$SETLANG $TEXI2HTML --output $PACKAGE.html $htmlarg \"$srcfile\""
+  echo "Generating monolithic html... ($cmd)"
+  rm -rf $PACKAGE.html  # in case a directory is left over
+  eval "$cmd"
+  html_mono_size=`calcsize $PACKAGE.html`
+  gzip -f -9 -c $PACKAGE.html >"$outdir/$PACKAGE.html.gz"
+  html_mono_gz_size=`calcsize "$outdir/$PACKAGE.html.gz"`
+  mv $PACKAGE.html "$outdir/"
+
+  html_split node
+  html_split chapter
+  html_split section
+fi
+
+echo Making .tar.gz for sources...
+d=`dirname $srcfile`
+(
+  cd "$d"
+  srcfiles=`ls *.texinfo *.texi *.txi *.eps 2>/dev/null` || true
+  tar cvzfh "$abs_outdir/$PACKAGE.texi.tar.gz" $srcfiles
+)
+texi_tgz_size=`calcsize "$outdir/$PACKAGE.texi.tar.gz"`
+
+if test -n "$docbook"; then
+  cmd="$SETLANG $MAKEINFO -o - --docbook \"$srcfile\" > 
${srcdir}/$PACKAGE-db.xml"
+  echo "Generating docbook XML... ($cmd)"
+  eval "$cmd"
+  docbook_xml_size=`calcsize $PACKAGE-db.xml`
+  gzip -f -9 -c $PACKAGE-db.xml >"$outdir/$PACKAGE-db.xml.gz"
+  docbook_xml_gz_size=`calcsize "$outdir/$PACKAGE-db.xml.gz"`
+  mv $PACKAGE-db.xml "$outdir/"
+
+  split_html_db_dir=html_node_db
+  cmd="${DOCBOOK2HTML} -o $split_html_db_dir \"${outdir}/$PACKAGE-db.xml\""
+  echo "Generating docbook HTML... ($cmd)"
+  eval "$cmd"
+  (
+    cd ${split_html_db_dir} || exit 1
+    tar -czf "$abs_outdir/${PACKAGE}.html_node_db.tar.gz" -- *.html
+  )
+  html_node_db_tgz_size=`calcsize "$outdir/${PACKAGE}.html_node_db.tar.gz"`
+  rm -f "$outdir"/html_node_db/*.html
+  mkdir -p "$outdir/html_node_db"
+  mv ${split_html_db_dir}/*.html "$outdir/html_node_db/"
+  rmdir ${split_html_db_dir}
+
+  cmd="${DOCBOOK2TXT} \"${outdir}/$PACKAGE-db.xml\""
+  echo "Generating docbook ASCII... ($cmd)"
+  eval "$cmd"
+  docbook_ascii_size=`calcsize $PACKAGE-db.txt`
+  mv $PACKAGE-db.txt "$outdir/"
+
+  cmd="${DOCBOOK2PS} \"${outdir}/$PACKAGE-db.xml\""
+  echo "Generating docbook PS... ($cmd)"
+  eval "$cmd"
+  gzip -f -9 -c $PACKAGE-db.ps >"$outdir/$PACKAGE-db.ps.gz"
+  docbook_ps_gz_size=`calcsize "$outdir/$PACKAGE-db.ps.gz"`
+  mv $PACKAGE-db.ps "$outdir/"
+
+  cmd="${DOCBOOK2PDF} \"${outdir}/$PACKAGE-db.xml\""
+  echo "Generating docbook PDF... ($cmd)"
+  eval "$cmd"
+  docbook_pdf_size=`calcsize $PACKAGE-db.pdf`
+  mv $PACKAGE-db.pdf "$outdir/"
+fi
+
+echo "Writing index file..."
+if test -z "$use_texi2html"; then
+   CONDS="/%%IF  *HTML_SECTION%%/,/%%ENDIF  *HTML_SECTION%%/d;\
+          /%%IF  *HTML_CHAPTER%%/,/%%ENDIF  *HTML_CHAPTER%%/d"
+else
+   CONDS="/%%ENDIF.*%%/d;/%%IF  *HTML_SECTION%%/d;/%%IF  *HTML_CHAPTER%%/d"
+fi
+curdate=`$SETLANG date '+%B %d, %Y'`
+sed \
+   -e "s!%%TITLE%%!$MANUAL_TITLE!g" \
+   -e "s!%%EMAIL%%!$EMAIL!g" \
+   -e "s!%%PACKAGE%%!$PACKAGE!g" \
+   -e "s!%%DATE%%!$curdate!g" \
+   -e "s!%%HTML_MONO_SIZE%%!$html_mono_size!g" \
+   -e "s!%%HTML_MONO_GZ_SIZE%%!$html_mono_gz_size!g" \
+   -e "s!%%HTML_NODE_TGZ_SIZE%%!$html_node_tgz_size!g" \
+   -e "s!%%HTML_SECTION_TGZ_SIZE%%!$html_section_tgz_size!g" \
+   -e "s!%%HTML_CHAPTER_TGZ_SIZE%%!$html_chapter_tgz_size!g" \
+   -e "s!%%INFO_TGZ_SIZE%%!$info_tgz_size!g" \
+   -e "s!%%DVI_GZ_SIZE%%!$dvi_gz_size!g" \
+   -e "s!%%PDF_SIZE%%!$pdf_size!g" \
+   -e "s!%%PS_GZ_SIZE%%!$ps_gz_size!g" \
+   -e "s!%%ASCII_SIZE%%!$ascii_size!g" \
+   -e "s!%%ASCII_GZ_SIZE%%!$ascii_gz_size!g" \
+   -e "s!%%TEXI_TGZ_SIZE%%!$texi_tgz_size!g" \
+   -e "s!%%DOCBOOK_HTML_NODE_TGZ_SIZE%%!$html_node_db_tgz_size!g" \
+   -e "s!%%DOCBOOK_ASCII_SIZE%%!$docbook_ascii_size!g" \
+   -e "s!%%DOCBOOK_PS_GZ_SIZE%%!$docbook_ps_gz_size!g" \
+   -e "s!%%DOCBOOK_PDF_SIZE%%!$docbook_pdf_size!g" \
+   -e "s!%%DOCBOOK_XML_SIZE%%!$docbook_xml_size!g" \
+   -e "s!%%DOCBOOK_XML_GZ_SIZE%%!$docbook_xml_gz_size!g" \
+   -e "s,%%SCRIPTURL%%,$scripturl,g" \
+   -e "s!%%SCRIPTNAME%%!$prog!g" \
+   -e "$CONDS" \
+$GENDOCS_TEMPLATE_DIR/gendocs_template >"$outdir/index.html"
+
+echo "Done, see $outdir/ subdirectory for new files."
+
+# Local variables:
+# eval: (add-hook 'write-file-hooks 'time-stamp)
+# time-stamp-start: "scriptversion="
+# time-stamp-format: "%:y-%02m-%02d.%02H"
+# time-stamp-end: "$"
+# End:


Property changes on: Extractor-docs/WWW/gendocs.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: Extractor-docs/WWW/gendocs_template
===================================================================
--- Extractor-docs/WWW/gendocs_template                         (rev 0)
+++ Extractor-docs/WWW/gendocs_template 2012-09-06 11:11:42 UTC (rev 23669)
@@ -0,0 +1,1694 @@
+
+
+
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
+<!-- ViewVC :: http://www.viewvc.org/ -->
+<head>
+<title>[sources] Log of /texinfo/texinfo/util/gendocs_template</title>
+<meta name="generator" content="ViewVC 1.0.7" />
+<link rel="stylesheet" href="/viewcvs-doc/styles.css" type="text/css" />
+
+</head>
+<body>
+<div style="float: right; padding: 5px;"><a 
href="http://savannah.gnu.org/";><img 
src="http://savannah.gnu.org/images/common/floating.png"; alt="Provided by GNU 
Savannah" width="148" height="125" /></a></div>
+<h3>Savannah CVS Surfing
+
+
+- Log of /texinfo/texinfo/util/gendocs_template
+</h3>
+<table style="margin:0; border-spacing:0" class="vc_navheader">
+<tr>
+<td>
+<strong>
+
+<a href="/viewvc/">
+
+[sources]</a>
+/
+
+<a href="/viewvc/texinfo/">
+
+texinfo</a>
+/
+
+<a href="/viewvc/texinfo/texinfo/">
+
+texinfo</a>
+/
+
+<a href="/viewvc/texinfo/texinfo/util/">
+
+util</a>
+/
+
+
+
+gendocs_template
+
+
+</strong>
+
+</td>
+</tr>
+</table>
+<!-- It would be nice to detect a "web.cvs.s*.*gnu.org vhost, and use /web 
instead of /sources... -->
+
+
+
+
+
+
+<p style="margin:0;">
+
+<a href="/viewvc/texinfo/texinfo/util/"><img 
src="/viewcvs-doc/images/back_small.png" width="16" height="16" alt="Parent 
Directory" /> Parent Directory</a>
+
+
+
+
+</p>
+
+<hr />
+<table class="auto">
+
+
+
+<tr>
+<td>Links to HEAD:</td>
+<td>
+(<a href="/viewvc/texinfo/texinfo/util/gendocs_template?view=markup">view</a>)
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=annotate">annotate</a>)
+</td>
+</tr>
+
+
+
+<tr>
+<td>Sticky Tag:</td>
+<td><form method="get" action="/viewvc/texinfo/texinfo/util/gendocs_template" 
style="display: inline">
+<div style="display: inline">
+<input type="hidden" name="view" value="log" />
+
+
+<select name="pathrev" onchange="submit()">
+<option value=""></option>
+
+<optgroup label="Branches">
+
+
+<option>texinfo_4_8</option>
+
+
+
+<option>texinfo_4_13</option>
+
+
+
+<option>texinfo_4_12</option>
+
+
+
+<option>texinfo_4_11</option>
+
+
+
+<option>MAIN</option>
+
+
+</optgroup>
+
+<optgroup label="Non-branch tags">
+
+
+<option>texinfo_4_7</option>
+
+
+
+<option>HEAD</option>
+
+
+</optgroup>
+
+</select>
+
+<input type="submit" value="Set" />
+</div>
+</form>
+
+</td>
+</tr>
+</table>
+ 
+
+
+
+
+
+
+
+
+<div>
+<hr />
+
+<a name="rev1.23"></a>
+<a name="HEAD"></a>
+
+
+Revision <strong>1.23</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.23&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.23">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.23">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.23&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sun Jan  1 17:09:10 2012 UTC</em> (8 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+<br />CVS Tags:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=HEAD"><strong>HEAD</strong></a>
+
+
+
+
+
+
+<br />Changes since <strong>1.22: +1 -1 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.22&amp;r2=1.23">previous
 1.22</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">2012
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.22"></a>
+
+
+Revision <strong>1.22</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.22&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.22">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.22">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.22&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Mon Mar 28 18:37:32 2011 UTC</em> (17 months, 1 week ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.21: +0 -6 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.21&amp;r2=1.22">previous
 1.21</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">rm xml comments
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.21"></a>
+
+
+Revision <strong>1.21</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.21&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.21">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.21">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.21&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Tue Mar 22 23:54:43 2011 UTC</em> (17 months, 2 weeks ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.20: +12 -13 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.20&amp;r2=1.21">previous
 1.20</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">2011, boilerplate
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.20"></a>
+
+
+Revision <strong>1.20</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.20&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.20">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.20">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.20&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sun May 16 18:58:42 2010 UTC</em> (2 years, 3 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.19: +1 -1 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.19&amp;r2=1.20">previous
 1.19</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">2010
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.19"></a>
+
+
+Revision <strong>1.19</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.19&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.19">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.19">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.19&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Tue Apr 21 13:35:50 2009 UTC</em> (3 years, 4 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.18: +3 -5 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.18&amp;r2=1.19">previous
 1.18</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">consistently use &lt;...&gt; for email, a la boilerplate
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.18"></a>
+
+
+Revision <strong>1.18</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.18&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.18">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.18">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.18&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Tue Apr 21 13:26:26 2009 UTC</em> (3 years, 4 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.17: +5 -5 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.17&amp;r2=1.18">previous
 1.17</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">trailing whitespace
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.17"></a>
+
+
+Revision <strong>1.17</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.17&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.17">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.17">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.17&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Thu Jan  1 19:26:59 2009 UTC</em> (3 years, 8 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.16: +5 -7 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.16&amp;r2=1.17">previous
 1.16</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">support email replacement in templates
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.16"></a>
+
+
+Revision <strong>1.16</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.16&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.16">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.16">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.16&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Thu Jun 12 23:00:19 2008 UTC</em> (4 years, 2 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+<br />Branch point for:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=texinfo_4_13"><strong>texinfo_4_13</strong></a>
+
+
+
+
+
+<br />Changes since <strong>1.15: +3 -3 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.15&amp;r2=1.16">previous
 1.15</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">gendocs_template updates from Yavor
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.15"></a>
+
+
+Revision <strong>1.15</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.15&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.15">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.15">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.15&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Wed Oct 24 13:31:34 2007 UTC</em> (4 years, 10 months ago) by <em>gray</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+<br />Branch point for:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=texinfo_4_12"><strong>texinfo_4_12</strong></a>
+
+
+
+
+
+<br />Changes since <strong>1.14: +19 -1 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.14&amp;r2=1.15">previous
 1.14</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">Conditionally enable section and chapter split HTMLs.
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.14"></a>
+
+
+Revision <strong>1.14</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.14&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.14">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.14">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.14&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Thu Jun 14 22:53:50 2007 UTC</em> (5 years, 2 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+<br />Branch point for:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=texinfo_4_11"><strong>texinfo_4_11</strong></a>
+
+
+
+
+
+<br />Changes since <strong>1.13: +4 -0 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.13&amp;r2=1.14">previous
 1.13</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">mention possibility of buying manuals
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.13"></a>
+
+
+Revision <strong>1.13</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.13&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.13">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.13">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.13&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Tue May 22 13:25:53 2007 UTC</em> (5 years, 3 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.12: +1 -1 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.12&amp;r2=1.13">previous
 1.12</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">missing period
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.12"></a>
+
+
+Revision <strong>1.12</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.12&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.12">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.12">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.12&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Thu Apr 26 17:16:11 2007 UTC</em> (5 years, 4 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.11: +42 -55 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.11&amp;r2=1.12">previous
 1.11</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">gendocs_template conform to current GNU style
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.11"></a>
+
+
+Revision <strong>1.11</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.11&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.11">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.11">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.11&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Mon Apr  2 22:53:38 2007 UTC</em> (5 years, 5 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.10: +9 -9 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.10&amp;r2=1.11">previous
 1.10</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">bytes better than characters
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.10"></a>
+
+
+Revision <strong>1.10</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.10&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.10">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.10">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.10&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sun Feb 25 01:36:03 2007 UTC</em> (5 years, 6 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.9: +1 -1 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.9&amp;r2=1.10">previous
 1.9</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">2007
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.9"></a>
+
+
+Revision <strong>1.9</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.9&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.9">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.9">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.9&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sat Oct 14 14:01:21 2006 UTC</em> (5 years, 10 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.8: +1 -4 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.8&amp;r2=1.9">previous 
1.8</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">gif patents expired
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.8"></a>
+
+
+Revision <strong>1.8</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.8&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.8">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.8">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.8&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sat Jul 15 15:45:24 2006 UTC</em> (6 years, 1 month ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.7: +2 -8 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.7&amp;r2=1.8">previous 
1.7</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">avoid RCS keywords since these are also in gnulib now
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.7"></a>
+
+
+Revision <strong>1.7</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.7&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.7">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.7">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.7&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sun May 15 00:00:08 2005 UTC</em> (7 years, 3 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.6: +3 -3 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.6&amp;r2=1.7">previous 
1.6</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">update FSF address
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.6"></a>
+
+
+Revision <strong>1.6</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.6&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.6">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.6">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.6&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Thu Sep 23 13:16:19 2004 UTC</em> (7 years, 11 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+<br />Branch point for:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=texinfo_4_8"><strong>texinfo_4_8</strong></a>
+
+
+
+
+
+<br />Changes since <strong>1.5: +5 -6 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.5&amp;r2=1.6">previous 
1.5</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">tweak link, wording
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.5"></a>
+
+
+Revision <strong>1.5</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.5&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.5">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.5">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.5&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Mon May 17 12:57:58 2004 UTC</em> (8 years, 3 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.4: +4 -4 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.4&amp;r2=1.5">previous 
1.4</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">use package.format.tar.gz consistently
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.4"></a>
+<a name="texinfo_4_7"></a>
+
+
+Revision <strong>1.4</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.4&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.4">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.4">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.4&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sun Apr 11 17:56:47 2004 UTC</em> (8 years, 4 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+<br />CVS Tags:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=texinfo_4_7"><strong>texinfo_4_7</strong></a>
+
+
+
+
+
+
+<br />Changes since <strong>1.3: +0 -0 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.3&amp;r2=1.4">previous 
1.3</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">import from berlios
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.3"></a>
+
+
+Revision <strong>1.3</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.3&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.3">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.3">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.3&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sat Feb 28 00:11:56 2004 UTC</em> (8 years, 6 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.2: +101 -67 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.2&amp;r2=1.3">previous 
1.2</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">update
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.2"></a>
+
+
+Revision <strong>1.2</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.2&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.2">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.2">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.2&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Sun Oct 26 11:56:12 2003 UTC</em> (8 years, 10 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+<br />Changes since <strong>1.1: +9 -10 lines</strong>
+
+
+
+
+
+
+
+<br />Diff to <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.1&amp;r2=1.2">previous 
1.1</a>
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">.
+</pre>
+</div>
+
+
+
+<div>
+<hr />
+
+<a name="rev1.1"></a>
+
+
+Revision <strong>1.1</strong> -
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?revision=1.1&amp;view=markup">view</a>)
+
+(<a 
href="/viewvc/*checkout*/texinfo/texinfo/util/gendocs_template?revision=1.1">download</a>)
+
+(<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?annotate=1.1">annotate</a>)
+
+
+
+- <a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?r1=1.1&amp;view=log">[select
 for diffs]</a>
+
+
+
+
+<br />
+
+<em>Tue Oct 21 23:36:05 2003 UTC</em> (8 years, 10 months ago) by <em>karl</em>
+
+
+<br />Branch:
+
+<a 
href="/viewvc/texinfo/texinfo/util/gendocs_template?view=log&amp;pathrev=MAIN"><strong>MAIN</strong></a>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<pre class="vc_log">initial
+</pre>
+</div>
+
+ 
+
+
+
+ <hr />
+<p><a name="diff"></a>
+This form allows you to request diffs between any two revisions of this file.
+For each of the two "sides" of the diff,
+
+select a symbolic revision name using the selection box, or choose
+'Use Text Field' and enter a numeric revision.
+
+</p>
+<form method="get" action="/viewvc/texinfo/texinfo/util/gendocs_template" 
id="diff_select">
+<table cellpadding="2" cellspacing="0" class="auto">
+<tr>
+<td>&nbsp;</td>
+<td>
+<input type="hidden" name="view" value="diff" />
+Diffs between
+
+<select name="r1">
+<option value="text" selected="selected">Use Text Field</option>
+
+<option value="1.6:texinfo_4_8">texinfo_4_8</option>
+
+<option value="1.4:texinfo_4_7">texinfo_4_7</option>
+
+<option value="1.16:texinfo_4_13">texinfo_4_13</option>
+
+<option value="1.15:texinfo_4_12">texinfo_4_12</option>
+
+<option value="1.14:texinfo_4_11">texinfo_4_11</option>
+
+<option value="1.23:MAIN">MAIN</option>
+
+<option value="1.23:HEAD">HEAD</option>
+
+</select>
+<input type="text" size="12" name="tr1"
+value="1.23"
+onchange="document.getElementById('diff_select').r1.selectedIndex=0" />
+
+and
+
+<select name="r2">
+<option value="text" selected="selected">Use Text Field</option>
+
+<option value="1.6:texinfo_4_8">texinfo_4_8</option>
+
+<option value="1.4:texinfo_4_7">texinfo_4_7</option>
+
+<option value="1.16:texinfo_4_13">texinfo_4_13</option>
+
+<option value="1.15:texinfo_4_12">texinfo_4_12</option>
+
+<option value="1.14:texinfo_4_11">texinfo_4_11</option>
+
+<option value="1.23:MAIN">MAIN</option>
+
+<option value="1.23:HEAD">HEAD</option>
+
+</select>
+<input type="text" size="12" name="tr2"
+value="1.1"
+onchange="document.getElementById('diff_select').r2.selectedIndex=0" />
+
+</td>
+</tr>
+<tr>
+<td>&nbsp;</td>
+<td>
+Type of Diff should be a
+<select name="diff_format" onchange="submit()">
+<option value="h" selected="selected">Colored Diff</option>
+<option value="l" >Long Colored Diff</option>
+<option value="u" >Unidiff</option>
+<option value="c" >Context Diff</option>
+<option value="s" >Side by Side</option>
+</select>
+<input type="submit" value=" Get Diffs " />
+</td>
+</tr>
+</table>
+</form>
+
+
+<form method="get" action="/viewvc/texinfo/texinfo/util/gendocs_template">
+<div>
+<hr />
+<a name="logsort"></a>
+<input type="hidden" name="view" value="log" />
+Sort log by:
+<select name="logsort" onchange="submit()">
+<option value="cvs" >Not sorted</option>
+<option value="date" selected="selected">Commit date</option>
+<option value="rev" >Revision</option>
+</select>
+<input type="submit" value=" Sort " />
+</div>
+</form>
+
+
+<hr />
+<table>
+<tr>
+<td><address>Send suggestions and report system problems to the <a 
href="https://savannah.gnu.org/support/?group=administration";>Savannah 
Hackers</a>.</address></td>
+<td style="text-align: right;"><strong><a 
href="/viewcvs-doc/help_log.html">ViewVC Help</a></strong></td>
+</tr>
+<tr>
+<td>Powered by <a href="http://viewvc.tigris.org/";>ViewVC 1.0.7</a></td>
+<td style="text-align: right;">&nbsp;</td>
+</tr>
+</table>
+</body>
+</html>
+
+

Added: Extractor-docs/WWW/man1/extract.1.html
===================================================================
--- Extractor-docs/WWW/man1/extract.1.html                              (rev 0)
+++ Extractor-docs/WWW/man1/extract.1.html      2012-09-06 11:11:42 UTC (rev 
23669)
@@ -0,0 +1,193 @@
+
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<HTML><HEAD><TITLE>Man page of EXTRACT</TITLE>
+</HEAD><BODY>
+<H1>EXTRACT</H1>
+Section: User Commands  (1)<BR>Updated: Aug 7, 2012<BR><A 
HREF="#index">Index</A>
+<A HREF="../index.html">Return to Main Contents</A><HR>
+
+
+<A NAME="lbAB">&nbsp;</A>
+<H2>NAME</H2>
+
+extract
+- determine meta-information about a file
+<A NAME="lbAC">&nbsp;</A>
+<H2>SYNOPSIS</H2>
+
+<B>extract</B>
+
+[
+<B>-bgihLmnvV</B>
+
+]
+[
+<B>-l</B>
+
+<I>library</I>
+
+]
+[
+<B>-p</B>
+
+<I>type</I>
+
+]
+[
+<B>-x</B>
+
+<I>type</I>
+
+]
+<I>file</I>
+
+...
+<BR>
+
+<A NAME="lbAD">&nbsp;</A>
+<H2>DESCRIPTION</H2>
+
+This manual page documents version 1.0.0 of the
+<B>extract</B>
+
+command.
+<P>
+
+<B>extract</B>
+
+tests each file specified in the argument list in an attempt to infer 
meta-information from it.  Each file is subjected to the meta-data extraction 
libraries from
+<I>libextractor.</I>
+
+<P>
+
+libextractor classifies meta-information (also referred to as keywords) into 
types. A list of all types can be obtained with the
+<B>-L</B>
+
+option.
+<P>
+<A NAME="lbAE">&nbsp;</A>
+<H2>OPTIONS</H2>
+
+<DL COMPACT>
+<DT><B>-b</B>
+
+<DD>
+Display the output in BiBTeX format.
+<DT><B>-g</B>
+
+<DD>
+Use grep-friendly output (all keywords on a single line for each file).  Use 
the verbose option to print the filename first, followed by the keywords.  Use 
the verbose option twice to also display the keyword types.  This option will 
not print keyword types or non-textual metadata.
+<DT><B>-h</B>
+
+<DD>
+Print a brief summary of the options.
+<DT><B>-i</B>
+
+<DD>
+Run plugins in-process (for debugging).  By default, each plugin is run in its 
own process.
+<DT><B>-l</B><I> libraries</I>
+
+<DD>
+Use the specified libraries to extract keywords. The general format of 
libraries is .I [[-]LIBRARYNAME[:[-]LIBRARYNAME]*] where LIBRARYNAME is a 
libextractor compatible library and typically of the form .Ijpeg. The minus 
before the libraryname indicates that this library should be removed from the 
existing list.  To run only a few selected plugins, use -l in combination with 
-n.
+<DT><B>-L</B>
+
+<DD>
+Print a list of all known keyword types.
+<DT><B>-m</B>
+
+<DD>
+Load the file into memory and perform extraction from memory (for debugging).
+<DT><B>-n</B>
+
+<DD>
+Do not use the default set of extractors (typically all standard extractors, 
currently mp3, ogg, jpg, gif, png, tiff, real, html, pdf and mime-types), use 
only the extractors specified with the .B -l option.
+<DT><B>-p  type</B>
+
+<DD>
+Print only the keywords matching the specified type. By default, all keywords 
that are found and not removed as duplicates are printed.
+<DT><B>-v</B>
+
+<DD>
+Print the version number and exit.
+<DT><B>-V</B>
+
+<DD>
+Be verbose.  This option can be specified multiple times to increase verbosity 
further.
+<DT><I>-x  type</I>
+
+<DD>
+Exclude keywords of the specified type from the output. By default, all 
keywords that are found and not removed as duplicates are printed.
+</DL>
+<A NAME="lbAF">&nbsp;</A>
+<H2>SEE ALSO</H2>
+
+<B><A HREF="../man3/libextractor.3.html">libextractor</A></B>(3)
+
+- description of the libextractor library
+<BR>
+
+<A NAME="lbAG">&nbsp;</A>
+<H2>EXAMPLES</H2>
+
+<PRE>
+$ extract test/test.jpg
+comment - (C) 2001 by Christian Grothoff, using gimp 1.2 1
+mimetype - image/jpeg
+
+$ extract -V -x comment test/test.jpg
+Keywords for file test/test.jpg:
+mimetype - image/jpeg
+
+$ extract -p comment test/test.jpg
+comment - (C) 2001 by Christian Grothoff, using gimp 1.2 1
+
+$ extract -nV -l png.so -p comment test/test.jpg test/test.png
+Keywords for file test/test.jpg:
+Keywords for file test/test.png:
+comment - Testing keyword extraction
+
+</PRE><A NAME="lbAH">&nbsp;</A>
+<H2>LEGAL NOTICE</H2>
+
+libextractor and the extract tool are released under the GPL.  libextractor is 
a GNU package.
+<P>
+<A NAME="lbAI">&nbsp;</A>
+<H2>BUGS</H2>
+
+A couple of file-formats (on the order of 10^3) are not recognized...
+<P>
+<A NAME="lbAJ">&nbsp;</A>
+<H2>AUTHORS</H2>
+
+<B>extract</B>
+
+was originally written by Christian Grothoff &lt;<A 
HREF="mailto:address@hidden";>address@hidden</A>&gt; and Vidyut Samanta &lt;<A 
HREF="mailto:address@hidden";>address@hidden</A>&gt;. Use &lt;<A 
HREF="mailto:address@hidden";>address@hidden</A>&gt; to contact the current 
maintainer(s).
+<P>
+<A NAME="lbAK">&nbsp;</A>
+<H2>AVAILABILITY</H2>
+
+You can obtain the original author's latest version from <A 
HREF="http://www.gnu.org/software/libextractor/";>http://www.gnu.org/software/libextractor/</A>
+<P>
+
+<HR>
+<A NAME="index">&nbsp;</A><H2>Index</H2>
+<DL>
+<DT><A HREF="#lbAB">NAME</A><DD>
+<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
+<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
+<DT><A HREF="#lbAE">OPTIONS</A><DD>
+<DT><A HREF="#lbAF">SEE ALSO</A><DD>
+<DT><A HREF="#lbAG">EXAMPLES</A><DD>
+<DT><A HREF="#lbAH">LEGAL NOTICE</A><DD>
+<DT><A HREF="#lbAI">BUGS</A><DD>
+<DT><A HREF="#lbAJ">AUTHORS</A><DD>
+<DT><A HREF="#lbAK">AVAILABILITY</A><DD>
+</DL>
+<HR>
+This document was created by
+<A HREF="/s/libextractor/man/">man2html</A>,
+using the manual pages.<BR>
+Time: 11:09:53 GMT, September 06, 2012
+</BODY>
+</HTML>

Added: Extractor-docs/WWW/man3/libextractor.3.html
===================================================================
--- Extractor-docs/WWW/man3/libextractor.3.html                         (rev 0)
+++ Extractor-docs/WWW/man3/libextractor.3.html 2012-09-06 11:11:42 UTC (rev 
23669)
@@ -0,0 +1,112 @@
+
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<HTML><HEAD><TITLE>Man page of LIBEXTRACTOR</TITLE>
+</HEAD><BODY>
+<H1>LIBEXTRACTOR</H1>
+Section: C Library Functions (3)<BR>Updated: Sept 4, 2012<BR><A 
HREF="#index">Index</A>
+<A HREF="../index.html">Return to Main Contents</A><HR>
+
+<A NAME="lbAB">&nbsp;</A>
+<H2>NAME</H2>
+
+GNU libextractor - meta-information extraction library 1.0.0
+<A NAME="lbAC">&nbsp;</A>
+<H2>SYNOPSIS</H2>
+
+<P>
+<B>#include &lt;<A HREF="file:///usr/include/extractor.h">extractor.h</A>&gt;
+<P>
+const char *EXTRACTOR_metatype_to_string (enum EXTRACTOR_MetaType 
</B><I>type</I><B>);
+<P>
+const char *EXTRACTOR_metatype_to_description (enum EXTRACTOR_MetaType 
</B><I>type</I><B>);
+<P>
+enum EXTRACTOR_MetaTypeEXTRACTOR_metatype_get_max (void);
+<P>
+struct EXTRACTOR_PluginList *EXTRACTOR_plugin_add_defaults (enum 
EXTRACTOR_Options </B><I>flags</I><B>);
+<P>
+struct EXTRACTOR_PluginList *EXTRACTOR_plugin_add (struct EXTRACTOR_PluginList 
*</B><I>prev</I><B>, const char *</B><I>library</I><B>, const char 
*</B><I>options</I><B>, enum EXTRACTOR_Options </B><I>flags</I><B>);
+<P>
+<P>
+struct EXTRACTOR_PluginList *EXTRACTOR_plugin_add_last (struct 
EXTRACTOR_PluginList *</B><I>prev</I><B>, const char *</B><I>library</I><B>, 
const char *</B><I>options</I><B>, enum EXTRACTOR_Options </B><I>flags</I><B>);
+<P>
+struct EXTRACTOR_PluginList *EXTRACTOR_plugin_add_config (struct 
EXTRACTOR_PluginList *</B><I>prev</I><B>, const char *</B><I>config</I><B>, 
enum EXTRACTOR_Options </B><I>flags</I><B>);
+<TT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TT><TT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TT><BR>
+struct EXTRACTOR_PluginList *EXTRACTOR_plugin_remove (struct 
EXTRACTOR_PluginList *</B><I>prev</I><B>, const char *</B><I>library</I><B>);
+<P>
+void EXTRACTOR_plugin_remove_all (struct EXTRACTOR_PluginList 
*</B><I>plugins</I><B>);
+<P>
+void EXTRACTOR_extract (struct EXTRACTOR_PluginList *</B><I>plugins</I><B>, 
const char *</B><I>filename</I><B>, const void *</B><I>data</I><B>, size_t 
</B><I>size</I><B>, EXTRACTOR_MetaDataProcessor </B><I>proc</I><B>, void 
*</B><I>proc_cls</I><B>);
+<P>
+int EXTRACTOR_meta_data_prin t(void *</B><I>handle</I><B>, const char 
*</B><I>plugin_name</I><B>, enum EXTRACTOR_MetaType </B><I>type</I><B>, enum 
EXTRACTOR_MetaFormat </B><I>format</I><B>, const char 
*</B><I>data_mime_type</I><B>, const char *</B><I>data</I><B>, size_t 
</B><I>data_len</I><B>);
+<P>
+EXTRACTOR_VERSION
+<P>
+</B><A NAME="lbAD">&nbsp;</A>
+<H2>DESCRIPTION</H2>
+
+<P>
+
+GNU libextractor is a simple library for keyword extraction.  libextractor 
does not support all formats but supports a simple plugging mechanism such that 
you can quickly add extractors for additional formats, even without recompiling 
libextractor.  libextractor typically ships with dozens of plugins that can be 
used to obtain meta data from common file-types.  If you want to write your own 
plugin for some filetype, all you need to do is write a little library that 
implements a single method with this signature:
+<P>
+<BR>&nbsp;<B>void&nbsp;EXTRACTOR_XXX_extract_method&nbsp;(struct&nbsp;EXTRACTOR_ExtractContext&nbsp;*</B><I>ec</I><B>);</B>
+<P>
+<P>
+
+<I>ec</I> contains function pointers for reading, seeking, getting the overall 
file size and returning meta data.  There is also a field with options for the 
plugin.  New plugins will be automatically located and used once they are 
installed in the respective directory (typically something like 
/usr/lib/libextractor/).  
+<P>
+
+The application <B>extract</B> gives an example how to use libextractor.
+<P>
+
+The basic use of libextractor is to load the plugins (for example with 
<B>EXTRACTOR_plugin_add_defaults</B>), then to extract the keyword list using 
<B>EXTRACTOR_extract</B>, and finally unloading the plugins (with 
<B>EXTRACTOR_plugin_remove_all</B>).
+<P>
+
+Textual meta data obtained from libextractor is supposed to be UTF-8 encoded 
if the text encoding is known.  Plugins are supposed to convert meta-data to 
UTF-8 if necessary.    The <B>EXTRACTOR_meta_data_print</B> function converts 
the UTF-8 keywords to the character set from the current locale before printing 
them.  
+<P>
+
+<A NAME="lbAE">&nbsp;</A>
+<H2>SEE ALSO</H2>
+
+<A HREF="../man1/extract.1.html">extract</A>(1)
+<P>
+<A NAME="lbAF">&nbsp;</A>
+<H2>LEGAL NOTICE</H2>
+
+libextractor is released under the GPL and a GNU package (<A 
HREF="http://www.gnu.org/).">http://www.gnu.org/).</A>
+<P>
+<A NAME="lbAG">&nbsp;</A>
+<H2>BUGS</H2>
+
+A couple of file-formats (on the order of 10^3) are not recognized...
+<P>
+<A NAME="lbAH">&nbsp;</A>
+<H2>AUTHORS</H2>
+
+extract was originally written by Christian Grothoff &lt;<A 
HREF="mailto:address@hidden";>address@hidden</A>&gt; and Vidyut Samanta &lt;<A 
HREF="mailto:address@hidden";>address@hidden</A>&gt;. Use &lt;<A 
HREF="mailto:address@hidden";>address@hidden</A>&gt; to contact the current 
maintainer(s).
+<P>
+<A NAME="lbAI">&nbsp;</A>
+<H2>AVAILABILITY</H2>
+
+You can obtain the original author's latest version from <A 
HREF="http://www.gnu.org/software/libextractor/.";>http://www.gnu.org/software/libextractor/.</A>
+<P>
+
+<HR>
+<A NAME="index">&nbsp;</A><H2>Index</H2>
+<DL>
+<DT><A HREF="#lbAB">NAME</A><DD>
+<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
+<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
+<DT><A HREF="#lbAE">SEE ALSO</A><DD>
+<DT><A HREF="#lbAF">LEGAL NOTICE</A><DD>
+<DT><A HREF="#lbAG">BUGS</A><DD>
+<DT><A HREF="#lbAH">AUTHORS</A><DD>
+<DT><A HREF="#lbAI">AVAILABILITY</A><DD>
+</DL>
+<HR>
+This document was created by
+<A HREF="/s/libextractor/man/">man2html</A>,
+using the manual pages.<BR>
+Time: 11:09:53 GMT, September 06, 2012
+</BODY>
+</HTML>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]