================================================== Dabo-users List Statistics February 2019 ================================================== Subscriber Count at End of Month: 289 ==================================================
Total Posts: 1 (Down 50.0% from January 2019)
Daily Message Counts for February 2019 ------------------------------------------------ DOW Date Count --- ---- ----- F 1 - 1
Message Counts By Day of Week for February 2019 ------------------------------------------------ DOW Count --- ----- Fri - 1
Distinct Posters to the List (changes relative to January 2019) ------------------------------------------------ Total number: 1 (Unchanged)
Top 1 Contributors by Total Number of Posts ------------------------------------------------ | Posts Contributor | ------------------------------------------------ 1. 1 List Administrator Account
Top 1 Contributors by Number of New Threads Started ------------------------------------------------ | Posts Contributor | ------------------------------------------------ 1. 1 List Administrator Account
Top 1 Threads by Total Number of Posts ------------------------------------------------------------------ | Posts Subject | ------------------------------------------------------------------ 1. 1 [dabo-users] Dabo-users List Statistics for January 2019
Any chance to migrate Dabo to python 3 and wxpython 4+? How could you collaborate in this task?
El vie., 1 mar. 2019 a las 10:05, List Administrator Account (< listmom@leafe.com>) escribió:
================================================== Dabo-users List Statistics February 2019 ================================================== Subscriber Count at End of Month: 289 ==================================================
Total Posts: 1 (Down 50.0% from January 2019)
Daily Message Counts for February 2019
DOW Date Count
F 1 - 1
Message Counts By Day of Week for February 2019
DOW Count
Fri - 1
Distinct Posters to the List (changes relative to January 2019)
Total number: 1 (Unchanged)
Top 1 Contributors by Total Number of Posts
| Posts Contributor |
- 1 List Administrator Account
Top 1 Contributors by Number of New Threads Started
| Posts Contributor |
- 1 List Administrator Account
Top 1 Threads by Total Number of Posts
| Posts Subject |
- 1 [dabo-users] Dabo-users List Statistics for January 2019
Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/20190301130502.0C736122BB6@mail.leafe.com
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html ---
On Mar 1, 2019, at 7:24 AM, Carlos Miguel FARIAS carlosmiguelfarias@gmail.com wrote:
Any chance to migrate Dabo to python 3 and wxpython 4+? How could you collaborate in this task?
Sure: there is the dabo3 branch of the code here: https://github.com/dabodev/dabo/tree/dabo3. In summary: the Python3 stuff is done; the integration with wxPython 4.x is not working.
I don’t have a lot of free time, so I can’t make any guarantees as to how long it will take to get it working. John Fabiani has also been helping to debug the problems with the wxPython 4.x interactions. But if you download that branch and run it under Python3, I’d be interested in seeing if you could make some progress on the wxPython problems.
-- Ed Leafe
On 3/1/19 5:40 AM, Ed Leafe wrote:
On Mar 1, 2019, at 7:24 AM, Carlos Miguel FARIAS carlosmiguelfarias@gmail.com wrote:
Any chance to migrate Dabo to python 3 and wxpython 4+? How could you collaborate in this task?
Sure: there is the dabo3 branch of the code here: https://github.com/dabodev/dabo/tree/dabo3. In summary: the Python3 stuff is done; the integration with wxPython 4.x is not working.
I don’t have a lot of free time, so I can’t make any guarantees as to how long it will take to get it working. John Fabiani has also been helping to debug the problems with the wxPython 4.x interactions. But if you download that branch and run it under Python3, I’d be interested in seeing if you could make some progress on the wxPython problems.
-- Ed Leafe
I also would add that I believe the current issue that is causing the seg faults has nothing to do with Dabo's menu system, or status bar. I believe I was able to trace it to the way the frame is being created. Change the self.ShowMenuBar from true to false dFormMixin.py -> _afterInit() #jfcs added below to prevent the menu from running self.ShowMenuBar = False There is something similar for the status bar.
Ed also placed a check for the extra parameters passed to classes that also muddies the water (reporting printing statement). I removed the print statements (I think they are in dPemMixin.py). Ed suggested that they are just warnings.
What platform are you going to be doing the dev work?
Johnf
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html ---
I'll see first how to test how it is now with python 3, then I'll start to see what's wrong with wxpython 4+ I hope to make some contribution. Greetings: Carlos Miguel Farías
El vie., 1 mar. 2019 a las 11:06, john fabiani (johnf@jfcomputer.com) escribió:
On 3/1/19 5:40 AM, Ed Leafe wrote:
On Mar 1, 2019, at 7:24 AM, Carlos Miguel FARIAS <
carlosmiguelfarias@gmail.com> wrote:
Any chance to migrate Dabo to python 3 and wxpython 4+? How could you collaborate in this task?
Sure: there is the dabo3 branch of the code here:
https://github.com/dabodev/dabo/tree/dabo3. In summary: the Python3 stuff is done; the integration with wxPython 4.x is not working.
I don’t have a lot of free time, so I can’t make any guarantees as to
how long it will take to get it working. John Fabiani has also been helping to debug the problems with the wxPython 4.x interactions. But if you download that branch and run it under Python3, I’d be interested in seeing if you could make some progress on the wxPython problems.
-- Ed Leafe
I also would add that I believe the current issue that is causing the seg faults has nothing to do with Dabo's menu system, or status bar. I believe I was able to trace it to the way the frame is being created. Change the self.ShowMenuBar from true to false dFormMixin.py -> _afterInit() #jfcs added below to prevent the menu from running self.ShowMenuBar = False There is something similar for the status bar.
Ed also placed a check for the extra parameters passed to classes that also muddies the water (reporting printing statement). I removed the print statements (I think they are in dPemMixin.py). Ed suggested that they are just warnings.
What platform are you going to be doing the dev work?
Johnf
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html
Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/91ae02f0-31d9-8af3-ea60-9a9253546241@jfcompu...
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html ---
Windows 7 or 10
El vie., 1 mar. 2019 a las 14:54, Carlos Miguel FARIAS (< carlosmiguelfarias@gmail.com>) escribió:
I'll see first how to test how it is now with python 3, then I'll start to see what's wrong with wxpython 4+ I hope to make some contribution. Greetings: Carlos Miguel Farías
El vie., 1 mar. 2019 a las 11:06, john fabiani (johnf@jfcomputer.com) escribió:
On 3/1/19 5:40 AM, Ed Leafe wrote:
On Mar 1, 2019, at 7:24 AM, Carlos Miguel FARIAS <
carlosmiguelfarias@gmail.com> wrote:
Any chance to migrate Dabo to python 3 and wxpython 4+? How could you collaborate in this task?
Sure: there is the dabo3 branch of the code here:
https://github.com/dabodev/dabo/tree/dabo3. In summary: the Python3 stuff is done; the integration with wxPython 4.x is not working.
I don’t have a lot of free time, so I can’t make any guarantees as to
how long it will take to get it working. John Fabiani has also been helping to debug the problems with the wxPython 4.x interactions. But if you download that branch and run it under Python3, I’d be interested in seeing if you could make some progress on the wxPython problems.
-- Ed Leafe
I also would add that I believe the current issue that is causing the seg faults has nothing to do with Dabo's menu system, or status bar. I believe I was able to trace it to the way the frame is being created. Change the self.ShowMenuBar from true to false dFormMixin.py -> _afterInit() #jfcs added below to prevent the menu from running self.ShowMenuBar = False There is something similar for the status bar.
Ed also placed a check for the extra parameters passed to classes that also muddies the water (reporting printing statement). I removed the print statements (I think they are in dPemMixin.py). Ed suggested that they are just warnings.
What platform are you going to be doing the dev work?
Johnf
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html
Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/91ae02f0-31d9-8af3-ea60-9a9253546241@jfcompu...
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html ---
I have not tried using windows as of yet. Good Luck. I would suggest that we use the dev forum rather than the users forum. I will help as much as I can and have time too.
Johnf
On 3/1/19 9:56 AM, Carlos Miguel FARIAS wrote:
Windows 7 or 10
El vie., 1 mar. 2019 a las 14:54, Carlos Miguel FARIAS (< carlosmiguelfarias@gmail.com>) escribió:
I'll see first how to test how it is now with python 3, then I'll start to see what's wrong with wxpython 4+ I hope to make some contribution. Greetings: Carlos Miguel Farías
El vie., 1 mar. 2019 a las 11:06, john fabiani (johnf@jfcomputer.com) escribió:
On 3/1/19 5:40 AM, Ed Leafe wrote:
On Mar 1, 2019, at 7:24 AM, Carlos Miguel FARIAS <
carlosmiguelfarias@gmail.com> wrote:
Any chance to migrate Dabo to python 3 and wxpython 4+? How could you collaborate in this task?
Sure: there is the dabo3 branch of the code here:
https://github.com/dabodev/dabo/tree/dabo3. In summary: the Python3 stuff is done; the integration with wxPython 4.x is not working.
I don’t have a lot of free time, so I can’t make any guarantees as to
how long it will take to get it working. John Fabiani has also been helping to debug the problems with the wxPython 4.x interactions. But if you download that branch and run it under Python3, I’d be interested in seeing if you could make some progress on the wxPython problems.
-- Ed Leafe
I also would add that I believe the current issue that is causing the seg faults has nothing to do with Dabo's menu system, or status bar. I believe I was able to trace it to the way the frame is being created. Change the self.ShowMenuBar from true to false dFormMixin.py -> _afterInit() #jfcs added below to prevent the menu from running self.ShowMenuBar = False There is something similar for the status bar.
Ed also placed a check for the extra parameters passed to classes that also muddies the water (reporting printing statement). I removed the print statements (I think they are in dPemMixin.py). Ed suggested that they are just warnings.
What platform are you going to be doing the dev work?
Johnf
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html
Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/91ae02f0-31d9-8af3-ea60-9a9253546241@jfcompu...
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html
Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/CACqOu4xqiED602+qcCUAcEqyfhYintQQG2On9-8CcEk...
--- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html ---