Update readme to use quotes for channel_conditions details

This commit is contained in:
John Reese 2011-02-14 14:33:52 -05:00
parent 33b381eb87
commit a855fe7eb5
1 changed files with 10 additions and 10 deletions

View File

@ -212,20 +212,20 @@ Configuration
The expression consists of space-separated tokens in the following grammar: The expression consists of space-separated tokens in the following grammar:
* `expression = expression operator expression | "(" expression ")" | value` * expression = expression operator expression | "(" expression ")" | value
* `operator = "and" | "or"` * operator = "and" | "or"
* `value = "true" | "false" | condition` * value = "true" | "false" | condition
* `condition = <any condition option>` * condition = <any condition option>
As a simple example, to replicate the default "all" value, would be the value of As a simple example, to replicate the default "all" value, would be the value of
`away_only and client_count_less_than and highlight and idle and last_active and "away_only and client_count_less_than and highlight and idle and last_active and
last_notification and nick_blacklist and replied`. last_notification and nick_blacklist and replied".
Alternately, setting a value of `true` would send a notification for *every* message, Alternately, setting a value of "true" would send a notification for *every* message,
while a value of `false` would *never* send a notification. while a value of "false" would *never* send a notification.
For a more complicated example, the value of `client_count_less_than and highlight and For a more complicated example, the value of "client_count_less_than and highlight and
(last_active or last_notification or replied) and nick_blacklist` would send a (last_active or last_notification or replied) and nick_blacklist" would send a
notification if any of the three conditions in the sub-expression are met, while still notification if any of the three conditions in the sub-expression are met, while still
requiring all of the conditions outside of the parentheses to also be met. requiring all of the conditions outside of the parentheses to also be met.