pythoncad-developer Mailing List for PythonCAD (Page 2)
CAD Application entire developed in Python
Status: Beta
Brought to you by:
matteoboscolo
You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
|
Dec
(13) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(30) |
Feb
(65) |
Mar
(32) |
Apr
(42) |
May
(32) |
Jun
(18) |
Jul
(4) |
Aug
(30) |
Sep
(31) |
Oct
(28) |
Nov
(4) |
Dec
(40) |
2011 |
Jan
(18) |
Feb
|
Mar
(1) |
Apr
|
May
(1) |
Jun
(4) |
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
(7) |
Feb
(3) |
Mar
|
Apr
(3) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2011-06-17 21:26:11
|
PythoncadBugTraker item #3319603, was opened at 2011-06-17 22:31 Message generated for change (Settings changed) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3319603&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug >Group: R37 >Status: Closed >Resolution: Rejected Priority: 5 Private: No Submitted By: ostroffjh (ostroffjh) Assigned to: Nobody/Anonymous (nobody) Summary: Pythoncad wants to save file even if no changes Initial Comment: If I open a file, and immediately try to close it or exit, pythoncad says the file is unsaved and wants to save it. There is no reason to do this if the file has not been changed in any way. (I am using R37 under Gentoo Linux.) ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-06-17 23:26 Message: The bug is known but the R37 version is no more developed. We are working on new R38 version completely rewritten so please use the new version. regards, Matteo ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3319603&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-06-17 20:31:32
|
PythoncadBugTraker item #3319603, was opened at 2011-06-17 16:31 Message generated for change (Tracker Item Submitted) made by ostroffjh You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3319603&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: ostroffjh (ostroffjh) Assigned to: Nobody/Anonymous (nobody) Summary: Pythoncad wants to save file even if no changes Initial Comment: If I open a file, and immediately try to close it or exit, pythoncad says the file is unsaved and wants to save it. There is no reason to do this if the file has not been changed in any way. (I am using R37 under Gentoo Linux.) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3319603&group_id=263167 |
From: Matteo B. <mat...@bo...> - 2011-05-15 06:46:14
|
Hi All, I'm Glad to say that I'll be at europython2011 for talking abut pythoncad. here you have all the schedule: http://ep2011.europython.eu/p3/schedule/ep2011/ and here you get the talk: http://ep2011.europython.eu/conference/talks/developing-a-cad-application-as-hobby This will be an opportunity to meet me and see the future of pythoncad .. Regards, Matteo |
From: SourceForge.net <no...@so...> - 2011-03-27 08:39:05
|
PythoncadBugTraker item #3248868, was opened at 2011-03-27 08:39 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3248868&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: R38 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Problem During trim command Initial Comment: If you have tow line disconnected as in attached file and you try to use the trim command, the command dose not work as expected. Instead of stretch the line from the nearest point it stretch the distant point one ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3248868&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-28 14:37:36
|
PythoncadBugTraker item #3167092, was opened at 2011-01-28 15:03 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3167092&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug >Group: R37 >Status: Closed >Resolution: Rejected Priority: 5 Private: No Submitted By: Mihhail Afanasjev (moshanator) >Assigned to: Matteo Boscolo (matteoboscolo) Summary: Syntax error in PythonCad/Generic/layer.py Initial Comment: Running gtkpycad.py directly from the git repo throws this at me: misa@compaq-nx6325:~/pythoncad$ ./gtkpycad.py Traceback (most recent call last): File "./gtkpycad.py", line 38, in <module> from PythonCAD.Generic import imageio File "/home/misa/pythoncad/PythonCAD/Generic/imageio.py", line 36, in <module> from PythonCAD.Generic import layer File "/home/misa/pythoncad/PythonCAD/Generic/layer.py", line 477 def setAutosplit(self, as): ^ SyntaxError: invalid syntax The ^ is pointing at the "as" keyword, which for some reason is used here as a variable. Changing "as" to "state" everywhere in that function fixes things and gtk will start normally again. Can I commit this to git? ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-28 15:37 Message: Hi, You are using an old branch of the application with an old user interface. The new version of PythonCAD use the PyQt interface and is under the R38 branch . Regards, Matteo ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3167092&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-28 14:03:27
|
PythoncadBugTraker item #3167092, was opened at 2011-01-28 16:03 Message generated for change (Tracker Item Submitted) made by moshanator You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3167092&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mihhail Afanasjev (moshanator) Assigned to: Nobody/Anonymous (nobody) Summary: Syntax error in PythonCad/Generic/layer.py Initial Comment: Running gtkpycad.py directly from the git repo throws this at me: misa@compaq-nx6325:~/pythoncad$ ./gtkpycad.py Traceback (most recent call last): File "./gtkpycad.py", line 38, in <module> from PythonCAD.Generic import imageio File "/home/misa/pythoncad/PythonCAD/Generic/imageio.py", line 36, in <module> from PythonCAD.Generic import layer File "/home/misa/pythoncad/PythonCAD/Generic/layer.py", line 477 def setAutosplit(self, as): ^ SyntaxError: invalid syntax The ^ is pointing at the "as" keyword, which for some reason is used here as a variable. Changing "as" to "state" everywhere in that function fixes things and gtk will start normally again. Can I commit this to git? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3167092&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:16:03
|
PythoncadBugTraker item #2929317, was opened at 2010-01-10 16:04 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2929317&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: Gui Developer >Status: Closed >Resolution: Out of Date Priority: 5 Private: No Submitted By: Gertwin (gertwin) Assigned to: Nobody/Anonymous (nobody) Summary: Exception when accept changes in Preferences dialog Initial Comment: When I do some changes in the preferences dialog and try to safe them with the "OK" button a exception is thrown: Traceback (most recent call last): File "/Users/gertwin/Work/PythonCAD/R38/pythoncad/PythonCAD/Interface/Menu/editmenu.py", line 154, in prefs_cb gtkprefs.prefs_dialog(gtkimage) File "/Users/gertwin/Work/PythonCAD/R38/pythoncad/PythonCAD/Interface/Preferences/gtkprefs.py", line 2799, in prefs_dialog preferences.save_user_prefs() File "/Users/gertwin/Work/PythonCAD/R38/pythoncad/PythonCAD/Generic/preferences.py", line 1671, in save_user_prefs _save_dimstyle_values(_f) File "/Users/gertwin/Work/PythonCAD/R38/pythoncad/PythonCAD/Generic/preferences.py", line 1482, in _save_dimstyle_values if abs(_val - _ds.getOption('DIM_EXTENSION')) > 1e-10: TypeError: unsupported operand type(s) for -: 'Color' and 'float' ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-17 08:16 Message: old bug with gtk interface ---------------------------------------------------------------------- Comment By: Gertwin (gertwin) Date: 2010-01-11 21:35 Message: Values: _val = <PythonCAD.Generic.color.Color 0x336d2d0; len=20> _ds.getOption('DIM_EXTENSION') = 1.0 I can reproduce this error by selection the options tabs one by one clicking in the list on the left side. In the list first click "Basic", after that "Sized Objects", etc. until "Dimensions". If the dialog is accepted with "OK" this exception is thrown. Opening the preferences dialog and only selecting "Dimensions" in the list on the left and close with "OK" will not reproduce the error. ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-01-11 06:58 Message: in my linux installation i can't reproduce the error. it's a ss sytematic error? culd you print the value of _val and _ds.getOption('DIM_EXTENSION') in the preference.py _save_dimstyle_values function ? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2929317&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:14:25
|
PythoncadWishTraker item #2914326, was opened at 2009-12-14 19:36 Message generated for change (Settings changed) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1334597&aid=2914326&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. >Category: None >Group: None Status: Open >Resolution: Later Priority: 5 Private: No Submitted By: Matteo Boscolo (matteoboscolo) Assigned to: Matteo Boscolo (matteoboscolo) Summary: Extend the imput method on pythoncad Command Initial Comment: We need to extend the PythonCad entry with the following method Different scale in x and y direction (vertical exaggeration). Input on the command line in relative or absolute coordinates. My Proposal is: 0,0 It's a absolute coords [Now works in this way for many commands] 0;0 It's a relative coords [Need to be implemented] 0>0 This is an angle (Distance>Angle) [Need to be Implemented] To do this job, we need to create a function that accept a string and return a toule of coords with the absolute position. ---------------------------------------------------------------------- Comment By: Gertwin (gertwin) Date: 2009-12-14 21:22 Message: I build in support for vertical exaggeration in the new draw functions. The viewport maintains a different scale for x and y. If I make a viewport member to set the vertical exaggeration I can multply the y-scale factor with it and do a redraw. If the vertical exaggeration is different from default (1.0) than it must be visible on the statusbar. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1334597&aid=2914326&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:11:56
|
PythoncadBugTraker item #2886934, was opened at 2009-10-27 08:06 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2886934&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Usability Group: Gui Developer >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Matteo Boscolo (matteoboscolo) Assigned to: Matteo Boscolo (matteoboscolo) Summary: Hide layer is not shown in the tree view Initial Comment: Using the layers in PythonCad if you hide a layer from the tree view there are non way to know witch layer is hided, Will be nice to have a different color or an icon that show the actual state of the layer . es: A red color for the hided layer or a ghost icon ... ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-17 08:11 Message: With new R38 the active layer is in gray color ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2886934&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:10:28
|
PythoncadBugTraker item #2856154, was opened at 2009-09-10 18:47 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2856154&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Private: No Submitted By: Adrian (adyh) Assigned to: Nobody/Anonymous (nobody) Summary: Angular / Radial dimensions connect Initial Comment: I drew some angular and radial dimensions today and it seems that they connect to each other? Configuration is two circles, for example, with two radial dimensions and an extra line appears connecting the two. If I add a 3rd radial dimension, the extra segment moves connecting the new dimension and the second one... and so on... something similar seems to happen to angular dimensions - an extra line appearing (to see this line you have to zoom in or out - it appears to be a side effect that doesn't appear upon drawing the new element but afterwards) ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-17 08:10 Message: r37 bux never be fixed ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2856154&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:09:42
|
PythoncadBugTraker item #2856044, was opened at 2009-09-10 16:30 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2856044&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Private: No Submitted By: Adrian (adyh) Assigned to: Nobody/Anonymous (nobody) Summary: Problem with Dimensions Initial Comment: I can't figure out what happens, I'm currently focused on something else so I didn't give it too much thought... here goes: after adding a segment and a linear dimension to the segment exit the program and the following error messages occur: Traceback (most recent call last): File "/home/adrian/Projects/pythoncad/PythonCAD/Generic/message.py", line 113, in sendMessage _method(self, *args) File "/home/adrian/Projects/pythoncad/PythonCAD/Interface/Gtk/gtkimage.py", line 1293, in __layerRemovedChild self.__eraseObject(_child) File "/home/adrian/Projects/pythoncad/PythonCAD/Interface/Gtk/gtkimage.py", line 1250, in __eraseObject obj.erase(self) File "/home/adrian/Projects/pythoncad/PythonCAD/Interface/Gtk/gtkinit.py", line 1380, in _erase_dim self.draw(gimage, gimage.image.getOption('BACKGROUND_COLOR')) File "/home/adrian/Projects/pythoncad/PythonCAD/Interface/Gtk/gtkinit.py", line 1169, in _draw_ldim self._drawDimStrings(gimage, col) File "/home/adrian/Projects/pythoncad/PythonCAD/Interface/Gtk/gtkinit.py", line 819, in _draw_dimstrings _r, _g, _b = _bgcol.getColors() AttributeError: 'NoneType' object has no attribute 'getColors' remaining connections for obj: <PythonCAD.Generic.dimension.LinearDimension object at 0x966ef2c> message: change_complete connected to obj: <PythonCAD.Interface.Gtk.gtkimage.GTKImage object at 0x95cc56c> message: refresh connected to obj: <PythonCAD.Interface.Gtk.gtkimage.GTKImage object at 0x95cc56c> message: change_pending connected to obj: <PythonCAD.Interface.Gtk.gtkimage.GTKImage object at 0x95cc56c> ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-17 08:09 Message: R37 bug ---------------------------------------------------------------------- Comment By: Adrian (adyh) Date: 2009-09-10 18:45 Message: Well, I haven't done anything special... it's not even using code that I wrote, it's the old one... I just draw these and get an error... I'm still working on the paste bug but I'll check this out as soon as that turns out ok... it seems I've found another issue with dimensions so this is all kind of slowing me down... ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2009-09-10 17:01 Message: May be you have created some entity that python can't destroy ... I had a similar problem douring the develop of the two line fillet ... In my case redefining a segment endpoints I delete a point of the segment and at the closing of pythoncad he try to delete the point that i had olready eleted.. may be is somthing similar. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2856044&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:08:33
|
PythoncadBugTraker item #2885786, was opened at 2009-10-25 08:38 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2885786&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: None >Status: Closed >Resolution: Out of Date Priority: 5 Private: No Submitted By: Matteo Boscolo (matteoboscolo) Assigned to: Matteo Boscolo (matteoboscolo) Summary: Point after delete a dimension Initial Comment: After creating a dimension with midpointsnap or intersectionsnap and then deleting or moving the dimension or the base line, the point dinamically created by the snap remain in the drawing . ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-17 08:08 Message: this bux will never be fixed in r37 you can try r38 and see that this problem dose not exsist ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2885786&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:06:42
|
PythoncadBugTraker item #2924790, was opened at 2010-01-02 05:53 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2924790&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: User >Status: Closed >Resolution: Out of Date Priority: 5 Private: No Submitted By: Brad Silva (bsilva) Assigned to: Matteo Boscolo (matteoboscolo) Summary: App fails to launch: 'gtkpycad.png': No such file Initial Comment: OS is Fedora 10. Installed Python cad from PythonCAD-DS1-R37.tar.gz by exectuing "python setup.py install" as root. Copied "gtkpycad.py" to /usr/local/bin per instructions in the INSTALL document. On first launch, app failed with: Traceback (most recent call last): File "/usr/local/bin/gtkpycad.py", line 281, in <module> main() File "/usr/local/bin/gtkpycad.py", line 259, in main _gtkimage = GTKImage(_image) File "/usr/lib/python2.5/site-packages/PythonCAD/Interface/Gtk/gtkimage.py", line 157, in __init__ self.__window.set_icon_from_file("gtkpycad.png") glib.GError: Failed to open file 'gtkpycad.png': No such file or directory Thanks, Brad ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-17 08:06 Message: We are now focuse on R38 version that is totally different, so we are going to do not support R37 anymore ---------------------------------------------------------------------- Comment By: yndesai (yndesai) Date: 2010-01-18 12:38 Message: Since the new PythonCAD-DS1-R37.zip is now available, just download it and as a simple work around explode it on desktop and you should be able to start pythoncad by execution gtkpycad.py. Or (python gtkpycad.py from the newly created directory on your desktop) ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-01-05 11:57 Message: I will fix it as soon it's possible. As workaround you can download the file from the git repository or use the develop version download able from the git repository. Thanks for the submit Matteo ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2924790&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:04:25
|
PythoncadBugTraker item #2987810, was opened at 2010-04-15 19:41 Message generated for change (Settings changed) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2987810&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bug Group: User >Status: Closed Resolution: Works For Me Priority: 5 Private: No Submitted By: duncan (duncan_nz) Assigned to: Matteo Boscolo (matteoboscolo) Summary: gtkpycad.py crashed with AttributeError in __eq__() Initial Comment: This bug is from downstream in Launchpad / Ubuntu / PythonCad at https://bugs.edge.launchpad.net/ubuntu/+source/pythoncad/+bug/564056 There you can find various files from apport. Binary package hint: pythoncad I was just playing around for the first time. exited PyCad and was prompted to save, chose 'no' and this error turned up. ProblemType: Crash DistroRelease: Ubuntu 10.04 Package: pythoncad 0.1.37.0-1 ProcVersionSignature: Ubuntu 2.6.32-20.29-generic 2.6.32.11+drm33.2 Uname: Linux 2.6.32-20-generic i686 Architecture: i386 Date: Thu Apr 15 19:32:16 2010 ExecutablePath: /usr/share/pythoncad/gtkpycad.py InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta i386 (20100318) InterpreterPath: /usr/bin/python2.6 PackageArchitecture: all ProcCmdline: python /usr/bin/pythoncad ProcEnviron: LANG=en_DK.utf8 SHELL=/bin/bash PythonArgs: ['/usr/bin/pythoncad'] SourcePackage: pythoncad Title: gtkpycad.py crashed with AttributeError in __eq__() UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-04-18 09:10 Message: I did some test on my Debian Testing version but I'm not able to reproduce the problem ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=2987810&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:03:09
|
PythoncadBugTraker item #3097630, was opened at 2010-10-28 21:49 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3097630&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open >Resolution: Works For Me Priority: 5 Private: No Submitted By: carlopav (carlopav) >Assigned to: Matteo Boscolo (matteoboscolo) Summary: import file crashes under ubuntu 10.10 Initial Comment: hi, the import command still causes pycad to crash under ubuntu 10.10 bug seems to be in cadwindow.py row 356 carlo ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-17 08:03 Message: is this bug still open ? ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-10-30 07:39 Message: it seems a problem with the self.mdiArea.activeSubWindow() that is None . It seems that you do not have any active drawing ..opened .. witch version of pyqt are you using ? dose the open file with dxf extension works well ? we can manage this error controlling the code like this: def _onImportDrawing(self): drawing = QtGui.QFileDialog.getOpenFileName(parent=self, caption="Import Drawing", directory=self.lastDirectory, filter="Dxf (*.dxf)"); # open a document and load the drawing if len(drawing)>0: self.lastDirectory=os.path.split(drawing)[0] if self.mdiArea.activeSubWindow() != None: self.mdiArea.activeSubWindow()importExternalFormat(drawing) else: print "active sub windows is none" return but I do not think that you can open a dxf file anymore :-) Regards, Matteo ---------------------------------------------------------------------- Comment By: carlopav (carlopav) Date: 2010-10-29 21:31 Message: def _onImportDrawing(self): drawing = QtGui.QFileDialog.getOpenFileName(parent=self, caption="Import Drawing", directory=self.lastDirectory, filter="Dxf (*.dxf)"); # open a document and load the drawing if len(drawing)>0: self.lastDirectory=os.path.split(drawing)[0] self.mdiArea.activeSubWindow().importExternalFormat(drawing) <<<<<<<<<<<<<it crashes here return saying "unhandled attribute error" none type object has no attribute "importExternalFormat" regards carlo ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-10-29 06:26 Message: could you post part of the code Regards, Matteo ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3097630&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-17 07:00:54
|
PythoncadBugTraker item #3062600, was opened at 2010-09-09 14:15 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3062600&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. >Category: Critical Bugs Group: R38 >Status: Closed Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) >Assigned to: Matteo Boscolo (matteoboscolo) Summary: Installation problem under windows vista Initial Comment: Hi all, I have installed PythonCAD pre alfa 03 under windowsVista as normal user but I'm not able to start the program Regards ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-17 08:00 Message: Problem fixed in new alfa 04 ---------------------------------------------------------------------- Comment By: carlopav (carlopav) Date: 2010-10-28 21:47 Message: No doubt this is one of the most common questions/frustrations about Windows Vista. Even if you log on as an administrator, you don’t really have administrative rights, thanks to UAC (User Account Control). UAC runs almost everything using non-administrator rights to help protect you from bad software that would abuse those administrator rights to change your settings or install viruses. When you run a setup program, UAC should automatically prompt you to run it as an administrator using the UAC prompt (which Microsoft calls the “consent” prompt). If you don’t see this, right-click the program, and then click Run As Administrator. Then, it will really run as an administrator. It should have prompted you, but for some reason, Vista didn’t realize it needed Administrator rights. let me know if it works like this ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3062600&group_id=263167 |
From: Matteo B. <mat...@bo...> - 2011-01-16 09:53:04
|
Hi all, from today commit you can find a context menu related to the graphical entity .. for now you can only delete the entity .. but very soon I will add the property command .. so finnaly we can change the line type and line color .. regards, Matteo |
From: SourceForge.net <no...@so...> - 2011-01-10 06:59:26
|
PythoncadWishTraker item #3048462, was opened at 2010-08-19 10:09 Message generated for change (Settings changed) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1334597&aid=3048462&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Improvements Group: R38 Status: Open Resolution: None Priority: 5 Private: No Submitted By: carlopav (carlopav) >Assigned to: Matteo Boscolo (matteoboscolo) Summary: Layer groups Initial Comment: the possibility to group layers could really speed up drawing process ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-10 07:59 Message: >From today commit you have the capability to show hide the layer ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-12-19 11:36 Message: from today commit we have started the layer module. ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-08-20 09:43 Message: In our development plan will be the possibility to add groups of entity ..(Layer) There is no limit on it . Our layer structure is a tree layer structure, so you can build a layer of layers in this case you can build a group of layer. At the moment the layer implementation is not in the user interface .. Regards, Matteo ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1334597&aid=3048462&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-10 06:59:14
|
PythoncadWishTraker item #3048462, was opened at 2010-08-19 10:09 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1334597&aid=3048462&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Improvements Group: R38 Status: Open Resolution: None Priority: 5 Private: No Submitted By: carlopav (carlopav) Assigned to: Nobody/Anonymous (nobody) Summary: Layer groups Initial Comment: the possibility to group layers could really speed up drawing process ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2011-01-10 07:59 Message: >From today commit you have the capability to show hide the layer ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-12-19 11:36 Message: from today commit we have started the layer module. ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-08-20 09:43 Message: In our development plan will be the possibility to add groups of entity ..(Layer) There is no limit on it . Our layer structure is a tree layer structure, so you can build a layer of layers in this case you can build a group of layer. At the moment the layer implementation is not in the user interface .. Regards, Matteo ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1334597&aid=3048462&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-02 08:34:17
|
PythoncadBugTraker item #3149611, was opened at 2011-01-02 09:34 Message generated for change (Tracker Item Submitted) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3149611&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Critical Bugs Group: Developer Status: Open Resolution: None Priority: 9 Private: No Submitted By: Matteo Boscolo (matteoboscolo) Assigned to: Matteo Boscolo (matteoboscolo) Summary: Close command do not free the pointer to the file Initial Comment: This command doesn't really free completely the named file, indeed if you try to rename or delete it before closing PyCAD, the system will tell you that “The action can't be completed because the file is open in another program”. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3149611&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-02 08:27:09
|
PythoncadBugTraker item #3149608, was opened at 2011-01-02 09:27 Message generated for change (Tracker Item Submitted) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3149608&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Usability Group: R38 Status: Open Resolution: None Priority: 3 Private: No Submitted By: Matteo Boscolo (matteoboscolo) Assigned to: Matteo Boscolo (matteoboscolo) Summary: Recent file problem releted Initial Comment: This list will always show five names, even when, at the beginning of the world, there are fewer of them. So that, initial names in this list cannot be trusted. The same name can appear more than once in this list (see figure), and can refer either to the same file or to different files located into different directories. No way for the [poor] user to make the difference. No check is made to verify whether a listed file does really exist, or not. Besides, to utter confusion, if you click the name of an inexistent file, PyCAD will anyhow create it brand new for you. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3149608&group_id=263167 |
From: SourceForge.net <no...@so...> - 2011-01-02 08:15:43
|
PythoncadWishTraker item #3149605, was opened at 2011-01-02 09:15 Message generated for change (Tracker Item Submitted) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1334597&aid=3149605&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Improvements Group: R38 Status: Open Resolution: None Priority: 3 Private: No Submitted By: Matteo Boscolo (matteoboscolo) Assigned to: Nobody/Anonymous (nobody) Summary: Initial open file folder Initial Comment: The initial user's (top-)directory here pointed by the Open Drawing control form is different from the user's (sub-)directory where the New Drawing automatically operates (see). These two commands operate independently, and with no co-ordinated default mechanism offered to the benefit of the [poor] user. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1334597&aid=3149605&group_id=263167 |
From: SourceForge.net <no...@so...> - 2010-12-30 08:39:57
|
PythoncadBugTraker item #3147795, was opened at 2010-12-29 22:03 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3147795&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Usability Group: R38 Status: Open >Resolution: Accepted >Priority: 6 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Matteo Boscolo (matteoboscolo) Summary: changing window causes command to be cancelled Initial Comment: A PyCAD command sequence can be terminated also by other actions, such as switching to and back from another desktop window; we'd like to know if that's by design, or not. ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-12-30 09:39 Message: I will take care of this as soon its possible ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2010-12-30 09:35 Message: yes it is because if you want for example to use windows calculator or an openoffice calc sheet while drawing a polyline you simply can't... if it takes too long this could be postponed carlo ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-12-30 08:29 Message: If you switch windows the active command is erased. This choice is due to the command structure that interact with the main application. We can do some improving on that of course ... But it's very useful having the command active even if we change the active drawing ? Regards, Matteo ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3147795&group_id=263167 |
From: SourceForge.net <no...@so...> - 2010-12-30 08:35:04
|
PythoncadBugTraker item #3147795, was opened at 2010-12-29 21:03 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3147795&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Usability Group: R38 Status: Pending Resolution: Postponed Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Matteo Boscolo (matteoboscolo) Summary: changing window causes command to be cancelled Initial Comment: A PyCAD command sequence can be terminated also by other actions, such as switching to and back from another desktop window; we'd like to know if that's by design, or not. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2010-12-30 08:35 Message: yes it is because if you want for example to use windows calculator or an openoffice calc sheet while drawing a polyline you simply can't... if it takes too long this could be postponed carlo ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-12-30 07:29 Message: If you switch windows the active command is erased. This choice is due to the command structure that interact with the main application. We can do some improving on that of course ... But it's very useful having the command active even if we change the active drawing ? Regards, Matteo ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3147795&group_id=263167 |
From: SourceForge.net <no...@so...> - 2010-12-30 08:34:36
|
PythoncadBugTraker item #3147799, was opened at 2010-12-29 22:13 Message generated for change (Comment added) made by matteoboscolo You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3147799&group_id=263167 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: carlopav (carlopav) Assigned to: Nobody/Anonymous (nobody) Summary: General text and messages update and correction Initial Comment: Save in a Different Location... ---------------------------------------------------------------------- >Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-12-30 09:34 Message: did you mean the default name for a new drawing ? if it's for this I can't Every new file generated from PythonCAD need to have a unique name because it's a sqlite db it's not in memory as all other cad pakage. so for this i use the name unique PyCad_tuhbai.pdr i can change in PythonCAD_Drawing_tuhbai.pdr if you wish .. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2010-12-30 09:24 Message: i opened the traker in general for every message error or misunderstanding carlo ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2010-12-30 09:23 Message: just to change default filename to drawing.pdr or something like as PM suggested ---------------------------------------------------------------------- Comment By: Matteo Boscolo (matteoboscolo) Date: 2010-12-30 08:18 Message: What did you mead as default file name ? ---------------------------------------------------------------------- Comment By: carlopav (carlopav) Date: 2010-12-29 22:17 Message: default filename home.pdr ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1128790&aid=3147799&group_id=263167 |