summaryrefslogtreecommitdiffstats
path: root/redhat/kdebase/kdebase-3.5.12-halmountoptions.patch
blob: 4a604f9a32dc573c19ea13bfe1510527481bece8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
*** kdebase/kioslave/media/mediamanager/halbackend.cpp.orig	2010-09-30 00:24:28.000000000 +0200
--- kdebase/kioslave/media/mediamanager/halbackend.cpp	2011-07-20 16:39:40.933056051 +0200
***************
*** 873,878 ****
--- 873,905 ----
      s_HALBackend->DeviceCondition(udi, condition_name);
  }
  
+ TQStringList HALBackend::getHALmountoptions(TQString udi)
+ {
+     const char*   _ppt_string;
+     LibHalVolume* volume;
+     LibHalDrive* drive;
+ 
+     TQString _ppt_QString;
+ 
+     volume = libhal_volume_from_udi( m_halContext, udi.latin1() );
+     if( volume )
+         drive = libhal_drive_from_udi( m_halContext, libhal_volume_get_storage_device_udi( volume ) );
+     else
+         drive = libhal_drive_from_udi( m_halContext, udi.latin1() );
+ 
+     if( !drive )
+            return TQString::null;
+ 
+     if( volume )
+        _ppt_string = libhal_volume_policy_get_mount_options ( drive, volume, NULL );
+     else
+        _ppt_string = libhal_drive_policy_get_mount_options ( drive, NULL );
+ 
+     _ppt_QString = TQString(_ppt_string ? _ppt_string : "");
+ 
+    return TQStringList::split(",",_ppt_QString);
+ }
+ 
  TQStringList HALBackend::mountoptions(const TQString &name)
  {
      const Medium* medium = m_mediaList.findById(name);
***************
*** 1472,1481 ****
--- 1499,1524 ----
              soptions << TQString("data=ordered");
      }
  
+     TQStringList hal_mount_options = getHALmountoptions(medium->id());
+     for (TQValueListIterator<TQString> it=hal_mount_options.begin();it!=hal_mount_options.end();it++)
+     {
+        soptions << *it;
+        kdDebug()<<"HALOption: "<<*it<<endl;
+        if ((*it).startsWith("iocharset="))
+        {
+            soptions.remove("utf8");
+            kdDebug()<<"\"iocharset=\" found. Removing \"utf8\" from options."<<endl;
+        }
+     }
+ 
+ 
      const char **options = new const char*[soptions.size() + 1];
      uint noptions = 0;
      for (TQStringList::ConstIterator it = soptions.begin(); it != soptions.end(); ++it, ++noptions)
+     {
          options[noptions] = (*it).latin1();
+         kdDebug()<<"Option: "<<*it<<endl;
+     }
      options[noptions] = NULL;
  
      TQString qerror = i18n("Cannot mount encrypted drives!");
diff -r -u kdebase-3.5.5a.dfsg.1.orig/kioslave/media/mediamanager/halbackend.h kdebase-3.5.5a.dfsg.1/kioslave/media/mediamanager/halbackend.h
--- kdebase-3.5.5a.dfsg.1.orig/kioslave/media/mediamanager/halbackend.h	2007-01-25 12:34:07.133446000 +0300
+++ kdebase-3.5.5a.dfsg.1/kioslave/media/mediamanager/halbackend.h	2007-01-25 16:33:54.413638693 +0300
@@ -192,6 +192,7 @@
 				const char* message
 				);
 
+	TQStringList getHALmountoptions(QString udi);
 /* HAL and DBus structures */
 private:
 	/**