أعجوبة

البرمجيات الحُرة والمفتوحة المصدر

أدوات المستخدم

أدوات الموقع


Action disabled: media
pri:20090808

محضر اجتماع 2009 08 08

  • تجربة أعجوبة ألفا 1
    • برنامج الرسم gpaint غير موجود
    • تتبع مشكلة لوحة المفاتيح تفاصيل
gconftool-2 -R /desktop/gnome/peripherals/keyboard/kbd
xprop -root | grep -i xkb
require "editheader";
if header :contains "To" ["<core@ojuba.org>"]
 {
 addheader "Reply-To" "<core@ojuba.org>";
 }

قيد العمل

مشكلة لوحة المفاتيح

  • المشكلة موجودة وعملية التبديل كانت تتم على الهوس
  • المشكلة ليس في layouts بل في التبديل
  • ليست من f-s-k حيث أنه قام بإعداد لوحة المفاتيح بشكل صحيح لكن هناك من أزال ال group switching

الخطوات التالية تجربة رقعة التمحيص debuging

تم معرفة المذنب وهو gdm تحديدا الرقعتين التاليتين:

  • gdm-xkb-init.patch
  • gdm-system-keyboard.patch

فهي تستورد إعدادات layout من hal دون الخيارات

+static char *
+get_system_default_layout (GdmSessionDirect *session)
+{
+    DBusConnection *connection;
+    LibHalContext *ctx;
+    char **devices;
+    int n_devices;
+    char *layout;
+    char *result;
+
+    result = NULL;
+
+    connection = dbus_g_connection_get_connection (session->priv->connection);
+    ctx = libhal_ctx_new ();
+    libhal_ctx_set_dbus_connection (ctx, connection);
+
+    if (!libhal_ctx_init (ctx, NULL)) {
+        goto out;
+    }
+
+    devices = libhal_find_device_by_capability (ctx,
+                                                "input.keyboard",
+                                                &n_devices,
+                                                NULL);
+    if (n_devices > 0) {
+        layout = libhal_device_get_property_string (ctx,
+                                                    devices[0],
+                                                    "input.x11_options.XkbLayout",
+                                                    NULL);
+        if (!layout) {
+            layout = libhal_device_get_property_string (ctx,
+                                                        devices[0],
+                                                        "input.xkb.layout",
+                                                        NULL);
+        }
+	result = g_strdup (layout);
+	libhal_free_string (layout);
+    }
+
+    libhal_free_string_array (devices);
+
+    libhal_ctx_shutdown (ctx, NULL);
+    libhal_ctx_free (ctx);
+
+out:
+    if (!result) {
+        result = g_strdup ("us");
+    }
+
+    return result;
+}
+

يفترض أن يتم إضافة ال options وهي موجودة في hal في

مشكلة ال autologin

عند تفعيل autologin فإنك لا تستطيع عمل logout حيث يدخل مجددا

حل هذه المشكلة هو عكس هذه الرقعة التي أضيفت خصيصا للمكتبات العامة والأكشاك ..إلخ

مشكلة البحث في ثواب 2

    self.__c.execute("""SELECT book.id FROM b%d AS book WHERE %s %s LIMIT %d """ % (self.__book_id, condition, order, limit), l)
sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str). It is highly recommended that you instead just switch your application to Unicode strings.

حل مشكلة nautilus

حزم أكاد أنساها

mentmenu
gnomenu
brasero-nautilus
nautilus
nautilus-devel
nautilus-extensions
nautilus-image-converter
nautilus-open-terminal
nautilus-python
nautilus-search-tool
nautilus-sendto
nautilus-share
nautilus-sound-converter
totem-nautilus
gnome-mount-nautilus-properties
gnome-mplayer-nautilus
nautilus-actions
nautilus-gdu

تجربة VirtualBox

علينا تجربة VirtualBox النسخة الحرة

pri/20090808.txt · آخر تعديل: 2015/04/23 03:21 بواسطة 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki