Menu

SVN archive Commit Log


Commit Date  
[r10269] by bugman

Status bar size increased.

This corresponds to the statusbar_size_patch file attached to https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file 100121_patches.tar.gz
(https://gna.org/support/download.php?file_id=7726).

The size of the statusbar (1st entry) was changed to get enought space to display 'repository
checkout' in 3rd entry.

2010-01-21 06:24:50 Tree
[r10268] by bugman

Replaced os.system('mkdir ' +.....) with os.mkdir().

This corresponds to the mkdir_patch file attached to https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file 100121_patches.tar.gz
(https://gna.org/support/download.php?file_id=7726).

2010-01-21 06:20:06 Tree
[r10267] by bugman

Removed the beta angle folding from the frame order module as it was failing.

2010-01-20 11:01:00 Tree
[r10266] by bugman

A few grammar fixes and version updates for the API documentation introductory page.

2010-01-20 10:33:30 Tree
[r10265] by bugman

The new module for the relaxGUI log window.

This is the file https://gna.org/support/download.php?file_id=7727 attached to task #6847
(https://gna.org/task/?6847) by Michael Bieri (https://gna.org/users/michaelbieri).

2010-01-20 10:23:27 Tree
[r10264] by bugman

Created feedback to relaxGUI Log Window during NOE calculation.

This corresponds to the calc_noe_patch file attached to https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file
https://gna.org/support/download.php?file_id=7726.

added:

class RedirectText --> redirect the relax output to relaxGUI Log Window

# Number of Monte Carlo simulations
global montecarlo
montecarlo = int(global_setting[6])

--> set monte carlo value for updating progress bar in log window

# value for progress bar during monte carlo simulation
global progress
progress = 5.0

--> initial progress value before monte carlo simulation

# redirect relax output and errors to relaxGUI - log panel
redir=RedirectText(self)
sys.stdout=redir
sys.stderr=redir

redirecting system output and error to new created class that updates log
window

2010-01-20 08:22:58 Tree
[r10263] by bugman

Created feedback to relaxGUI Log Window during Rx calculation

This corresponds to the calc_rx_patch file attached to https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file
https://gna.org/support/download.php?file_id=7726.

added:

class RedirectText --> redirect the relax output to relaxGUI Log Window

# Number of Monte Carlo simulations
global montecarlo
montecarlo = int(global_setting[6])

--> set monte carlo value for updating progress bar in log window

# value for progress bar during monte carlo simulation
global progress
progress = 5.0

--> initial progress value before monte carlo simulation

# redirect relax output and errors to relaxGUI - log panel
redir=RedirectText(self)
sys.stdout=redir
sys.stderr=redir

redirecting system output and error to new created class that updates log
window

2010-01-20 08:21:22 Tree
[r10262] by bugman

Replaced tabulators to 4 space characters in calc_model_free.py.

This corresponds to the removed_tab_in_modelfree_patch file attached to https://gna.org/task/?6847
by Michael Bieri (https://gna.org/users/michaelbieri), in the zip file
https://gna.org/support/download.php?file_id=7726.

This patch contained far more changes than just the tab fixes, but only that part is being committed
here. The gui_bieri.relax_gui changes appear to be in the other patches anyway.

2010-01-20 08:18:38 Tree
[r10261] by bugman

Replaced 'form xxxx import *' with 'from xxx import yyy, aaa....' in relax_gui.py.

This corresponds to the import_patch file attached to https://gna.org/task/?6847 by
Michael Bieri (https://gna.org/users/michaelbieri), in the zip file
https://gna.org/support/download.php?file_id=7726.

2010-01-20 08:00:05 Tree
[r10260] by bugman

The about relaxGUI panel does not create its own wx application.

removed in about.py:
- app = wx.PySimpleApp(0)
- wx.InitAllImageHandlers()
- start = MyFrame(None, -1, "")
- app.SetTopWindow(start)
- start.Show()
- app.MainLoop()

changed:
xw.Frame to wx.Dialog in about.py

moved in _init_.py (main folder):

+ # start wx Application
+ relaxGUI = wx.PySimpleApp(0)
+ wx.InitAllImageHandlers()

--> to start one wx application for about panel and main relaxGUI window

2010-01-20 07:56:41 Tree
Older >
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.