From: cajus Date: Fri, 23 Nov 2007 13:43:48 +0000 (+0000) Subject: Updated comments in heimdal plugin X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7da42021bacbd916f09c39b742509482c185c699;p=gosa.git Updated comments in heimdal plugin git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7875 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_password-methods-heimdal.inc b/include/class_password-methods-heimdal.inc index fb0874747..b4b2c52d2 100644 --- a/include/class_password-methods-heimdal.inc +++ b/include/class_password-methods-heimdal.inc @@ -30,12 +30,13 @@ class passwordMethodheimdal extends passwordMethod function is_available() { + #TODO # Check if heimdal information is available # in configuration and return true/false # - # In particular, we need the hook to feed kadmin + # In particular, we need the "heimdal_keygen" to feed kadmin in order to return "true". # - return true; + return false; } @@ -52,14 +53,19 @@ class passwordMethodheimdal extends passwordMethod function remove_from_parent() { + #TODO # Find and remove kerberos entry below $this->dn + # See https://oss.gonicus.de/labs/gosa/ticket/223 } function set_password() { + #TODO # Add or modify kerberos entry below $this->dn - + # See https://oss.gonicus.de/labs/gosa/ticket/223 + # Order: create entries, then call the heimdal_keygen hook with the realm (returned by generate_hash) + # to let it add the missing kerberos keys. } @@ -81,7 +87,10 @@ class passwordMethodheimdal extends passwordMethod function configure() { - echo "Show dialog"; + #TODO + # * Handle POST's from and for this dialog + # * Return filled template for the config sub-dialog. + # See https://oss.gonicus.de/labs/gosa/ticket/223 } }