Closed GoogleCodeExporter closed 9 years ago
Currently accepted:
<action>if [ true ]; then echo true; fi</action>
<action>if [ false ]; then echo false; fi</action>
<action>if true enable:VARNAME</action>
<action>if false disable:VARNAME</action>
Suggestions for improvements:
<action>if read-true-or-false-from-a-file enable:VARNAME</action>
<action>if read-true-or-false-from-a-shell enable:VARNAME</action>
Both of the above will require wrapping in a unique character especially since
there could be whitespace, but what shall I use? It's got to be something that
won't interfere with the parser and definitely can't be a shell command. Maybe:
<action>if file(read-true-or-false-from-a-file) enable:VARNAME</action>
<action>if command(read-true-or-false-from-a-shell) enable:VARNAME</action>
So I'd check for "if file(" and "if command(" but then the closing bracket
could be part of a shell command, so I'll just have to check for function:
following it since this is the most sensible and intuitive way to implement it
[so far].
The widget_signal_executor() will require a rewrite.
Original comment by thunor...@hotmail.com
on 22 Nov 2012 at 12:38
Done in r476.
if file()
if ! file()
if command()
if ! command()
Original comment by thunor...@hotmail.com
on 24 Nov 2012 at 3:56
Original issue reported on code.google.com by
thunor...@hotmail.com
on 1 Nov 2012 at 12:01