summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2009-04-29 17:24:19 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2009-04-29 17:24:19 -0400
commit87cd98330ff97faf5f0b5ad5a2ea480651c36733 (patch)
tree61e077a6897d80ad05be3ef018006af7c79498b7
parentb491c0065852585f8b5d9aa6e580b49550d9bcf3 (diff)
downloadslapi-nis-87cd98330ff97faf5f0b5ad5a2ea480651c36733.tar.gz
slapi-nis-87cd98330ff97faf5f0b5ad5a2ea480651c36733.tar.xz
slapi-nis-87cd98330ff97faf5f0b5ad5a2ea480651c36733.zip
- fix a couple of markup/formatting mistakes
-rw-r--r--doc/format-specifiers.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/format-specifiers.txt b/doc/format-specifiers.txt
index 5cd788a..437f11f 100644
--- a/doc/format-specifiers.txt
+++ b/doc/format-specifiers.txt
@@ -146,7 +146,7 @@ And here's how it evaluates out:
=== deref ===
- * deref(''THISATTRIBUTE'',''THATATTRIBUTE'')
+ deref(''THISATTRIBUTE'',''THATATTRIBUTE'')
Returns a list of the values of ''THATATTRIBUTE'' for directory entries
named by this entry's ''THISATTRIBUTE''. Its function is similar in
@@ -224,29 +224,29 @@ And here's how various expressions evaluate for ''cn=group'':
%deref_r("member","foo") -> no values
%deref_r("member","uid") -> (bogus,bob,pete)
- When evaluating the first attribute, the ''member'' attribute of
- ''cn=group'' produces this set of entries:
+When evaluating the first attribute, the ''member'' attribute of
+''cn=group'' produces this set of entries:
* cn=group (the original entry)
* cn=othergroup (added because it was named by ''cn=group'')
* uid=bob (added because it was named by ''cn=group'')
* uid=pete (added because it was named by ''cn=othergroup'')
- The result list is pulled from this set of entries.
+The result list is pulled from this set of entries.
Here's another example:
%deref_r("includedgroup","member","uid") -> (bogus,bob,cmacleod,dmacleod,pete)
- When evaluating the first attribute, the ''includedgroup'' attribute
- of ''cn=group'' leads to this set of entries:
+When evaluating the first attribute, the ''includedgroup'' attribute
+of ''cn=group'' leads to this set of entries:
* cn=group (the original entry)
* clan=macleod (named by cn=group)
* cn=foundlings (named by clan=macleod)
- When evaluating the second attribute, the ''member'' attribute values
- for the previous set of entries produces this set of entries:
+When evaluating the second attribute, the ''member'' attribute values
+for the previous set of entries produces this set of entries:
* cn=othergroup (named by cn=group)
* uid=bob (named by cn=group)
@@ -254,7 +254,7 @@ Here's another example:
* uid=dmacleod (named by cn=foundlings)
* uid=pete (named by cn=othergroup)
- The result list is pulled from this set of entries.
+The result list is pulled from this set of entries.
Because the plugin attempts to track updates, every attribute used here
(except for ''VALUEATTRIBUTE'') should be indexed.