Minor doc fixes
authorDavid Zeuthen <davidz@redhat.com>
Mon, 21 May 2012 17:54:35 +0000 (13:54 -0400)
committerDavid Zeuthen <davidz@redhat.com>
Mon, 21 May 2012 17:54:35 +0000 (13:54 -0400)
Nuke the has_prefix() helper, it's just confusing.

Signed-off-by: David Zeuthen <davidz@redhat.com>
docs/man/polkit.xml

index ee658c5..57dd366 100644 (file)
@@ -717,16 +717,13 @@ polkit.addAdminRule(function(action, subject, details) {
 
       <para>
         Forbid users in group <literal>children</literal> to change
-        hostname configuration and allow anyone else to do it (after
-        authenticating as themselves):
+        hostname configuration (that is, any action starting wth
+        <literal>org.freedesktop.hostname1.</literal>) and allow
+        anyone else to do it after authenticating as themselves:
       </para>
       <programlisting><![CDATA[
-function has_prefix(str, prefix) {
-    return str.indexOf(prefix) == 0;
-}
-
 polkit.addRule(function(action, subject, details) {
-    if (has_prefix(action, "org.freedesktop.hostname1.")) {
+    if (action.indexOf("org.freedesktop.hostname1.") == 0) {
         if (subject.isInGroup("children")) {
             return "no";
         } else {