أعجوبة

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

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

أدوات الموقع


pri:20090808

اختلافات

عرض الاختلافات بين النسخة المختارة و النسخة الحالية من الصفحة.

رابط إلى هذه المقارنة

جانبي المراجعة السابقةالمراجعة السابقة
pri:20090808 [2009/08/30 02:42] alsadipri:20090808 [2015/04/23 03:21] (حالي) – تحرير خارجي 127.0.0.1
سطر 1: سطر 1:
 +====== محضر اجتماع 2009 08 08 ======
 +  * تجربة أعجوبة ألفا 1
 +    * برنامج الرسم gpaint غير موجود
 +    * تتبع مشكلة لوحة المفاتيح [[https://bugzilla.redhat.com/show_bug.cgi?id=508628|تفاصيل]]
 +
 +  gconftool-2 -R /desktop/gnome/peripherals/keyboard/kbd
 +  xprop -root | grep -i xkb
 +
 +  * تجربة مركز التحكم
 +    * مدير الملفات الجذر لا يعمل
 +    * إضافة عدد من التطبيقات والمجموعات مثل الحزم التطوير بلغة سي
 +    * إضافة منع للمواقع الدعايات hosts : 
 +      * http://www.mvps.org/winhelp2002/hosts.txt
 +  * خط KasctOne
 +  * استغلال المساحة الإضافية
 +    * المزيد من الكتب
 +    * kchmviewer
 +    * ...
 +  * سكربتات بناء أعجوبة لينكس
 +  * تعديلات الويكي
 +  * الحديث عن جافا من صن
 +    *  http://www.lbotti.net/blog/?qKZ80u36
 +    * http://www.lbotti.net/blog/2009/08/03/java-and-fedora/
 +  * مشكلة الصوت
 +    * http://forums.fedoraforum.org/showthread.php?t=225660
 +  * مشاكل السبام في البريد
 +    * amavisd 
 +  * عمل reply-to td في القائمة البريدية
 +
 +<code>
 +require "editheader";
 +if header :contains "To" ["<core@ojuba.org>"]
 + {
 + addheader "Reply-To" "<core@ojuba.org>";
 + }
 +</code>
 +
 +===== قيد العمل =====
 +==== مشكلة لوحة المفاتيح ====
 +
 +  * المشكلة موجودة وعملية التبديل كانت تتم على الهوس
 +  * المشكلة ليس في layouts بل في التبديل
 +  * ليست من f-s-k حيث أنه قام بإعداد لوحة المفاتيح بشكل صحيح لكن هناك من أزال ال group switching
 +
 +الخطوات التالية تجربة رقعة التمحيص debuging
 +  * https://bugzilla.redhat.com/show_bug.cgi?id=508628#c4
 +
 +تم معرفة المذنب وهو gdm تحديدا الرقعتين التاليتين:
 +  * gdm-xkb-init.patch
 +  * gdm-system-keyboard.patch
 +
 +فهي تستورد إعدادات layout من hal دون الخيارات
 +
 +<code diff>
 ++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;
 ++}
 ++
 +
 +</code>
 +
 +يفترض أن يتم إضافة ال options وهي موجودة في hal في
 +  * input.xkb.options
 +  * https://bugzilla.redhat.com/show_bug.cgi?id=516650
 +
 +==== مشكلة ال autologin ====
 +عند تفعيل autologin فإنك لا تستطيع عمل logout حيث يدخل مجددا
 +
 +حل هذه المشكلة هو عكس هذه الرقعة التي أضيفت خصيصا للمكتبات العامة والأكشاك ..إلخ
 +  * http://git.gnome.org/cgit/gdm/commit/?id=92209b6424
 +
 +==== مشكلة البحث في ثواب 2 ====
 +<code>
 +    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.
 +</code>
 +
 +==== حل مشكلة nautilus ====
 +https://bugzilla.redhat.com/show_bug.cgi?id=508667#c3
 +
 +==== حزم أكاد أنساها ====
 +<code>
 +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
 +</code>
 +
 +==== تجربة VirtualBox ====
 +علينا تجربة VirtualBox النسخة الحرة
  
pri/20090808.txt · آخر تعديل: 2015/04/23 03:21 (تحرير خارجي)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki