Code

Fixed patch which fixed the location of class mappings for installed packages. Broken...
[gosa.git] / gosa-core / debian / patches / 03_fix_class_mapping.dpatch
1 #! /bin/sh /usr/share/dpatch/dpatch-run
2 ## 03_fix_class_mapping.dpatch by  <cajus@localhost>
3 ##
4 ## All lines beginning with `## DP:' are a description of the patch.
5 ## DP: No description.
7 @DPATCH@
8 diff -urNad gosa-core~/include/class_config.inc gosa-core/include/class_config.inc
9 --- gosa-core~/include/class_config.inc 2008-07-10 17:18:52.000000000 +0200
10 +++ gosa-core/include/class_config.inc  2008-07-15 10:00:12.000000000 +0200
11 @@ -76,12 +76,12 @@
12          if we have installed or removed plugins. 
13       */
14      if(session::is_set("class_location.inc:timestamp")){
15 -      $tmp = stat("../include/class_location.inc");
16 +      $tmp = stat("/var/cache/gosa/class.cache");
17        if($tmp['mtime'] != session::get("class_location.inc:timestamp")){
18          session::un_set("plist");
19        }
20      }
21 -    $tmp = stat("../include/class_location.inc");
22 +    $tmp = stat("/var/cache/gosa/class.cache");
23      session::set("class_location.inc:timestamp",$tmp['mtime']);
24  
25  
26 diff -urNad gosa-core~/include/functions.inc gosa-core/include/functions.inc
27 --- gosa-core~/include/functions.inc    2008-07-15 09:58:50.000000000 +0200
28 +++ gosa-core/include/functions.inc     2008-07-15 09:58:51.000000000 +0200
29 @@ -73,7 +73,7 @@
30  $svn_revision = '$Revision: 9246 $';
31  
32  /* Include required files */
33 -require_once("class_location.inc");
34 +require_once("/var/cache/gosa/class.cache");
35  require_once ("functions_debug.inc");
36  require_once ("accept-to-gettext.inc");
37  
38 diff -urNad gosa-core~/update-gosa gosa-core/update-gosa
39 --- gosa-core~/update-gosa      2008-06-10 09:56:22.000000000 +0200
40 +++ gosa-core/update-gosa       2008-07-15 09:58:51.000000000 +0200
41 @@ -21,7 +21,7 @@
42   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
43   */
44  
45 -define ("GOSA_HOME", dirname(__FILE__));
46 +define ("GOSA_HOME", "/usr/share/gosa");
47  define ("LOCALE_DIR", GOSA_HOME."/locale");
48  define ("PLUGSTATE_DIR", GOSA_HOME."/state");
49  
50 @@ -122,8 +122,8 @@
51  function rescan_classes()
52  {
53         echo "Updating class cache...\n";
54 -       $class_mapping= get_classes();
55 -       $filename= GOSA_HOME."/include/class_location.inc";
56 +       $class_mapping= get_classes("/usr/share/gosa");
57 +       $filename= "/var/cache/gosa/class.cache";
58  
59         /* Sanity checks */
60         if (!file_exists($filename) || is_writable($filename)) {