Code

* Modified schema to have Administrative instead of Administrational
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 28 Apr 2006 13:39:04 +0000 (13:39 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 28 Apr 2006 13:39:04 +0000 (13:39 +0000)
* Added function dummy to handle Tags
* Includes debugging output

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3169 594d385d-05f5-0310-b6e9-bd551577e9d8

contrib/openldap/gosa.schema
include/class_plugin.inc

index f85c56696ec367095b8fe67a288729b9dfa4e47d..73e78c1a8a1687fcad71a0249dd3389c9623c127 100644 (file)
@@ -301,12 +301,12 @@ objectclass ( 1.3.6.1.4.1.10098.1.2.1.19.14 NAME 'gosaIntranetAccount'
        MUST ( cn $ uid )
        MAY ( gosaDefaultLanguage ))
 
-objectclass ( 1.3.6.1.4.1.10098.1.2.1.19.15 NAME 'gosaAdministrationalUnit'
+objectclass ( 1.3.6.1.4.1.10098.1.2.1.19.15 NAME 'gosaAdministrativeUnit'
        DESC 'Marker for administrational units (v2.5)'
           SUP top AUXILIARY
        MUST ( gosaUnitTag ))
 
-objectclass ( 1.3.6.1.4.1.10098.1.2.1.19.16 NAME 'gosaAdministrationalUnitTag'
+objectclass ( 1.3.6.1.4.1.10098.1.2.1.19.16 NAME 'gosaAdministrativeUnitTag'
        DESC 'Marker for objects below administrational units (v2.5)'
           SUP top AUXILIARY
        MUST ( gosaUnitTag ))
index 9d7de4e59ff66c58dd69c003e8ca18b90a35a51d..0926763c92172d08f8ec41c2d7172f3a5c04a4c8 100644 (file)
@@ -319,6 +319,7 @@ class plugin
       }
     }
 
+    $this->handle_object_tagging();
   }
 
 
@@ -851,11 +852,12 @@ class plugin
 
   function handle_object_tagging()
   {
+    echo "Handle tagging<br>";
     /* Watch out for an administrative unit below own base */
-    echo "<b>handle_object_tagging()</b><br><pre>";
-    echo "DN  : ".$this->dn."\n";
-    echo "Base: ".$this->config->current['BASE']."\n";
-    echo "</pre>";
+    #echo "<b>handle_object_tagging()</b><br><pre>";
+    #echo "DN  : ".$this->dn."\n";
+    #echo "Base: ".$this->config->current['BASE']."\n";
+    #echo "</pre>";
 
     /* Make a base search on every department */
     //FIXME: evaluate if these informations should be cached, too