* [PATCH] iconvconfig.8: New page for iconvconfig(8) @ 2014-06-10 8:39 Marko Myllynen [not found] ` <5396C42D.9070806-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Marko Myllynen @ 2014-06-10 8:39 UTC (permalink / raw) To: linux-man Hi, while writing the iconv(1) page I noticed there was no page for iconvconfig(8) so I wrote one, please see below. >From 566561b63db0fe709570d3c5aca6262065d64f71 Mon Sep 17 00:00:00 2001 From: Marko Myllynen <myllynen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> Date: Mon, 9 Jun 2014 17:10:12 +0300 Subject: [PATCH] iconvconfig.8: New page for iconvconfig(8) --- man8/iconvconfig.8 | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 86 insertions(+), 0 deletions(-) create mode 100644 man8/iconvconfig.8 diff --git a/man8/iconvconfig.8 b/man8/iconvconfig.8 new file mode 100644 index 0000000..db7d926 --- /dev/null +++ b/man8/iconvconfig.8 @@ -0,0 +1,86 @@ +'\" t -*- coding: UTF-8 -*- +.\" +.\" Copyright (C) 2014 Marko Myllynen <myllynen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> +.\" +.\" %%%LICENSE_START(GPLv2+_DOC_FULL) +.\" This is free documentation; 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 2 of +.\" the License, or (at your option) any later version. +.\" +.\" The GNU General Public License's references to "object code" +.\" and "executables" are to be interpreted as the output of any +.\" document formatting or typesetting system, including +.\" intermediate and printed output. +.\" +.\" This manual 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 manual; if not, see +.\" <http://www.gnu.org/licenses/>. +.\" %%%LICENSE_END +.\" +.TH ICONVCONFIG 8 2014-06-09 "GNU" "Linux System Administration" +.SH NAME +iconvconfig \- create iconv module configuration cache +.SH SYNOPSIS +.B iconvconfig +.RI [ options ] +.RI [ directory ]... +.SH DESCRIPTION +The +.B iconvconfig +program reads iconv module configuration files and writes +a fastloading iconv module configuration cache file. +Only the system default cache file is used by programs like +.BR iconv (1), +caching is disabled when additional gconv module directories +are specified with the environment variable +.BR GCONV_PATH . +.SH OPTIONS +.TP +.B "\-\-nostdlib" +Do not search the system default gconv directory, +only those provided on the command line. +.TP +.BI \-o " outputfile" ", \-\-output=" outputfile +Use +.I outputfile +for output instead of the system default cache location. +.TP +.BI \-\-prefix= pathname +Set the prefix to be prepended to the system pathnames. +By default, the prefix is empty. +Setting the prefix to +.IR foo , +the gconv module configuration would be read from +.IR foo/usr/lib/gconv/gconv-modules +and the cache would be written to +.IR foo/usr/lib/gconv/gconv-modules.cache . +.TP +.B "\-\-help" +Print a usage summary and exit. +.TP +.B "\-\-usage" +Print a short usage summary and exit. +.TP +.B "\-V, \-\-version" +Print the version number, license, and disclaimer of warranty for +.BR iconv . +.SH EXIT STATUS +Zero on success, non-zero on errors. +.SH FILES +.TP +.I /usr/lib/gconv +Usual default gconv module path. +.TP +.I /usr/lib/gconv/gconv-modules +Usual default gconv module configuration. +.TP +.I /usr/lib/gconv/gconv-modules.cache +Usual default gconv module configuration cache. +.SH "SEE ALSO" +.BR iconv (1) -- 1.7.1 Thanks, -- Marko Myllynen -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 5+ messages in thread
[parent not found: <5396C42D.9070806-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH] iconvconfig.8: New page for iconvconfig(8) [not found] ` <5396C42D.9070806-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> @ 2014-06-10 19:43 ` Michael Kerrisk (man-pages) [not found] ` <53975FC5.9060305-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Michael Kerrisk (man-pages) @ 2014-06-10 19:43 UTC (permalink / raw) To: myllynen-H+wXaHxf7aLQT0dZR+AlfA, linux-man Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w Hi Marko, On 06/10/2014 10:39 AM, Marko Myllynen wrote: > Hi, > > while writing the iconv(1) page I noticed there was no page for > iconvconfig(8) so I wrote one, please see below. Thanks. Again, some comments below. Could you address and send a v2, please. >>From 566561b63db0fe709570d3c5aca6262065d64f71 Mon Sep 17 00:00:00 2001 > From: Marko Myllynen <myllynen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > Date: Mon, 9 Jun 2014 17:10:12 +0300 > Subject: [PATCH] iconvconfig.8: New page for iconvconfig(8) > > --- > man8/iconvconfig.8 | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 files changed, 86 insertions(+), 0 deletions(-) > create mode 100644 man8/iconvconfig.8 > > diff --git a/man8/iconvconfig.8 b/man8/iconvconfig.8 > new file mode 100644 > index 0000000..db7d926 > --- /dev/null > +++ b/man8/iconvconfig.8 > @@ -0,0 +1,86 @@ > +'\" t -*- coding: UTF-8 -*- > +.\" > +.\" Copyright (C) 2014 Marko Myllynen <myllynen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > +.\" > +.\" %%%LICENSE_START(GPLv2+_DOC_FULL) > +.\" This is free documentation; 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 2 of > +.\" the License, or (at your option) any later version. > +.\" > +.\" The GNU General Public License's references to "object code" > +.\" and "executables" are to be interpreted as the output of any > +.\" document formatting or typesetting system, including > +.\" intermediate and printed output. > +.\" > +.\" This manual 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 manual; if not, see > +.\" <http://www.gnu.org/licenses/>. > +.\" %%%LICENSE_END > +.\" > +.TH ICONVCONFIG 8 2014-06-09 "GNU" "Linux System Administration" > +.SH NAME > +iconvconfig \- create iconv module configuration cache > +.SH SYNOPSIS > +.B iconvconfig > +.RI [ options ] > +.RI [ directory ]... > +.SH DESCRIPTION > +The > +.B iconvconfig > +program reads iconv module configuration files and writes > +a fastloading iconv module configuration cache file. It's not completely clear from the preceding sentence what the purpose of iconvconfig is. I think the reader needs some help to: * know what "iconv module configuration" * what uses the cache file > +Only the system default cache file is used by programs like > +.BR iconv (1), > +caching is disabled when additional gconv module directories > +are specified with the environment variable > +.BR GCONV_PATH . The preceding sentence seems to cover two unrelated ideas. Could you split and expand please. Also, the significance of "Only the system default cache file is used"? It's not clear... > +.SH OPTIONS > +.TP > +.B "\-\-nostdlib" > +Do not search the system default gconv directory, > +only those provided on the command line. s/those/the directories/ ? > +.TP > +.BI \-o " outputfile" ", \-\-output=" outputfile > +Use > +.I outputfile > +for output instead of the system default cache location. > +.TP > +.BI \-\-prefix= pathname > +Set the prefix to be prepended to the system pathnames. "system pathnames" needs some explanation, I think. What are they? This might be as simple as adding "See FILES, below." Cheers, Michael > +By default, the prefix is empty. > +Setting the prefix to > +.IR foo , > +the gconv module configuration would be read from > +.IR foo/usr/lib/gconv/gconv-modules > +and the cache would be written to > +.IR foo/usr/lib/gconv/gconv-modules.cache . > +.TP > +.B "\-\-help" > +Print a usage summary and exit. > +.TP > +.B "\-\-usage" > +Print a short usage summary and exit. > +.TP > +.B "\-V, \-\-version" > +Print the version number, license, and disclaimer of warranty for > +.BR iconv . > +.SH EXIT STATUS > +Zero on success, non-zero on errors. > +.SH FILES > +.TP > +.I /usr/lib/gconv > +Usual default gconv module path. > +.TP > +.I /usr/lib/gconv/gconv-modules > +Usual default gconv module configuration. > +.TP > +.I /usr/lib/gconv/gconv-modules.cache > +Usual default gconv module configuration cache. > +.SH "SEE ALSO" > +.BR iconv (1) > -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/ -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <53975FC5.9060305-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] iconvconfig.8: New page for iconvconfig(8) [not found] ` <53975FC5.9060305-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2014-06-11 8:09 ` Marko Myllynen [not found] ` <53980ECB.7000307-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Marko Myllynen @ 2014-06-11 8:09 UTC (permalink / raw) To: Michael Kerrisk (man-pages), linux-man Hi, On 2014-06-10 22:43, Michael Kerrisk (man-pages) wrote: > On 06/10/2014 10:39 AM, Marko Myllynen wrote: >> >> while writing the iconv(1) page I noticed there was no page for >> iconvconfig(8) so I wrote one, please see below. > > Again, some comments below. Could you address and send a v2, please. ok, please see below, hopefully the explanation are now clearer without going into too low level details. >From 01f14067fc7769b750c431c0c0b0f60a43e001d6 Mon Sep 17 00:00:00 2001 From: Marko Myllynen <myllynen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> Date: Wed, 11 Jun 2014 08:40:05 +0300 Subject: [PATCH] iconvconfig.8: New page for iconvconfig(8) --- man8/iconvconfig.8 | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 101 insertions(+), 0 deletions(-) create mode 100644 man8/iconvconfig.8 diff --git a/man8/iconvconfig.8 b/man8/iconvconfig.8 new file mode 100644 index 0000000..0c3afe8 --- /dev/null +++ b/man8/iconvconfig.8 @@ -0,0 +1,101 @@ +'\" t -*- coding: UTF-8 -*- +.\" +.\" Copyright (C) 2014 Marko Myllynen <myllynen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> +.\" +.\" %%%LICENSE_START(GPLv2+_DOC_FULL) +.\" This is free documentation; 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 2 of +.\" the License, or (at your option) any later version. +.\" +.\" The GNU General Public License's references to "object code" +.\" and "executables" are to be interpreted as the output of any +.\" document formatting or typesetting system, including +.\" intermediate and printed output. +.\" +.\" This manual 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 manual; if not, see +.\" <http://www.gnu.org/licenses/>. +.\" %%%LICENSE_END +.\" +.TH ICONVCONFIG 8 2014-06-09 "GNU" "Linux System Administration" +.SH NAME +iconvconfig \- create iconv module configuration cache +.SH SYNOPSIS +.B iconvconfig +.RI [ options ] +.RI [ directory ]... +.SH DESCRIPTION +The +.BR iconv(3) +function internally uses +.I gconv +modules to convert to and from a character set. +A configuration file is used to determine the needed modules +for a conversion. +Loading and parsing such a configuration file would slow down +.BR iconv(3) +using programs so a caching mechanism has been introduced. + +The +.B iconvconfig +program reads iconv module configuration files and writes +a fastloading gconv module configuration cache file. +In addition to the system provided gconv modules, user can specify +custom gconv module directories with the environment variable +.BR GCONV_PATH . +However, iconv module configuration caching is only used when +the environment variable +.BR GCONV_PATH +is not set. +.SH OPTIONS +.TP +.B "\-\-nostdlib" +Do not search the system default gconv directory, +only the directories provided on the command line. +.TP +.BI \-o " outputfile" ", \-\-output=" outputfile +Use +.I outputfile +for output instead of the system default cache location. +.TP +.BI \-\-prefix= pathname +Set the prefix to be prepended to the system pathnames. +See FILES, below. +By default, the prefix is empty. +Setting the prefix to +.IR foo , +the gconv module configuration would be read from +.IR foo/usr/lib/gconv/gconv-modules +and the cache would be written to +.IR foo/usr/lib/gconv/gconv-modules.cache . +.TP +.B "\-\-help" +Print a usage summary and exit. +.TP +.B "\-\-usage" +Print a short usage summary and exit. +.TP +.B "\-V, \-\-version" +Print the version number, license, and disclaimer of warranty for +.BR iconv . +.SH EXIT STATUS +Zero on success, non-zero on errors. +.SH FILES +.TP +.I /usr/lib/gconv +Usual default gconv module path. +.TP +.I /usr/lib/gconv/gconv-modules +Usual default gconv module configuration. +.TP +.I /usr/lib/gconv/gconv-modules.cache +Usual default gconv module configuration cache. +.SH "SEE ALSO" +.BR iconv (1), +.BR iconv (3) -- 1.7.1 Thanks, -- Marko Myllynen -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 5+ messages in thread
[parent not found: <53980ECB.7000307-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH] iconvconfig.8: New page for iconvconfig(8) [not found] ` <53980ECB.7000307-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> @ 2014-06-11 10:29 ` Michael Kerrisk (man-pages) [not found] ` <53982F78.5090504-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Michael Kerrisk (man-pages) @ 2014-06-11 10:29 UTC (permalink / raw) To: myllynen-H+wXaHxf7aLQT0dZR+AlfA, linux-man Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w Hi Marko, On 06/11/2014 10:09 AM, Marko Myllynen wrote: > Hi, > > On 2014-06-10 22:43, Michael Kerrisk (man-pages) wrote: >> On 06/10/2014 10:39 AM, Marko Myllynen wrote: >>> >>> while writing the iconv(1) page I noticed there was no page for >>> iconvconfig(8) so I wrote one, please see below. >> >> Again, some comments below. Could you address and send a v2, please. > > ok, please see below, hopefully the explanation are now clearer > without going into too low level details. > >>From 01f14067fc7769b750c431c0c0b0f60a43e001d6 Mon Sep 17 00:00:00 2001 > From: Marko Myllynen <myllynen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > Date: Wed, 11 Jun 2014 08:40:05 +0300 > Subject: [PATCH] iconvconfig.8: New page for iconvconfig(8) > > --- > man8/iconvconfig.8 | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 files changed, 101 insertions(+), 0 deletions(-) > create mode 100644 man8/iconvconfig.8 > > diff --git a/man8/iconvconfig.8 b/man8/iconvconfig.8 > new file mode 100644 > index 0000000..0c3afe8 > --- /dev/null > +++ b/man8/iconvconfig.8 > @@ -0,0 +1,101 @@ > +'\" t -*- coding: UTF-8 -*- > +.\" > +.\" Copyright (C) 2014 Marko Myllynen <myllynen-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > +.\" > +.\" %%%LICENSE_START(GPLv2+_DOC_FULL) > +.\" This is free documentation; 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 2 of > +.\" the License, or (at your option) any later version. > +.\" > +.\" The GNU General Public License's references to "object code" > +.\" and "executables" are to be interpreted as the output of any > +.\" document formatting or typesetting system, including > +.\" intermediate and printed output. > +.\" > +.\" This manual 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 manual; if not, see > +.\" <http://www.gnu.org/licenses/>. > +.\" %%%LICENSE_END > +.\" > +.TH ICONVCONFIG 8 2014-06-09 "GNU" "Linux System Administration" > +.SH NAME > +iconvconfig \- create iconv module configuration cache > +.SH SYNOPSIS > +.B iconvconfig > +.RI [ options ] > +.RI [ directory ]... > +.SH DESCRIPTION > +The > +.BR iconv(3) > +function internally uses > +.I gconv > +modules to convert to and from a character set. > +A configuration file is used to determine the needed modules > +for a conversion. > +Loading and parsing such a configuration file would slow down > +.BR iconv(3) > +using programs so a caching mechanism has been introduced. > + > +The > +.B iconvconfig > +program reads iconv module configuration files and writes > +a fastloading gconv module configuration cache file. I see that since you wrote the last version, you did a s/iconv/gconv/ in the above line. That typo really confused me before; now things make more sense. Patch applied. Thanks for the new page! Cheers, Michael -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/ -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <53982F78.5090504-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] iconvconfig.8: New page for iconvconfig(8) [not found] ` <53982F78.5090504-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2014-06-11 13:27 ` Marko Myllynen 0 siblings, 0 replies; 5+ messages in thread From: Marko Myllynen @ 2014-06-11 13:27 UTC (permalink / raw) To: Michael Kerrisk (man-pages), linux-man Hi, On 2014-06-11 13:29, Michael Kerrisk (man-pages) wrote: > On 06/11/2014 10:09 AM, Marko Myllynen wrote: >> On 2014-06-10 22:43, Michael Kerrisk (man-pages) wrote: >>> On 06/10/2014 10:39 AM, Marko Myllynen wrote: >>>> >>>> while writing the iconv(1) page I noticed there was no page for >>>> iconvconfig(8) so I wrote one, please see below. >>> >>> Again, some comments below. Could you address and send a v2, please. >> >> ok, please see below, hopefully the explanation are now clearer >> without going into too low level details. >> +a fastloading gconv module configuration cache file. > > I see that since you wrote the last version, you did a s/iconv/gconv/ > in the above line. That typo really confused me before; now things make > more sense. I'm not sure does it really classify as a typo, it's more like that gconv = GNU (C library) iconv implementation, they can often be used interchangeably. It's indeed a bit confusing but sticking with one or the other is a bit hard given that the program name is iconv and the environment variable is GCONV_PATH. Thanks, -- Marko Myllynen -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-06-11 13:27 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-06-10 8:39 [PATCH] iconvconfig.8: New page for iconvconfig(8) Marko Myllynen [not found] ` <5396C42D.9070806-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> 2014-06-10 19:43 ` Michael Kerrisk (man-pages) [not found] ` <53975FC5.9060305-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-06-11 8:09 ` Marko Myllynen [not found] ` <53980ECB.7000307-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> 2014-06-11 10:29 ` Michael Kerrisk (man-pages) [not found] ` <53982F78.5090504-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2014-06-11 13:27 ` Marko Myllynen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).