From 94885bf32b9393247186c0e82271f2bd5a5f6c91 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Wed, 6 Jan 2010 18:17:26 -0800 Subject: [PATCH] Fix Trond's email address. --- AUTHORS | 2 +- docs/Makefile.am | 47 ++++++------------------ docs/libmemcached.pod | 2 +- docs/libmemcached_examples.pod | 2 +- docs/libmemcachedutil.pod | 4 +- docs/make_index.pl | 30 +++++++++++++++ docs/memcached_analyze.pod | 2 +- docs/memcached_auto.pod | 2 +- docs/memcached_behavior.pod | 2 +- docs/memcached_callback.pod | 2 +- docs/memcached_create.pod | 2 +- docs/memcached_delete.pod | 2 +- docs/memcached_dump.pod | 2 +- docs/memcached_flush.pod | 2 +- docs/memcached_flush_buffers.pod | 4 +- docs/memcached_generate_hash_value.pod | 2 +- docs/memcached_get.pod | 2 +- docs/memcached_memory_allocators.pod | 4 +- docs/memcached_pool.pod | 4 +- docs/memcached_quit.pod | 2 +- docs/memcached_result_st.pod | 2 +- docs/memcached_server_st.pod | 2 +- docs/memcached_servers.pod | 2 +- docs/memcached_set.pod | 2 +- docs/memcached_stats.pod | 2 +- docs/memcached_strerror.pod | 2 +- docs/memcached_user_data.pod | 4 +- docs/memcached_verbosity.pod | 2 +- docs/memcached_version.pod | 2 +- docs/memcapable.pod | 4 +- docs/memcat.pod | 2 +- docs/memcp.pod | 2 +- docs/memdump.pod | 2 +- docs/memerror.pod | 2 +- docs/memflush.pod | 2 +- docs/memrm.pod | 2 +- docs/memslap.pod | 2 - docs/memstat.pod | 2 +- libmemcached/memcached/protocol_binary.h | 2 +- 39 files changed, 83 insertions(+), 80 deletions(-) create mode 100644 docs/make_index.pl diff --git a/AUTHORS b/AUTHORS index 6e740f96..1bdae2fb 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,7 +3,7 @@ Mark Atwood, -- Tools, Docs 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 diff --git a/docs/Makefile.am b/docs/Makefile.am index e9761c87..93452aca 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -11,6 +11,8 @@ CLEANFILES= *.1 *.3 *.html *.pop *.tmp BUILT_SOURCES= +EXTRA_DIST= make_index.pl + AUTO_PAGES= \ memcached_increment.pop \ memcached_increment_with_initial.pop \ @@ -282,7 +284,7 @@ HTML_FILES= \ memslap.html \ memstat.html -EXTRA_DIST = \ +POD_FILES= \ hashkit_create.pod \ hashkit_functions.pod \ hashkit_value.pod \ @@ -320,6 +322,7 @@ EXTRA_DIST = \ memrm.pod \ memslap.pod \ memstat.pod +EXTRA_DIST+= $(POD_FILES) man_MANS = \ libmemcached.3 \ @@ -483,43 +486,15 @@ ${HASHKIT_ST_PAGES}: @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 diff --git a/docs/libmemcached.pod b/docs/libmemcached.pod index 4c85b5b4..46fc2da0 100644 --- a/docs/libmemcached.pod +++ b/docs/libmemcached.pod @@ -113,7 +113,7 @@ structure. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/libmemcached_examples.pod b/docs/libmemcached_examples.pod index 31328b9a..1c937fe7 100644 --- a/docs/libmemcached_examples.pod +++ b/docs/libmemcached_examples.pod @@ -101,7 +101,7 @@ C is provided for usage. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/libmemcachedutil.pod b/docs/libmemcachedutil.pod index be410ecd..fd2e4f62 100644 --- a/docs/libmemcachedutil.pod +++ b/docs/libmemcachedutil.pod @@ -27,11 +27,11 @@ implementation. see memcached_pool_create(3). =head1 HOME To find out more information please check: -L +L =head1 AUTHOR -Trond Norbye, Etrond.norbye@sun.comE +Trond Norbye, Etrond.norbye@gmail.comE =head1 SEE ALSO diff --git a/docs/make_index.pl b/docs/make_index.pl new file mode 100644 index 00000000..cb0d1905 --- /dev/null +++ b/docs/make_index.pl @@ -0,0 +1,30 @@ +#!/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 "" . $cgi->a({ href => $url }, $name) . $cgi->br() . "\n"; + } + print $cgi->end_html; +} + +main(); diff --git a/docs/memcached_analyze.pod b/docs/memcached_analyze.pod index c4894726..9c0401f8 100644 --- a/docs/memcached_analyze.pod +++ b/docs/memcached_analyze.pod @@ -40,7 +40,7 @@ memory allocated for it. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_auto.pod b/docs/memcached_auto.pod index 305451b6..bd6da192 100644 --- a/docs/memcached_auto.pod +++ b/docs/memcached_auto.pod @@ -124,7 +124,7 @@ Use memcached_strerror() to translate this value to a printable string. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_behavior.pod b/docs/memcached_behavior.pod index c664e99f..f59150f1 100644 --- a/docs/memcached_behavior.pod +++ b/docs/memcached_behavior.pod @@ -234,7 +234,7 @@ to data value, to taking a uin64_t. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_callback.pod b/docs/memcached_callback.pod index 5d7fed2d..9175c29d 100644 --- a/docs/memcached_callback.pod +++ b/docs/memcached_callback.pod @@ -109,7 +109,7 @@ otherwise MEMCACHED_FAILURE on error. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_create.pod b/docs/memcached_create.pod index 8c6a1a22..421ba131 100644 --- a/docs/memcached_create.pod +++ b/docs/memcached_create.pod @@ -48,7 +48,7 @@ memcached_clone() returns a pointer to the memcached_st that was created =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_delete.pod b/docs/memcached_delete.pod index 07ec865c..89bff56a 100644 --- a/docs/memcached_delete.pod +++ b/docs/memcached_delete.pod @@ -44,7 +44,7 @@ means that the message was queued for delivery. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_dump.pod b/docs/memcached_dump.pod index cf596335..2d537016 100644 --- a/docs/memcached_dump.pod +++ b/docs/memcached_dump.pod @@ -39,7 +39,7 @@ Use memcached_strerror() to translate this value to a printable string. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_flush.pod b/docs/memcached_flush.pod index 9a853ee4..0ca95472 100644 --- a/docs/memcached_flush.pod +++ b/docs/memcached_flush.pod @@ -32,7 +32,7 @@ Use memcached_strerror() to translate this value to a printable string. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_flush_buffers.pod b/docs/memcached_flush_buffers.pod index 7dd98032..11c06dc0 100644 --- a/docs/memcached_flush_buffers.pod +++ b/docs/memcached_flush_buffers.pod @@ -28,11 +28,11 @@ Use memcached_strerror() to translate this value to a printable string. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR -Trond Norbye, Etrond.norbye@sun.comE +Trond Norbye, Etrond.norbye@gmail.comE =head1 SEE ALSO diff --git a/docs/memcached_generate_hash_value.pod b/docs/memcached_generate_hash_value.pod index ebd90349..a2af1fc4 100644 --- a/docs/memcached_generate_hash_value.pod +++ b/docs/memcached_generate_hash_value.pod @@ -46,7 +46,7 @@ returned. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_get.pod b/docs/memcached_get.pod index 9423635e..ced98f1c 100644 --- a/docs/memcached_get.pod +++ b/docs/memcached_get.pod @@ -157,7 +157,7 @@ look at the value of error to determine what the actual error was. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_memory_allocators.pod b/docs/memcached_memory_allocators.pod index e0cd8466..cafa70c2 100644 --- a/docs/memcached_memory_allocators.pod +++ b/docs/memcached_memory_allocators.pod @@ -67,11 +67,11 @@ and MEMCACHED_FAILURE if you don't pass a complete set of function pointers. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR -Trond Norbye, Etrond.norbye@sun.comE +Trond Norbye, Etrond.norbye@gmail.comE =head1 SEE ALSO diff --git a/docs/memcached_pool.pod b/docs/memcached_pool.pod index d5f90bbf..b974be67 100644 --- a/docs/memcached_pool.pod +++ b/docs/memcached_pool.pod @@ -86,11 +86,11 @@ returns MEMCACHED_SUCCESS upon success. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR -Trond Norbye, Etrond.norbye@sun.comE +Trond Norbye, Etrond.norbye@gmail.comE =head1 SEE ALSO diff --git a/docs/memcached_quit.pod b/docs/memcached_quit.pod index 0500b2ab..270dd467 100644 --- a/docs/memcached_quit.pod +++ b/docs/memcached_quit.pod @@ -33,7 +33,7 @@ Use memcached_strerror() to translate this value to a printable string. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_result_st.pod b/docs/memcached_result_st.pod index 489b3f0e..ab69f266 100644 --- a/docs/memcached_result_st.pod +++ b/docs/memcached_result_st.pod @@ -101,7 +101,7 @@ do this will result in leaked memory. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_server_st.pod b/docs/memcached_server_st.pod index 912f0296..32d4e1e9 100644 --- a/docs/memcached_server_st.pod +++ b/docs/memcached_server_st.pod @@ -61,7 +61,7 @@ Varies, see particular functions. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_servers.pod b/docs/memcached_servers.pod index f4f789d4..3cd5da9e 100644 --- a/docs/memcached_servers.pod +++ b/docs/memcached_servers.pod @@ -97,7 +97,7 @@ Varies, see particular functions. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_set.pod b/docs/memcached_set.pod index 7a9ad04b..13330dcf 100644 --- a/docs/memcached_set.pod +++ b/docs/memcached_set.pod @@ -173,7 +173,7 @@ legitmate error in the case of a collision. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_stats.pod b/docs/memcached_stats.pod index a0741d3b..fe093d10 100644 --- a/docs/memcached_stats.pod +++ b/docs/memcached_stats.pod @@ -70,7 +70,7 @@ memory allocated for it. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_strerror.pod b/docs/memcached_strerror.pod index 64ef5957..07801d8c 100644 --- a/docs/memcached_strerror.pod +++ b/docs/memcached_strerror.pod @@ -33,7 +33,7 @@ memcached_strerror() returns a string describing a C value. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_user_data.pod b/docs/memcached_user_data.pod index 597335ac..fc339dfc 100644 --- a/docs/memcached_user_data.pod +++ b/docs/memcached_user_data.pod @@ -36,11 +36,11 @@ data. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR -Trond Norbye, Etrond.norbye@sun.comE +Trond Norbye, Etrond.norbye@gmail.comE =head1 SEE ALSO diff --git a/docs/memcached_verbosity.pod b/docs/memcached_verbosity.pod index 475b66f2..6cdac914 100644 --- a/docs/memcached_verbosity.pod +++ b/docs/memcached_verbosity.pod @@ -28,7 +28,7 @@ Use memcached_strerror() to translate this value to a printable string. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcached_version.pod b/docs/memcached_version.pod index 3fbb8bf3..26e54e0a 100644 --- a/docs/memcached_version.pod +++ b/docs/memcached_version.pod @@ -42,7 +42,7 @@ a printable string. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcapable.pod b/docs/memcapable.pod index 7c01b51f..bd4d48f8 100644 --- a/docs/memcapable.pod +++ b/docs/memcapable.pod @@ -47,11 +47,11 @@ The current version of memcapable will only verify the binary protocol. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR -Trond Norbye, Etrond.norbye@sun.comE +Trond Norbye, Etrond.norbye@gmail.comE =head1 SEE ALSO diff --git a/docs/memcat.pod b/docs/memcat.pod index 04d8a304..c5ef808b 100644 --- a/docs/memcat.pod +++ b/docs/memcat.pod @@ -21,7 +21,7 @@ For a full list of operations run the tool with the B<--help> option. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memcp.pod b/docs/memcp.pod index 319e2f15..9be7cdda 100644 --- a/docs/memcp.pod +++ b/docs/memcp.pod @@ -24,7 +24,7 @@ For a full list of operations run the tool with the B<--help> option. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memdump.pod b/docs/memdump.pod index 97fe435d..5a26be57 100644 --- a/docs/memdump.pod +++ b/docs/memdump.pod @@ -17,7 +17,7 @@ For a full list of operations run the tool with the B<--help> option. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memerror.pod b/docs/memerror.pod index 9dc2e0ce..40278771 100644 --- a/docs/memerror.pod +++ b/docs/memerror.pod @@ -16,7 +16,7 @@ For a full list of operations run the tool with the B<--help> option. =head1 HOME To find out more infoerroration please check: -L +L =head1 AUTHOR diff --git a/docs/memflush.pod b/docs/memflush.pod index 031e07d0..f26e10c3 100644 --- a/docs/memflush.pod +++ b/docs/memflush.pod @@ -19,7 +19,7 @@ For a full list of operations run the tool with the B<--help> option. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memrm.pod b/docs/memrm.pod index d7ba38f8..9554f0a0 100644 --- a/docs/memrm.pod +++ b/docs/memrm.pod @@ -18,7 +18,7 @@ For a full list of operations run the tool with the B<--help> option. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/docs/memslap.pod b/docs/memslap.pod index bd6b4693..f1b73071 100644 --- a/docs/memslap.pod +++ b/docs/memslap.pod @@ -984,8 +984,6 @@ memslap -s 127.0.0.1:11211,127.0.0.1:11212 -F config -t 2m -p 2 =head1 HOME To find out more information please check: -L - L =head1 AUTHORS diff --git a/docs/memstat.pod b/docs/memstat.pod index 83aa6abe..9341e7c8 100644 --- a/docs/memstat.pod +++ b/docs/memstat.pod @@ -19,7 +19,7 @@ For a full list of operations run the tool with the B<--help> option. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR diff --git a/libmemcached/memcached/protocol_binary.h b/libmemcached/memcached/protocol_binary.h index b2809406..e5226b5b 100644 --- a/libmemcached/memcached/protocol_binary.h +++ b/libmemcached/memcached/protocol_binary.h @@ -29,7 +29,7 @@ * * Copy: See Copyright for the status of this software. * - * Author: Trond Norbye + * Author: Trond Norbye */ #ifndef PROTOCOL_BINARY_H -- 2.30.2