mailr12028 - in /branches/bieri_gui/scripts/gui: about_gui.py about_model_free.py about_relax.py refs.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on December 30, 2010 - 11:36:
Author: bugman
Date: Thu Dec 30 11:36:51 2010
New Revision: 12028

URL: http://svn.gna.org/viewcvs/relax?rev=12028&view=rev
Log:
Added copyright notices and comments to all the GUI window launching scripts.


Modified:
    branches/bieri_gui/scripts/gui/about_gui.py
    branches/bieri_gui/scripts/gui/about_model_free.py
    branches/bieri_gui/scripts/gui/about_relax.py
    branches/bieri_gui/scripts/gui/refs.py

Modified: branches/bieri_gui/scripts/gui/about_gui.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/scripts/gui/about_gui.py?rev=12028&r1=12027&r2=12028&view=diff
==============================================================================
--- branches/bieri_gui/scripts/gui/about_gui.py (original)
+++ branches/bieri_gui/scripts/gui/about_gui.py Thu Dec 30 11:36:51 2010
@@ -1,8 +1,33 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2010 Edward d'Auvergne                                       
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax is free software; you can redistribute it and/or modify              
 #
+# it under the terms of the GNU General Public License as published by       
 #
+# the Free Software Foundation; either version 2 of the License, or          
 #
+# (at your option) any later version.                                        
 #
+#                                                                            
 #
+# relax is distributed in the hope that it will be useful,                   
 #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of             
 #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              
 #
+# GNU General Public License for more details.                               
 #
+#                                                                            
 #
+# You should have received a copy of the GNU General Public License          
 #
+# along with relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
 
+# Python module imports.
 import wx
 
+# GUI module imports.
 from gui_bieri.about import About_gui
 
+
+# Build the app and show the window.
 app = wx.App(0)
 win = About_gui(None)
 win.Show()

Modified: branches/bieri_gui/scripts/gui/about_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/scripts/gui/about_model_free.py?rev=12028&r1=12027&r2=12028&view=diff
==============================================================================
--- branches/bieri_gui/scripts/gui/about_model_free.py (original)
+++ branches/bieri_gui/scripts/gui/about_model_free.py Thu Dec 30 11:36:51 
2010
@@ -1,8 +1,33 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2010 Edward d'Auvergne                                       
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax is free software; you can redistribute it and/or modify              
 #
+# it under the terms of the GNU General Public License as published by       
 #
+# the Free Software Foundation; either version 2 of the License, or          
 #
+# (at your option) any later version.                                        
 #
+#                                                                            
 #
+# relax is distributed in the hope that it will be useful,                   
 #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of             
 #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              
 #
+# GNU General Public License for more details.                               
 #
+#                                                                            
 #
+# You should have received a copy of the GNU General Public License          
 #
+# along with relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
 
+# Python module imports.
 import wx
 
+# GUI module imports.
 from gui_bieri.analyses.auto_model_free import About_window
 
+
+# Build the app and show the window.
 app = wx.App(0)
 win = About_window(None)
 win.Show()

Modified: branches/bieri_gui/scripts/gui/about_relax.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/scripts/gui/about_relax.py?rev=12028&r1=12027&r2=12028&view=diff
==============================================================================
--- branches/bieri_gui/scripts/gui/about_relax.py (original)
+++ branches/bieri_gui/scripts/gui/about_relax.py Thu Dec 30 11:36:51 2010
@@ -1,8 +1,33 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2010 Edward d'Auvergne                                       
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax is free software; you can redistribute it and/or modify              
 #
+# it under the terms of the GNU General Public License as published by       
 #
+# the Free Software Foundation; either version 2 of the License, or          
 #
+# (at your option) any later version.                                        
 #
+#                                                                            
 #
+# relax is distributed in the hope that it will be useful,                   
 #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of             
 #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              
 #
+# GNU General Public License for more details.                               
 #
+#                                                                            
 #
+# You should have received a copy of the GNU General Public License          
 #
+# along with relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
 
+# Python module imports.
 import wx
 
+# GUI module imports.
 from gui_bieri.about import About_relax
 
+
+# Build the app and show the window.
 app = wx.App(0)
 win = About_relax(None)
 win.Show()

Modified: branches/bieri_gui/scripts/gui/refs.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/scripts/gui/refs.py?rev=12028&r1=12027&r2=12028&view=diff
==============================================================================
--- branches/bieri_gui/scripts/gui/refs.py (original)
+++ branches/bieri_gui/scripts/gui/refs.py Thu Dec 30 11:36:51 2010
@@ -1,8 +1,33 @@
+###############################################################################
+#                                                                            
 #
+# Copyright (C) 2010 Edward d'Auvergne                                       
 #
+#                                                                            
 #
+# This file is part of the program relax.                                    
 #
+#                                                                            
 #
+# relax is free software; you can redistribute it and/or modify              
 #
+# it under the terms of the GNU General Public License as published by       
 #
+# the Free Software Foundation; either version 2 of the License, or          
 #
+# (at your option) any later version.                                        
 #
+#                                                                            
 #
+# relax is distributed in the hope that it will be useful,                   
 #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of             
 #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              
 #
+# GNU General Public License for more details.                               
 #
+#                                                                            
 #
+# You should have received a copy of the GNU General Public License          
 #
+# along with relax; if not, write to the Free Software                       
 #
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
 #
+#                                                                            
 #
+###############################################################################
 
+# Python module imports.
 import wx
 
+# GUI module imports.
 from gui_bieri.references import References
 
+
+# Build the app and show the window.
 app = wx.App(0)
 ref = References(None)
 ref.Show()




Related Messages


Powered by MHonArc, Updated Thu Dec 30 12:00:02 2010