You can subscribe to this list here.
2004 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(2) |
Aug
(4) |
Sep
(3) |
Oct
(1) |
Nov
(2) |
Dec
|
2006 |
Jan
(2) |
Feb
(4) |
Mar
(1) |
Apr
(49) |
May
(123) |
Jun
(162) |
Jul
(96) |
Aug
(59) |
Sep
(69) |
Oct
(73) |
Nov
(71) |
Dec
(29) |
2007 |
Jan
(68) |
Feb
(97) |
Mar
(170) |
Apr
(86) |
May
(78) |
Jun
(62) |
Jul
(114) |
Aug
(71) |
Sep
(145) |
Oct
(107) |
Nov
(43) |
Dec
(41) |
2008 |
Jan
(46) |
Feb
(66) |
Mar
(70) |
Apr
(91) |
May
(119) |
Jun
(104) |
Jul
(92) |
Aug
(83) |
Sep
(68) |
Oct
(146) |
Nov
(76) |
Dec
(70) |
2009 |
Jan
(114) |
Feb
(101) |
Mar
(153) |
Apr
(203) |
May
(85) |
Jun
(100) |
Jul
(109) |
Aug
(93) |
Sep
(48) |
Oct
(2) |
Nov
(1) |
Dec
(15) |
2010 |
Jan
(9) |
Feb
(12) |
Mar
(25) |
Apr
(61) |
May
(107) |
Jun
(75) |
Jul
(76) |
Aug
(91) |
Sep
(100) |
Oct
(46) |
Nov
(47) |
Dec
(28) |
2011 |
Jan
(105) |
Feb
(88) |
Mar
(82) |
Apr
(45) |
May
(46) |
Jun
(76) |
Jul
(73) |
Aug
(77) |
Sep
(53) |
Oct
(65) |
Nov
(58) |
Dec
(57) |
2012 |
Jan
(53) |
Feb
(19) |
Mar
(4) |
Apr
(9) |
May
(2) |
Jun
(3) |
Jul
(1) |
Aug
(3) |
Sep
(3) |
Oct
(4) |
Nov
(1) |
Dec
(12) |
2013 |
Jan
(6) |
Feb
(2) |
Mar
(3) |
Apr
|
May
(2) |
Jun
(8) |
Jul
(2) |
Aug
|
Sep
(1) |
Oct
|
Nov
(2) |
Dec
(2) |
2014 |
Jan
(4) |
Feb
|
Mar
(1) |
Apr
|
May
(3) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(4) |
Oct
(1) |
Nov
(3) |
Dec
(2) |
2015 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
(2) |
May
(4) |
Jun
(1) |
Jul
(5) |
Aug
(12) |
Sep
|
Oct
(1) |
Nov
|
Dec
(15) |
2016 |
Jan
(16) |
Feb
(7) |
Mar
|
Apr
|
May
(3) |
Jun
(8) |
Jul
|
Aug
(2) |
Sep
|
Oct
(1) |
Nov
(5) |
Dec
|
2017 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(3) |
Oct
|
Nov
(2) |
Dec
|
2018 |
Jan
|
Feb
(2) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
(1) |
Dec
|
2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2021 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2024 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Don T. <nos...@gm...> - 2006-06-01 13:49:13
|
Don Taylor wrote: > Fabio: > > I have just been playing with the interactive console (as a result of > your recent posting on the Python newsgroup) and I have set 'Evaluate on > console on each new line (or only on request)?' to on. > > I noticed this behaviour which may be a bug? > > If I type: > > for i in range (1,10): > print i, > print "foo" > > > into a file then I get this is in the console window: > > for i in range (1,10): > print i, > print "foo" > File "<stdin>", line 3 > print "foo" > ^ > SyntaxError: invalid syntax > > > > However, if I type this: (an extra blank line) > > for i in range (1,10): > print i, > > print "foo" > > > then I get this in the console window: > > for i in range (1,10): > print i, > > 1 2 3 4 5 6 7 8 9 > print "foo" > foo > > I have turned 'Evaluate on console on each new line (or only on request)?' off and tried the same code fragments by just selecting the code and hitting ctrl-enter. I get the same behaviour. Don. |
From: Don T. <nos...@gm...> - 2006-06-01 13:37:21
|
Fabio: I have just been playing with the interactive console (as a result of your recent posting on the Python newsgroup) and I have set 'Evaluate on console on each new line (or only on request)?' to on. I noticed this behaviour which may be a bug? If I type: for i in range (1,10): print i, print "foo" into a file then I get this is in the console window: for i in range (1,10): print i, print "foo" File "<stdin>", line 3 print "foo" ^ SyntaxError: invalid syntax However, if I type this: (an extra blank line) for i in range (1,10): print i, print "foo" then I get this in the console window: for i in range (1,10): print i, 1 2 3 4 5 6 7 8 9 print "foo" foo Don. |
From: SourceForge.net <no...@so...> - 2006-06-01 12:49:19
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3759402 By: fabioz Well, many ways to do it... it depends basically on what you want. Couldn't a template be enough for you? -- http://www.fabioz.com/pydev/manual_adv_compltemp.html There are other ways too... as I said, depends on what you want (so, if you could be more specific on what you want to achieve I could help you better). Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-06-01 12:46:19
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3759395 By: fabioz That happens because eclipse (actually, java itself) inherits the PATH from the shell where it runs. If you fix the PATH globally in your system, you should be able to start it from the menu. -- I usually run it with a script that sets the path, as I find it too annoying the way that windows manages this in that hidden place in the control panel ;-) Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-06-01 12:35:44
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3759379 By: violinwoman Thanks. I did have one place I'd missed in my PATH, which I fixed. That doesn't seem to have solved the problem. However, I can run everything properly if I start Eclipse from the shell instead of from the menu, and I can live with that. Thanks! I still wonder why it doesn't work unless I start it from the shell. When I print sys.path from the program, it looks the same regardless of which way I started Eclipse. I appreciate the help! Shari ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-06-01 12:20:27
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3759361 By: shahbaztyagi How can I develop wizard to generate scripts. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-31 21:10:58
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3758560 By: fabioz Actually, I use vtk 4.2 without problems, so, it appears some configuration problem... The first thing I'd change is putting it only in the system or the project pythonpath... that should not be a problem, but as I didn't test it, there's no guarantee of it... Another thing is that vtk needs some libraries not only in the PYTHONPATH, but also in the PATH, so, you should close Eclipse, check if those things are in the path and then restart eclipse (from a shell that has the path correct). If that does not solve it, please report back. Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-31 20:57:27
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3758541 By: violinwoman I am using Eclipse 3.1.1 with PyDev 1.0.8 to develop an application that uses VTK (The Visualization Toolkit - www.kitware.com). Previously, everything was working fine. I had to upgrade and recompile VTK to get access to some newer features and to use MangledMesa. I am now using VTK version 5.0. I also changed the location of VTK, but I updated my PYTHONPATH variables to reflect the change. Since the upgrade, I cannot run the project in Eclipse. If I run the program directly from the command line outside Eclipse, it works fine. Here is the error I get in Eclipse: ImportError: libvtkCommonPythonD.so.5.0: cannot open shared object file: No such file or directory I have set my system PYTHONPATH outside Eclipse to: /home/shari/vtk-bin/bin:/home/shari/vtk-bin/Wrapping/Python:/usr/lib/python2.4/s ite-packages/wx-2.6-gtk2-unicode:/usr/local/lib I have set the same directories in my PYTHONPATH in Eclipse both in the Project -> Properties menu and in the Window -> Preferences menu. In addition, I can see the file libvtkCommonPythonD.so.5.0 in both /usr/local/lib and /home/shari/vtk-bin/bin. (Could the problem be that the file is in both locations?) Does anyone have any idea what I might have done wrong? Thanks! ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-31 10:52:50
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3757722 By: fabioz Well, pydev should work with .py and .pyw extensions... Which extension are you using? I believe those are hard-coded, but if you have enough requirements and a good justification, you can submit a feature-request so that this is configurable... Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-31 09:21:21
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3757634 By: nobody Hi, I'm currently trying to use PyDev with project files that have a different file extension than ".py". However, while syntax highlighting does very well I can't get the "Tasks"-feature working. Inserting i.e. a TODO task doesn't show in the task panel. Any ideas how to configure this? thanks and regards, micha ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 15:34:55
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756492 By: fabioz hummm... the d = {} is a bug... if you do: d = dict() d. it will get it correctly, or if you do {}. it will also be correct... Could you report that as a bug? Thanks, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 14:54:12
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756409 By: vbgunz It is great to know the console bug will be fixed soon. As for the autocomplete menu not showing up in cases such as s = string, you're correct. It appears I first have to import string. I was just testing it but it is great to know that pydev actually does this. that's smart! One issue in regards to autocompletion is d = {}. if I enter 'd.' I will get an autocompletion list *but* it does not contain methods such as keys(), values(), iterkeys(), etc. It appears the list contains built-ins such as iter(), len(), range(), etc. I will post my feature request for including variables in the outline. I think this will help developers gain a quicker and better overview of the outline if these were included. I am not sure if I can help the project. I am no veteran in Python and it is the only real language I know. I am just looking for a Python IDE and of all the ones I've tried, eclipse with Pydev seems to so far be one of the best and most promising alternatives. I will take a good look at the starting guide. Thank you Fabio for your help and feedback on my questions. I hope to see Pydev grow bigger and better than it already is. Thank you again for your time and patience! ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 11:28:51
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756151 By: fabioz 1. There is bug in Eclipse that makes the output not show. It should be fixed in eclipse 3.2 (but this version is currently unsupported in pydev -- support should be added in the start of july) 2. You can add a feature request for that. 3. Actually, it should work... I think you meant: s = str s. or import string s = string s. both of those work for me If they don't you may have some misconfiguration... have you checked the getting started guide? -- http://www.fabioz.com/pydev/manual_101_root.html 4. These are calltips. They should be implemented soon as a part of Google's SoC 5. Pydev is Open Source, so if you're especially wanting one of those features, you can get the code and help in its development yourself... I can give you tips on where to start if you want. Aside from that, if you keep track of pydev, you'll see that it has consistently grown, in quality and in features over the last 2,5 years (it started in 06/2003), and is currently regarded by many as one of the best python ides available, and I see no reason why it wouldn't keep that way... Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 11:14:34
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756134 By: fabioz Well, one thing you need to be sure is that you pass the actual interpreter and not some link to it. Have you checked your error log? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 11:08:34
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756125 By: vbgunz Sorry I didn't post this earlier... - Ubuntu 6.06 - Eclipse version 3.1.2 - PyDev version 1.0.8 - No Errors... - whereis eclipse: /usr/bin/eclipse /etc/eclipse /usr/lib/eclipse /usr/bin/X11/eclipse /usr/local/lib/eclipse /usr/share/eclipse /usr/share/man/man1/eclipse.1.gz - whereis project: /home/vbgunz/eclipse-workspace/testbed ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 11:00:20
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756111 By: vbgunz I've created my own debug and my own python run and have tinkled with F9 for Run as Python *but* when a script has raw_input, the console seems to sometimes choke. When I run the console it might run fine one time *but* it won't run fine the next (even if I don't change anything). In other words, sometimes I'll see the output in the console and sometimes I won't. I believe this is definitely a bug but am not sure if it is due to pydev or eclipse :( I notice the outline shows my functions, classes, imports and methods but won't show my global and local variables. e.g. if I make s = string, I won't see s in the outline, is this how it is meant to be. Can this be enhanced in the next version of pydev? Autocompletion partially works and is very nice so far but it doesn't work on custom identifiers. e.g. if I created the following identifier s = string, I'll see no autocomplete menu for 's.' come up. Is it possible to make autocomplete work with custom identifiers? Class, function and method hints do not seem available when editing. Some editors for e.g. when you enter 'cmp(' the opening parenthesis will show the following hint 'cmp(x, y) -> integer)' until the parenthesis is closed . Is it also possible to get at least the first paragraph of the docstring to show up too? So far Pydev seems great but these little quirks can maybe be in my setup or maybe they're temporary limits of pydev so far, I am not sure. I just started to try out eclipse and pydev makes it a whole lot better in Python development so I hope you can maybe add these features if they're not already implemented or advise me on how best to get them to work on my installation. I would greatly appreciate your time for reply :) Thank you again for Pydev and your time! ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 10:58:06
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756110 By: mattp52 Hi, Have been searching in vain on the net for a fix to this issue. I succesfully downloaded and installed PyDev via Eclipse's update feature but when I go to set the path to the interpreter, a dialogue pops up very quickly and appears to parse the directory but no paths are populated into the prefs pane. I've tried setting the path to /usr/lib/python and /System/Library/Frameworks/... with the same result. There are no spaces in the path either. Has anyone else got PyDev 1.0.8 running under 10.4 using Eclipse 3.1.0? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 10:41:44
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756088 By: fabioz Sure, please do report it -- I'm interested in making it work too ;-) ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 10:41:04
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3756087 By: fabioz You can put that anywhere, as long as you call it before getting into that exception. And it should give you the globals and the locals in the stack-trace. It is not the same as stopping at that exact time, but it gives you the complete info on the stack. Actually, I passed one thing wrong, you should change the sys.excepthook and not the sys.__excepthook__. Below is a complete example showing how you'd get the locals in the stack-trace. Cheers, Fabio ----------------- Example ------------ import sys def m1(a = 10): raise RuntimeError('here') if __name__ == '__main__': def myHook(type, value, traceback): initial_ctx = traceback.tb_next while initial_ctx.tb_next is not None: initial_ctx = initial_ctx.tb_next print 'locals on exception:', initial_ctx.tb_frame.f_locals #now, call the original. sys.__excepthook__(type, value, traceback) sys.excepthook = myHook m1() ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 08:29:07
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3755914 By: mschorn I ran the remote debugger without debug mode. Breakpoints still work only for the duration of one request. For the next request remote debugger has lost them. The regular debugger too. I will report a bug. I am interested that the bug is solved. If you I can help please tell me how. Regards, Marcus ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-30 02:04:34
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3755640 By: anstey Fabio, I'm a python newb so I need more assistance with this. Where do I put the code you suggested, and how do I change the sys.__excepthook__ ? I don't understand unfortunately. Will this give me the value of all by global and local variables when the program terminates with an exception, the way Wing and Komodo do? I rely heavily on this to work out what is going wrong with my programs. Cheers, matthew ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-29 23:55:40
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3755579 By: fabioz Pydev currently does no exception-handling, however, you can add your own if you want to do so by changing the sys.__excepthook__ E.g.: def myHook(*args, **kwargs): sys._original_excepthook(*args, **kwargs) sys._original_excepthook = sys.__excepthook__ sys.__excepthook__ = myHook And then you can put a breakpoint in the 'sys._original_excepthook(*args, **kwargs)' line, so that whenever you have an unhandled exception it will stop there. An implementation of exception-handling in the debugger is planned, but it is still not implemented, so, you can add your own in this way. -- Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-29 23:22:21
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3755561 By: anstey When a python script terminates due to an error (in Eclipse with PyDev Extensions), no variables are shown in the debug console, unlike standard IDEs like Wing and Komodo. Is there a way to make this happen? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-29 12:58:13
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3754853 By: fabioz Actually, the remote debugger is mostly for when you're running things without the need for running it in debug mode, so, you just start the remote debugger and when it hits that code it automatically 'switches' to debug mode. You should be able to add breakpoints after switching to debug mode without problems. Now, if you already start CP in debug mode from within Eclipse, that should not be needed, as long as you set the tracing facility for each thread you create (as I explained before), and breakpoints should work without problems. If they're not working when you run things that way, it might be that for some reason the filename that generated the module is lost in CP, but I find that very unlikely, but as I haven't tested it, it might be the reason why that's happening. If you believe that the breakpoints are missed because of something like that you can report a bug, and we can do some things 'interactively', if you're willing to do it, so, I'll pass you the changes, and you do them in your environment, so that we can evaluate toghether what's happening. Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |