mailr22182 - in /trunk: relax.py status.py


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

Header


Content

Posted by tlinnet on February 14, 2014 - 10:32:
Author: tlinnet
Date: Fri Feb 14 10:32:17 2014
New Revision: 22182

URL: http://svn.gna.org/viewcvs/relax?rev=22182&view=rev
Log:
Added the -p --prompt option for running a relax script and inspect 
interactively.

Fix for sr #3117, (https://gna.org/support/?3117) - Functionality to inspect 
interactively after running script - The equivalence to python -i

Modified:
    trunk/relax.py
    trunk/status.py

Modified: trunk/relax.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/relax.py?rev=22182&r1=22181&r2=22182&view=diff
==============================================================================
--- trunk/relax.py (original)
+++ trunk/relax.py Fri Feb 14 10:32:17 2014
@@ -280,6 +280,7 @@
         parser.add_option('-t', '--tee', action='store', type='string', 
dest='tee', help='tee relax output to stdout and the file LOG_FILE', 
metavar='LOG_FILE')
         parser.add_option('-g', '--gui', action='store_true', dest='gui', 
default=0, help='launch the relax GUI')
         parser.add_option('-e', '--escalate', action='store_true', 
dest='escalate', default=0, help='escalate all warnings to errors')
+        parser.add_option('-p', '--prompt', action='store_true', 
dest='prompt', default=0, help='execute the given script and continue into 
the prompt mode to allow for interactive inspection')
         parser.add_option('--test', action='store_true', dest='test', 
default=0, help='run relax in test mode')
         parser.add_option('-x', '--test-suite', action='store_true', 
dest='test_suite', default=0, help='execute the relax test suite')
         parser.add_option('-s', '--system-tests', action='store_true', 
dest='system_tests', default=0, help='execute the relax system/functional 
tests (part of the test suite)')
@@ -305,6 +306,10 @@
         if options.escalate:
             status.escalate = True
 
+        # Script prompt interactive inspection flag.
+        if options.prompt:
+            status.prompt = True
+
         # Logging.
         if options.log:
             # Exclusive modes.

Modified: trunk/status.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/status.py?rev=22182&r1=22181&r2=22182&view=diff
==============================================================================
--- trunk/status.py (original)
+++ trunk/status.py Fri Feb 14 10:32:17 2014
@@ -52,6 +52,7 @@
             # Initialise some variables.
             self._instance.debug = False
             self._instance.escalate = False
+            self._instance.prompt = False
             self._instance.test_mode = False
             self._instance.uf_intro = False
             self._instance.show_gui = False




Related Messages


Powered by MHonArc, Updated Fri Feb 14 11:40:03 2014