<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-3926</id>
	<title>Nabble - Gimp-Print - Top Quality Printer Drivers</title>
	<updated>2008-12-05T07:49:35Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Gimp-Print---Top-Quality-Printer-Drivers-f3926.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gimp-Print---Top-Quality-Printer-Drivers-f3926.html" />
	<subtitle type="html">A very high quality package of printer drivers for Ghostscript and CUPS.  This project also maintains the Print plug-in for the Gimp from the same code base. Gimp-Print - Top Quality Printer Drivers home is &lt;a href=&quot;http://sourceforge.net/projects/gimp-print/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-20856816</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-05T07:49:35Z</published>
	<updated>2008-12-05T07:49:35Z</updated>
	<author>
		<name>Till Kamppeter-3</name>
	</author>
	<content type="html">For me the patch works. Thanks.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Till
&lt;br&gt;&lt;br&gt;Robert Krawitz wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;From: Tim Waugh &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20856816&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;twaugh@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Date: Fri, 05 Dec 2008 13:16:23 +0000
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Is there a patch available to test? &amp;nbsp;I haven't been able to find the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;source code repository: the project page points to sourceforge, which
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;gives an error with 'CVS Browse'.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Try this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Index: genppd.c
&lt;br&gt;&amp;gt; ===================================================================
&lt;br&gt;&amp;gt; RCS file: /cvsroot/gimp-print/print/src/cups/genppd.c,v
&lt;br&gt;&amp;gt; retrieving revision 1.170
&lt;br&gt;&amp;gt; retrieving revision 1.171
&lt;br&gt;&amp;gt; diff -u -r1.170 -r1.171
&lt;br&gt;&amp;gt; --- genppd.c	25 Sep 2008 23:41:00 -0000	1.170
&lt;br&gt;&amp;gt; +++ genppd.c	5 Dec 2008 03:27:20 -0000	1.171
&lt;br&gt;&amp;gt; @@ -1,5 +1,5 @@
&lt;br&gt;&amp;gt; &amp;nbsp;/*
&lt;br&gt;&amp;gt; - * &amp;quot;$Id: genppd.c,v 1.170 2008/09/25 23:41:00 rlk Exp $&amp;quot;
&lt;br&gt;&amp;gt; + * &amp;quot;$Id: genppd.c,v 1.171 2008/12/05 03:27:20 easysw Exp $&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; *
&lt;br&gt;&amp;gt; &amp;nbsp; * &amp;nbsp; PPD file generation program for the CUPS drivers.
&lt;br&gt;&amp;gt; &amp;nbsp; *
&lt;br&gt;&amp;gt; @@ -200,6 +200,13 @@
&lt;br&gt;&amp;gt; &amp;nbsp;main(int &amp;nbsp;argc,			 &amp;nbsp; &amp;nbsp;/* I - Number of command-line arguments */
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; char *argv[])		 &amp;nbsp; &amp;nbsp;/* I - Command-line arguments */
&lt;br&gt;&amp;gt; &amp;nbsp;{
&lt;br&gt;&amp;gt; + /*
&lt;br&gt;&amp;gt; + &amp;nbsp;* Force POSIX locale, since stp_init incorrectly calls setlocale...
&lt;br&gt;&amp;gt; + &amp;nbsp;*/
&lt;br&gt;&amp;gt; +
&lt;br&gt;&amp;gt; + &amp;nbsp;putenv((char *)&amp;quot;LANG=C&amp;quot;);
&lt;br&gt;&amp;gt; + &amp;nbsp;putenv((char *)&amp;quot;LC_ALL=C&amp;quot;);
&lt;br&gt;&amp;gt; + &amp;nbsp;putenv((char *)&amp;quot;LC_NUMERIC=C&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp; /*
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;* Initialise libgutenprint
&lt;br&gt;&amp;gt; @@ -893,6 +900,7 @@
&lt;br&gt;&amp;gt; &amp;nbsp;		min_height,
&lt;br&gt;&amp;gt; &amp;nbsp;		max_width,
&lt;br&gt;&amp;gt; &amp;nbsp;		max_height;
&lt;br&gt;&amp;gt; + &amp;nbsp;char		dimstr[255];		/* Dimension string */
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;stp_parameter_t desc;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;stp_parameter_list_t param_list;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;const stp_param_string_t *opt;
&lt;br&gt;&amp;gt; @@ -1794,13 +1802,10 @@
&lt;br&gt;&amp;gt; &amp;nbsp;		 &amp;nbsp; &amp;nbsp; &amp;nbsp;for (i = desc.bounds.dimension.lower;
&lt;br&gt;&amp;gt; &amp;nbsp;			 &amp;nbsp; i &amp;lt;= desc.bounds.dimension.upper; i++)
&lt;br&gt;&amp;gt; &amp;nbsp;			{
&lt;br&gt;&amp;gt; -			 &amp;nbsp;/* FIXME
&lt;br&gt;&amp;gt; -			 &amp;nbsp; * For now, just use mm; we'll fix it later
&lt;br&gt;&amp;gt; -			 &amp;nbsp; * for the locale-appropriate setting.
&lt;br&gt;&amp;gt; -			 &amp;nbsp; * --rlk 20040818
&lt;br&gt;&amp;gt; -			 &amp;nbsp; */
&lt;br&gt;&amp;gt; -			 &amp;nbsp;gzprintf(fp, &amp;quot;*Stp%s %d/%.1f mm: \&amp;quot;\&amp;quot;\n&amp;quot;,
&lt;br&gt;&amp;gt; -				 &amp;nbsp; desc.name, i, ((double) i) * 25.4 / 72);
&lt;br&gt;&amp;gt; +			 &amp;nbsp;snprintf(dimstr, sizeof(dimstr), _(&amp;quot;%.1f mm&amp;quot;),
&lt;br&gt;&amp;gt; +			 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (double)i * 25.4 / 72.0);
&lt;br&gt;&amp;gt; +			 &amp;nbsp;gzprintf(fp, &amp;quot;*Stp%s %d/%s: \&amp;quot;\&amp;quot;\n&amp;quot;,
&lt;br&gt;&amp;gt; +				 &amp;nbsp; desc.name, i, dimstr);
&lt;br&gt;&amp;gt; &amp;nbsp;			}
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;		 &amp;nbsp; &amp;nbsp; &amp;nbsp;print_close_ui = 0;
&lt;br&gt;&amp;gt; @@ -2197,19 +2202,14 @@
&lt;br&gt;&amp;gt; &amp;nbsp;			 &amp;nbsp;if (!desc.is_mandatory)
&lt;br&gt;&amp;gt; &amp;nbsp;			 &amp;nbsp; &amp;nbsp;gzprintf(fp, &amp;quot;*%s.Stp%s %s/%s: \&amp;quot;\&amp;quot;\n&amp;quot;, lang, desc.name,
&lt;br&gt;&amp;gt; &amp;nbsp;				 &amp;nbsp; &amp;nbsp; &amp;quot;None&amp;quot;, _(&amp;quot;None&amp;quot;));
&lt;br&gt;&amp;gt; -			 &amp;nbsp;if (localize_numbers)
&lt;br&gt;&amp;gt; +			 &amp;nbsp;/* Unlike the other fields, dimensions are not strictly numbers */
&lt;br&gt;&amp;gt; +			 &amp;nbsp;for (i = desc.bounds.dimension.lower;
&lt;br&gt;&amp;gt; +			 &amp;nbsp; &amp;nbsp; &amp;nbsp; i &amp;lt;= desc.bounds.dimension.upper; i++)
&lt;br&gt;&amp;gt; &amp;nbsp;			 &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;gt; -			 &amp;nbsp; &amp;nbsp; &amp;nbsp;for (i = desc.bounds.dimension.lower;
&lt;br&gt;&amp;gt; -				 &amp;nbsp; i &amp;lt;= desc.bounds.dimension.upper; i++)
&lt;br&gt;&amp;gt; -				{
&lt;br&gt;&amp;gt; -				 &amp;nbsp;/* FIXME
&lt;br&gt;&amp;gt; -				 &amp;nbsp; * For now, just use mm; we'll fix it later
&lt;br&gt;&amp;gt; -				 &amp;nbsp; * for the locale-appropriate setting.
&lt;br&gt;&amp;gt; -				 &amp;nbsp; * --rlk 20040818
&lt;br&gt;&amp;gt; -				 &amp;nbsp; */
&lt;br&gt;&amp;gt; -				 &amp;nbsp;gzprintf(fp, &amp;quot;*%s.Stp%s %d/%.1f mm: \&amp;quot;\&amp;quot;\n&amp;quot;, lang,
&lt;br&gt;&amp;gt; -					 &amp;nbsp; desc.name, i, ((double) i) * 25.4 / 72);
&lt;br&gt;&amp;gt; -				}
&lt;br&gt;&amp;gt; +			 &amp;nbsp; &amp;nbsp; &amp;nbsp;snprintf(dimstr, sizeof(dimstr), _(&amp;quot;%.1f mm&amp;quot;),
&lt;br&gt;&amp;gt; +				 &amp;nbsp; &amp;nbsp; &amp;nbsp; (double)i * 25.4 / 72.0);
&lt;br&gt;&amp;gt; +			 &amp;nbsp; &amp;nbsp; &amp;nbsp;gzprintf(fp, &amp;quot;*%s.Stp%s %d/%s: \&amp;quot;\&amp;quot;\n&amp;quot;, lang,
&lt;br&gt;&amp;gt; +				 &amp;nbsp; &amp;nbsp; &amp;nbsp; desc.name, i, dimstr);
&lt;br&gt;&amp;gt; &amp;nbsp;			 &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;gt; &amp;nbsp;			 &amp;nbsp;gzprintf(fp, &amp;quot;*%s.ParamCustomStp%s Value/%s: \&amp;quot;\&amp;quot;\n&amp;quot;, lang,
&lt;br&gt;&amp;gt; &amp;nbsp;				 &amp;nbsp; desc.name, _(&amp;quot;Value&amp;quot;));
&lt;br&gt;&amp;gt; @@ -2320,5 +2320,5 @@
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;/*
&lt;br&gt;&amp;gt; - * End of &amp;quot;$Id: genppd.c,v 1.170 2008/09/25 23:41:00 rlk Exp $&amp;quot;.
&lt;br&gt;&amp;gt; + * End of &amp;quot;$Id: genppd.c,v 1.171 2008/12/05 03:27:20 easysw Exp $&amp;quot;.
&lt;br&gt;&amp;gt; &amp;nbsp; */
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20856816&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20856816.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20856762</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-05T07:47:23Z</published>
	<updated>2008-12-05T07:47:23Z</updated>
	<author>
		<name>Tim Waugh</name>
	</author>
	<content type="html">On Fri, 2008-12-05 at 08:40 -0500, Robert Krawitz wrote:
&lt;br&gt;&amp;gt; Try this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Index: genppd.c
&lt;br&gt;&amp;gt; ===================================================================
&lt;br&gt;&amp;gt; RCS file: /cvsroot/gimp-print/print/src/cups/genppd.c,v
&lt;br&gt;&amp;gt; retrieving revision 1.170
&lt;br&gt;&amp;gt; retrieving revision 1.171
&lt;br&gt;&lt;br&gt;Works fine here.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Tim.
&lt;br&gt;*/
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20856762&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://www.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://www.nabble.com/attachment/20856762/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20856762.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20853955</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-05T05:40:32Z</published>
	<updated>2008-12-05T05:40:32Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;From: Tim Waugh &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20853955&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;twaugh@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;Date: Fri, 05 Dec 2008 13:16:23 +0000
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Is there a patch available to test? &amp;nbsp;I haven't been able to find the
&lt;br&gt;&amp;nbsp; &amp;nbsp;source code repository: the project page points to sourceforge, which
&lt;br&gt;&amp;nbsp; &amp;nbsp;gives an error with 'CVS Browse'.
&lt;br&gt;&lt;br&gt;Try this:
&lt;br&gt;&lt;br&gt;Index: genppd.c
&lt;br&gt;===================================================================
&lt;br&gt;RCS file: /cvsroot/gimp-print/print/src/cups/genppd.c,v
&lt;br&gt;retrieving revision 1.170
&lt;br&gt;retrieving revision 1.171
&lt;br&gt;diff -u -r1.170 -r1.171
&lt;br&gt;--- genppd.c	25 Sep 2008 23:41:00 -0000	1.170
&lt;br&gt;+++ genppd.c	5 Dec 2008 03:27:20 -0000	1.171
&lt;br&gt;@@ -1,5 +1,5 @@
&lt;br&gt;&amp;nbsp;/*
&lt;br&gt;- * &amp;quot;$Id: genppd.c,v 1.170 2008/09/25 23:41:00 rlk Exp $&amp;quot;
&lt;br&gt;+ * &amp;quot;$Id: genppd.c,v 1.171 2008/12/05 03:27:20 easysw Exp $&amp;quot;
&lt;br&gt;&amp;nbsp; *
&lt;br&gt;&amp;nbsp; * &amp;nbsp; PPD file generation program for the CUPS drivers.
&lt;br&gt;&amp;nbsp; *
&lt;br&gt;@@ -200,6 +200,13 @@
&lt;br&gt;&amp;nbsp;main(int &amp;nbsp;argc,			 &amp;nbsp; &amp;nbsp;/* I - Number of command-line arguments */
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; char *argv[])		 &amp;nbsp; &amp;nbsp;/* I - Command-line arguments */
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;+ /*
&lt;br&gt;+ &amp;nbsp;* Force POSIX locale, since stp_init incorrectly calls setlocale...
&lt;br&gt;+ &amp;nbsp;*/
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp;putenv((char *)&amp;quot;LANG=C&amp;quot;);
&lt;br&gt;+ &amp;nbsp;putenv((char *)&amp;quot;LC_ALL=C&amp;quot;);
&lt;br&gt;+ &amp;nbsp;putenv((char *)&amp;quot;LC_NUMERIC=C&amp;quot;);
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; /*
&lt;br&gt;&amp;nbsp; &amp;nbsp;* Initialise libgutenprint
&lt;br&gt;@@ -893,6 +900,7 @@
&lt;br&gt;&amp;nbsp;		min_height,
&lt;br&gt;&amp;nbsp;		max_width,
&lt;br&gt;&amp;nbsp;		max_height;
&lt;br&gt;+ &amp;nbsp;char		dimstr[255];		/* Dimension string */
&lt;br&gt;&amp;nbsp; &amp;nbsp;stp_parameter_t desc;
&lt;br&gt;&amp;nbsp; &amp;nbsp;stp_parameter_list_t param_list;
&lt;br&gt;&amp;nbsp; &amp;nbsp;const stp_param_string_t *opt;
&lt;br&gt;@@ -1794,13 +1802,10 @@
&lt;br&gt;&amp;nbsp;		 &amp;nbsp; &amp;nbsp; &amp;nbsp;for (i = desc.bounds.dimension.lower;
&lt;br&gt;&amp;nbsp;			 &amp;nbsp; i &amp;lt;= desc.bounds.dimension.upper; i++)
&lt;br&gt;&amp;nbsp;			{
&lt;br&gt;-			 &amp;nbsp;/* FIXME
&lt;br&gt;-			 &amp;nbsp; * For now, just use mm; we'll fix it later
&lt;br&gt;-			 &amp;nbsp; * for the locale-appropriate setting.
&lt;br&gt;-			 &amp;nbsp; * --rlk 20040818
&lt;br&gt;-			 &amp;nbsp; */
&lt;br&gt;-			 &amp;nbsp;gzprintf(fp, &amp;quot;*Stp%s %d/%.1f mm: \&amp;quot;\&amp;quot;\n&amp;quot;,
&lt;br&gt;-				 &amp;nbsp; desc.name, i, ((double) i) * 25.4 / 72);
&lt;br&gt;+			 &amp;nbsp;snprintf(dimstr, sizeof(dimstr), _(&amp;quot;%.1f mm&amp;quot;),
&lt;br&gt;+			 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (double)i * 25.4 / 72.0);
&lt;br&gt;+			 &amp;nbsp;gzprintf(fp, &amp;quot;*Stp%s %d/%s: \&amp;quot;\&amp;quot;\n&amp;quot;,
&lt;br&gt;+				 &amp;nbsp; desc.name, i, dimstr);
&lt;br&gt;&amp;nbsp;			}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;		 &amp;nbsp; &amp;nbsp; &amp;nbsp;print_close_ui = 0;
&lt;br&gt;@@ -2197,19 +2202,14 @@
&lt;br&gt;&amp;nbsp;			 &amp;nbsp;if (!desc.is_mandatory)
&lt;br&gt;&amp;nbsp;			 &amp;nbsp; &amp;nbsp;gzprintf(fp, &amp;quot;*%s.Stp%s %s/%s: \&amp;quot;\&amp;quot;\n&amp;quot;, lang, desc.name,
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; &amp;nbsp; &amp;quot;None&amp;quot;, _(&amp;quot;None&amp;quot;));
&lt;br&gt;-			 &amp;nbsp;if (localize_numbers)
&lt;br&gt;+			 &amp;nbsp;/* Unlike the other fields, dimensions are not strictly numbers */
&lt;br&gt;+			 &amp;nbsp;for (i = desc.bounds.dimension.lower;
&lt;br&gt;+			 &amp;nbsp; &amp;nbsp; &amp;nbsp; i &amp;lt;= desc.bounds.dimension.upper; i++)
&lt;br&gt;&amp;nbsp;			 &amp;nbsp; &amp;nbsp;{
&lt;br&gt;-			 &amp;nbsp; &amp;nbsp; &amp;nbsp;for (i = desc.bounds.dimension.lower;
&lt;br&gt;-				 &amp;nbsp; i &amp;lt;= desc.bounds.dimension.upper; i++)
&lt;br&gt;-				{
&lt;br&gt;-				 &amp;nbsp;/* FIXME
&lt;br&gt;-				 &amp;nbsp; * For now, just use mm; we'll fix it later
&lt;br&gt;-				 &amp;nbsp; * for the locale-appropriate setting.
&lt;br&gt;-				 &amp;nbsp; * --rlk 20040818
&lt;br&gt;-				 &amp;nbsp; */
&lt;br&gt;-				 &amp;nbsp;gzprintf(fp, &amp;quot;*%s.Stp%s %d/%.1f mm: \&amp;quot;\&amp;quot;\n&amp;quot;, lang,
&lt;br&gt;-					 &amp;nbsp; desc.name, i, ((double) i) * 25.4 / 72);
&lt;br&gt;-				}
&lt;br&gt;+			 &amp;nbsp; &amp;nbsp; &amp;nbsp;snprintf(dimstr, sizeof(dimstr), _(&amp;quot;%.1f mm&amp;quot;),
&lt;br&gt;+				 &amp;nbsp; &amp;nbsp; &amp;nbsp; (double)i * 25.4 / 72.0);
&lt;br&gt;+			 &amp;nbsp; &amp;nbsp; &amp;nbsp;gzprintf(fp, &amp;quot;*%s.Stp%s %d/%s: \&amp;quot;\&amp;quot;\n&amp;quot;, lang,
&lt;br&gt;+				 &amp;nbsp; &amp;nbsp; &amp;nbsp; desc.name, i, dimstr);
&lt;br&gt;&amp;nbsp;			 &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp;			 &amp;nbsp;gzprintf(fp, &amp;quot;*%s.ParamCustomStp%s Value/%s: \&amp;quot;\&amp;quot;\n&amp;quot;, lang,
&lt;br&gt;&amp;nbsp;				 &amp;nbsp; desc.name, _(&amp;quot;Value&amp;quot;));
&lt;br&gt;@@ -2320,5 +2320,5 @@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;/*
&lt;br&gt;- * End of &amp;quot;$Id: genppd.c,v 1.170 2008/09/25 23:41:00 rlk Exp $&amp;quot;.
&lt;br&gt;+ * End of &amp;quot;$Id: genppd.c,v 1.171 2008/12/05 03:27:20 easysw Exp $&amp;quot;.
&lt;br&gt;&amp;nbsp; */
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20853955&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20853955.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20853562</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-05T05:16:23Z</published>
	<updated>2008-12-05T05:16:23Z</updated>
	<author>
		<name>Tim Waugh</name>
	</author>
	<content type="html">Is there a patch available to test? &amp;nbsp;I haven't been able to find the
&lt;br&gt;source code repository: the project page points to sourceforge, which
&lt;br&gt;gives an error with 'CVS Browse'.
&lt;br&gt;&lt;br&gt;Tim.
&lt;br&gt;*/
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20853562&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://www.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://www.nabble.com/attachment/20853562/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20853562.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20852963</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-05T04:09:54Z</published>
	<updated>2008-12-05T04:09:54Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Date: Thu, 04 Dec 2008 19:33:38 -0800
&lt;br&gt;&amp;nbsp; &amp;nbsp;From: Michael R Sweet &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20852963&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;msweet@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;MIME-Version: 1.0
&lt;br&gt;&amp;nbsp; &amp;nbsp;CC: Till Kamppeter &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20852963&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;till.kamppeter@...&lt;/a&gt;&amp;gt;, &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20852963&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;twaugh@...&lt;/a&gt;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20852963&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;Content-Type: text/plain; charset=UTF-8; format=flowed
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Michael R Sweet wrote:
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; In driver mode, I don't believe that any of the locale is being used.
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; The desired language is taken from the URI.
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; We're still calling setlocale someplace - I'll look at the code
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; tonight or tomorrow...
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;OK, stp_init() is calling setlocale(), which is normally a really
&lt;br&gt;&amp;nbsp; &amp;nbsp;bad thing to do in a library. &amp;nbsp;For now I've just added some putenv()
&lt;br&gt;&amp;nbsp; &amp;nbsp;calls at the top of main() to force the POSIX locale before calling
&lt;br&gt;&amp;nbsp; &amp;nbsp;stp_init(). &amp;nbsp;Longer term we probably want to change that code to
&lt;br&gt;&amp;nbsp; &amp;nbsp;pass NULL instead of &amp;quot;&amp;quot; to setlocale to just get the currently set
&lt;br&gt;&amp;nbsp; &amp;nbsp;locale, and update the command-line programs to call setlocale with
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;quot;&amp;quot; as needed (all the GUI apps will already be doing this anyways...)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;I also updated the code that localizes numbers to always localize
&lt;br&gt;&amp;nbsp; &amp;nbsp;dimensions since they still cause cupstestppd to fail due to the
&lt;br&gt;&amp;nbsp; &amp;nbsp;units suffix. &amp;nbsp;We now have a localizable string for that - the units
&lt;br&gt;&amp;nbsp; &amp;nbsp;will always be millimeters, but the translation folks can choose the
&lt;br&gt;&amp;nbsp; &amp;nbsp;appropriate prefix/suffix for millimeters...
&lt;br&gt;&lt;br&gt;Thanks, Mike.
&lt;br&gt;&lt;br&gt;Could the people who have been having trouble with this please try
&lt;br&gt;this?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Robert Krawitz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20852963&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlk@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Tall Clubs International &amp;nbsp;-- &amp;nbsp;&lt;a href=&quot;http://www.tall.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tall.org/&lt;/a&gt;&amp;nbsp;or 1-888-IM-TALL-2
&lt;br&gt;Member of the League for Programming Freedom -- mail &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20852963&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lpf@...&lt;/a&gt;
&lt;br&gt;Project lead for Gutenprint &amp;nbsp; -- &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://gimp-print.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gimp-print.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;quot;Linux doesn't dictate how I work, I dictate how Linux works.&amp;quot;
&lt;br&gt;--Eric Crampton
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20852963&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20852963.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20847253</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-04T19:33:38Z</published>
	<updated>2008-12-04T19:33:38Z</updated>
	<author>
		<name>Michael R Sweet</name>
	</author>
	<content type="html">Michael R Sweet wrote:
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt;&amp;gt; In driver mode, I don't believe that any of the locale is being used.
&lt;br&gt;&amp;gt;&amp;gt; The desired language is taken from the URI.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; We're still calling setlocale someplace - I'll look at the code
&lt;br&gt;&amp;gt; tonight or tomorrow...
&lt;br&gt;&lt;br&gt;OK, stp_init() is calling setlocale(), which is normally a really
&lt;br&gt;bad thing to do in a library. &amp;nbsp;For now I've just added some putenv()
&lt;br&gt;calls at the top of main() to force the POSIX locale before calling
&lt;br&gt;stp_init(). &amp;nbsp;Longer term we probably want to change that code to
&lt;br&gt;pass NULL instead of &amp;quot;&amp;quot; to setlocale to just get the currently set
&lt;br&gt;locale, and update the command-line programs to call setlocale with
&lt;br&gt;&amp;quot;&amp;quot; as needed (all the GUI apps will already be doing this anyways...)
&lt;br&gt;&lt;br&gt;I also updated the code that localizes numbers to always localize
&lt;br&gt;dimensions since they still cause cupstestppd to fail due to the
&lt;br&gt;units suffix. &amp;nbsp;We now have a localizable string for that - the units
&lt;br&gt;will always be millimeters, but the translation folks can choose the
&lt;br&gt;appropriate prefix/suffix for millimeters...
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;______________________________________________________________________
&lt;br&gt;Michael R Sweet &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Senior Printing System Engineer
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20847253&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20847253.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20846131</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-04T17:25:45Z</published>
	<updated>2008-12-04T17:25:45Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Date: Fri, 05 Dec 2008 01:15:40 +0000
&lt;br&gt;&amp;nbsp; &amp;nbsp;From: &amp;quot;Alastair M. Robinson&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20846131&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;blackfive@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; Some of the settings required are really part of the paper handling
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; setup that will have in some cases (relatively) little or in other
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; cases no effect on print quality. &amp;nbsp;Things like mechanical sequence
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; (which depends upon paper type and resolution -- for plain paper at
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; low resolution, for example, Epson recommends a very fast paper
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; handling sequence that I suspect might jam if used with heavy glossy
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; paper).
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Good point - I'd overlooked that aspect. &amp;nbsp;Is that determined as
&lt;br&gt;&amp;nbsp; &amp;nbsp;part of the &amp;quot;PrintMethod&amp;quot; parameter in the XML files, then?
&lt;br&gt;&lt;br&gt;Yes. &amp;nbsp;There are a few other things in the XML files like that, and
&lt;br&gt;they vary with the printers.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; Another possibility would be to have some sort of &amp;quot;uncorrected&amp;quot; paper
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; type. &amp;nbsp;I don't know which way would be less confusing to users.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Yeah, I'd wondered about that too. &amp;nbsp;I wonder whether the easiest
&lt;br&gt;&amp;nbsp; &amp;nbsp;option - from the user's point of view at least - would be for the
&lt;br&gt;&amp;nbsp; &amp;nbsp;behaviour of Raw and Density mode to be changed such that they do
&lt;br&gt;&amp;nbsp; &amp;nbsp;as we previously thought - honour user-supplied settings, just not
&lt;br&gt;&amp;nbsp; &amp;nbsp;apply the defaults?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;You're obviously in a far better position than me to judge how
&lt;br&gt;&amp;nbsp; &amp;nbsp;difficult that would be to achieve, though!
&lt;br&gt;&lt;br&gt;It amounts to much the same thing. &amp;nbsp;In both cases the family drivers
&lt;br&gt;would need to be modified to recognize the appropriate option and not
&lt;br&gt;modify any of the settings.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; Regardless, there would be some amount of work on all of the family
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; drivers to implement this.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;True - but then none of this is concrete yet anyway. &amp;nbsp;In the first 
&lt;br&gt;&amp;nbsp; &amp;nbsp;instance I shall either perform my experiments with instrument-based 
&lt;br&gt;&amp;nbsp; &amp;nbsp;tuning/linearization using &amp;quot;Uncorrected&amp;quot; mode, or use &amp;quot;Raw&amp;quot; mode
&lt;br&gt;&amp;nbsp; &amp;nbsp;and do density / gamma / linearization curves myself just as a 
&lt;br&gt;&amp;nbsp; &amp;nbsp;proof-of-concept. &amp;nbsp;That should give us a clearer idea of how things 
&lt;br&gt;&amp;nbsp; &amp;nbsp;could be improved, and how much work the payoff will justify!
&lt;br&gt;&lt;br&gt;I would do it using Raw mode, and scale the density yourself.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Robert Krawitz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20846131&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlk@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Tall Clubs International &amp;nbsp;-- &amp;nbsp;&lt;a href=&quot;http://www.tall.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tall.org/&lt;/a&gt;&amp;nbsp;or 1-888-IM-TALL-2
&lt;br&gt;Member of the League for Programming Freedom -- mail &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20846131&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lpf@...&lt;/a&gt;
&lt;br&gt;Project lead for Gutenprint &amp;nbsp; -- &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://gimp-print.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gimp-print.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;quot;Linux doesn't dictate how I work, I dictate how Linux works.&amp;quot;
&lt;br&gt;--Eric Crampton
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20846131&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20846131.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20846607</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-04T17:15:40Z</published>
	<updated>2008-12-04T17:15:40Z</updated>
	<author>
		<name>Alastair M. Robinson</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Some of the settings required are really part of the paper handling
&lt;br&gt;&amp;gt; setup that will have in some cases (relatively) little or in other
&lt;br&gt;&amp;gt; cases no effect on print quality. &amp;nbsp;Things like mechanical sequence
&lt;br&gt;&amp;gt; (which depends upon paper type and resolution -- for plain paper at
&lt;br&gt;&amp;gt; low resolution, for example, Epson recommends a very fast paper
&lt;br&gt;&amp;gt; handling sequence that I suspect might jam if used with heavy glossy
&lt;br&gt;&amp;gt; paper).
&lt;br&gt;&lt;br&gt;Good point - I'd overlooked that aspect. &amp;nbsp;Is that determined as part of 
&lt;br&gt;the &amp;quot;PrintMethod&amp;quot; parameter in the XML files, then?
&lt;br&gt;&lt;br&gt;&amp;gt; Another possibility would be to have some sort of &amp;quot;uncorrected&amp;quot; paper
&lt;br&gt;&amp;gt; type. &amp;nbsp;I don't know which way would be less confusing to users.
&lt;br&gt;&lt;br&gt;Yeah, I'd wondered about that too. &amp;nbsp;I wonder whether the easiest option 
&lt;br&gt;- from the user's point of view at least - would be for the behaviour of 
&lt;br&gt;Raw and Density mode to be changed such that they do as we previously 
&lt;br&gt;thought - honour user-supplied settings, just not apply the defaults?
&lt;br&gt;&lt;br&gt;You're obviously in a far better position than me to judge how difficult 
&lt;br&gt;that would be to achieve, though!
&lt;br&gt;&lt;br&gt;&amp;gt; Regardless, there would be some amount of work on all of the family
&lt;br&gt;&amp;gt; drivers to implement this.
&lt;br&gt;&lt;br&gt;True - but then none of this is concrete yet anyway. &amp;nbsp;In the first 
&lt;br&gt;instance I shall either perform my experiments with instrument-based 
&lt;br&gt;tuning/linearization using &amp;quot;Uncorrected&amp;quot; mode, or use &amp;quot;Raw&amp;quot; mode
&lt;br&gt;and do density / gamma / linearization curves myself just as a 
&lt;br&gt;proof-of-concept. &amp;nbsp;That should give us a clearer idea of how things 
&lt;br&gt;could be improved, and how much work the payoff will justify!
&lt;br&gt;&lt;br&gt;All the best,
&lt;br&gt;--
&lt;br&gt;Alastair M. Robinson
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20846607&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20846607.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20845437</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-04T16:18:16Z</published>
	<updated>2008-12-04T16:18:16Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Date: Thu, 04 Dec 2008 18:03:44 +0000
&lt;br&gt;&amp;nbsp; &amp;nbsp;From: &amp;quot;Alastair M. Robinson&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20845437&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;blackfive@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; That sounds like you want a tool of some kind to do this.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Well yes, and this is pretty closely related to linearization anyway. I 
&lt;br&gt;&amp;nbsp; &amp;nbsp;suppose my point is that even if such a tool creates values which might 
&lt;br&gt;&amp;nbsp; &amp;nbsp;end up in the server-side XML files, the tool itself should be able to 
&lt;br&gt;&amp;nbsp; &amp;nbsp;use the client-side options system to determine and test these settings.
&lt;br&gt;&lt;br&gt;Some of the settings required are really part of the paper handling
&lt;br&gt;setup that will have in some cases (relatively) little or in other
&lt;br&gt;cases no effect on print quality. &amp;nbsp;Things like mechanical sequence
&lt;br&gt;(which depends upon paper type and resolution -- for plain paper at
&lt;br&gt;low resolution, for example, Epson recommends a very fast paper
&lt;br&gt;handling sequence that I suspect might jam if used with heavy glossy
&lt;br&gt;paper).
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; Another way to do this might be to have options &amp;quot;Ignore paper
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; adjustments&amp;quot; and &amp;quot;Ignore printer adjustments&amp;quot; or the like.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Yes, that would work too (for clarity the &amp;quot;ignore paper adjustments&amp;quot; 
&lt;br&gt;&amp;nbsp; &amp;nbsp;control should probably disable the Media Type option). &amp;nbsp;But however it 
&lt;br&gt;&amp;nbsp; &amp;nbsp;ends up being accessed, we're talking about a &amp;quot;blank slate&amp;quot; mode - kind 
&lt;br&gt;&amp;nbsp; &amp;nbsp;of analogous to disabling the colour management in a print chain when 
&lt;br&gt;&amp;nbsp; &amp;nbsp;printing a profiling target - i.e. measuring *absolute* behaviour, not 
&lt;br&gt;&amp;nbsp; &amp;nbsp;behaviour relative to some existing setting.
&lt;br&gt;&lt;br&gt;Another possibility would be to have some sort of &amp;quot;uncorrected&amp;quot; paper
&lt;br&gt;type. &amp;nbsp;I don't know which way would be less confusing to users.
&lt;br&gt;Regardless, there would be some amount of work on all of the family
&lt;br&gt;drivers to implement this.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Robert Krawitz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20845437&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlk@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Tall Clubs International &amp;nbsp;-- &amp;nbsp;&lt;a href=&quot;http://www.tall.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tall.org/&lt;/a&gt;&amp;nbsp;or 1-888-IM-TALL-2
&lt;br&gt;Member of the League for Programming Freedom -- mail &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20845437&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lpf@...&lt;/a&gt;
&lt;br&gt;Project lead for Gutenprint &amp;nbsp; -- &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://gimp-print.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gimp-print.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;quot;Linux doesn't dictate how I work, I dictate how Linux works.&amp;quot;
&lt;br&gt;--Eric Crampton
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
&lt;br&gt;The future of the web can't happen without you. &amp;nbsp;Join us at MIX09 to help
&lt;br&gt;pave the way to the Next Web now. Learn more and register at
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20845437&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20845437.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20839021</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-04T10:03:44Z</published>
	<updated>2008-12-04T10:03:44Z</updated>
	<author>
		<name>Alastair M. Robinson</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; That sounds like you want a tool of some kind to do this.
&lt;br&gt;&lt;br&gt;Well yes, and this is pretty closely related to linearization anyway. I 
&lt;br&gt;suppose my point is that even if such a tool creates values which might 
&lt;br&gt;end up in the server-side XML files, the tool itself should be able to 
&lt;br&gt;use the client-side options system to determine and test these settings.
&lt;br&gt;&lt;br&gt;&amp;gt; Another way to do this might be to have options &amp;quot;Ignore paper
&lt;br&gt;&amp;gt; adjustments&amp;quot; and &amp;quot;Ignore printer adjustments&amp;quot; or the like.
&lt;br&gt;&lt;br&gt;Yes, that would work too (for clarity the &amp;quot;ignore paper adjustments&amp;quot; 
&lt;br&gt;control should probably disable the Media Type option). &amp;nbsp;But however it 
&lt;br&gt;ends up being accessed, we're talking about a &amp;quot;blank slate&amp;quot; mode - kind 
&lt;br&gt;of analogous to disabling the colour management in a print chain when 
&lt;br&gt;printing a profiling target - i.e. measuring *absolute* behaviour, not 
&lt;br&gt;behaviour relative to some existing setting.
&lt;br&gt;&lt;br&gt;All the best,
&lt;br&gt;--
&lt;br&gt;Alastair M. Robinson
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20839021&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20839021.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20833001</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-04T05:02:52Z</published>
	<updated>2008-12-04T05:02:52Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Date: Thu, 04 Dec 2008 10:42:14 +0000
&lt;br&gt;&amp;nbsp; &amp;nbsp;From: &amp;quot;Alastair M. Robinson&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20833001&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;blackfive@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; Sort of a User Correction Only mode?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Yes, pretty much. &amp;nbsp;One of the things I'd like to see long-term is the 
&lt;br&gt;&amp;nbsp; &amp;nbsp;ability to end-users to define new papertypes - and a tool to determine 
&lt;br&gt;&amp;nbsp; &amp;nbsp;the optimum settings for a papertype will certainly need to be able to 
&lt;br&gt;&amp;nbsp; &amp;nbsp;bypass settings coming from an *existing* papertype, while still having 
&lt;br&gt;&amp;nbsp; &amp;nbsp;its own settings heeded. &amp;nbsp;Currently this would only be possible with a 
&lt;br&gt;&amp;nbsp; &amp;nbsp;cycle of test - edit XML files - test - ...
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Anyhow, I shall add a few lines to the Wiki later on.
&lt;br&gt;&lt;br&gt;That sounds like you want a tool of some kind to do this.
&lt;br&gt;&lt;br&gt;Another way to do this might be to have options &amp;quot;Ignore paper
&lt;br&gt;adjustments&amp;quot; and &amp;quot;Ignore printer adjustments&amp;quot; or the like.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Robert Krawitz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20833001&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlk@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Tall Clubs International &amp;nbsp;-- &amp;nbsp;&lt;a href=&quot;http://www.tall.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tall.org/&lt;/a&gt;&amp;nbsp;or 1-888-IM-TALL-2
&lt;br&gt;Member of the League for Programming Freedom -- mail &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20833001&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lpf@...&lt;/a&gt;
&lt;br&gt;Project lead for Gutenprint &amp;nbsp; -- &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://gimp-print.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gimp-print.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;quot;Linux doesn't dictate how I work, I dictate how Linux works.&amp;quot;
&lt;br&gt;--Eric Crampton
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20833001&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20833001.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20831044</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-04T02:42:14Z</published>
	<updated>2008-12-04T02:42:14Z</updated>
	<author>
		<name>Alastair M. Robinson</name>
	</author>
	<content type="html">Hi :)
&lt;br&gt;&lt;br&gt;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Sort of a User Correction Only mode?
&lt;br&gt;&lt;br&gt;Yes, pretty much. &amp;nbsp;One of the things I'd like to see long-term is the 
&lt;br&gt;ability to end-users to define new papertypes - and a tool to determine 
&lt;br&gt;the optimum settings for a papertype will certainly need to be able to 
&lt;br&gt;bypass settings coming from an *existing* papertype, while still having 
&lt;br&gt;its own settings heeded. &amp;nbsp;Currently this would only be possible with a 
&lt;br&gt;cycle of test - edit XML files - test - ...
&lt;br&gt;&lt;br&gt;Anyhow, I shall add a few lines to the Wiki later on.
&lt;br&gt;&lt;br&gt;&amp;gt; 'Fraid so.
&lt;br&gt;&lt;br&gt;OK, thanks.
&lt;br&gt;&lt;br&gt;All the best,
&lt;br&gt;--
&lt;br&gt;Alastair M. Robinson
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20831044&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20831044.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20825991</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-03T18:17:14Z</published>
	<updated>2008-12-03T18:17:14Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Date: Thu, 04 Dec 2008 01:34:33 +0000
&lt;br&gt;&amp;nbsp; &amp;nbsp;From: &amp;quot;Alastair M. Robinson&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20825991&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;blackfive@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; Yes. &amp;nbsp;The idea of the Raw mode is that *no* adjustments are made --
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; you have to do everything yourself.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;OK fair enough. &amp;nbsp;But in this case, should the various parameters not be 
&lt;br&gt;&amp;nbsp; &amp;nbsp;marked inactive if they're going to be ignored?
&lt;br&gt;&lt;br&gt;Yes.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; We could add something else, if
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; you'd like to spec it?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Well, I don't have anything concrete yet - but as I'm sure you've 
&lt;br&gt;&amp;nbsp; &amp;nbsp;guessed I'm thinking in terms of end-user tools for tuning and 
&lt;br&gt;&amp;nbsp; &amp;nbsp;linearizing printers, and the problem of being able to share (and build 
&lt;br&gt;&amp;nbsp; &amp;nbsp;a library of) such tunings. &amp;nbsp;From the point of view of long-term 
&lt;br&gt;&amp;nbsp; &amp;nbsp;stability, I think it'd be beneficial for these settings to be 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;quot;absolute&amp;quot; - whereas currently they have to be relative to the defaults 
&lt;br&gt;&amp;nbsp; &amp;nbsp;supplied with a specific version of Gutenprint.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Purely as an example, imagine a tool which helps to determine the 
&lt;br&gt;&amp;nbsp; &amp;nbsp;maximum density for a paper - in raw mode it prints a sweep from 0 to 
&lt;br&gt;&amp;nbsp; &amp;nbsp;50%, say, and the user reads off the point at which the paper starts to 
&lt;br&gt;&amp;nbsp; &amp;nbsp;saturate, or increases the maximum density a little and tries again if 
&lt;br&gt;&amp;nbsp; &amp;nbsp;it hasn't done so. &amp;nbsp;In this manner you could determine a suitable 
&lt;br&gt;&amp;nbsp; &amp;nbsp;density setting, but you can't use it because the only modes which will 
&lt;br&gt;&amp;nbsp; &amp;nbsp;take it into account also apply the built-in density corrections!
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;So I suppose what I want is a mode which ignores all *built-in* 
&lt;br&gt;&amp;nbsp; &amp;nbsp;corrections (as Raw mode currently does), but which obeys any 
&lt;br&gt;&amp;nbsp; &amp;nbsp;adjustments which have been *explicitly* set.
&lt;br&gt;&lt;br&gt;Sort of a User Correction Only mode?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; Same thing.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;OK. &amp;nbsp;Density mode will, presumably, obey the density settings, but will 
&lt;br&gt;&amp;nbsp; &amp;nbsp;that also ignore the CurveChN and GammaChN parameters?
&lt;br&gt;&lt;br&gt;'Fraid so.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20825991&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20825991.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20825613</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-03T17:34:33Z</published>
	<updated>2008-12-03T17:34:33Z</updated>
	<author>
		<name>Alastair M. Robinson</name>
	</author>
	<content type="html">Hi :)
&lt;br&gt;&lt;br&gt;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Yes. &amp;nbsp;The idea of the Raw mode is that *no* adjustments are made --
&lt;br&gt;&amp;gt; you have to do everything yourself.
&lt;br&gt;&lt;br&gt;OK fair enough. &amp;nbsp;But in this case, should the various parameters not be 
&lt;br&gt;marked inactive if they're going to be ignored?
&lt;br&gt;&lt;br&gt;&amp;gt; We could add something else, if
&lt;br&gt;&amp;gt; you'd like to spec it?
&lt;br&gt;&lt;br&gt;Well, I don't have anything concrete yet - but as I'm sure you've 
&lt;br&gt;guessed I'm thinking in terms of end-user tools for tuning and 
&lt;br&gt;linearizing printers, and the problem of being able to share (and build 
&lt;br&gt;a library of) such tunings. &amp;nbsp;From the point of view of long-term 
&lt;br&gt;stability, I think it'd be beneficial for these settings to be 
&lt;br&gt;&amp;quot;absolute&amp;quot; - whereas currently they have to be relative to the defaults 
&lt;br&gt;supplied with a specific version of Gutenprint.
&lt;br&gt;&lt;br&gt;Purely as an example, imagine a tool which helps to determine the 
&lt;br&gt;maximum density for a paper - in raw mode it prints a sweep from 0 to 
&lt;br&gt;50%, say, and the user reads off the point at which the paper starts to 
&lt;br&gt;saturate, or increases the maximum density a little and tries again if 
&lt;br&gt;it hasn't done so. &amp;nbsp;In this manner you could determine a suitable 
&lt;br&gt;density setting, but you can't use it because the only modes which will 
&lt;br&gt;take it into account also apply the built-in density corrections!
&lt;br&gt;&lt;br&gt;So I suppose what I want is a mode which ignores all *built-in* 
&lt;br&gt;corrections (as Raw mode currently does), but which obeys any 
&lt;br&gt;adjustments which have been *explicitly* set.
&lt;br&gt;&lt;br&gt;&amp;gt; Same thing.
&lt;br&gt;&lt;br&gt;OK. &amp;nbsp;Density mode will, presumably, obey the density settings, but will 
&lt;br&gt;that also ignore the CurveChN and GammaChN parameters?
&lt;br&gt;&lt;br&gt;All the best,
&lt;br&gt;--
&lt;br&gt;Alastair M. Robinson
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20825613&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20825613.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20825212</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-03T16:58:28Z</published>
	<updated>2008-12-03T16:58:28Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Date: Thu, 04 Dec 2008 00:53:23 +0000
&lt;br&gt;&amp;nbsp; &amp;nbsp;From: &amp;quot;Alastair M. Robinson&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20825212&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;blackfive@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; My recollection had been that it did, but it appears from the code
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; that it doesn't.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;OK thanks. &amp;nbsp;So that means there's currently no way to print with an
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;quot;absolute&amp;quot; density setting, yes? &amp;nbsp;I.e. all the modes that obey that
&lt;br&gt;&amp;nbsp; &amp;nbsp;parameter treat it as relative to the base and papertype densities?
&lt;br&gt;&lt;br&gt;Yes. &amp;nbsp;The idea of the Raw mode is that *no* adjustments are made --
&lt;br&gt;you have to do everything yourself. &amp;nbsp;We could add something else, if
&lt;br&gt;you'd like to spec it?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;How about the CurveChN and GammaChN parameters?
&lt;br&gt;&lt;br&gt;Same thing.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20825212&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20825212.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20825135</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-03T16:53:23Z</published>
	<updated>2008-12-03T16:53:23Z</updated>
	<author>
		<name>Alastair M. Robinson</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Robert Krawitz wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; My recollection had been that it did, but it appears from the code
&lt;br&gt;&amp;gt; that it doesn't.
&lt;br&gt;&lt;br&gt;OK thanks. &amp;nbsp;So that means there's currently no way to print with an 
&lt;br&gt;&amp;quot;absolute&amp;quot; density setting, yes? &amp;nbsp;I.e. all the modes that obey that 
&lt;br&gt;parameter treat it as relative to the base and papertype densities?
&lt;br&gt;&lt;br&gt;How about the CurveChN and GammaChN parameters?
&lt;br&gt;&lt;br&gt;All the best,
&lt;br&gt;--
&lt;br&gt;Alastair M. Robinson
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20825135&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20825135.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20824982</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-03T16:41:32Z</published>
	<updated>2008-12-03T16:41:32Z</updated>
	<author>
		<name>Michael R Sweet</name>
	</author>
	<content type="html">Robert Krawitz wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Date: Wed, 03 Dec 2008 20:43:09 +0100
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;From: Till Kamppeter &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824982&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;till.kamppeter@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;MIME-Version: 1.0
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Cc: Tim Waugh &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824982&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;twaugh@...&lt;/a&gt;&amp;gt;,
&lt;br&gt;&amp;gt; 	 &amp;nbsp; Gutenprint Mailing List &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824982&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gimp-print-devel@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Content-Type: text/plain; charset=&amp;quot;utf-8&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Michael R Sweet wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; Tim Waugh wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; I'm seeing a problem with the new globalized PPDs in gutenprint-5.2.2.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; Specifically, these PPDs do not follow CUPS rule 6 for the PPD
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; extension:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; ...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; In a non-English locale, using the cupsGetServerPPD() function returns a
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; globalized PPD for which the main option descriptions contain 8-bit
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; characters.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; In fact this happens even for English locales, due to characters such as
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; &amp;quot;×&amp;quot;.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; We should never be using special characters for this, however I
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; suspect that is coming from one of the drivers.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; What is probably happening is that the current locale is being passed
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; from CUPS to the genppd program, which is (incorrectly) using that
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; locale as the default localization for the PPD files. &amp;nbsp;When run as a
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; CUPS driver interface program, we need to ignore the LANG setting and
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;gt; do what is requested in the URI we get.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Yes, that's it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;The idea of globalized PPDs is that a print queue has a multi-language 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;PPD and so several users can use it with their preferred UI language. 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Therefore a PPD generator has always to emit the full globalized PPD 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;with all languages and not to tray to extract a single-language PPD with 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;the server's default locale. Currently, Gutenprint's PPD generator emits 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;the full globalized PPD only when the server's default locale is English 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; (as it is on my machine, and so I did not see the bug during the 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;discussion on getting globalized PPDs here on the list). In addition, 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;the single-language PPDs which Gutenprint genrates are broken. At first 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;the UTF-8 translations from the extension are moved to the place of the 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;standard translation strings, leaving the LanguageEncoding on 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;quot;ISOLatin1&amp;quot;. Also the LanguageVersion is left on &amp;quot;English&amp;quot; and the 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;quot;cupsLanguages&amp;quot; line not removed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;But what really has to happen is that every queue gets full globalized 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;PPDs, regardless of the server's default language. Either CUPS should 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;take care of it to call the PPD generators with neutral locale (&amp;quot;C&amp;quot;) or 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Gutenprint's PPD generator has to ignore the locale and always to emit 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;fully globalized PPDs.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;So Mike and Robert, one of you has to fix it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So what precisely do we need to do here?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In driver mode, I don't believe that any of the locale is being used.
&lt;br&gt;&amp;gt; The desired language is taken from the URI.
&lt;/div&gt;&lt;br&gt;We're still calling setlocale someplace - I'll look at the code
&lt;br&gt;tonight or tomorrow...
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;______________________________________________________________________
&lt;br&gt;Michael R Sweet &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Senior Printing System Engineer
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824982&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20824982.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20824966</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-03T16:37:52Z</published>
	<updated>2008-12-03T16:37:52Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Date: Wed, 03 Dec 2008 20:43:09 +0100
&lt;br&gt;&amp;nbsp; &amp;nbsp;From: Till Kamppeter &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824966&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;till.kamppeter@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;MIME-Version: 1.0
&lt;br&gt;&amp;nbsp; &amp;nbsp;Cc: Tim Waugh &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824966&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;twaugh@...&lt;/a&gt;&amp;gt;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Gutenprint Mailing List &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824966&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gimp-print-devel@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;Content-Type: text/plain; charset=&amp;quot;utf-8&amp;quot;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Michael R Sweet wrote:
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; Tim Waugh wrote:
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; I'm seeing a problem with the new globalized PPDs in gutenprint-5.2.2.
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; Specifically, these PPDs do not follow CUPS rule 6 for the PPD
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; extension:
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; In a non-English locale, using the cupsGetServerPPD() function returns a
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; globalized PPD for which the main option descriptions contain 8-bit
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; characters.
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; In fact this happens even for English locales, due to characters such as
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt; &amp;quot;×&amp;quot;.
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; We should never be using special characters for this, however I
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; suspect that is coming from one of the drivers.
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; What is probably happening is that the current locale is being passed
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; from CUPS to the genppd program, which is (incorrectly) using that
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; locale as the default localization for the PPD files. &amp;nbsp;When run as a
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; CUPS driver interface program, we need to ignore the LANG setting and
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;gt; do what is requested in the URI we get.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Yes, that's it.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;The idea of globalized PPDs is that a print queue has a multi-language 
&lt;br&gt;&amp;nbsp; &amp;nbsp;PPD and so several users can use it with their preferred UI language. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Therefore a PPD generator has always to emit the full globalized PPD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;with all languages and not to tray to extract a single-language PPD with 
&lt;br&gt;&amp;nbsp; &amp;nbsp;the server's default locale. Currently, Gutenprint's PPD generator emits 
&lt;br&gt;&amp;nbsp; &amp;nbsp;the full globalized PPD only when the server's default locale is English 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (as it is on my machine, and so I did not see the bug during the 
&lt;br&gt;&amp;nbsp; &amp;nbsp;discussion on getting globalized PPDs here on the list). In addition, 
&lt;br&gt;&amp;nbsp; &amp;nbsp;the single-language PPDs which Gutenprint genrates are broken. At first 
&lt;br&gt;&amp;nbsp; &amp;nbsp;the UTF-8 translations from the extension are moved to the place of the 
&lt;br&gt;&amp;nbsp; &amp;nbsp;standard translation strings, leaving the LanguageEncoding on 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;quot;ISOLatin1&amp;quot;. Also the LanguageVersion is left on &amp;quot;English&amp;quot; and the 
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;quot;cupsLanguages&amp;quot; line not removed.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;But what really has to happen is that every queue gets full globalized 
&lt;br&gt;&amp;nbsp; &amp;nbsp;PPDs, regardless of the server's default language. Either CUPS should 
&lt;br&gt;&amp;nbsp; &amp;nbsp;take care of it to call the PPD generators with neutral locale (&amp;quot;C&amp;quot;) or 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Gutenprint's PPD generator has to ignore the locale and always to emit 
&lt;br&gt;&amp;nbsp; &amp;nbsp;fully globalized PPDs.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;So Mike and Robert, one of you has to fix it.
&lt;br&gt;&lt;br&gt;So what precisely do we need to do here?
&lt;br&gt;&lt;br&gt;In driver mode, I don't believe that any of the locale is being used.
&lt;br&gt;The desired language is taken from the URI.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Robert Krawitz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824966&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlk@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Tall Clubs International &amp;nbsp;-- &amp;nbsp;&lt;a href=&quot;http://www.tall.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tall.org/&lt;/a&gt;&amp;nbsp;or 1-888-IM-TALL-2
&lt;br&gt;Member of the League for Programming Freedom -- mail &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824966&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lpf@...&lt;/a&gt;
&lt;br&gt;Project lead for Gutenprint &amp;nbsp; -- &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://gimp-print.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gimp-print.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;quot;Linux doesn't dictate how I work, I dictate how Linux works.&amp;quot;
&lt;br&gt;--Eric Crampton
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824966&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20824966.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20824837</id>
	<title>Re: &quot;Raw&quot; colour correction</title>
	<published>2008-12-03T16:25:12Z</published>
	<updated>2008-12-03T16:25:12Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Date: Thu, 04 Dec 2008 00:12:55 +0000
&lt;br&gt;&amp;nbsp; &amp;nbsp;From: &amp;quot;Alastair M. Robinson&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824837&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;blackfive@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;I know the &amp;quot;Raw&amp;quot; color correction mode ignores the density settings
&lt;br&gt;&amp;nbsp; &amp;nbsp;from the papertype and printer definitions, but is it supposed to
&lt;br&gt;&amp;nbsp; &amp;nbsp;take into account the setting of the &amp;quot;Density&amp;quot; parameter, or not?
&lt;br&gt;&amp;nbsp; &amp;nbsp;I'd got the impression from the various discussions about
&lt;br&gt;&amp;nbsp; &amp;nbsp;linearization over the last few months that it was - but
&lt;br&gt;&amp;nbsp; &amp;nbsp;experiments suggest otherwise - was I mistaken? :)
&lt;br&gt;&lt;br&gt;My recollection had been that it did, but it appears from the code
&lt;br&gt;that it doesn't.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Robert Krawitz &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824837&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rlk@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Tall Clubs International &amp;nbsp;-- &amp;nbsp;&lt;a href=&quot;http://www.tall.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tall.org/&lt;/a&gt;&amp;nbsp;or 1-888-IM-TALL-2
&lt;br&gt;Member of the League for Programming Freedom -- mail &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824837&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lpf@...&lt;/a&gt;
&lt;br&gt;Project lead for Gutenprint &amp;nbsp; -- &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://gimp-print.sourceforge.net&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gimp-print.sourceforge.net&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;quot;Linux doesn't dictate how I work, I dictate how Linux works.&amp;quot;
&lt;br&gt;--Eric Crampton
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824837&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20824837.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20824702</id>
	<title>&quot;Raw&quot; colour correction</title>
	<published>2008-12-03T16:12:55Z</published>
	<updated>2008-12-03T16:12:55Z</updated>
	<author>
		<name>Alastair M. Robinson</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Quick question:
&lt;br&gt;&lt;br&gt;I know the &amp;quot;Raw&amp;quot; color correction mode ignores the density settings from 
&lt;br&gt;the papertype and printer definitions, but is it supposed to take into 
&lt;br&gt;account the setting of the &amp;quot;Density&amp;quot; parameter, or not? &amp;nbsp;I'd got the 
&lt;br&gt;impression from the various discussions about linearization over the 
&lt;br&gt;last few months that it was - but experiments suggest otherwise - was I 
&lt;br&gt;mistaken? :)
&lt;br&gt;&lt;br&gt;All the best,
&lt;br&gt;--
&lt;br&gt;Alastair M. Robinson
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20824702&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/%22Raw%22-colour-correction-tp20824702p20824702.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20820122</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-03T11:43:09Z</published>
	<updated>2008-12-03T11:43:09Z</updated>
	<author>
		<name>Till Kamppeter-3</name>
	</author>
	<content type="html">Michael R Sweet wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Tim Waugh wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm seeing a problem with the new globalized PPDs in gutenprint-5.2.2.
&lt;br&gt;&amp;gt;&amp;gt; Specifically, these PPDs do not follow CUPS rule 6 for the PPD
&lt;br&gt;&amp;gt;&amp;gt; extension:
&lt;br&gt;&amp;gt;&amp;gt; ...
&lt;br&gt;&amp;gt;&amp;gt; In a non-English locale, using the cupsGetServerPPD() function returns a
&lt;br&gt;&amp;gt;&amp;gt; globalized PPD for which the main option descriptions contain 8-bit
&lt;br&gt;&amp;gt;&amp;gt; characters.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In fact this happens even for English locales, due to characters such as
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;×&amp;quot;.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; We should never be using special characters for this, however I
&lt;br&gt;&amp;gt; suspect that is coming from one of the drivers.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What is probably happening is that the current locale is being passed
&lt;br&gt;&amp;gt; from CUPS to the genppd program, which is (incorrectly) using that
&lt;br&gt;&amp;gt; locale as the default localization for the PPD files. &amp;nbsp;When run as a
&lt;br&gt;&amp;gt; CUPS driver interface program, we need to ignore the LANG setting and
&lt;br&gt;&amp;gt; do what is requested in the URI we get.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Yes, that's it.
&lt;br&gt;&lt;br&gt;The idea of globalized PPDs is that a print queue has a multi-language 
&lt;br&gt;PPD and so several users can use it with their preferred UI language. 
&lt;br&gt;Therefore a PPD generator has always to emit the full globalized PPD 
&lt;br&gt;with all languages and not to tray to extract a single-language PPD with 
&lt;br&gt;the server's default locale. Currently, Gutenprint's PPD generator emits 
&lt;br&gt;the full globalized PPD only when the server's default locale is English 
&lt;br&gt;&amp;nbsp; &amp;nbsp;(as it is on my machine, and so I did not see the bug during the 
&lt;br&gt;discussion on getting globalized PPDs here on the list). In addition, 
&lt;br&gt;the single-language PPDs which Gutenprint genrates are broken. At first 
&lt;br&gt;the UTF-8 translations from the extension are moved to the place of the 
&lt;br&gt;standard translation strings, leaving the LanguageEncoding on 
&lt;br&gt;&amp;quot;ISOLatin1&amp;quot;. Also the LanguageVersion is left on &amp;quot;English&amp;quot; and the 
&lt;br&gt;&amp;quot;cupsLanguages&amp;quot; line not removed.
&lt;br&gt;&lt;br&gt;But what really has to happen is that every queue gets full globalized 
&lt;br&gt;PPDs, regardless of the server's default language. Either CUPS should 
&lt;br&gt;take care of it to call the PPD generators with neutral locale (&amp;quot;C&amp;quot;) or 
&lt;br&gt;Gutenprint's PPD generator has to ignore the locale and always to emit 
&lt;br&gt;fully globalized PPDs.
&lt;br&gt;&lt;br&gt;So Mike and Robert, one of you has to fix it.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Till
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20820122&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20820122.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20818855</id>
	<title>Re: Problem with globalized PPDs</title>
	<published>2008-12-03T10:29:13Z</published>
	<updated>2008-12-03T10:29:13Z</updated>
	<author>
		<name>Michael R Sweet</name>
	</author>
	<content type="html">Tim Waugh wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm seeing a problem with the new globalized PPDs in gutenprint-5.2.2.
&lt;br&gt;&amp;gt; Specifically, these PPDs do not follow CUPS rule 6 for the PPD
&lt;br&gt;&amp;gt; extension:
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; In a non-English locale, using the cupsGetServerPPD() function returns a
&lt;br&gt;&amp;gt; globalized PPD for which the main option descriptions contain 8-bit
&lt;br&gt;&amp;gt; characters.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In fact this happens even for English locales, due to characters such as
&lt;br&gt;&amp;gt; &amp;quot;×&amp;quot;.
&lt;/div&gt;&lt;br&gt;We should never be using special characters for this, however I
&lt;br&gt;suspect that is coming from one of the drivers.
&lt;br&gt;&lt;br&gt;What is probably happening is that the current locale is being passed
&lt;br&gt;from CUPS to the genppd program, which is (incorrectly) using that
&lt;br&gt;locale as the default localization for the PPD files. &amp;nbsp;When run as a
&lt;br&gt;CUPS driver interface program, we need to ignore the LANG setting and
&lt;br&gt;do what is requested in the URI we get.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;______________________________________________________________________
&lt;br&gt;Michael R Sweet &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Senior Printing System Engineer
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20818855&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20818855.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20818254</id>
	<title>Problem with globalized PPDs</title>
	<published>2008-12-03T09:58:23Z</published>
	<updated>2008-12-03T09:58:23Z</updated>
	<author>
		<name>Tim Waugh</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm seeing a problem with the new globalized PPDs in gutenprint-5.2.2.
&lt;br&gt;Specifically, these PPDs do not follow CUPS rule 6 for the PPD
&lt;br&gt;extension:
&lt;br&gt;&lt;br&gt;&amp;quot;Translation strings included with the main and option keywords
&lt;br&gt;&amp;nbsp;MUST NOT contain characters outside the ASCII subset of ISOLatin1
&lt;br&gt;&amp;nbsp;and UTF-8; developers wishing to use characters outside ASCII
&lt;br&gt;&amp;nbsp;MUST provide a separate set of English localization attributes
&lt;br&gt;&amp;nbsp;for the affected keywords.&amp;quot;
&lt;br&gt;&lt;br&gt;In a non-English locale, using the cupsGetServerPPD() function returns a
&lt;br&gt;globalized PPD for which the main option descriptions contain 8-bit
&lt;br&gt;characters.
&lt;br&gt;&lt;br&gt;In fact this happens even for English locales, due to characters such as
&lt;br&gt;&amp;quot;×&amp;quot;.
&lt;br&gt;&lt;br&gt;The result is that using the CUPS PPD API produces incorrectly decoded
&lt;br&gt;strings.
&lt;br&gt;&lt;br&gt;Here is a demonstration using pycups:
&lt;br&gt;&lt;br&gt;#!/usr/bin/python
&lt;br&gt;from locale import *
&lt;br&gt;setlocale(LC_ALL,'fr_FR.UTF-8')
&lt;br&gt;import cups, os
&lt;br&gt;c=cups.Connection();
&lt;br&gt;ppdfile=c.getServerPPD(&amp;quot;gutenprint.5.2://bjc-MULTIPASS-MP150/expert&amp;quot;);
&lt;br&gt;os.unlink (ppdfile)
&lt;br&gt;print ppdfile.findOption(&amp;quot;StpQuality&amp;quot;).text
&lt;br&gt;&lt;br&gt;Result (UTF-8 environment):
&lt;br&gt;&lt;br&gt;QualitÃ© d'impression
&lt;br&gt;&lt;br&gt;This small C program shows what this looks like at the CUPS API level:
&lt;br&gt;&lt;br&gt;==&amp;gt;
&lt;br&gt;#include &amp;lt;stdio.h&amp;gt;
&lt;br&gt;#include &amp;lt;cups/ppd.h&amp;gt;
&lt;br&gt;&lt;br&gt;int main (int argc, char **argv)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; ppd_file_t *ppd = ppdOpenFile (argv[1]);
&lt;br&gt;&amp;nbsp; ppd_option_t *opt = ppdFindOption (ppd, &amp;quot;StpQuality&amp;quot;);
&lt;br&gt;&amp;nbsp; puts (ppd-&amp;gt;lang_encoding);
&lt;br&gt;&amp;nbsp; puts (opt-&amp;gt;text);
&lt;br&gt;&amp;nbsp; ppdClose (ppd);
&lt;br&gt;}
&lt;br&gt;&amp;lt;==
&lt;br&gt;&lt;br&gt;It looks like this (UTF-8 environment):
&lt;br&gt;&lt;br&gt;==&amp;gt;
&lt;br&gt;UTF-8
&lt;br&gt;QualitÃ© d'impression
&lt;br&gt;&amp;lt;==
&lt;br&gt;&lt;br&gt;This was originally reported here:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;https://bugs.launchpad.net/ubuntu/+source/gutenprint/+bug/303273&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://bugs.launchpad.net/ubuntu/+source/gutenprint/+bug/303273&lt;/a&gt;&lt;br&gt;&lt;br&gt;Tim.
&lt;br&gt;*/
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20818254&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://www.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://www.nabble.com/attachment/20818254/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-with-globalized-PPDs-tp20818254p20818254.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20753577</id>
	<title>ANNOUNCE: Gutenprint 5.2.2 driver packages on OpenPrinting</title>
	<published>2008-11-29T17:12:22Z</published>
	<updated>2008-11-29T17:12:22Z</updated>
	<author>
		<name>Till Kamppeter-3</name>
	</author>
	<content type="html">I have packaged the new Gutenprint release as distribution-independent
&lt;br&gt;LSB package now and uploaded it to OpenPrinting. The packages and
&lt;br&gt;instructions on how to install them you find on:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.openprinting.org/show_driver.cgi?driver=gutenprint&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openprinting.org/show_driver.cgi?driver=gutenprint&lt;/a&gt;&lt;br&gt;&lt;br&gt;The source RPM is here
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.openprinting.org/download/printdriver/SRPMS/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openprinting.org/download/printdriver/SRPMS/&lt;/a&gt;&lt;br&gt;&lt;br&gt;There are no source files for the Debian packages, as they are converted
&lt;br&gt;from the RPMs with alien.
&lt;br&gt;&lt;br&gt;The package can be installed without uninstalling the Gutenprint
&lt;br&gt;provided by the Linux distribution. Besides the update to the new
&lt;br&gt;release fixes were done to assure that queues with simplified PPDs will
&lt;br&gt;not be upgraded to expert PPDs when installing the package. The PPDs of
&lt;br&gt;all Gutenprint queues will be replaced by their counterparts of
&lt;br&gt;Gutenprint 5.2.2.
&lt;br&gt;&lt;br&gt;In printer setup tools choose the OpenPrinting driver by selecting the
&lt;br&gt;PPD/driver entry which mentions &amp;quot;OpenPrinting&amp;quot;.
&lt;br&gt;&lt;br&gt;Note that the package does not include the plug-in for the GIMP.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Till
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-announce mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20753577&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-announce@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-announce&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-announce&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-announce-f3927.html&quot; embed=&quot;fixTarget[3927]&quot; target=&quot;_top&quot; &gt;gimp-print-announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/ANNOUNCE%3A-Gutenprint-5.2.2-driver-packages-on-OpenPrinting-tp20753577p20753577.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20752159</id>
	<title>ANNOUNCE: Gutenprint 5.2.2 driver packages on OpenPrinting</title>
	<published>2008-11-29T14:24:25Z</published>
	<updated>2008-11-29T14:24:25Z</updated>
	<author>
		<name>Till Kamppeter-3</name>
	</author>
	<content type="html">I have packaged the new Gutenprint release as distribution-independent
&lt;br&gt;LSB package now and uploaded it to OpenPrinting. The packages and
&lt;br&gt;instructions on how to install them you find on:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.openprinting.org/show_driver.cgi?driver=gutenprint&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openprinting.org/show_driver.cgi?driver=gutenprint&lt;/a&gt;&lt;br&gt;&lt;br&gt;The source RPM is here
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.openprinting.org/download/printdriver/SRPMS/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.openprinting.org/download/printdriver/SRPMS/&lt;/a&gt;&lt;br&gt;&lt;br&gt;There are no source files for the Debian packages, as they are converted
&lt;br&gt;from the RPMs with alien.
&lt;br&gt;&lt;br&gt;The package can be installed without uninstalling the Gutenprint 
&lt;br&gt;provided by the Linux distribution. Besides the update to the new 
&lt;br&gt;release fixes were done to assure that queues with simplified PPDs will 
&lt;br&gt;not be upgraded to expert PPDs when installing the package. The PPDs of 
&lt;br&gt;all Gutenprint queues will be replaced by their counterparts of 
&lt;br&gt;Gutenprint 5.2.2.
&lt;br&gt;&lt;br&gt;In printer setup tools choose the OpenPrinting driver by selecting the 
&lt;br&gt;PPD/driver entry which mentions &amp;quot;OpenPrinting&amp;quot;.
&lt;br&gt;&lt;br&gt;Note that the package does not include the plug-in for the GIMP.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Till
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20752159&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/ANNOUNCE%3A-Gutenprint-5.2.2-driver-packages-on-OpenPrinting-tp20752159p20752159.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20727030</id>
	<title>Wolfgang Wadner has invited you to join Friendster</title>
	<published>2008-11-27T15:32:09Z</published>
	<updated>2008-11-27T15:32:09Z</updated>
	<author>
		<name>Wolfgang Wander-2</name>
	</author>
	<content type="html">&lt;html xmlns:dict=&quot;dict&quot;&gt;
  &lt;head&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;
    &lt;title&gt;Friendster Friend Alert&lt;/title&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;
  &lt;/head&gt;
  &lt;body background=&quot;http://images.friendster.com/images/homebg.gif&quot; marginheight=&quot;23&quot; marginwidth=&quot;48&quot;&gt;
    
    &lt;table cellpadding=&quot;1&quot; cellspacing=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;
      &lt;tr&gt;
        &lt;td bgcolor=&quot;#999999&quot;&gt;
          &lt;table width=&quot;600&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;&gt;
            &lt;tr&gt;
              &lt;td colspan=&quot;3&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/spacer.gif&quot; width=&quot;1&quot; height=&quot;10&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td width=&quot;10&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/spacer.gif&quot; width=&quot;10&quot; height=&quot;40&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
              &lt;td width=&quot;580&quot; bgcolor=&quot;#FFFFFF&quot; align=&quot;left&quot; valign=&quot;bottom&quot;&gt;
                &lt;table width=&quot;100%&quot;&gt;
                  &lt;tbody&gt;
                    &lt;tr&gt;
                      &lt;td width=&quot;130&quot;&gt;
                        &lt;a href=&quot;http://www.friendster.com/email_events/email_event_clicked.php?xmr=YicmgFGkpvXlPzpZy91CSdoMjMiHtbs3p6je117-Jp0*&amp;amp;next=%2Findex.php&quot; title=&quot;Friendster&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/logo-email-whitebg.gif&quot; alt=&quot;Friendster&quot; border=&quot;0&quot;&gt;&lt;/a&gt;
                      &lt;/td&gt;
                      &lt;td&gt;&lt;/td&gt;
                      &lt;td&gt;
                        &lt;font face=&quot;arial, sans-serif&quot; size=&quot;3&quot; color=&quot;#68A6BA&quot;&gt;
                          &lt;strong&gt;&lt;span style=&quot;padding-left: 10px;&quot;&gt;You're Invited&lt;/span&gt;&lt;/strong&gt;
                        &lt;/font&gt;
                      &lt;/td&gt;
                      &lt;td&gt;&lt;/td&gt;
                      &lt;td align=&quot;right&quot;&gt;&lt;/td&gt;
                    &lt;/tr&gt;
                  &lt;/tbody&gt;
                &lt;/table&gt;
              &lt;/td&gt;
              &lt;td width=&quot;10&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/spacer.gif&quot; width=&quot;10&quot; height=&quot;40&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;/td&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/full580ColDivider.gif&quot; width=&quot;580&quot; height=&quot;24&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;/td&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot; align=&quot;left&quot;&gt;
                &lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;&gt;
                  &lt;tr&gt;
                    &lt;td valign=&quot;top&quot;&gt;&lt;/td&gt;
                    &lt;td&gt;&lt;img src=&quot;http://images.friendster.com/images/fnl/spacer.gif&quot; width=&quot;15&quot;&gt;&lt;/td&gt;
                    &lt;td valign=&quot;top&quot;&gt;
                      &lt;font face=&quot;arial, sans-serif&quot; size=&quot;2&quot; color=&quot;#000000&quot;&gt;
                        &lt;font size=&quot;3&quot; color=&quot;#68A6BA&quot;&gt;You're invited to join Wolfgang Wadner's network of friends. &lt;/font&gt;
                        &lt;br&gt;&lt;img src=&quot;http://images.friendster.com/images/fnl/spacer.gif&quot; height=&quot;10&quot; alt=&quot;&quot;&gt;&lt;br&gt;
                        &lt;br&gt;By joining Friendster, you can reconnect with old
friends, meet new friends, start a blog, build a custom
profile, keep track of birthdays, and so
much more!&lt;br&gt;
                        &lt;br&gt;You can even stay in touch if you move away, switch
email addresses, or lose your mobile phone.&lt;br&gt;
                        &lt;br&gt;&lt;img src=&quot;http://images.friendster.com/images/fnl/spacer.gif&quot; height=&quot;10&quot; alt=&quot;&quot;&gt;&lt;br&gt;
                        &lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;&gt;
                          &lt;tr&gt;
                            &lt;td background=&quot;http://images.friendster.com/images/importer_button_left.gif&quot; valign=&quot;middle&quot; style=&quot;padding: 0 5px 0 9px; white-space: nowrap;&quot;&gt;
                              &lt;a href=&quot;http://www.friendster.com/email_events/email_event_clicked.php?xmr=YicmgFGkpvXlPzpZy91CSdoMjMiHtbs3p6je117-Jp0*&amp;amp;next=%2Fjoin.php%3Finviteref%3D90219795%26invite%3DT57jDZH7G0VXZA9EEVaNKuvLPo-eQpCqKFXzPLIhIiBYDlI9OTdfp_Sq8X76lNHr%26lang%3Den-US&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
                                &lt;font color=&quot;#000000&quot; size=&quot;2&quot;&gt;
                                  &lt;strong&gt;Join Wolfgang's Network&lt;/strong&gt;
                                &lt;/font&gt;
                              &lt;/a&gt;
                            &lt;/td&gt;
                            &lt;td&gt;&lt;img src=&quot;http://images.friendster.com/images/importer_button_right.gif&quot; alt=&quot;&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
                          &lt;/tr&gt;
                        &lt;/table&gt;
                      &lt;/font&gt;
                    &lt;/td&gt;
                  &lt;/tr&gt;
                  &lt;tr&gt;
                    &lt;td bgcolor=&quot;#FFFFFF&quot; colspan=&quot;3&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/full580ColDivider.gif&quot; width=&quot;580&quot; height=&quot;24&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
                  &lt;/tr&gt;
                  &lt;tr&gt;
                    &lt;td bgcolor=&quot;#FFFFFF&quot; colspan=&quot;3&quot;&gt;
                      &lt;font face=&quot;arial, sans-serif&quot; size=&quot;3&quot; color=&quot;#68A6BA&quot;&gt;
                        &lt;strong&gt;Friendster members you may know...&lt;/strong&gt;
                      &lt;/font&gt;
                    &lt;/td&gt;
                  &lt;/tr&gt;
                  &lt;tr&gt;
                    &lt;td bgcolor=&quot;#FFFFFF&quot; colspan=&quot;3&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/spacer.gif&quot; width=&quot;1&quot; height=&quot;10&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
                  &lt;/tr&gt;
                  &lt;tr&gt;
                    &lt;td bgcolor=&quot;#FFFFFF&quot; valign=&quot;top&quot; colspan=&quot;3&quot;&gt;
                      &lt;div style=&quot;float: left; width: 80px; height: 120px; margin: 0 17px 0 17px; text-align: center;&quot;&gt;
                        &lt;div style=&quot;border-width: 0 1px 1px 0; border-style: solid; border-color: #bcbcbc; padding: 5px;&quot;&gt;
                          &lt;div style=&quot;width: 70px; overflow: hidden;&quot;&gt;
                            &lt;a href=&quot;http://www.friendster.com/email_events/email_event_clicked.php?xmr=YicmgFGkpvXlPzpZy91CSdoMjMiHtbs3p6je117-Jp0*&amp;amp;next=%2Fjoin.php%3Finviteref%3D90219795%26invite%3DT57jDZH7G0VXZA9EEVaNKuvLPo-eQpCqKFXzPLIhIiBYDlI9OTdfp_Sq8X76lNHr%26lang%3Den-US&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://photos-p.friendster.com/photos/72/71/4351727/1_133453187m.jpg&quot; alt=&quot;Joel Bryan&quot; height=&quot;60&quot;&gt;&lt;/a&gt;
                          &lt;/div&gt;
                        &lt;/div&gt;
                        &lt;div&gt;
                          &lt;font face=&quot;arial, sans-serif&quot; size=&quot;2&quot; color=&quot;555555&quot;&gt;Joel Bryan&lt;/font&gt;
                        &lt;/div&gt;
                      &lt;/div&gt;
                      &lt;div style=&quot;float: left; width: 80px; height: 120px; margin: 0 17px 0 17px; text-align: center;&quot;&gt;
                        &lt;div style=&quot;border-width: 0 1px 1px 0; border-style: solid; border-color: #bcbcbc; padding: 5px;&quot;&gt;
                          &lt;div style=&quot;width: 70px; overflow: hidden;&quot;&gt;
                            &lt;a href=&quot;http://www.friendster.com/email_events/email_event_clicked.php?xmr=YicmgFGkpvXlPzpZy91CSdoMjMiHtbs3p6je117-Jp0*&amp;amp;next=%2Fjoin.php%3Finviteref%3D90219795%26invite%3DT57jDZH7G0VXZA9EEVaNKuvLPo-eQpCqKFXzPLIhIiBYDlI9OTdfp_Sq8X76lNHr%26lang%3Den-US&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/nophotom.jpg&quot; alt=&quot;Wolfgang&quot; height=&quot;60&quot;&gt;&lt;/a&gt;
                          &lt;/div&gt;
                        &lt;/div&gt;
                        &lt;div&gt;
                          &lt;font face=&quot;arial, sans-serif&quot; size=&quot;2&quot; color=&quot;555555&quot;&gt;Wolfgang&lt;/font&gt;
                        &lt;/div&gt;
                      &lt;/div&gt;
                    &lt;/td&gt;
                  &lt;/tr&gt;
                &lt;/table&gt;
              &lt;/td&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td colspan=&quot;3&quot; bgcolor=&quot;#FFFFFF&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/spacer.gif&quot; width=&quot;1&quot; height=&quot;10&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;/td&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/full580ColDivider.gif&quot; width=&quot;580&quot; height=&quot;24&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
              &lt;td bgcolor=&quot;#FFFFFF&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td colspan=&quot;3&quot; bgcolor=&quot;#F1F1F1&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/spacer.gif&quot; width=&quot;1&quot; height=&quot;10&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td bgcolor=&quot;#F1F1F1&quot;&gt;&lt;/td&gt;
              &lt;td bgcolor=&quot;#F1F1F1&quot; align=&quot;left&quot;&gt;&lt;/td&gt;
              &lt;td bgcolor=&quot;#F1F1F1&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td colspan=&quot;3&quot; bgcolor=&quot;#F1F1F1&quot;&gt;&lt;img src=&quot;http://images.friendster.com/images/spacer.gif&quot; width=&quot;1&quot; height=&quot;10&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
            &lt;/tr&gt;
          &lt;/table&gt;
        &lt;/td&gt;
      &lt;/tr&gt;
    &lt;/table&gt;
    &lt;table width=&quot;600&quot; cellpadding=&quot;15&quot; cellspacing=&quot;0&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;
      &lt;tr&gt;
        &lt;td align=&quot;center&quot;&gt;
          &lt;font face=&quot;arial, helvetica, sans-serif&quot; size=&quot;1&quot; color=&quot;#888888&quot;&gt;Copyright 2002-2008 Friendster, Inc. All rights reserved. U.S. Patent No. 7,069,308, 7,117,254 &amp;amp; 7,188,153&lt;br&gt;800 W. El Camino Real, Suite 170, Mountain View, CA 94040, USA&lt;br&gt;
            &lt;a href=&quot;http://www.friendster.com/email_events/email_event_clicked.php?xmr=YicmgFGkpvXlPzpZy91CSdoMjMiHtbs3p6je117-Jp0*&amp;amp;next=%2Finfo%2Fprivacy.php&quot; target=&quot;profile&quot; style=&quot;color:#68a6ba;&quot; rel=&quot;nofollow&quot;&gt;Privacy Policy&lt;/a&gt; | &lt;a href=&quot;http://www.friendster.com/blockemails.php?invite=Z2ltcC1wcmludC1kZXZlbEBsaXN0cy5zb3VyY2Vmb3JnZS5uZXQ*&quot; target=&quot;profile&quot; style=&quot;color:#68a6ba;&quot; rel=&quot;nofollow&quot;&gt;Unsubscribe&lt;/a&gt; | &lt;a href=&quot;http://www.friendster.com/email_events/email_event_clicked.php?xmr=YicmgFGkpvXlPzpZy91CSdoMjMiHtbs3p6je117-Jp0*&amp;amp;next=%2Finfo%2Ftos.php&quot; target=&quot;profile&quot; style=&quot;color:#68a6ba;&quot; rel=&quot;nofollow&quot;&gt;Terms of Service&lt;/a&gt;
          &lt;/font&gt;
        &lt;/td&gt;
      &lt;/tr&gt;
    &lt;/table&gt;&lt;img src=&quot;http://www.friendster.com/email_events/email_event_open.php?xmr=YicmgFGkpvXlPzpZy91CSdoMjMiHtbs3p6je117-Jp0*&quot;&gt;&lt;/body&gt;
&lt;/html&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20727030&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Wolfgang-Wadner-has-invited-you-to-join-Friendster-tp20727030p20727030.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20692083</id>
	<title>Re: Newbie Cross-compilation issues</title>
	<published>2008-11-25T15:47:50Z</published>
	<updated>2008-11-25T15:47:50Z</updated>
	<author>
		<name>Robert Krawitz-2</name>
	</author>
	<content type="html">-
&lt;br&gt;&lt;br&gt;&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Gimp-print-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20692083&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Gimp-print-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gimp-print-devel&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/gimp-print-devel-f3928.html&quot; embed=&quot;fixTarget[3928]&quot; target=&quot;_top&quot; &gt;gimp-print-devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Newbie-Cross-compilation-issues-tp20691840p20692083.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20691840</id>
	<title>Newbie Cross-compilation issues</title>
	<published>2008-11-25T14:51:16Z</published>
	<updated>2008-11-25T14:51:16Z</updated>
	<author>
		<name>Dan Lyke</name>
	</author>
	<content type="html">A whole bunch of disjoint issues here, perhaps someone can help me or
&lt;br&gt;point me to the right resources. I'm developing an ARM based device, and
&lt;br&gt;I'd like it to be able to print. I just downloaded the gutenprint 5.2.2
&lt;br&gt;tar.bz2.
&lt;br&gt;&lt;br&gt;First, I'm using Buildroot to manage my build process. Copied the stock
&lt;br&gt;&amp;quot;.mk&amp;quot; file over to config.mk, tweaked a few values, started my build,
&lt;br&gt;the build tries to use target ARM binaries to develop intermediate
&lt;br&gt;files. So I set up another build on the native x86 system, copied the
&lt;br&gt;intermediate binaries into my ARM build tree as necessary, and got
&lt;br&gt;thro