You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(15) |
Sep
(21) |
Oct
(15) |
Nov
|
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(7) |
Feb
(6) |
Mar
(2) |
Apr
(5) |
May
(6) |
Jun
(3) |
Jul
(4) |
Aug
(4) |
Sep
(3) |
Oct
(14) |
Nov
(16) |
Dec
(10) |
2004 |
Jan
(5) |
Feb
(10) |
Mar
(4) |
Apr
(8) |
May
(1) |
Jun
(5) |
Jul
(5) |
Aug
(4) |
Sep
(10) |
Oct
(3) |
Nov
(4) |
Dec
|
2005 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(15) |
May
(12) |
Jun
(1) |
Jul
(4) |
Aug
(3) |
Sep
(6) |
Oct
(7) |
Nov
(21) |
Dec
(11) |
2006 |
Jan
(16) |
Feb
(12) |
Mar
(4) |
Apr
(6) |
May
(5) |
Jun
(9) |
Jul
|
Aug
(5) |
Sep
(1) |
Oct
(10) |
Nov
(4) |
Dec
(3) |
2007 |
Jan
(6) |
Feb
(4) |
Mar
(6) |
Apr
(11) |
May
(1) |
Jun
(21) |
Jul
|
Aug
(6) |
Sep
(2) |
Oct
(4) |
Nov
|
Dec
|
2008 |
Jan
(14) |
Feb
(1) |
Mar
(5) |
Apr
(22) |
May
(4) |
Jun
(1) |
Jul
(7) |
Aug
(5) |
Sep
(7) |
Oct
(3) |
Nov
|
Dec
(1) |
2009 |
Jan
(14) |
Feb
(1) |
Mar
(9) |
Apr
(5) |
May
(6) |
Jun
(7) |
Jul
(8) |
Aug
(3) |
Sep
|
Oct
|
Nov
(2) |
Dec
(4) |
2010 |
Jan
(2) |
Feb
|
Mar
(6) |
Apr
(6) |
May
(34) |
Jun
|
Jul
(8) |
Aug
(3) |
Sep
|
Oct
(5) |
Nov
(3) |
Dec
(1) |
2011 |
Jan
|
Feb
(4) |
Mar
(3) |
Apr
|
May
|
Jun
(5) |
Jul
(9) |
Aug
(5) |
Sep
(9) |
Oct
(3) |
Nov
(10) |
Dec
(1) |
2012 |
Jan
(1) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
(3) |
Nov
(2) |
Dec
(9) |
2014 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2016 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
(12) |
8
(2) |
9
(2) |
10
|
11
(1) |
12
|
13
|
14
(2) |
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
(2) |
26
|
27
|
28
|
29
|
30
|
|
|
|
From: Noel O'B. <no...@ca...> - 2005-11-09 14:01:54
|
On Mon, 2005-11-07 at 22:17 +0100, Michael Haggerty wrote: > Noel, > > Thanks again for the patch, and the additional information about allowed > characters. > > It seems to me that *all* characters can get through if we use > double-quoted strings and simply backslash-quote '"' and '\'. So I just > added a function in the gp.py module called double_quote_string() that > does just this, and use this method in the definitions of the two > get_base_command_string() methods that return filenames. These changes > are committed into the main branch of CVS. > > This seems to work under Linux. Would you please check whether they > work under Windows, and whether you can see any other problems with this > solution? I cannot see any problems with the fix and it works for me under windows. A big thanks on behalf of all people with funny characters in their name. Regards, Noel > Noel O'Boyle wrote: > > On Windows, if your user name contains an apostrophe, the use of > > temporary files causes an error, as gnuplot uses apropostrophes (i.e. > > single quotes) to delimit the filename. |
From: Noel O'B. <no...@ca...> - 2005-11-09 13:46:50
|
Please find attached an example program with extensive commenting describing its behaviour. (I use WinXP on a 256MB old Dell laptop) Noel On Mon, 2005-11-07 at 21:29 +0100, Michael Haggerty wrote: > Noel O'Boyle wrote: > > In order to avoid the use of temporary files, I have tried to pass data > > to gnuplot using the inline option in WinXP. This works fine for small > > amounts of data but for larger amounts, the complete amount of data is > > not passed. > > > > For example, I tried to send data for 500 hundred (x,y) data points, but > > only 355 lines were sent to gnuplot. It was possible to see this at the > > interactive gnuplot prompt, and actually to plot the 355 data points by > > entering 'e' (for "end" - part of gnuplot's inline data passing > > mechanism, I suppose). > > > > Is this a known feature of Windows/gnuplot-py/gnuplot? I wasn't sure how > > to track down this bug - I can send you an example program that > > reproduces this problem if you want. > > I am not familiar with this problem. It would help if you could send an > example program. At the least, I could try it under Linux to see if the > same problem occurs there. > > Michael > > > ------------------------------------------------------- > SF.Net email is sponsored by: > Tame your development challenges with Apache's Geronimo App Server. Download > it for free - -and be entered to win a 42" plasma tv or your very own > Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php > _______________________________________________ > Gnuplot-py-users mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-py-users |