| OLD | NEW |
| 1 """engine.SCons.Variables.BoolVariable | 1 """engine.SCons.Variables.BoolVariable |
| 2 | 2 |
| 3 This file defines the option type for SCons implementing true/false values. | 3 This file defines the option type for SCons implementing true/false values. |
| 4 | 4 |
| 5 Usage example: | 5 Usage example: |
| 6 | 6 |
| 7 opts = Variables() | 7 opts = Variables() |
| 8 opts.Add(BoolVariable('embedded', 'build for an embedded system', 0)) | 8 opts.Add(BoolVariable('embedded', 'build for an embedded system', 0)) |
| 9 ... | 9 ... |
| 10 if env['embedded'] == 1: | 10 if env['embedded'] == 1: |
| 11 ... | 11 ... |
| 12 """ | 12 """ |
| 13 | 13 |
| 14 # | 14 # |
| 15 # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundat
ion | 15 # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 The SCons F
oundation |
| 16 # | 16 # |
| 17 # Permission is hereby granted, free of charge, to any person obtaining | 17 # Permission is hereby granted, free of charge, to any person obtaining |
| 18 # a copy of this software and associated documentation files (the | 18 # a copy of this software and associated documentation files (the |
| 19 # "Software"), to deal in the Software without restriction, including | 19 # "Software"), to deal in the Software without restriction, including |
| 20 # without limitation the rights to use, copy, modify, merge, publish, | 20 # without limitation the rights to use, copy, modify, merge, publish, |
| 21 # distribute, sublicense, and/or sell copies of the Software, and to | 21 # distribute, sublicense, and/or sell copies of the Software, and to |
| 22 # permit persons to whom the Software is furnished to do so, subject to | 22 # permit persons to whom the Software is furnished to do so, subject to |
| 23 # the following conditions: | 23 # the following conditions: |
| 24 # | 24 # |
| 25 # The above copyright notice and this permission notice shall be included | 25 # The above copyright notice and this permission notice shall be included |
| 26 # in all copies or substantial portions of the Software. | 26 # in all copies or substantial portions of the Software. |
| 27 # | 27 # |
| 28 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY | 28 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY |
| 29 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE | 29 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| 30 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | 30 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 31 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | 31 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 32 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | 32 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 33 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | 33 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 34 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 34 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 35 # | 35 # |
| 36 | 36 |
| 37 __revision__ = "src/engine/SCons/Variables/BoolVariable.py 3842 2008/12/20 22:59
:52 scons" | 37 __revision__ = "src/engine/SCons/Variables/BoolVariable.py 3897 2009/01/13 06:45
:54 scons" |
| 38 | 38 |
| 39 __all__ = ['BoolVariable',] | 39 __all__ = ['BoolVariable',] |
| 40 | 40 |
| 41 import string | 41 import string |
| 42 | 42 |
| 43 import SCons.Errors | 43 import SCons.Errors |
| 44 | 44 |
| 45 __true_strings = ('y', 'yes', 'true', 't', '1', 'on' , 'all' ) | 45 __true_strings = ('y', 'yes', 'true', 't', '1', 'on' , 'all' ) |
| 46 __false_strings = ('n', 'no', 'false', 'f', '0', 'off', 'none') | 46 __false_strings = ('n', 'no', 'false', 'f', '0', 'off', 'none') |
| 47 | 47 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 76 | 76 |
| 77 def BoolVariable(key, help, default): | 77 def BoolVariable(key, help, default): |
| 78 """ | 78 """ |
| 79 The input parameters describe a boolen option, thus they are | 79 The input parameters describe a boolen option, thus they are |
| 80 returned with the correct converter and validator appended. The | 80 returned with the correct converter and validator appended. The |
| 81 'help' text will by appended by '(yes|no) to show the valid | 81 'help' text will by appended by '(yes|no) to show the valid |
| 82 valued. The result is usable for input to opts.Add(). | 82 valued. The result is usable for input to opts.Add(). |
| 83 """ | 83 """ |
| 84 return (key, '%s (yes|no)' % help, default, | 84 return (key, '%s (yes|no)' % help, default, |
| 85 _validator, _text2bool) | 85 _validator, _text2bool) |
| OLD | NEW |