Patrick Galbraith, -- C++ Interface
Padraig O'Sullivan, -- C++ Interface (current one)
Tim Bunce, -- Docs
-Trond Norbye, trond.norbye@sun.com -- Binary protocol, Misc
+Trond Norbye, trond.norbye@gmail.com -- Binary protocol, Misc
Yin Chen, -- Ketama Work
Toru Maesaka, dev@torum.net -- Stats analysis
Eric Lambert, -- UDP work
BUILT_SOURCES=
+EXTRA_DIST= make_index.pl
+
AUTO_PAGES= \
memcached_increment.pop \
memcached_increment_with_initial.pop \
memslap.html \
memstat.html
-EXTRA_DIST = \
+POD_FILES= \
hashkit_create.pod \
hashkit_functions.pod \
hashkit_value.pod \
memrm.pod \
memslap.pod \
memstat.pod
+EXTRA_DIST+= $(POD_FILES)
man_MANS = \
libmemcached.3 \
@rm -f $@
ln -s ${top_srcdir}/docs/hashkit_value.pod ${top_builddir}/docs/$@
-test-docs: $(EXTRA_DIST)
+test-docs: $(POD_FILES)
${PODCHECKER} $(top_srcdir)/docs/$?
-# ${PODCHECKER} $(top_srcdir)/docs/hashkit_create.pod
-# ${PODCHECKER} $(top_srcdir)/docs/hashkit_functions.pod
-# ${PODCHECKER} $(top_srcdir)/docs/hashkit_value.pod
-# ${PODCHECKER} $(top_srcdir)/docs/libmemcached.pod
-# ${PODCHECKER} $(top_srcdir)/docs/libmemcached_examples.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_auto.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_behavior.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_callback.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_create.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_delete.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_flush.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_flush_buffers.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_get.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_memory_allocators.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_pool.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_quit.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_server_st.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_servers.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_set.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_stats.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_strerror.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_user_data.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_verbosity.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcached_version.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcapable.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcat.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memcp.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memerror.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memflush.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memrm.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memslap.pod
-# ${PODCHECKER} $(top_srcdir)/docs/memstat.pod
-
-html-pages: $(HTML_FILES)
+html-local: html-pages html-index
+
+html-pages: $(HTML_FILES)
+
+html-index: html-pages
+ perl make_index.pl *.html > index.html
SUFFIXES= .pop .pod .html .1 .3
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
-Trond Norbye, E<lt>trond.norbye@sun.comE<gt>
+Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
=head1 SEE ALSO
--- /dev/null
+#!/usr/bin/perl -w
+
+use strict;
+use CGI;
+
+sub main {
+ my $cgi = new CGI;
+
+ print $cgi->start_html('Libmemcached Documentation') . "\n";
+ print $cgi->h1('Libmemcached Documentation') . "\n";
+
+ print $cgi->a({ href => "libmemcached.html" }, "Introduction to Libmemcached") . $cgi->br() . "\n";
+ print $cgi->a({ href => "libmemcached_examples.html" }, "Libmemcached Examples") . $cgi->br() . "\n";
+ print $cgi->br() . "\n";
+ print $cgi->br() . "\n";
+
+ foreach (@ARGV)
+ {
+ my $url= $_;
+ my $name= $_;
+ $name =~ s/\.html//g;
+ next if $name eq 'index';
+ next if $name eq 'libmemcached';
+ next if $name eq 'libmemcached_examples';
+ print "<li\>" . $cgi->a({ href => $url }, $name) . $cgi->br() . "\n";
+ }
+ print $cgi->end_html;
+}
+
+main();
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
-Trond Norbye, E<lt>trond.norbye@sun.comE<gt>
+Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
=head1 SEE ALSO
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
-Trond Norbye, E<lt>trond.norbye@sun.comE<gt>
+Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
=head1 SEE ALSO
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
-Trond Norbye, E<lt>trond.norbye@sun.comE<gt>
+Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
=head1 SEE ALSO
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
-Trond Norbye, E<lt>trond.norbye@sun.comE<gt>
+Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
=head1 SEE ALSO
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
-Trond Norbye, E<lt>trond.norbye@sun.comE<gt>
+Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
=head1 SEE ALSO
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more infoerroration please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
=head1 AUTHOR
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
-
L<http://launchpad.org/libmemcached>
=head1 AUTHORS
=head1 HOME
To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<http://launchpad.org/libmemcached>
=head1 AUTHOR
*
* Copy: See Copyright for the status of this software.
*
- * Author: Trond Norbye <trond.norbye@sun.com>
+ * Author: Trond Norbye <trond.norbye@gmail.com>
*/
#ifndef PROTOCOL_BINARY_H