]> git.tokkee.org Git - gosa.git/commitdiff

Code

Added new TODO and removed invalid attribute
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 27 Jun 2005 13:18:52 +0000 (13:18 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 27 Jun 2005 13:18:52 +0000 (13:18 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@878 594d385d-05f5-0310-b6e9-bd551577e9d8

TODO
plugins/admin/systems/class_winGeneric.inc

diff --git a/TODO b/TODO
index dba8e8455822fddbc57722e4e6956f8a53615e46..ae928bb1cf4724c6f7f3a6eeeaf6c5f4af77a2ef 100644 (file)
--- a/TODO
+++ b/TODO
@@ -3,12 +3,15 @@ Things to fix before 2.4:
 
 * Finish kolab integration
   - shared folders
+* Fix problem with winstation and invalid structural object class chain (inetOrgPerson/device)
 
 
 Target for 2.5:
 ===============
 
-* Complete PHP5 compliance
+* Complete PHP5 compliance and optimization
+
+* Simplify plugins by providing a schema parser
 
 * Remove smarty from SVN. It has an own repository.
 
index a9533636a93d81bf65561a76478afe137a540ae8..495741d68dd76e183a4ace3eaafa3de556e05427 100644 (file)
@@ -32,7 +32,6 @@ class wingeneric extends plugin
   var $sambaSID="";
   var $sambaPrimaryGroupSID="";
   var $displayName="";
-  var $sambaPwdCanChange2="";
   var $sambaPwdMustChange="";
   var $sambaNTPassword="";
   var $sambaPwdLastSet="";
@@ -43,7 +42,7 @@ class wingeneric extends plugin
   var $attributes   = array("cn", "description", "macAddress", "ipHostNumber","shadowLastChange",
                             "uidNumber","gidNumber","loginShell","gecos","shadowMin","shadowWarning",
                             "shadowInactive","uid","cn","sn","givenName","homeDirectory","sambaSID",
-                            "sambaPrimaryGroupSID","displayName", "sambaPwdCanChange2","sambaPwdMustChange",
+                            "sambaPrimaryGroupSID","displayName", "sambaPwdMustChange",
                             "sambaNTPassword","sambaPwdLastSet","sambaAcctFlags");
   var $objectclasses= array("posixAccount","person","organizationalPerson","inetOrgPerson","gosaAccount","shadowAccount","sambaSamAccount","top", "device", "ipHost", "ieee802Device");