<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-1922</id>
	<title>Nabble - Gnuplot - Dev</title>
	<updated>2008-10-10T10:42:33Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Gnuplot---Dev-f1922.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Gnuplot---Dev-f1922.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-19922938</id>
	<title>Re: line color lacking on clipboard (wgnuplot)</title>
	<published>2008-10-10T10:42:33Z</published>
	<updated>2008-10-10T10:42:33Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Friday 10 October 2008 03:32:22 Shigeharu TAKENO wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; shige 10/10 2008
&lt;br&gt;&amp;gt; ----------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Ethan Merritt &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19922938&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;merritt@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; | A bit of Googling suggests that the problem may be because we switched from
&lt;br&gt;&amp;gt; | using CreatePenIndirect() to using ExtCreatePen(). &amp;nbsp;Apparently some versions
&lt;br&gt;&amp;gt; | of Windows have trouble with ExtCreatePen and the clipboard.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thank you for your information.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The following patch forces wgnuplot to use CreatePenIndirect() if
&lt;br&gt;&amp;gt; line_width==1. Certainly, the graph by &amp;quot;plot sin(x)&amp;quot; (made by 
&lt;br&gt;&amp;gt; CreatePenIndirect()) can be copied through the clipboard with no 
&lt;br&gt;&amp;gt; problem and the copying of the graph by &amp;quot;plot sin(x) lw 5&amp;quot;
&lt;br&gt;&amp;gt; (made by ExtCreatePen()) loses the color, at least on my PC 
&lt;br&gt;&amp;gt; (MS-Windows XP).
&lt;/div&gt;&lt;br&gt;OK. Applied to CVS for both 4.2 and 4.3
&lt;br&gt;&lt;br&gt;Does this mean that the clipboard still has a problem with 
&lt;br&gt;colored lines with linewidth &amp;gt; 1 ?
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ----- From here -----
&lt;br&gt;&amp;gt; --- src/win/wgraph.c.ORG	Thu Oct &amp;nbsp;9 08:23:00 2008
&lt;br&gt;&amp;gt; +++ src/win/wgraph.c	Fri Oct 10 19:12:10 2008
&lt;br&gt;&amp;gt; @@ -939,13 +939,23 @@
&lt;br&gt;&amp;gt; &amp;nbsp;		if (line_width != 1)
&lt;br&gt;&amp;gt; &amp;nbsp;		 &amp;nbsp; &amp;nbsp;cur_penstruct.lopnWidth.x *= line_width;
&lt;br&gt;&amp;gt; &amp;nbsp;	
&lt;br&gt;&amp;gt; -		/* use ExtCreatePeninstead of CreatePen/CreatePenIndirect to support
&lt;br&gt;&amp;gt; +		/* use ExtCreatePen instead of CreatePen/CreatePenIndirect to support
&lt;br&gt;&amp;gt; &amp;nbsp;		 * dashed lines if line_width &amp;gt; 1 */
&lt;br&gt;&amp;gt; &amp;nbsp;		lb.lbStyle = BS_SOLID;
&lt;br&gt;&amp;gt; &amp;nbsp;		lb.lbColor = cur_penstruct.lopnColor;
&lt;br&gt;&amp;gt; +/* shige */
&lt;br&gt;&amp;gt; +#if 0
&lt;br&gt;&amp;gt; &amp;nbsp;		lpgw-&amp;gt;hapen = ExtCreatePen(
&lt;br&gt;&amp;gt; &amp;nbsp;		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(line_width==1 ? PS_COSMETIC : PS_GEOMETRIC) | cur_penstruct.lopnStyle | PS_ENDCAP_FLAT | PS_JOIN_BEVEL, 
&lt;br&gt;&amp;gt; &amp;nbsp;			cur_penstruct.lopnWidth.x, &amp;lb, 0, 0);
&lt;br&gt;&amp;gt; +#else
&lt;br&gt;&amp;gt; +		if (line_width==1)
&lt;br&gt;&amp;gt; +		 &amp;nbsp;lpgw-&amp;gt;hapen = CreatePenIndirect((LOGPEN FAR *) &amp;cur_penstruct);
&lt;br&gt;&amp;gt; +		else
&lt;br&gt;&amp;gt; +		 &amp;nbsp;lpgw-&amp;gt;hapen = ExtCreatePen(
&lt;br&gt;&amp;gt; +		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PS_GEOMETRIC | cur_penstruct.lopnStyle | PS_ENDCAP_FLAT | PS_JOIN_BEVEL, 
&lt;br&gt;&amp;gt; +			cur_penstruct.lopnWidth.x, &amp;lb, 0, 0);
&lt;br&gt;&amp;gt; +#endif
&lt;br&gt;&amp;gt; &amp;nbsp;		DeleteObject(SelectObject(hdc, lpgw-&amp;gt;hapen));
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;		SelectObject(hdc, lpgw-&amp;gt;colorbrush[cur_pen]);
&lt;br&gt;&amp;gt; ----- To here -----
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; +========================================================+
&lt;br&gt;&amp;gt; &amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19922938&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&lt;br&gt;&amp;gt; +========================================================+
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&lt;br&gt;Biomolecular Structure Center
&lt;br&gt;University of Washington, Seattle 98195-7742
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19922938&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/line-color-lacking-on-clipboard-%28wgnuplot%29-tp19891335p19922938.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19915879</id>
	<title>Re: line color lacking on clipboard (wgnuplot)</title>
	<published>2008-10-10T03:32:22Z</published>
	<updated>2008-10-10T03:32:22Z</updated>
	<author>
		<name>Shigeharu TAKENO</name>
	</author>
	<content type="html">shige 10/10 2008
&lt;br&gt;----------------
&lt;br&gt;&lt;br&gt;Ethan Merritt &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19915879&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;merritt@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;| A bit of Googling suggests that the problem may be because we switched from
&lt;br&gt;| using CreatePenIndirect() to using ExtCreatePen(). &amp;nbsp;Apparently some versions
&lt;br&gt;| of Windows have trouble with ExtCreatePen and the clipboard.
&lt;br&gt;&lt;br&gt;Thank you for your information.
&lt;br&gt;&lt;br&gt;The following patch forces wgnuplot to use CreatePenIndirect() if
&lt;br&gt;line_width==1. Certainly, the graph by &amp;quot;plot sin(x)&amp;quot; (made by 
&lt;br&gt;CreatePenIndirect()) can be copied through the clipboard with no 
&lt;br&gt;problem and the copying of the graph by &amp;quot;plot sin(x) lw 5&amp;quot;
&lt;br&gt;(made by ExtCreatePen()) loses the color, at least on my PC 
&lt;br&gt;(MS-Windows XP).
&lt;br&gt;&lt;br&gt;----- From here -----
&lt;br&gt;--- src/win/wgraph.c.ORG	Thu Oct &amp;nbsp;9 08:23:00 2008
&lt;br&gt;+++ src/win/wgraph.c	Fri Oct 10 19:12:10 2008
&lt;br&gt;@@ -939,13 +939,23 @@
&lt;br&gt;&amp;nbsp;		if (line_width != 1)
&lt;br&gt;&amp;nbsp;		 &amp;nbsp; &amp;nbsp;cur_penstruct.lopnWidth.x *= line_width;
&lt;br&gt;&amp;nbsp;	
&lt;br&gt;-		/* use ExtCreatePeninstead of CreatePen/CreatePenIndirect to support
&lt;br&gt;+		/* use ExtCreatePen instead of CreatePen/CreatePenIndirect to support
&lt;br&gt;&amp;nbsp;		 * dashed lines if line_width &amp;gt; 1 */
&lt;br&gt;&amp;nbsp;		lb.lbStyle = BS_SOLID;
&lt;br&gt;&amp;nbsp;		lb.lbColor = cur_penstruct.lopnColor;
&lt;br&gt;+/* shige */
&lt;br&gt;+#if 0
&lt;br&gt;&amp;nbsp;		lpgw-&amp;gt;hapen = ExtCreatePen(
&lt;br&gt;&amp;nbsp;		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(line_width==1 ? PS_COSMETIC : PS_GEOMETRIC) | cur_penstruct.lopnStyle | PS_ENDCAP_FLAT | PS_JOIN_BEVEL, 
&lt;br&gt;&amp;nbsp;			cur_penstruct.lopnWidth.x, &amp;lb, 0, 0);
&lt;br&gt;+#else
&lt;br&gt;+		if (line_width==1)
&lt;br&gt;+		 &amp;nbsp;lpgw-&amp;gt;hapen = CreatePenIndirect((LOGPEN FAR *) &amp;cur_penstruct);
&lt;br&gt;+		else
&lt;br&gt;+		 &amp;nbsp;lpgw-&amp;gt;hapen = ExtCreatePen(
&lt;br&gt;+		 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PS_GEOMETRIC | cur_penstruct.lopnStyle | PS_ENDCAP_FLAT | PS_JOIN_BEVEL, 
&lt;br&gt;+			cur_penstruct.lopnWidth.x, &amp;lb, 0, 0);
&lt;br&gt;+#endif
&lt;br&gt;&amp;nbsp;		DeleteObject(SelectObject(hdc, lpgw-&amp;gt;hapen));
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;		SelectObject(hdc, lpgw-&amp;gt;colorbrush[cur_pen]);
&lt;br&gt;----- To here -----
&lt;br&gt;&lt;br&gt;+========================================================+
&lt;br&gt;&amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19915879&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19915879&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/line-color-lacking-on-clipboard-%28wgnuplot%29-tp19891335p19915879.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19906119</id>
	<title>Re: line color lacking on clipboard (wgnuplot)</title>
	<published>2008-10-09T12:52:18Z</published>
	<updated>2008-10-09T12:52:18Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Thursday 09 October 2008 10:58, Bastian Maerkisch wrote:
&lt;br&gt;&amp;gt; Treatment of line colors within the windows terminal is known to be buggy.
&lt;br&gt;&lt;br&gt;If I understand the report correctly, the problem is not with gnuplot's
&lt;br&gt;display of colors. It is instead reporting a problem with the Windows
&lt;br&gt;clipboard operation.
&lt;br&gt;&lt;br&gt;A bit of Googling suggests that the problem may be because we switched from
&lt;br&gt;using CreatePenIndirect() to using ExtCreatePen(). &amp;nbsp;Apparently some versions
&lt;br&gt;of Windows have trouble with ExtCreatePen and the clipboard.
&lt;br&gt;But I did not find a definitive statement or a recommended alternative.
&lt;br&gt;&lt;br&gt;&amp;gt; Currently, nobody is working actively on the windows terminal. I really 
&lt;br&gt;&amp;gt; would want to help, but due to my work load, I just cannot find enough time.
&lt;br&gt;&lt;br&gt;Understood. &amp;nbsp;But it would be useful to know if you can replicate
&lt;br&gt;the problem on your Windows machine, and whether switching that
&lt;br&gt;one call back to CreatePenIndirect() fixes it. &amp;nbsp;(I realize that would
&lt;br&gt;re-introduce other problems, but at least we'd confirm what the issue is).
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ethan
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Bastian
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Shigeharu TAKENO schrieb:
&lt;br&gt;&amp;gt; &amp;gt; shige 10/09 2008
&lt;br&gt;&amp;gt; &amp;gt; ----------------
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; On Japanese gnuplot BBS, the following problem was reported:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;Line colors of wgnuplot's graph (ex. `test` command) may lack on
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;another application which recieve it through the clipboard. This
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;problem arises in wgnuplot-4.2.4 but not 4.2.3.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; It seems to be arise from src/win/wgraph.c rev.1.58. In fact, 
&lt;br&gt;&amp;gt; &amp;gt; wgnuplot with wgraph.c of rev.1.57 has no such problem. But I do
&lt;br&gt;&amp;gt; &amp;gt; not know which code has the problem and how to fix it.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; +========================================================+
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19906119&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&lt;br&gt;&amp;gt; &amp;gt; +========================================================+
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;/div&gt;-- 
&lt;br&gt;Ethan A Merritt
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19906119&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/line-color-lacking-on-clipboard-%28wgnuplot%29-tp19891335p19906119.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19904716</id>
	<title>Re: line color lacking on clipboard (wgnuplot)</title>
	<published>2008-10-09T10:58:05Z</published>
	<updated>2008-10-09T10:58:05Z</updated>
	<author>
		<name>Bastian Maerkisch</name>
	</author>
	<content type="html">Treatment of line colors within the windows terminal is known to be buggy.
&lt;br&gt;Currently, nobody is working actively on the windows terminal. I really 
&lt;br&gt;would want to help, but due to my work load, I just cannot find enough time.
&lt;br&gt;&lt;br&gt;Bastian
&lt;br&gt;&lt;br&gt;&lt;br&gt;Shigeharu TAKENO schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; shige 10/09 2008
&lt;br&gt;&amp;gt; ----------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Japanese gnuplot BBS, the following problem was reported:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;Line colors of wgnuplot's graph (ex. `test` command) may lack on
&lt;br&gt;&amp;gt; &amp;nbsp;another application which recieve it through the clipboard. This
&lt;br&gt;&amp;gt; &amp;nbsp;problem arises in wgnuplot-4.2.4 but not 4.2.3.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It seems to be arise from src/win/wgraph.c rev.1.58. In fact, 
&lt;br&gt;&amp;gt; wgnuplot with wgraph.c of rev.1.57 has no such problem. But I do
&lt;br&gt;&amp;gt; not know which code has the problem and how to fix it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; +========================================================+
&lt;br&gt;&amp;gt; &amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19904716&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&lt;br&gt;&amp;gt; +========================================================+
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&amp;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;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; gnuplot-beta mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19904716&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Bastian Märkisch
&lt;br&gt;Physikalisches Institut, Universität Heidelberg
&lt;br&gt;Philosophenweg 12
&lt;br&gt;69120 Heidelberg
&lt;br&gt;Tel.: +49-6221-549239
&lt;br&gt;Fax: +49-6221-549343
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19904716&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/line-color-lacking-on-clipboard-%28wgnuplot%29-tp19891335p19904716.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19891335</id>
	<title>line color lacking on clipboard (wgnuplot)</title>
	<published>2008-10-08T19:35:08Z</published>
	<updated>2008-10-08T19:35:08Z</updated>
	<author>
		<name>Shigeharu TAKENO</name>
	</author>
	<content type="html">shige 10/09 2008
&lt;br&gt;----------------
&lt;br&gt;&lt;br&gt;On Japanese gnuplot BBS, the following problem was reported:
&lt;br&gt;&lt;br&gt;&amp;nbsp;Line colors of wgnuplot's graph (ex. `test` command) may lack on
&lt;br&gt;&amp;nbsp;another application which recieve it through the clipboard. This
&lt;br&gt;&amp;nbsp;problem arises in wgnuplot-4.2.4 but not 4.2.3.
&lt;br&gt;&lt;br&gt;It seems to be arise from src/win/wgraph.c rev.1.58. In fact, 
&lt;br&gt;wgnuplot with wgraph.c of rev.1.57 has no such problem. But I do
&lt;br&gt;not know which code has the problem and how to fix it.
&lt;br&gt;&lt;br&gt;+========================================================+
&lt;br&gt;&amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19891335&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19891335&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/line-color-lacking-on-clipboard-%28wgnuplot%29-tp19891335p19891335.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19751645</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-30T14:37:39Z</published>
	<updated>2008-09-30T14:37:39Z</updated>
	<author>
		<name>Hans-Bernhard Bröker-2</name>
	</author>
	<content type="html">Philipp K. Janert wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; And should the gnuplot newsgroup be shuttered down?
&lt;br&gt;&lt;br&gt;It's not up to us to decide about the fate of the newsgroup. &amp;nbsp;We 
&lt;br&gt;couldn't shut it down even if we wanted to.
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19751645&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19751645.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19748926</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-30T12:35:52Z</published>
	<updated>2008-09-30T12:35:52Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Monday 29 September 2008 18:21:57 Philipp K. Janert wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; All of this brings me back to my original question:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	Should there be only a single user-discussion
&lt;br&gt;&amp;gt; 	forum (in addition to the devel list), and should
&lt;br&gt;&amp;gt; 	this forum be the sourceforge mailiing list
&lt;br&gt;&amp;gt; 	&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19748926&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-info@...&lt;/a&gt;? And should
&lt;br&gt;&amp;gt; 	the gnuplot newsgroup be shuttered down?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It strikes me as a good idea. Having two forums is
&lt;br&gt;&amp;gt; confusing and unnecessary. And a mailing list seems
&lt;br&gt;&amp;gt; to be more accepted these days than usenet.
&lt;/div&gt;&lt;br&gt;My observation is that the newsgroup continues to be more active
&lt;br&gt;than all of the mailing lists taken together.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Monday 29 September 2008 12:47, you wrote:
&lt;br&gt;&amp;gt; &amp;gt; Philipp K. Janert wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I learned recently that one can subscribe to usenet groups
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; via Google Groups, so that one gets usenet postings via
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; email. I have used Google's web interface to post.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; So have a lot of others. &amp;nbsp;Which only contributes to Google's &amp;quot;success&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; as the single biggest source of USENET's problems these days.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Google groups sucks badly as a posting interface. &amp;nbsp;It's the only system
&lt;br&gt;&amp;gt; &amp;gt; that ever managed to create even more broken postings than Outlook.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Gmail accounts have become today's source #1 for USENET spam.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Reaping Google's adword payouts on Google's own blogspot pages has
&lt;br&gt;&amp;gt; &amp;gt; become a major motive for USENET spam.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; And last but not least, groups.google.com has so completely clouded the
&lt;br&gt;&amp;gt; &amp;gt; distinction between actual USENET and their own, Google-only discussion
&lt;br&gt;&amp;gt; &amp;gt; groups that many people no longer know the difference.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; That being said, I find it confusing to have a gnuplot
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; users mailing list (&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19748926&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-info@...&lt;/a&gt;)
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; AND a users newsgroup (comp.graphics.apps.gnuplot).
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; They used to be bidirectionally gatewayed to each other. &amp;nbsp;This died
&lt;br&gt;&amp;gt; &amp;gt; years ago, when we lost support by Dartmouth.edu. &amp;nbsp;Sourceforge.net
&lt;br&gt;&amp;gt; &amp;gt; doesn't offer a USENET gateway.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&amp;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;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; gnuplot-beta mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19748926&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&lt;br&gt;Biomolecular Structure Center
&lt;br&gt;University of Washington, Seattle 98195-7742
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19748926&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19748926.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19734633</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-29T18:21:57Z</published>
	<updated>2008-09-29T18:21:57Z</updated>
	<author>
		<name>Philipp K. Janert</name>
	</author>
	<content type="html">&lt;br&gt;All of this brings me back to my original question:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Should there be only a single user-discussion
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; forum (in addition to the devel list), and should
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this forum be the sourceforge mailiing list
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19734633&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-info@...&lt;/a&gt;? And should
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; the gnuplot newsgroup be shuttered down?
&lt;br&gt;&lt;br&gt;It strikes me as a good idea. Having two forums is
&lt;br&gt;confusing and unnecessary. And a mailing list seems
&lt;br&gt;to be more accepted these days than usenet.
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ph.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Monday 29 September 2008 12:47, you wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Philipp K. Janert wrote:
&lt;br&gt;&amp;gt; &amp;gt; I learned recently that one can subscribe to usenet groups
&lt;br&gt;&amp;gt; &amp;gt; via Google Groups, so that one gets usenet postings via
&lt;br&gt;&amp;gt; &amp;gt; email. I have used Google's web interface to post.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So have a lot of others. &amp;nbsp;Which only contributes to Google's &amp;quot;success&amp;quot;
&lt;br&gt;&amp;gt; as the single biggest source of USENET's problems these days.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Google groups sucks badly as a posting interface. &amp;nbsp;It's the only system
&lt;br&gt;&amp;gt; that ever managed to create even more broken postings than Outlook.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Gmail accounts have become today's source #1 for USENET spam.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Reaping Google's adword payouts on Google's own blogspot pages has
&lt;br&gt;&amp;gt; become a major motive for USENET spam.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And last but not least, groups.google.com has so completely clouded the
&lt;br&gt;&amp;gt; distinction between actual USENET and their own, Google-only discussion
&lt;br&gt;&amp;gt; groups that many people no longer know the difference.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; That being said, I find it confusing to have a gnuplot
&lt;br&gt;&amp;gt; &amp;gt; users mailing list (&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19734633&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-info@...&lt;/a&gt;)
&lt;br&gt;&amp;gt; &amp;gt; AND a users newsgroup (comp.graphics.apps.gnuplot).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; They used to be bidirectionally gatewayed to each other. &amp;nbsp;This died
&lt;br&gt;&amp;gt; years ago, when we lost support by Dartmouth.edu. &amp;nbsp;Sourceforge.net
&lt;br&gt;&amp;gt; doesn't offer a USENET gateway.
&lt;/div&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19734633&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19734633.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19816020</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-29T12:47:20Z</published>
	<updated>2008-09-29T12:47:20Z</updated>
	<author>
		<name>Hans-Bernhard Bröker-2</name>
	</author>
	<content type="html">Philipp K. Janert wrote:
&lt;br&gt;&amp;gt; I learned recently that one can subscribe to usenet groups 
&lt;br&gt;&amp;gt; via Google Groups, so that one gets usenet postings via 
&lt;br&gt;&amp;gt; email. I have used Google's web interface to post.
&lt;br&gt;&lt;br&gt;So have a lot of others. &amp;nbsp;Which only contributes to Google's &amp;quot;success&amp;quot; 
&lt;br&gt;as the single biggest source of USENET's problems these days.
&lt;br&gt;&lt;br&gt;Google groups sucks badly as a posting interface. &amp;nbsp;It's the only system 
&lt;br&gt;that ever managed to create even more broken postings than Outlook.
&lt;br&gt;&lt;br&gt;Gmail accounts have become today's source #1 for USENET spam.
&lt;br&gt;&lt;br&gt;Reaping Google's adword payouts on Google's own blogspot pages has 
&lt;br&gt;become a major motive for USENET spam.
&lt;br&gt;&lt;br&gt;And last but not least, groups.google.com has so completely clouded the 
&lt;br&gt;distinction between actual USENET and their own, Google-only discussion 
&lt;br&gt;groups that many people no longer know the difference.
&lt;br&gt;&lt;br&gt;&amp;gt; That being said, I find it confusing to have a gnuplot
&lt;br&gt;&amp;gt; users mailing list (&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19816020&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-info@...&lt;/a&gt;)
&lt;br&gt;&amp;gt; AND a users newsgroup (comp.graphics.apps.gnuplot).
&lt;br&gt;&lt;br&gt;They used to be bidirectionally gatewayed to each other. &amp;nbsp;This died 
&lt;br&gt;years ago, when we lost support by Dartmouth.edu. &amp;nbsp;Sourceforge.net 
&lt;br&gt;doesn't offer a USENET gateway.
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19816020&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19816020.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19698498</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-26T17:20:06Z</published>
	<updated>2008-09-26T17:20:06Z</updated>
	<author>
		<name>Philipp K. Janert</name>
	</author>
	<content type="html">&lt;br&gt;I learned recently that one can subscribe to usenet groups 
&lt;br&gt;via Google Groups, so that one gets usenet postings via 
&lt;br&gt;email. I have used Google's web interface to post.
&lt;br&gt;&lt;br&gt;I find this a convenient way to keep tab on the (very few)
&lt;br&gt;newsgroups I am interested in (including &amp;nbsp;
&lt;br&gt;comp.graphics.apps.gnuplot group).
&lt;br&gt;&lt;br&gt;That being said, I find it confusing to have a gnuplot
&lt;br&gt;users mailing list (&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19698498&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-info@...&lt;/a&gt;)
&lt;br&gt;AND a users newsgroup (comp.graphics.apps.gnuplot).
&lt;br&gt;I have also been trapped by confusing the two. It would
&lt;br&gt;make sense to settle on only one of the two forms of
&lt;br&gt;communication (and visibly shutter the other one down).
&lt;br&gt;&lt;br&gt;I would also like to point out that this page:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.gnuplot.info/help.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.gnuplot.info/help.html&lt;/a&gt;&lt;br&gt;states that the newsgroup is the same as the mailing
&lt;br&gt;list, which is NOT TRUE. Once we have clarity on the
&lt;br&gt;strategy going forward, we should update the website
&lt;br&gt;accordingly.
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ph.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tuesday 23 September 2008 16:41, Ethan Merritt wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Tuesday 23 September 2008 08:53:27 don taber wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; So unless I find an alternative quickly, I will disappear from
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; comp.graphics.apps.gnuplot
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I have had good luck with the free nntp server at
&lt;br&gt;&amp;gt; &amp;gt; news.motzarella.org. &amp;nbsp;You need to register (free)
&lt;br&gt;&amp;gt; &amp;gt; and be issued a password. &amp;nbsp;They have c.g.a.p
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for the pointer!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Yeah, that seems to work OK except that I can't persuade it
&lt;br&gt;&amp;gt; to accept an encrypted connection. &amp;nbsp;Not a big deal.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	Ethan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's
&lt;br&gt;&amp;gt; challenge Build the coolest Linux based applications with Moblin SDK &amp; win
&lt;br&gt;&amp;gt; great prizes Grand prize is a trip for two to an Open Source event anywhere
&lt;br&gt;&amp;gt; in the world &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;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; gnuplot-beta mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19698498&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;/div&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19698498&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19698498.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19677471</id>
	<title>Re: Anything that would hold up a 4.2.4 release?</title>
	<published>2008-09-25T13:16:53Z</published>
	<updated>2008-09-25T13:16:53Z</updated>
	<author>
		<name>Ben Abbott</name>
	</author>
	<content type="html">&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Petr Mikulik wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;&amp;gt; I'm thinking to release 4.2.4 (Patchlevel 4) this week.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I realize that there are still issues on the windows terminal
&lt;br&gt;&amp;gt; with &amp;quot;rgb variable&amp;quot; or &amp;quot;palette z&amp;quot;, but the current state is at
&lt;br&gt;&amp;gt; least better than 4.2.3. 
&lt;br&gt;&lt;br&gt;The &amp;quot;polyline bug&amp;quot; seems to be fixed.
&lt;br&gt;&lt;br&gt;&amp;gt; Does anyone know of other outstanding bugs or problems that 
&lt;br&gt;&amp;gt; would argue for delaying a 4.2.4 release? &amp;nbsp;
&lt;br&gt;&lt;br&gt;I vote for release.
&lt;br&gt;---
&lt;br&gt;PM
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Might the patch for interpolation of pm3d surface colors be included?
&lt;br&gt;&lt;br&gt;Ben</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Anything-that-would-hold-up-a-4.2.4-release--tp19599892p19677471.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19639286</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-23T16:41:23Z</published>
	<updated>2008-09-23T16:41:23Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Tuesday 23 September 2008 08:53:27 don taber wrote:
&lt;br&gt;&amp;gt; &amp;gt; So unless I find an alternative quickly, I will disappear from
&lt;br&gt;&amp;gt; &amp;gt; comp.graphics.apps.gnuplot
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have had good luck with the free nntp server at
&lt;br&gt;&amp;gt; news.motzarella.org. &amp;nbsp;You need to register (free)
&lt;br&gt;&amp;gt; and be issued a password. &amp;nbsp;They have c.g.a.p
&lt;br&gt;&lt;br&gt;Thanks for the pointer!
&lt;br&gt;&lt;br&gt;Yeah, that seems to work OK except that I can't persuade it
&lt;br&gt;to accept an encrypted connection. &amp;nbsp;Not a big deal.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ethan
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19639286&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19639286.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19631405</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-23T08:53:27Z</published>
	<updated>2008-09-23T08:53:27Z</updated>
	<author>
		<name>Don Taber</name>
	</author>
	<content type="html">&amp;gt; So unless I find an alternative quickly, I will disappear from
&lt;br&gt;&amp;gt; comp.graphics.apps.gnuplot
&lt;br&gt;&lt;br&gt;I have had good luck with the free nntp server at
&lt;br&gt;news.motzarella.org. &amp;nbsp;You need to register (free)
&lt;br&gt;and be issued a password. &amp;nbsp;They have c.g.a.p
&lt;br&gt;&lt;br&gt;Don Taber
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19631405&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19631405.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19623579</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-23T01:28:48Z</published>
	<updated>2008-09-23T01:28:48Z</updated>
	<author>
		<name>Tait</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; I know that the death of usenet has been predicted many times,
&lt;br&gt;&amp;gt; but at least in my corner of the world it seems to be actually
&lt;br&gt;&amp;gt; happening.
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; Any ideas how we might move forward to a new user support mechanism?
&lt;br&gt;&lt;br&gt;&lt;br&gt;All of my usenet feeds have also died within the last year or two, so
&lt;br&gt;I tend to agree. (I also agree all the web usenet interfaces I've seen
&lt;br&gt;are lacking.) Usenet requires large amounts of disk space and bandwidth
&lt;br&gt;(depending on how well-connected one is), and news daemons are terribly
&lt;br&gt;finicky and prone to instability. For the two remaining users (out of
&lt;br&gt;several thousand active) taking advantage of the service, it just wasn't
&lt;br&gt;worth the upkeep.
&lt;br&gt;&lt;br&gt;For asynchronous user support, I like the idea of mailing lists. It is
&lt;br&gt;nice, however, to have a more immediate (synchronous) support mechanism
&lt;br&gt;available, for which I'd recommend IRC. IRC seems to work reasonably
&lt;br&gt;well for a number of other open-source projects. I hung out on #gnuplot
&lt;br&gt;on freenode today, and there are a few people in the channel, but not
&lt;br&gt;so much as a join or part in several hours. To the extent support is
&lt;br&gt;available there, our users apparently don't know it.
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19623579&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19623579.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19621714</id>
	<title>4.2.4 release tarball now on SourceForge</title>
	<published>2008-09-22T21:54:43Z</published>
	<updated>2008-09-22T21:54:43Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">I've tagged 4.2.4 in CVS for release, and uploaded 
&lt;br&gt;source tarball, pdf, and release notes to SourceForge.
&lt;br&gt;&lt;br&gt;They've changed the procedure; it's easier now.
&lt;br&gt;&lt;br&gt;I'll give it a day or so to propagate to the mirrors
&lt;br&gt;before announcing it on the newsgroup.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19621714&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sfeam@...&lt;/a&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19621714&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/4.2.4-release-tarball-now-on-SourceForge-tp19621714p19621714.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19618240</id>
	<title>Re: Death of usenet</title>
	<published>2008-09-22T15:56:10Z</published>
	<updated>2008-09-22T15:56:10Z</updated>
	<author>
		<name>Hans-Bernhard Bröker-2</name>
	</author>
	<content type="html">Ethan Merritt wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; The &amp;quot;Help forum&amp;quot; on the gnuplot SourceForge site has historically
&lt;br&gt;&amp;gt; been drowing in spam, and seems to be broken completely today.
&lt;br&gt;&lt;br&gt;Works fine here. &amp;nbsp;And I haven't seen Spam on it in quite a while now.
&lt;br&gt;&lt;br&gt;The real problem is that it's incredibly inefficient. &amp;nbsp;It's virtually 
&lt;br&gt;impossible to conduct a useful discussion with such unusable quoting and 
&lt;br&gt;without any filtering mechanisms.
&lt;br&gt;&lt;br&gt;&amp;gt; Here's the error I see when trying to access it from the main site:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; An error occurred while loading &lt;a href=&quot;http://sourceforge.net/forum/forum.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/forum/forum.php&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; Connection to host sourceforge.net is broken. 
&lt;br&gt;&lt;br&gt;This happens from time to time. It usually clears by just reloading the 
&lt;br&gt;page.
&lt;br&gt;&lt;br&gt;&amp;gt; Any ideas how we might move forward to a new user support mechanism?
&lt;br&gt;&lt;br&gt;Maybe USENET isn't quite as dead as it looks from your current 
&lt;br&gt;point-of-view. &amp;nbsp;I see no indication of it being terminated by either 
&lt;br&gt;ISPs or Universities around here.
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19618240&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19618240.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19616792</id>
	<title>Death of usenet</title>
	<published>2008-09-22T14:17:56Z</published>
	<updated>2008-09-22T14:17:56Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">I know that the death of usenet has been predicted many times,
&lt;br&gt;but at least in my corner of the world it seems to be actually 
&lt;br&gt;happening.
&lt;br&gt;&lt;br&gt;My University dropped its usenet feed at the end of the Summer;
&lt;br&gt;my ISP (Comcast) is dropping it as of this week.
&lt;br&gt;&lt;br&gt;While it may be possible for me to find a pay-for-service newsfeed
&lt;br&gt;elsewhere, expecting our user community to pay for access to
&lt;br&gt;support requests seems unreasonable. &amp;nbsp; I realize that delayed 
&lt;br&gt;access through Google and Gmane may well continue, but I can't
&lt;br&gt;be the only one who finds that mechanism painfully slow.
&lt;br&gt;&lt;br&gt;So unless I find an alternative quickly, I will disappear from
&lt;br&gt;comp.graphics.apps.gnuplot
&lt;br&gt;&lt;br&gt;The &amp;quot;Help forum&amp;quot; on the gnuplot SourceForge site has historically
&lt;br&gt;been drowing in spam, and seems to be broken completely today.
&lt;br&gt;Here's the error I see when trying to access it from the main site:
&lt;br&gt;&lt;br&gt;&amp;nbsp; An error occurred while loading &lt;a href=&quot;http://sourceforge.net/forum/forum.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/forum/forum.php&lt;/a&gt;&lt;br&gt;&amp;nbsp; Connection to host sourceforge.net is broken. 
&lt;br&gt;&lt;br&gt;Any ideas how we might move forward to a new user support mechanism?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19616792&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Death-of-usenet-tp19616792p19616792.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19615921</id>
	<title>Re: Anything that would hold up a 4.2.4 release?</title>
	<published>2008-09-22T13:29:33Z</published>
	<updated>2008-09-22T13:29:33Z</updated>
	<author>
		<name>Petr Mikulik</name>
	</author>
	<content type="html">&amp;gt; I'm thinking to release 4.2.4 (Patchlevel 4) this week.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I realize that there are still issues on the windows terminal
&lt;br&gt;&amp;gt; with &amp;quot;rgb variable&amp;quot; or &amp;quot;palette z&amp;quot;, but the current state is at
&lt;br&gt;&amp;gt; least better than 4.2.3. 
&lt;br&gt;&lt;br&gt;The &amp;quot;polyline bug&amp;quot; seems to be fixed.
&lt;br&gt;&lt;br&gt;&amp;gt; Does anyone know of other outstanding bugs or problems that 
&lt;br&gt;&amp;gt; would argue for delaying a 4.2.4 release? &amp;nbsp;
&lt;br&gt;&lt;br&gt;I vote for release.
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;PM
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19615921&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Anything-that-would-hold-up-a-4.2.4-release--tp19599892p19615921.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19615943</id>
	<title>Re: Limit number of axis ticks?</title>
	<published>2008-09-22T13:14:13Z</published>
	<updated>2008-09-22T13:14:13Z</updated>
	<author>
		<name>Petr Mikulik</name>
	</author>
	<content type="html">&amp;gt; Bug #2117370 in essence complains that if you foolishly set too
&lt;br&gt;&amp;gt; small an axis tick increment, the number of ticks generated will
&lt;br&gt;&amp;gt; overwhelm your system. In the case provided, the program was
&lt;br&gt;&amp;gt; trying to generated &amp;gt; 10^9 labelled tick marks.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Can anyone see a problem with sanity-checking the values of
&lt;br&gt;&amp;gt; start, end, and increment in the &amp;quot;set {xyz}tic&amp;quot; command, and
&lt;br&gt;&amp;gt; refusing to draw more ticks than the resolution of the axis?
&lt;br&gt;&lt;br&gt;I like this solution - I've been touched by the &amp;quot;gnuplot deadlock&amp;quot; due to 
&lt;br&gt;too many tics several times.
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;PM
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19615943&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Limit-number-of-axis-ticks--tp19559108p19615943.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19599892</id>
	<title>Anything that would hold up a 4.2.4 release?</title>
	<published>2008-09-21T15:49:19Z</published>
	<updated>2008-09-21T15:49:19Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">I'm thinking to release 4.2.4 (Patchlevel 4) this week.
&lt;br&gt;&lt;br&gt;I realize that there are still issues on the windows terminal
&lt;br&gt;with &amp;quot;rgb variable&amp;quot; or &amp;quot;palette z&amp;quot;, but the current state is at
&lt;br&gt;least better than 4.2.3. 
&lt;br&gt;&lt;br&gt;Does anyone know of other outstanding bugs or problems that 
&lt;br&gt;would argue for delaying a 4.2.4 release? &amp;nbsp;
&lt;br&gt;&lt;br&gt;Top section of the NEWS file:
&lt;br&gt;&lt;br&gt;New features, changes and fixes in gnuplot version 4.2.4
&lt;br&gt;===========================================================
&lt;br&gt;* NEW add support for enhanced text mode in the emf terminal driver
&lt;br&gt;* NEW built-in functions 'strftime' and 'strptime'
&lt;br&gt;* NEW set absolute plot margins in screen coordinates
&lt;br&gt;* NEW &amp;quot;nocontours&amp;quot; keyword for splot
&lt;br&gt;* NEW &amp;quot;undefine foo&amp;quot; clears previously defined user variable foo
&lt;br&gt;* NEW allow contouring of pm3d surfaces
&lt;br&gt;* NEW allow color by z value (&amp;quot;palette z&amp;quot;) in 2D plots
&lt;br&gt;* NEW &amp;quot;pause mouse close&amp;quot; waits until the plot window is closed
&lt;br&gt;* FIX Do not re-quantize time tics interval explicitly set by user
&lt;br&gt;* FIX (gd post) don't segfault on very long font names
&lt;br&gt;* FIX allow variable color from input file for &amp;quot;with boxes&amp;quot;, &amp;quot;with vectors&amp;quot;
&lt;br&gt;* FIX don't run off the end of &amp;quot;set format&amp;quot; commands
&lt;br&gt;* FIX Fix discontinuity in piecewise approximation of inverse error function
&lt;br&gt;* FIX discard out of range vectors in the bitmap terminals (pbm, epson, etc)
&lt;br&gt;* FIX 2nd colour in the colour box for negative palette in postscript
&lt;br&gt;* FIX insure palette is initialized before any objects are drawn
&lt;br&gt;* FIX wxt terminal was not obeying &amp;quot;set palette maxcolors&amp;quot;
&lt;br&gt;* FIX Histograms did not correctly honor 'set style user increment'
&lt;br&gt;* FIX Avoid segfault if tic labels are requested from a non-existent data column
&lt;br&gt;* FIX emf terminal - allow fractional linewidth (fixes 0-length dash problem)
&lt;br&gt;* FIX post terminal - fix parsing error for palfuncparam
&lt;br&gt;* FIX post terminal - escape {} chars in enhanced text mode
&lt;br&gt;* FIX clip &amp;quot;splot with labels&amp;quot; against plot boundaries in 2D mode
&lt;br&gt;* CHANGE try harder to autotitle columns in using specs with expressions
&lt;br&gt;* CHANGE gd.trm: use dynamically-allocated TTF font names
&lt;br&gt;* CHANGE x11: more finely sampled color palette for PM3D
&lt;br&gt;* CHANGE cgm: switch to using web_color_rgbs; approximate RGB colors
&lt;br&gt;* CHANGE fig: more point types, 4.2-style font and size syntax for &amp;quot;set term&amp;quot;
&lt;br&gt;* CHANGE emf: separate dashlength option (don't use linewidth for dashlength)
&lt;br&gt;* CHANGE stacked histograms grow upward for values &amp;gt; 0, downward for values &amp;lt; 0
&lt;br&gt;* CHANGE 'pause mouse button1' (or button2) does not disable zooming
&lt;br&gt;* CHANGE built-in readline tries to recognize &amp;lt;home&amp;gt; and &amp;lt;end&amp;gt; keys
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19599892&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Anything-that-would-hold-up-a-4.2.4-release--tp19599892p19599892.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19559108</id>
	<title>Limit number of axis ticks?</title>
	<published>2008-09-18T11:30:38Z</published>
	<updated>2008-09-18T11:30:38Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">Bug #2117370 in essence complains that if you foolishly set too
&lt;br&gt;small an axis tick increment, the number of ticks generated will
&lt;br&gt;overwhelm your system. In the case provided, the program was
&lt;br&gt;trying to generated &amp;gt; 10^9 labelled tick marks.
&lt;br&gt;&lt;br&gt;Can anyone see a problem with sanity-checking the values of
&lt;br&gt;start, end, and increment in the &amp;quot;set {xyz}tic&amp;quot; command, and
&lt;br&gt;refusing to draw more ticks than the resolution of the axis?
&lt;br&gt;&lt;br&gt;First cut at patch:
&lt;br&gt;&lt;br&gt;diff -ur gnuplot/src/axis.c gnuplot-cvs/src/axis.c
&lt;br&gt;--- gnuplot/src/axis.c &amp;nbsp;2008-09-03 11:48:50.000000000 -0700
&lt;br&gt;+++ gnuplot-cvs/src/axis.c &amp;nbsp; &amp;nbsp; &amp;nbsp;2008-09-18 11:13:18.000000000 -0700
&lt;br&gt;@@ -1053,6 +1053,11 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* just quietly ignore them ! */
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* }}} */
&lt;br&gt;&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; if ( (end-start)/step &amp;gt; term-&amp;gt;xmax) {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; int_warn(NO_CARET,&amp;quot;Too many axis ticks (&amp;gt;%.0g)&amp;quot;, (end-start)/step);
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;+
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* FIXME HBB 20010121: keeping adding 'step' to 'tic' is
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;* begging for rounding errors to strike us. */
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* HBB 20010410: ... and strike they did :-( */
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&lt;br&gt;Biomolecular Structure Center
&lt;br&gt;University of Washington, Seattle 98195-7742
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19559108&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Limit-number-of-axis-ticks--tp19559108p19559108.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19528872</id>
	<title>Re: timelevel setting</title>
	<published>2008-09-17T03:02:32Z</published>
	<updated>2008-09-17T03:02:32Z</updated>
	<author>
		<name>Shigeharu TAKENO</name>
	</author>
	<content type="html">shige 09/17 2008
&lt;br&gt;----------------
&lt;br&gt;&lt;br&gt;I wrote:
&lt;br&gt;| While we can not do it for 30 days interval simply, we can do the
&lt;br&gt;| other days (ex. 10, 15, 20, 25 days) without such trick. I think 
&lt;br&gt;| the simple way is to enable to modify the automatic timelevel 
&lt;br&gt;| setting.
&lt;br&gt;&lt;br&gt;For example, the following patch enable us to control timelevel by
&lt;br&gt;set xdata:
&lt;br&gt;&lt;br&gt;&amp;nbsp;set xdata time tmlevel day &amp;nbsp; # timelevel[x-axis] = TIMELEVEL_DAYS 
&lt;br&gt;&amp;nbsp;set ydata time tmlevel week &amp;nbsp;# timelevel[y-axis] = TIMELEVEL_WEEKS
&lt;br&gt;&amp;nbsp;set xdata time tmlevel none &amp;nbsp;# not use timelevel[x-axis]
&lt;br&gt;&amp;nbsp;set xdata time tmlevel auto &amp;nbsp;# timelevel[x-axis] = automatic setting
&lt;br&gt;&amp;nbsp;set xdata time &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # the same as above
&lt;br&gt;&lt;br&gt;But, I do not know whether this is appropriate or not.
&lt;br&gt;&lt;br&gt;----- From here -----
&lt;br&gt;diff -u src/axis.h.ORG src/axis.h
&lt;br&gt;--- src/axis.h.ORG	Wed Sep 10 12:20:05 2008
&lt;br&gt;+++ src/axis.h	Wed Sep 17 18:21:07 2008
&lt;br&gt;@@ -688,4 +688,17 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;|| 1 == (plot)-&amp;gt;lp_properties.use_palette)
&lt;br&gt;&amp;nbsp;int set_cbminmax __PROTO((void));
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+/* shige: moved from axis.c */
&lt;br&gt;+#ifdef USE_CTRL_TIMELEVEL
&lt;br&gt;+typedef enum e_timelevel {
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;TIMELEVEL_SECONDS = 1, TIMELEVEL_MINUTES, TIMELEVEL_HOURS,
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;TIMELEVEL_DAYS, TIMELEVEL_WEEKS, TIMELEVEL_MONTHS,
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;TIMELEVEL_YEARS
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;,
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;/* shige: add two */
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;TIMELEVEL_NONE = -1, /* unuse timelevel */
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;TIMELEVEL_AUTO = 0 /* use auto setting */
&lt;br&gt;+} t_timelevel;
&lt;br&gt;+#endif
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;#endif /* GNUPLOT_AXIS_H */
&lt;br&gt;diff -u src/axis.c.ORG src/axis.c
&lt;br&gt;--- src/axis.c.ORG	Wed Sep 10 12:20:05 2008
&lt;br&gt;+++ src/axis.c	Wed Sep 17 18:45:39 2008
&lt;br&gt;@@ -83,12 +83,17 @@
&lt;br&gt;&amp;nbsp; * self-explanatory */
&lt;br&gt;&amp;nbsp;/* The unit the tics of a given time/date axis are to interpreted in */
&lt;br&gt;&amp;nbsp;/* HBB 20040318: start at one, to avoid undershoot */
&lt;br&gt;+/* shige: move to axis.h */
&lt;br&gt;+#ifndef USE_CTRL_TIMELEVEL
&lt;br&gt;&amp;nbsp;typedef enum e_timelevel {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;TIMELEVEL_SECONDS = 1, TIMELEVEL_MINUTES, TIMELEVEL_HOURS,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;TIMELEVEL_DAYS, TIMELEVEL_WEEKS, TIMELEVEL_MONTHS,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;TIMELEVEL_YEARS
&lt;br&gt;&amp;nbsp;} t_timelevel;
&lt;br&gt;&amp;nbsp;static t_timelevel timelevel[AXIS_ARRAY_SIZE];
&lt;br&gt;+#else
&lt;br&gt;+t_timelevel timelevel[AXIS_ARRAY_SIZE];
&lt;br&gt;+#endif
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;/* The &amp;lt;increment&amp;gt; given in a 'set {x|y|...}tics', or an automatically
&lt;br&gt;&amp;nbsp; * generated one, if automatic tic placement is active */
&lt;br&gt;@@ -670,6 +675,10 @@
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;int guide12 = guide * 3 / 5; /* --&amp;gt; 12 for default of 20 */
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+/* shige */
&lt;br&gt;+#ifdef USE_CTRL_TIMELEVEL
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if(timelevel[axis] != TIMELEVEL_AUTO) return tic;
&lt;br&gt;+#endif
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_SECONDS;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (tic &amp;gt; 5) {
&lt;br&gt;&amp;nbsp;	/* turn tic into units of minutes */
&lt;br&gt;@@ -794,7 +803,13 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * leading to strange misbehaviours of minor tics on time axes.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; * We used to call quantize_time_tics, but that also caused strangeness.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; */
&lt;br&gt;+/* shige */
&lt;br&gt;+#ifdef USE_CTRL_TIMELEVEL
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if (this-&amp;gt;is_timedata &amp;&amp; ticdef-&amp;gt;type == TIC_SERIES 
&lt;br&gt;+	&amp;&amp; timelevel[axis] == TIMELEVEL_AUTO) {
&lt;br&gt;+#else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (this-&amp;gt;is_timedata &amp;&amp; ticdef-&amp;gt;type == TIC_SERIES) {
&lt;br&gt;+#endif
&lt;br&gt;&amp;nbsp;	if &amp;nbsp; &amp;nbsp; &amp;nbsp;(tic &amp;gt;= 365*24*60*60.) timelevel[axis] = TIMELEVEL_YEARS;
&lt;br&gt;&amp;nbsp;	else if (tic &amp;gt;= &amp;nbsp;28*24*60*60.) timelevel[axis] = TIMELEVEL_MONTHS;
&lt;br&gt;&amp;nbsp;	else if (tic &amp;gt;= &amp;nbsp; 7*24*60*60.) timelevel[axis] = TIMELEVEL_WEEKS;
&lt;br&gt;@@ -1165,7 +1180,12 @@
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;struct tm tm;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+/* shige */
&lt;br&gt;+#ifdef USE_CTRL_TIMELEVEL
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if (level == TIMELEVEL_NONE || level &amp;lt;= TIMELEVEL_SECONDS) {
&lt;br&gt;+#else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if (level &amp;lt;= TIMELEVEL_SECONDS) {
&lt;br&gt;+#endif
&lt;br&gt;&amp;nbsp;	return (ticplace);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;ggmtime(&amp;tm, ticplace);
&lt;br&gt;diff -u src/set.c.ORG src/set.c
&lt;br&gt;--- src/set.c.ORG	Wed Sep 10 12:20:08 2008
&lt;br&gt;+++ src/set.c	Wed Sep 17 18:45:51 2008
&lt;br&gt;@@ -4372,6 +4372,41 @@
&lt;br&gt;&amp;nbsp;static void
&lt;br&gt;&amp;nbsp;set_timedata(AXIS_INDEX axis)
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;+/* shige */
&lt;br&gt;+#ifdef USE_CTRL_TIMELEVEL
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;extern t_timelevel timelevel[];
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;axis_array[axis].is_timedata = FALSE;
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;c_token++;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;while (!END_OF_COMMAND) {
&lt;br&gt;+	if (almost_equals(c_token,&amp;quot;t$ime&amp;quot;)) {
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;axis_array[axis].is_timedata = TRUE;
&lt;br&gt;+	} else if (equals(c_token,&amp;quot;tmlevel&amp;quot;)) {
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;c_token++;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;if (almost_equals(c_token,&amp;quot;a$uto&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_AUTO;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else if (almost_equals(c_token,&amp;quot;s$econd&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_SECONDS;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else if (almost_equals(c_token,&amp;quot;mi$nute&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_MINUTES;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else if (almost_equals(c_token,&amp;quot;h$our&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_HOURS;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else if (almost_equals(c_token,&amp;quot;d$ay&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_DAYS;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else if (almost_equals(c_token,&amp;quot;w$eek&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_WEEKS;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else if (almost_equals(c_token,&amp;quot;mo$nth&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_MONTHS;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else if (almost_equals(c_token,&amp;quot;year&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_YEARS;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else if (almost_equals(c_token,&amp;quot;no$ne&amp;quot;)) 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_NONE;
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp;else 
&lt;br&gt;+	 &amp;nbsp; &amp;nbsp; &amp;nbsp;timelevel[axis] = TIMELEVEL_AUTO;
&lt;br&gt;+	}
&lt;br&gt;+	c_token++;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;}
&lt;br&gt;+#else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;c_token++;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;if(END_OF_COMMAND) {
&lt;br&gt;&amp;nbsp;	axis_array[axis].is_timedata = FALSE;
&lt;br&gt;@@ -4379,6 +4414,7 @@
&lt;br&gt;&amp;nbsp;	if ((axis_array[axis].is_timedata = almost_equals(c_token,&amp;quot;t$ime&amp;quot;)))
&lt;br&gt;&amp;nbsp;	 &amp;nbsp; &amp;nbsp;c_token++;
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;+#endif
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;----- To here -----
&lt;br&gt;&lt;br&gt;+========================================================+
&lt;br&gt;&amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19528872&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19528872&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/timelevel-setting-tp19468928p19528872.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19510378</id>
	<title>Re: timelevel setting</title>
	<published>2008-09-16T05:05:00Z</published>
	<updated>2008-09-16T05:05:00Z</updated>
	<author>
		<name>Shigeharu TAKENO</name>
	</author>
	<content type="html">shige 09/16 2008
&lt;br&gt;----------------
&lt;br&gt;&lt;br&gt;Ethan Merritt &amp;nbsp;wrote: 
&lt;br&gt;| &amp;gt; Perhaps you can accomplish what you want by using some combination
&lt;br&gt;| &amp;gt; of strptime() strftime() and the new iteration function for xtics
&lt;br&gt;| &amp;gt; inspired by your earlier suggestion?
&lt;br&gt;| 
&lt;br&gt;| This approach seems to work, although it conflicts with the setting
&lt;br&gt;| &amp;quot;set xdata time&amp;quot;. &amp;nbsp;Here is my test case:
&lt;br&gt;| 
&lt;br&gt;| TFORMAT = &amp;quot;%d-%m-%Y&amp;quot;
&lt;br&gt;| START &amp;nbsp; = strptime(TFORMAT,&amp;quot;01-01-2001&amp;quot;)
&lt;br&gt;| &amp;nbsp; END &amp;nbsp; = strptime(TFORMAT,&amp;quot;01-01-2003&amp;quot;)
&lt;br&gt;| DAYS30 &amp;nbsp;= 30*24*60*60
&lt;br&gt;| 
&lt;br&gt;| unset xdata time
&lt;br&gt;| set xrange [START:END]
&lt;br&gt;| 
&lt;br&gt;| set for [date=START:END:DAYS30] xtics (strftime(TFORMAT,date) date)
&lt;br&gt;| 
&lt;br&gt;| set xtics rotate by -90
&lt;br&gt;| plot x
&lt;br&gt;&lt;br&gt;Yes.
&lt;br&gt;&lt;br&gt;While we can not do it for 30 days interval simply, we can do the
&lt;br&gt;other days (ex. 10, 15, 20, 25 days) without such trick. I think 
&lt;br&gt;the simple way is to enable to modify the automatic timelevel 
&lt;br&gt;setting.
&lt;br&gt;&lt;br&gt;| The remaining problem is that the command &amp;quot;set xdata time&amp;quot; is applied
&lt;br&gt;| to both input and output. &amp;nbsp;In order to use the above approach to control
&lt;br&gt;| output, you must do &amp;quot;unset xdata time&amp;quot;. &amp;nbsp;But then you must also
&lt;br&gt;| explicitly process the input data, rather than using the built-in
&lt;br&gt;| gnuplot timedata system. &amp;nbsp;So far as I know that work fine, but it
&lt;br&gt;| is an extra requirement.
&lt;br&gt;| 
&lt;br&gt;| I asked on the newsgroup a few weeks ago if anyone was aware of missing
&lt;br&gt;| features that would get in the way of doing the all time processing
&lt;br&gt;| explicitly using strptime() and strftime(). &amp;nbsp;Hans-Bernhard pointed out
&lt;br&gt;| that it would be difficult to do the quantization of tick increments if you
&lt;br&gt;| did this, which is true. &amp;nbsp;It is interesting that you are now offering a
&lt;br&gt;| case where quantization of tick increments is exactly what you are trying
&lt;br&gt;| to avoid. &amp;nbsp;So it seems that the built-in and explicit time format
&lt;br&gt;| handling paths may both be needed.
&lt;br&gt;| 
&lt;br&gt;| Nevertheless we may want to provide some way of *not* applying
&lt;br&gt;| the &amp;quot;xdata time&amp;quot; flag to labeling the ticks. &amp;nbsp;Suggestions?
&lt;br&gt;&lt;br&gt;I think that to enable to modify the timelevel is easier than to 
&lt;br&gt;consider what you say. In the way to handle the timelevel, we may
&lt;br&gt;continue to use the timedata processing system.
&lt;br&gt;&lt;br&gt;+========================================================+
&lt;br&gt;&amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19510378&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19510378&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/timelevel-setting-tp19468928p19510378.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19501475</id>
	<title>Re: timelevel setting</title>
	<published>2008-09-15T14:24:34Z</published>
	<updated>2008-09-15T14:24:34Z</updated>
	<author>
		<name>plotter</name>
	</author>
	<content type="html">On Mon, 15 Sep 2008 23:13:34 +0200, Ethan Merritt &amp;nbsp;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19501475&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;merritt@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nevertheless we may want to provide some way of *not* applying
&lt;br&gt;&amp;gt; the &amp;quot;xdata time&amp;quot; flag to labeling the ticks. &amp;nbsp;Suggestions?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;it would seem that there is a need to differenciate input data and plotted &amp;nbsp;
&lt;br&gt;axes.
&lt;br&gt;&lt;br&gt;since the variable xdata in essence applies to the data , ie what is read &amp;nbsp;
&lt;br&gt;in, it would seem best to provide a new variable (perhaps called xaxis) &amp;nbsp;
&lt;br&gt;that can be different from xdata. If xaxis is not set then gnuplot would &amp;nbsp;
&lt;br&gt;fall through to the old behaviour of xdata=xaxis and thus backwards compat &amp;nbsp;
&lt;br&gt;is assured.
&lt;br&gt;&lt;br&gt;regards, Peter.
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19501475&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/timelevel-setting-tp19468928p19501475.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19501270</id>
	<title>Re: timelevel setting</title>
	<published>2008-09-15T14:13:34Z</published>
	<updated>2008-09-15T14:13:34Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Monday 15 September 2008 09:46:13 Ethan Merritt wrote:
&lt;br&gt;&amp;gt; On Sunday 14 September 2008 23:46:02 Shigeharu TAKENO wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt; To obtain &amp;quot;30 days&amp;quot; interval tics (not &amp;quot;1 month&amp;quot; interval), 
&lt;br&gt;&amp;gt; &amp;gt; I think we must specify the interval as 30*24*60*60 (30 days) 
&lt;br&gt;&amp;gt; &amp;gt; and use the timelevel value TIMELEVEL_DAYS, but the patch forces
&lt;br&gt;&amp;gt; &amp;gt; to use TIMELEVEL_MONTHS for &amp;quot;30 days&amp;quot; interval. So, we can not 
&lt;br&gt;&amp;gt; &amp;gt; obtain &amp;quot;30 days&amp;quot; interval tics even if CVS version.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You are right. &amp;nbsp;There is a problem.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Perhaps you can accomplish what you want by using some combination
&lt;br&gt;&amp;gt; of strptime() strftime() and the new iteration function for xtics
&lt;br&gt;&amp;gt; inspired by your earlier suggestion?
&lt;/div&gt;&lt;br&gt;This approach seems to work, although it conflicts with the setting
&lt;br&gt;&amp;quot;set xdata time&amp;quot;. &amp;nbsp;Here is my test case:
&lt;br&gt;&lt;br&gt;TFORMAT = &amp;quot;%d-%m-%Y&amp;quot;
&lt;br&gt;START &amp;nbsp; = strptime(TFORMAT,&amp;quot;01-01-2001&amp;quot;)
&lt;br&gt;&amp;nbsp; END &amp;nbsp; = strptime(TFORMAT,&amp;quot;01-01-2003&amp;quot;)
&lt;br&gt;DAYS30 &amp;nbsp;= 30*24*60*60
&lt;br&gt;&lt;br&gt;unset xdata time
&lt;br&gt;set xrange [START:END]
&lt;br&gt;&lt;br&gt;set for [date=START:END:DAYS30] xtics (strftime(TFORMAT,date) date)
&lt;br&gt;&lt;br&gt;set xtics rotate by -90
&lt;br&gt;plot x
&lt;br&gt;&lt;br&gt;&lt;br&gt;The remaining problem is that the command &amp;quot;set xdata time&amp;quot; is applied
&lt;br&gt;to both input and output. &amp;nbsp;In order to use the above approach to control
&lt;br&gt;output, you must do &amp;quot;unset xdata time&amp;quot;. &amp;nbsp;But then you must also
&lt;br&gt;explicitly process the input data, rather than using the built-in
&lt;br&gt;gnuplot timedata system. &amp;nbsp;So far as I know that work fine, but it
&lt;br&gt;is an extra requirement.
&lt;br&gt;&lt;br&gt;I asked on the newsgroup a few weeks ago if anyone was aware of missing
&lt;br&gt;features that would get in the way of doing the all time processing
&lt;br&gt;explicitly using strptime() and strftime(). &amp;nbsp;Hans-Bernhard pointed out
&lt;br&gt;that it would be difficult to do the quantization of tick increments if you
&lt;br&gt;did this, which is true. &amp;nbsp;It is interesting that you are now offering a
&lt;br&gt;case where quantization of tick increments is exactly what you are trying
&lt;br&gt;to avoid. &amp;nbsp;So it seems that the built-in and explicit time format
&lt;br&gt;handling paths may both be needed.
&lt;br&gt;&lt;br&gt;Nevertheless we may want to provide some way of *not* applying
&lt;br&gt;the &amp;quot;xdata time&amp;quot; flag to labeling the ticks. &amp;nbsp;Suggestions?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19501270&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/timelevel-setting-tp19468928p19501270.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19496804</id>
	<title>Re: timelevel setting</title>
	<published>2008-09-15T09:46:13Z</published>
	<updated>2008-09-15T09:46:13Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Sunday 14 September 2008 23:46:02 Shigeharu TAKENO wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; shige 09/15 2008
&lt;br&gt;&amp;gt; ----------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Ethan A Merritt wrote:
&lt;br&gt;&amp;gt; | I think that is no longer true.
&lt;br&gt;&amp;gt; | See this note in the ChangeLogs for both 4.2 and 4.3:
&lt;br&gt;&amp;gt; | 
&lt;br&gt;&amp;gt; | 2008-05-08 &amp;nbsp;Thomas Sefzick &amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19496804&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thse@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * src/axis.c (setup_tics): &amp;nbsp;If the user specified an explicit
&lt;br&gt;&amp;gt; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tic interval on a timefmt axis, do not change this by calling
&lt;br&gt;&amp;gt; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; quantize_time_tics().
&lt;br&gt;&amp;gt; | &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Bug #1908019
&lt;br&gt;&amp;gt; | 
&lt;br&gt;&amp;gt; | This change has been in the CVS version for 6 months, and will be
&lt;br&gt;&amp;gt; | included in the upcoming 4.2.4 release
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I think this patch seems to decide timelevel value from the 
&lt;br&gt;&amp;gt; interval automatically, so it may not do what I want.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; To obtain &amp;quot;30 days&amp;quot; interval tics (not &amp;quot;1 month&amp;quot; interval), 
&lt;br&gt;&amp;gt; I think we must specify the interval as 30*24*60*60 (30 days) 
&lt;br&gt;&amp;gt; and use the timelevel value TIMELEVEL_DAYS, but the patch forces
&lt;br&gt;&amp;gt; to use TIMELEVEL_MONTHS for &amp;quot;30 days&amp;quot; interval. So, we can not 
&lt;br&gt;&amp;gt; obtain &amp;quot;30 days&amp;quot; interval tics even if CVS version.
&lt;/div&gt;&lt;br&gt;You are right. &amp;nbsp;There is a problem.
&lt;br&gt;&lt;br&gt;Perhaps you can accomplish what you want by using some combination
&lt;br&gt;of strptime() strftime() and the new iteration function for xtics
&lt;br&gt;inspired by your earlier suggestion?
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19496804&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/timelevel-setting-tp19468928p19496804.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19489984</id>
	<title>gnuplot 4.3 (cvs) cygwin binaries prepared by gcc-4.x.x is updated</title>
	<published>2008-09-15T02:48:46Z</published>
	<updated>2008-09-15T02:48:46Z</updated>
	<author>
		<name>Tatsuro MATSUOKA-5</name>
	</author>
	<content type="html">Hello
&lt;br&gt;&lt;br&gt;gnuplot 4.3 (cvs) cygwin binaries prepared by gcc-4.x.x is updated.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.tatsuromatsuoka.com/gnuplot/Eng/cygbin/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.tatsuromatsuoka.com/gnuplot/Eng/cygbin/&lt;/a&gt;&lt;br&gt;&lt;br&gt;I added a distribution style of which is almost the same as that placed at
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://gnuplot.info/development/binaries/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnuplot.info/development/binaries/&lt;/a&gt;&lt;br&gt;&amp;nbsp; The filename of this distribution is 'gp43-winbinX11.zip'.
&lt;br&gt;For install of this package, please read 00READMEgpTeam and 00README_TM in the zip file.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;&lt;br&gt;Tatsuro
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------------------------------
&lt;br&gt;Enjoy MLB with MAJOR.JP! Ichiro, Matsuzaka, Matsui, and more!
&lt;br&gt;&lt;a href=&quot;http://pr.mail.yahoo.co.jp/mlb/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pr.mail.yahoo.co.jp/mlb/&lt;/a&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19489984&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/gnuplot-4.3-%28cvs%29-cygwin-binaries-prepared-by-gcc-4.x.x-tp19367148p19489984.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19487907</id>
	<title>Re: timelevel setting</title>
	<published>2008-09-14T23:46:02Z</published>
	<updated>2008-09-14T23:46:02Z</updated>
	<author>
		<name>Shigeharu TAKENO</name>
	</author>
	<content type="html">shige 09/15 2008
&lt;br&gt;----------------
&lt;br&gt;&lt;br&gt;Ethan A Merritt wrote:
&lt;br&gt;| I think that is no longer true.
&lt;br&gt;| See this note in the ChangeLogs for both 4.2 and 4.3:
&lt;br&gt;| 
&lt;br&gt;| 2008-05-08 &amp;nbsp;Thomas Sefzick &amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19487907&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thse@...&lt;/a&gt;&amp;gt;
&lt;br&gt;| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * src/axis.c (setup_tics): &amp;nbsp;If the user specified an explicit
&lt;br&gt;| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tic interval on a timefmt axis, do not change this by calling
&lt;br&gt;| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; quantize_time_tics().
&lt;br&gt;| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Bug #1908019
&lt;br&gt;| 
&lt;br&gt;| This change has been in the CVS version for 6 months, and will be
&lt;br&gt;| included in the upcoming 4.2.4 release
&lt;br&gt;&lt;br&gt;I think this patch seems to decide timelevel value from the 
&lt;br&gt;interval automatically, so it may not do what I want.
&lt;br&gt;&lt;br&gt;To obtain &amp;quot;30 days&amp;quot; interval tics (not &amp;quot;1 month&amp;quot; interval), 
&lt;br&gt;I think we must specify the interval as 30*24*60*60 (30 days) 
&lt;br&gt;and use the timelevel value TIMELEVEL_DAYS, but the patch forces
&lt;br&gt;to use TIMELEVEL_MONTHS for &amp;quot;30 days&amp;quot; interval. So, we can not 
&lt;br&gt;obtain &amp;quot;30 days&amp;quot; interval tics even if CVS version.
&lt;br&gt;&lt;br&gt;+========================================================+
&lt;br&gt;&amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19487907&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19487907&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/timelevel-setting-tp19468928p19487907.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19485893</id>
	<title>[OT] &quot;Gnuplot in Action&quot; Book - Free Content available</title>
	<published>2008-09-14T17:47:20Z</published>
	<updated>2008-09-14T17:47:20Z</updated>
	<author>
		<name>Philipp K. Janert</name>
	</author>
	<content type="html">&lt;br&gt;If you are interested in Gnuplot, you might be interested 
&lt;br&gt;in my upcoming book:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;Gnuplot in Action&amp;quot;
&lt;br&gt;(To be published, Jan 2009, Manning Publications.)
&lt;br&gt;&lt;br&gt;The manuscript is now complete, and an excerpt from
&lt;br&gt;the first chapter, introducing Gnuplot and its use for
&lt;br&gt;Graphical Analysis, is available for free as &amp;quot;Green Paper&amp;quot;
&lt;br&gt;from the publisher's site:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; www.manning.com/janert
&lt;br&gt;&lt;br&gt;This is also the LAST opportunity to make comments
&lt;br&gt;or give suggestions and feedback on the manuscript
&lt;br&gt;before it goes into print. You can email me (the author)
&lt;br&gt;directly, or post comments on the publishers &amp;quot;Forum&amp;quot;
&lt;br&gt;page.
&lt;br&gt;&lt;br&gt;The book is available for pre-order from the publisher's
&lt;br&gt;site, and of course at Amazon (as well as other sellers):
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; www.amazon.com/dp/1933988398
&lt;br&gt;&lt;br&gt;Feel free to forward this information as appropriate.
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ph.
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19485893&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-OT--%22Gnuplot-in-Action%22-Book---Free-Content-available-tp19485893p19485893.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19472444</id>
	<title>Re: timelevel setting</title>
	<published>2008-09-13T09:49:15Z</published>
	<updated>2008-09-13T09:49:15Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Saturday 13 September 2008, Shigeharu TAKENO wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; shige 09/13 2008
&lt;br&gt;&amp;gt; ----------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have one proposal for timelevel but don't have a patch now.
&lt;br&gt;&amp;gt; Gnuplot uses 'timelevel' for Time/date data. For example,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;set xdata time
&lt;br&gt;&amp;gt; &amp;nbsp;set timefmt &amp;quot;%Y %m %d&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp;set format x &amp;quot;%y/%m/%d&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp;set xtics &amp;quot;2008 01 01&amp;quot;, 60*60*24*30 &amp;nbsp;# 30 days interval
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; makes tics
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp;2008/01/01, 2008/02/01, 2008/03/01, ...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; which have &amp;quot;1 month&amp;quot; intervals, not &amp;quot;30 days&amp;quot;. This seems to be 
&lt;br&gt;&amp;gt; done by the timelevel value for the axis. Usually &amp;quot;1 month&amp;quot; 
&lt;br&gt;&amp;gt; intervals may be more useful than &amp;quot;30 days&amp;quot; ones.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; However, since the timelevel is always decided automatically
&lt;br&gt;&amp;gt; (in quantize_time_tics() or setup_tics() ?) from the interval
&lt;br&gt;&amp;gt; value, we can not make tics having &amp;quot;30 days&amp;quot; intervals easily 
&lt;br&gt;&amp;gt; (we can do it only by the manual tics setting (&amp;quot;2008 01 01&amp;quot;, 
&lt;br&gt;&amp;gt; &amp;quot;2008 01 31&amp;quot;, &amp;quot;2008 03 01&amp;quot;, ...)). 
&lt;/div&gt;&lt;br&gt;I think that is no longer true.
&lt;br&gt;See this note in the ChangeLogs for both 4.2 and 4.3:
&lt;br&gt;&lt;br&gt;2008-05-08 &amp;nbsp;Thomas Sefzick &amp;nbsp;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19472444&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thse@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * src/axis.c (setup_tics): &amp;nbsp;If the user specified an explicit
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tic interval on a timefmt axis, do not change this by calling
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; quantize_time_tics().
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Bug #1908019
&lt;br&gt;&lt;br&gt;This change has been in the CVS version for 6 months, and will be
&lt;br&gt;included in the upcoming 4.2.4 release
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ethan
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&lt;br&gt;Biomolecular Structure Center
&lt;br&gt;University of Washington, Seattle 98195-7742
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19472444&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/timelevel-setting-tp19468928p19472444.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19468928</id>
	<title>timelevel setting</title>
	<published>2008-09-13T02:30:10Z</published>
	<updated>2008-09-13T02:30:10Z</updated>
	<author>
		<name>Shigeharu TAKENO</name>
	</author>
	<content type="html">shige 09/13 2008
&lt;br&gt;----------------
&lt;br&gt;&lt;br&gt;I have one proposal for timelevel but don't have a patch now.
&lt;br&gt;Gnuplot uses 'timelevel' for Time/date data. For example,
&lt;br&gt;&lt;br&gt;&amp;nbsp;set xdata time
&lt;br&gt;&amp;nbsp;set timefmt &amp;quot;%Y %m %d&amp;quot;
&lt;br&gt;&amp;nbsp;set format x &amp;quot;%y/%m/%d&amp;quot;
&lt;br&gt;&amp;nbsp;set xtics &amp;quot;2008 01 01&amp;quot;, 60*60*24*30 &amp;nbsp;# 30 days interval
&lt;br&gt;&lt;br&gt;makes tics
&lt;br&gt;&lt;br&gt;&amp;nbsp;2008/01/01, 2008/02/01, 2008/03/01, ...
&lt;br&gt;&lt;br&gt;which have &amp;quot;1 month&amp;quot; intervals, not &amp;quot;30 days&amp;quot;. This seems to be 
&lt;br&gt;done by the timelevel value for the axis. Usually &amp;quot;1 month&amp;quot; 
&lt;br&gt;intervals may be more useful than &amp;quot;30 days&amp;quot; ones.
&lt;br&gt;&lt;br&gt;However, since the timelevel is always decided automatically
&lt;br&gt;(in quantize_time_tics() or setup_tics() ?) from the interval
&lt;br&gt;value, we can not make tics having &amp;quot;30 days&amp;quot; intervals easily 
&lt;br&gt;(we can do it only by the manual tics setting (&amp;quot;2008 01 01&amp;quot;, 
&lt;br&gt;&amp;quot;2008 01 31&amp;quot;, &amp;quot;2008 03 01&amp;quot;, ...)). 
&lt;br&gt;&lt;br&gt;If gnuplot allows us to control the timelevel value, for example
&lt;br&gt;by an option of xtics, we may use more flexible tics for 
&lt;br&gt;Time/Date data. 
&lt;br&gt;&lt;br&gt;+========================================================+
&lt;br&gt;&amp;nbsp;Shigeharu TAKENO &amp;nbsp; &amp;nbsp; NIigata Institute of Technology
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kashiwazaki,Niigata 945-1195 JAPAN
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19468928&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;shige@...&lt;/a&gt; &amp;nbsp; TEL(&amp;FAX): +81-257-22-8161
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19468928&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/timelevel-setting-tp19468928p19468928.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19417813</id>
	<title>Re: Some misprints and problems</title>
	<published>2008-09-10T09:37:07Z</published>
	<updated>2008-09-10T09:37:07Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Wednesday 10 September 2008, Timothée Lecomte wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Ethan A Merritt a écrit :
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; uint32_t is defined in the C99 standard, but not for C++.
&lt;br&gt;&amp;gt; &amp;gt; The u_int32_t type is used by BSD and is defined in various compatibility
&lt;br&gt;&amp;gt; &amp;gt; headers. &amp;nbsp;But neither of these is guaranteed to be on all platforms.
&lt;br&gt;&amp;gt; &amp;gt; We explicitly try not to depend on C99 compliance, and
&lt;br&gt;&amp;gt; &amp;gt; also I do not think we can depend on GLib being present. 
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; My point was that cairo-based terminals do already depend on GLib, so 
&lt;br&gt;&amp;gt; for them we can directly use this library.
&lt;/div&gt;&lt;br&gt;OK. I fully agree with that.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Besides, I've been using the same kind of byte-wise and 32-bits 
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; manipulation with a simple &amp;quot;unsigned int&amp;quot; in 
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; gp_cairo.c:gp_cairo_draw_image(), where &amp;quot;unsigned int&amp;quot; is implicitly 32 
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; bits. 
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I think that is not safe.
&lt;br&gt;&amp;gt; &amp;gt; Has the code been tested on native 64-bit machines?
&lt;br&gt;&amp;gt; &amp;gt; That is, machines where sizeof(int)==8 ?
&lt;br&gt;&amp;gt; &amp;gt; I don't currently have such a machine in the lab, but they are not so 
&lt;br&gt;&amp;gt; &amp;gt; very rare. &amp;nbsp;I used to have several.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt; My personal machine is an Intel Core2 running a 64-bits distribution, 
&lt;br&gt;&amp;gt; but that's most likely not a guarantee. Instead, wikipedia says that 
&lt;br&gt;&amp;gt; sizeof(int)==4 on 64 bits machines with compilers from Solaris, AIX, HP, 
&lt;br&gt;&amp;gt; Linux, Mac OS X, FreeBSD, IBM z/OS and Microsoft's VC++. I'm not sure I 
&lt;br&gt;&amp;gt; can find a machine with sizeof(int)==8 !!
&lt;/div&gt;&lt;br&gt;DEC Alpha, for one. &amp;nbsp;(Wikipedia is wrong if it implies that *all*
&lt;br&gt;compilers from the listed vendors use the LP64 model for data types).
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19417813&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Some-misprints-and-problems-tp19366740p19417813.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19417217</id>
	<title>Re: Some misprints and problems</title>
	<published>2008-09-10T09:08:49Z</published>
	<updated>2008-09-10T09:08:49Z</updated>
	<author>
		<name>Timothée Lecomte-3</name>
	</author>
	<content type="html">Ethan A Merritt a écrit :
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; uint32_t is defined in the C99 standard, but not for C++.
&lt;br&gt;&amp;gt; The u_int32_t type is used by BSD and is defined in various compatibility
&lt;br&gt;&amp;gt; headers. &amp;nbsp;But neither of these is guaranteed to be on all platforms.
&lt;br&gt;&amp;gt; We explicitly try not to depend on C99 compliance, and
&lt;br&gt;&amp;gt; also I do not think we can depend on GLib being present. 
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;My point was that cairo-based terminals do already depend on GLib, so 
&lt;br&gt;for them we can directly use this library.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; Besides, I've been using the same kind of byte-wise and 32-bits 
&lt;br&gt;&amp;gt;&amp;gt; manipulation with a simple &amp;quot;unsigned int&amp;quot; in 
&lt;br&gt;&amp;gt;&amp;gt; gp_cairo.c:gp_cairo_draw_image(), where &amp;quot;unsigned int&amp;quot; is implicitly 32 
&lt;br&gt;&amp;gt;&amp;gt; bits. 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I think that is not safe.
&lt;br&gt;&amp;gt; Has the code been tested on native 64-bit machines?
&lt;br&gt;&amp;gt; That is, machines where sizeof(int)==8 ?
&lt;br&gt;&amp;gt; I don't currently have such a machine in the lab, but they are not so 
&lt;br&gt;&amp;gt; very rare. &amp;nbsp;I used to have several.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;My personal machine is an Intel Core2 running a 64-bits distribution, 
&lt;br&gt;but that's most likely not a guarantee. Instead, wikipedia says that 
&lt;br&gt;sizeof(int)==4 on 64 bits machines with compilers from Solaris, AIX, HP, 
&lt;br&gt;Linux, Mac OS X, FreeBSD, IBM z/OS and Microsoft's VC++. I'm not sure I 
&lt;br&gt;can find a machine with sizeof(int)==8 !!
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; On a side note, I am inclined to say that it would have been better to 
&lt;br&gt;&amp;gt;&amp;gt; fix the code that makes margins too big instead of cropping the picture 
&lt;br&gt;&amp;gt;&amp;gt; later...
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Well, I'm already on record as disliking the crop option.
&lt;br&gt;&amp;gt; But if we're going to have it at all, we should at least try to make
&lt;br&gt;&amp;gt; it compile+work on all platforms.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;Agreed, of course.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;&lt;br&gt;Timothée
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19417217&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Some-misprints-and-problems-tp19366740p19417217.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19416920</id>
	<title>Re: Some misprints and problems</title>
	<published>2008-09-10T08:52:46Z</published>
	<updated>2008-09-10T08:52:46Z</updated>
	<author>
		<name>Ethan Merritt</name>
	</author>
	<content type="html">On Wednesday 10 September 2008, you wrote:
&lt;br&gt;&amp;gt; &amp;gt; | I have now fixed these in CVS by adding tests in configure.in
&lt;br&gt;&amp;gt; &amp;gt; | Cropping will fail silently for platforms that both
&lt;br&gt;&amp;gt; &amp;gt; | - do not use autoconf
&lt;br&gt;&amp;gt; &amp;gt; | - have (sizeof(int) != 4)
&lt;br&gt;&amp;gt; &amp;gt; | This can be fixed by adding an explicit definition of GP_UINT32_T
&lt;br&gt;&amp;gt; &amp;gt; | in the appropriate platform-specific configuration file.
&lt;br&gt;&lt;br&gt;&amp;gt; I know it's a bit late, but I'll let you know that cairo-based terminals 
&lt;br&gt;&amp;gt; depend on pango, which in turns depends on GLib, which defines integer 
&lt;br&gt;&amp;gt; types whose sizes are guaranteed on all platforms : gint8, guint8, 
&lt;br&gt;&amp;gt; gint16, guint16, gint32, guint32, gint64, guint64. You can use them by 
&lt;br&gt;&amp;gt; including glib.h first, and then there's no more autoconf magic needed.
&lt;br&gt;&lt;br&gt;uint32_t is defined in the C99 standard, but not for C++.
&lt;br&gt;The u_int32_t type is used by BSD and is defined in various compatibility
&lt;br&gt;headers. &amp;nbsp;But neither of these is guaranteed to be on all platforms.
&lt;br&gt;We explicitly try not to depend on C99 compliance, and
&lt;br&gt;also I do not think we can depend on GLib being present. 
&lt;br&gt;&lt;br&gt;&amp;gt; Besides, I've been using the same kind of byte-wise and 32-bits 
&lt;br&gt;&amp;gt; manipulation with a simple &amp;quot;unsigned int&amp;quot; in 
&lt;br&gt;&amp;gt; gp_cairo.c:gp_cairo_draw_image(), where &amp;quot;unsigned int&amp;quot; is implicitly 32 
&lt;br&gt;&amp;gt; bits. 
&lt;br&gt;&lt;br&gt;I think that is not safe.
&lt;br&gt;Has the code been tested on native 64-bit machines?
&lt;br&gt;That is, machines where sizeof(int)==8 ?
&lt;br&gt;I don't currently have such a machine in the lab, but they are not so 
&lt;br&gt;very rare. &amp;nbsp;I used to have several.
&lt;br&gt;&lt;br&gt;&amp;gt; If you choose to be bullet-proof with this crop code, I guess it's &amp;nbsp;
&lt;br&gt;&amp;gt; worth changing the image code too !
&lt;br&gt;&lt;br&gt;Yes. &amp;nbsp;If you look in datafile.c, you'll see that there is a ridiculous
&lt;br&gt;amount of code and pre-checking just devoted to sorting out the size of
&lt;br&gt;possible data units. &amp;nbsp;I wish this could all go away, or be sorted out
&lt;br&gt;by autoconf, but so far that's what we've got.
&lt;br&gt;&lt;br&gt;&amp;gt; On a side note, I am inclined to say that it would have been better to 
&lt;br&gt;&amp;gt; fix the code that makes margins too big instead of cropping the picture 
&lt;br&gt;&amp;gt; later...
&lt;br&gt;&lt;br&gt;Well, I'm already on record as disliking the crop option.
&lt;br&gt;But if we're going to have it at all, we should at least try to make
&lt;br&gt;it compile+work on all platforms.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ethan A Merritt
&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;gnuplot-beta mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19416920&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnuplot-beta@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/gnuplot-beta&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Some-misprints-and-problems-tp19366740p19416920.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19408770</id>
	<title>Re: Some misprints and problems</title>
	<published>2008-09-10T01:13:08Z</published>
	<updated>2008-09-10T01:13:08Z</updated>
	<author>
		<name>Timothée Lecomte-3</name>
	</author>
	<content type="html">Shigeharu TAKENO a écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt