summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@gmail.com>2017-01-02 18:22:04 +0000
committerRichard Maw <richard.maw@gmail.com>2017-01-02 18:25:52 +0000
commit47da40148925ad23a0fae8aeabe0ef6fd5c81e8c (patch)
tree484aed924d03052fefdd20e847031dac934f0fc1 /doc
parent382e823a5d936e2acdf53252adf1f921ef0c241f (diff)
downloadgitano-47da40148925ad23a0fae8aeabe0ef6fd5c81e8c.tar.gz
admin-doc: Describe aliases and negations of match operators
Diffstat (limited to 'doc')
-rw-r--r--doc/admin/000.mdwn5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/admin/000.mdwn b/doc/admin/000.mdwn
index 2c3e74b..dce6328 100644
--- a/doc/admin/000.mdwn
+++ b/doc/admin/000.mdwn
@@ -228,13 +228,18 @@ These use the predicate
1. `exact` if the operand must be exactly the same as the value.
This makes the most sense for the `operation` operator.
+ `is` is an alias for `exact`.
2. `prefix` if the value must begin with the operand.
+ `starts` and `startswith` are aliases for `prefix`.
3. `suffix` if the value must end with the operand.
+ `ends` and `endswith` are aliases for `suffix`.
`prefix` is often used for branch namespaces,
and may be used for repository namespaces.
4. `pattern` if the value must match a lua string match expression.
5. `pcre` if the value must match a perl-compatible regular expression.
+ Or one of the above with `!` prepended to invert the result.
+
2. The operand to compare against.
In this case our condition evalueates to true