mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
5.4 KiB

  1. diff -rNur kdebluetooth-1.0_beta1.old/kdebluetooth/kdebluetooth-common/mimetypes/computer-device-class.desktop kdebluetooth-1.0_beta1/kdebluetooth/kdebluetooth-common/mimetypes/computer-device-class.desktop
  2. --- kdebluetooth-1.0_beta1.old/kdebluetooth/kdebluetooth-common/mimetypes/computer-device-class.desktop 2005-03-21 03:16:48.000000000 +1030
  3. +++ kdebluetooth-1.0_beta1/kdebluetooth/kdebluetooth-common/mimetypes/computer-device-class.desktop 2006-04-08 22:55:57.000000000 +0930
  4. @@ -3,6 +3,7 @@
  5. Type=MimeType
  6. MimeType=bluetooth/computer-device-class
  7. Icon=konsole
  8. +X-KDE-IsAlso=inode/directory
  9. Comment=Computer/PDA Bluetooth Device
  10. Comment[bg]=Компютърно/PDA устройство Bluetooth
  11. Comment[bs]=Računar/PDA Bluetooth uređaj
  12. diff -rNur kdebluetooth-1.0_beta1.old/kdebluetooth/kdebluetooth-common/mimetypes/misc-device-class.desktop kdebluetooth-1.0_beta1/kdebluetooth/kdebluetooth-common/mimetypes/misc-device-class.desktop
  13. --- kdebluetooth-1.0_beta1.old/kdebluetooth/kdebluetooth-common/mimetypes/misc-device-class.desktop 2005-03-21 03:16:48.000000000 +1030
  14. +++ kdebluetooth-1.0_beta1/kdebluetooth/kdebluetooth-common/mimetypes/misc-device-class.desktop 2006-04-08 22:55:31.000000000 +0930
  15. @@ -3,6 +3,7 @@
  16. Type=MimeType
  17. MimeType=bluetooth/misc-device-class
  18. Icon=kdebluetooth
  19. +X-KDE-IsAlso=inode/directory
  20. Comment=Miscellaneous Bluetooth Device
  21. Comment[bg]=Разни устройства Bluetooth
  22. Comment[da]=Diverse Bluetooth-enheder
  23. diff -rNur kdebluetooth-1.0_beta1.old/kdebluetooth/kdebluetooth-common/mimetypes/phone-device-class.desktop kdebluetooth-1.0_beta1/kdebluetooth/kdebluetooth-common/mimetypes/phone-device-class.desktop
  24. --- kdebluetooth-1.0_beta1.old/kdebluetooth/kdebluetooth-common/mimetypes/phone-device-class.desktop 2005-03-21 03:16:48.000000000 +1030
  25. +++ kdebluetooth-1.0_beta1/kdebluetooth/kdebluetooth-common/mimetypes/phone-device-class.desktop 2006-04-08 22:54:46.000000000 +0930
  26. @@ -3,6 +3,7 @@
  27. Type=MimeType
  28. MimeType=bluetooth/phone-device-class
  29. Icon=kaddressbook
  30. +X-KDE-IsAlso=inode/directory
  31. Comment=Phone Bluetooth Device
  32. Comment[bg]=Телефонно устройство Bluetooth
  33. Comment[da]=Telefon Bluetooth-enhed
  34. diff -rNur kdebluetooth-1.0_beta1.old/kdebluetooth/kioslave/bluetooth/bluetooth.protocol kdebluetooth-1.0_beta1/kdebluetooth/kioslave/bluetooth/bluetooth.protocol
  35. --- kdebluetooth-1.0_beta1.old/kdebluetooth/kioslave/bluetooth/bluetooth.protocol 2005-03-21 03:16:48.000000000 +1030
  36. +++ kdebluetooth-1.0_beta1/kdebluetooth/kioslave/bluetooth/bluetooth.protocol 2006-04-08 22:56:36.000000000 +0930
  37. @@ -4,6 +4,7 @@
  38. input=none
  39. output=filesystem
  40. reading=true
  41. +listing=Name,Type,Size,Date,AccessDate,Access,Owner,Group,Link
  42. Icon=kdebluetooth
  43. Description=Bluetooth inquiry protocol
  44. Description[da]=Bluetooth forespørgselsprotokol
  45. diff -rNur kdebluetooth-1.0_beta1.old/kdebluetooth/kioslave/bluetooth/kiobluetooth.cpp kdebluetooth-1.0_beta1/kdebluetooth/kioslave/bluetooth/kiobluetooth.cpp
  46. --- kdebluetooth-1.0_beta1.old/kdebluetooth/kioslave/bluetooth/kiobluetooth.cpp 2005-03-21 03:16:48.000000000 +1030
  47. +++ kdebluetooth-1.0_beta1/kdebluetooth/kioslave/bluetooth/kiobluetooth.cpp 2006-04-08 22:58:56.000000000 +0930
  48. @@ -64,6 +64,7 @@
  49. if (url.hasHost() == false && path == "/")
  50. {
  51. createDirEntry(entry, "Bluetooth neighbourhood");
  52. + statEntry(entry);
  53. finished();
  54. }
  55. else {
  56. @@ -284,7 +285,8 @@
  57. addAtom(entry, UDS_MIME_TYPE, mimeType);
  58. addAtom(entry, UDS_FILE_TYPE, S_IFDIR);
  59. - addAtom(entry, UDS_GUESSED_MIME_TYPE, "inode/folder");
  60. + // No more necessary
  61. + // addAtom(entry, UDS_GUESSED_MIME_TYPE, "inode/folder");
  62. return true;
  63. }
  64. diff -rNur kdebluetooth-1.0_beta1.old/kdebluetooth/kioslave/sdp/btsdp.cpp kdebluetooth-1.0_beta1/kdebluetooth/kioslave/sdp/btsdp.cpp
  65. --- kdebluetooth-1.0_beta1.old/kdebluetooth/kioslave/sdp/btsdp.cpp 2005-03-21 03:16:48.000000000 +1030
  66. +++ kdebluetooth-1.0_beta1/kdebluetooth/kioslave/sdp/btsdp.cpp 2006-04-08 23:06:53.000000000 +0930
  67. @@ -131,12 +131,21 @@
  68. if (path == "/")
  69. {
  70. createDirEntry(entry, "Bluetooth neighbourhood");
  71. + statEntry(entry);
  72. finished();
  73. }
  74. else
  75. {
  76. - error(KIO::ERR_SLAVE_DEFINED,
  77. + QRegExp reg = QRegExp("^/uuid-(0x[a-f,A-F,0-9:]+)/");
  78. + if (reg.search(path) >= 0) {
  79. + createDirEntry(entry, "More services");
  80. + statEntry(entry);
  81. + finished();
  82. + }
  83. + else {
  84. + error(KIO::ERR_SLAVE_DEFINED,
  85. i18n("Could not stat %1. Unknown device").arg(url.url()));
  86. + }
  87. }
  88. }
  89. else {
  90. diff -rNur kdebluetooth-1.0_beta1.old/kdebluetooth/kioslave/sdp/btsdp.protocol kdebluetooth-1.0_beta1/kdebluetooth/kioslave/sdp/btsdp.protocol
  91. --- kdebluetooth-1.0_beta1.old/kdebluetooth/kioslave/sdp/btsdp.protocol 2005-03-21 03:16:48.000000000 +1030
  92. +++ kdebluetooth-1.0_beta1/kdebluetooth/kioslave/sdp/btsdp.protocol 2006-04-08 22:59:38.000000000 +0930
  93. @@ -5,6 +5,7 @@
  94. output=filesystem
  95. reading=true
  96. Icon=kdebluetooth
  97. +listing=Name,Type,Size,Date,AccessDate,Access,Owner,Group,Link
  98. Description=Bluetooth service discovery protocol
  99. Description[da]=Bluetooth-protokol til opdagelse af serviceydelser
  100. Description[et]=Bluetoothi teenuste avastamise protokoll