Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r2810 - in
      trunk/src/target/OM-2007.2/applications/openmoko-today2: .        src
      ([EMAIL PROTECTED])
   2. r2811 -
      trunk/src/target/OM-2007/applications/openmoko-dialer/src
      ([EMAIL PROTECTED])
   3. r2812 - trunk/src/target/u-boot/patches
      ([EMAIL PROTECTED])
   4. r2813 -
      trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock
      ([EMAIL PROTECTED])
--- Begin Message ---
Author: chris
Date: 2007-08-23 12:44:11 +0200 (Thu, 23 Aug 2007)
New Revision: 2810

Modified:
   trunk/src/target/OM-2007.2/applications/openmoko-today2/ChangeLog
   trunk/src/target/OM-2007.2/applications/openmoko-today2/src/today-launcher.c
Log:
Load .desktop files asynchronously (sort of)


Modified: trunk/src/target/OM-2007.2/applications/openmoko-today2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/applications/openmoko-today2/ChangeLog   
2007-08-23 08:35:55 UTC (rev 2809)
+++ trunk/src/target/OM-2007.2/applications/openmoko-today2/ChangeLog   
2007-08-23 10:44:11 UTC (rev 2810)
@@ -1,3 +1,8 @@
+2007-08-23  Chris Lord,,,  <[EMAIL PROTECTED]>
+
+       * src/today-launcher.c: (load_desktop_cb), (load_data_dir):
+       Load .desktop files asynchronously (sort of)
+
 2007-08-21  Chris Lord,,,  <[EMAIL PROTECTED]>
 
        * src/today-events-store.c: (today_events_store_cal_opened_cb),

Modified: 
trunk/src/target/OM-2007.2/applications/openmoko-today2/src/today-launcher.c
===================================================================
--- 
trunk/src/target/OM-2007.2/applications/openmoko-today2/src/today-launcher.c    
    2007-08-23 08:35:55 UTC (rev 2809)
+++ 
trunk/src/target/OM-2007.2/applications/openmoko-today2/src/today-launcher.c    
    2007-08-23 10:44:11 UTC (rev 2810)
@@ -132,6 +132,45 @@
     taku_launcher_tile_add_group (tile, fallback_category);
 }
 
+typedef struct {
+       gchar *name;
+       gchar *directory;
+       TakuTable *table;
+       GList *categories;
+       TakuLauncherCategory *fallback_category;
+} LoadDesktopData;
+
+static gboolean
+load_desktop_cb (LoadDesktopData *data)
+{
+       gchar *filename;
+       GtkWidget *tile;
+
+       if (!g_str_has_suffix (data->name, ".desktop")) goto not_desktop;
+
+       filename = g_build_filename (data->directory, data->name, NULL);
+
+       /* TODO: load launcher data, probe that, and then create a tile */
+
+       tile = taku_launcher_tile_for_desktop_file (filename);
+       if (!tile) goto done;
+
+       set_groups (TAKU_LAUNCHER_TILE (tile), data->categories,
+               data->fallback_category);
+
+       gtk_container_add (GTK_CONTAINER (data->table), tile);
+       gtk_widget_show (tile);
+
+done:
+       g_free (filename);
+not_desktop:
+       g_free (data->name);
+       g_free (data->directory);
+       g_free (data);
+       
+       return FALSE;
+}
+
 /*
  * Load all .desktop files in @datadir/applications/, and add them to @table.
  */
@@ -163,27 +202,13 @@
   }
 
   while ((name = g_dir_read_name (dir)) != NULL) {
-    char *filename;
-    GtkWidget *tile;
-  
-    if (! g_str_has_suffix (name, ".desktop"))
-      continue;
-
-    filename = g_build_filename (directory, name, NULL);
-
-    /* TODO: load launcher data, probe that, and then create a tile */
-
-    tile = taku_launcher_tile_for_desktop_file (filename);
-    if (!tile)
-      goto done;
-
-    set_groups (TAKU_LAUNCHER_TILE (tile), categories, fallback_category);
-
-    gtk_container_add (GTK_CONTAINER (table), tile);
-    gtk_widget_show (tile);
-
-  done:
-    g_free (filename);
+       LoadDesktopData *data = g_new (LoadDesktopData, 1);
+       data->name = g_strdup (name);
+       data->directory = g_strdup (directory);
+       data->table = table;
+       data->categories = categories;
+       data->fallback_category = fallback_category;
+       g_idle_add ((GSourceFunc)load_desktop_cb, data);
   }
 
   g_free (directory);




--- End Message ---
--- Begin Message ---
Author: mickey
Date: 2007-08-23 15:14:51 +0200 (Thu, 23 Aug 2007)
New Revision: 2811

Modified:
   trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-main.c
Log:
openmoko-dialer1: don't segfault if dbus is not running. thanks Elrond. closes 
#631


Modified: 
trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-main.c
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-main.c     
2007-08-23 10:44:11 UTC (rev 2810)
+++ trunk/src/target/OM-2007/applications/openmoko-dialer/src/dialer-main.c     
2007-08-23 13:14:51 UTC (rev 2811)
@@ -41,6 +41,60 @@
   return p_dialer_data;
 }
 
+
+static DBusGConnection *
+dbus_setup(gboolean *p_already_running)
+{
+  DBusGConnection *connection;
+  DBusGProxy *proxy;
+  GError *error = NULL;
+  guint32 ret;
+
+  if (p_already_running)
+    *p_already_running = FALSE;
+
+  connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
+  if (connection == NULL)
+  {
+    g_warning ("Failed to make a connection to the session bus: %s", 
+               error->message);
+    g_error_free (error);
+    return NULL;
+  }
+
+  proxy = dbus_g_proxy_new_for_name (connection, 
+                                     DBUS_SERVICE_DBUS,
+                                     DBUS_PATH_DBUS, 
+                                     DBUS_INTERFACE_DBUS);
+  if (proxy == NULL)
+  {
+    g_warning ("Error getting a DBus Proxy\n");
+    dbus_g_connection_unref (connection);
+    return NULL;
+  }
+
+  if (!org_freedesktop_DBus_request_name (proxy,
+                                          DIALER_NAMESPACE,
+                                          0, &ret, &error))
+  {
+    /* Error requesting the name */
+    g_warning ("There was an error requesting the name: %s\n",error->message);
+    g_error_free (error);
+
+    dbus_g_connection_unref (connection);
+    
+    return NULL;
+  }
+  if (ret != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER)
+  {
+    if (p_already_running)
+      *p_already_running = TRUE;
+  }
+
+  return connection;
+}
+
+
 static void
 _show_dialer (DBusGConnection *conn)
 {
@@ -99,9 +153,7 @@
 {
   MokoDialer *dialer;
   DBusGConnection *connection;
-  DBusGProxy *proxy;
-  GError *error = NULL;
-  guint32 ret;
+  gboolean already_running;
 
   if (argc != 1)
   {
@@ -121,31 +173,17 @@
   moko_stock_register ();
 
   /* Try and setup our DBus service */
-  connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error);
+  connection = dbus_setup(&already_running);
   if (connection == NULL)
   {
-    g_warning ("Failed to make a connection to the session bus: %s", 
-               error->message);
-    g_error_free (error);
+    /*
+     * If no dbus, we can't get a remote signal to show
+     * the dialer, so just show it immediately
+     */
+    show_dialer = TRUE;
   }
-  proxy = dbus_g_proxy_new_for_name (connection, 
-                                     DBUS_SERVICE_DBUS,
-                                     DBUS_PATH_DBUS, 
-                                     DBUS_INTERFACE_DBUS);
-  if (!org_freedesktop_DBus_request_name (proxy,
-                                          DIALER_NAMESPACE,
-                                          0, &ret, &error))
-  {
-    /* Error requesting the name */
-    g_warning ("There was an error requesting the name: %s\n",error->message);
-    g_error_free (error);
-    
-    gdk_init(&argc, &argv);
-    gdk_notify_startup_complete ();
 
-    return 1;
-  }
-  if (ret != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER)
+  if (already_running)
   {
     /* Someone else hase registere dthe object */
     g_warning ("Another instance is running\n");




--- End Message ---
--- Begin Message ---
Author: laforge
Date: 2007-08-23 16:32:59 +0200 (Thu, 23 Aug 2007)
New Revision: 2812

Modified:
   trunk/src/target/u-boot/patches/enable-splash-bmp.patch
   trunk/src/target/u-boot/patches/uboot-20061030-qt2410.patch
   trunk/src/target/u-boot/patches/uboot-hxd8.patch
Log:
CONFIG_UNZIP has been renamed to CONFIG_CMD_UNZIP some time ago, but not in all 
places,
causing the splash screen display to fail.


Modified: trunk/src/target/u-boot/patches/enable-splash-bmp.patch
===================================================================
--- trunk/src/target/u-boot/patches/enable-splash-bmp.patch     2007-08-23 
13:14:51 UTC (rev 2811)
+++ trunk/src/target/u-boot/patches/enable-splash-bmp.patch     2007-08-23 
14:32:59 UTC (rev 2812)
@@ -43,7 +43,7 @@
 +#define CFG_VIDEO_LOGO_MAX_SIZE       (640*480+1024+100) /* 100 = slack */
 +#define CONFIG_VIDEO_BMP_GZIP
  #define CONFIG_VGA_AS_SINGLE_DEVICE
-+#define CONFIG_UNZIP
++#define CONFIG_CMD_UNZIP
  
  #define VIDEO_KBD_INIT_FCT    0
  #define VIDEO_TSTC_FCT                serial_tstc

Modified: trunk/src/target/u-boot/patches/uboot-20061030-qt2410.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-20061030-qt2410.patch 2007-08-23 
13:14:51 UTC (rev 2811)
+++ trunk/src/target/u-boot/patches/uboot-20061030-qt2410.patch 2007-08-23 
14:32:59 UTC (rev 2812)
@@ -1209,7 +1209,7 @@
 +#define CFG_VIDEO_LOGO_MAX_SIZE               (640*480+1024+100) /* 100 = 
slack */
 +#define CONFIG_VIDEO_BMP_GZIP
 +#define CONFIG_VGA_AS_SINGLE_DEVICE
-+#define CONFIG_UNZIP
++#define CONFIG_CMD_UNZIP
 +
 +#define VIDEO_KBD_INIT_FCT     0
 +#define VIDEO_TSTC_FCT         serial_tstc

Modified: trunk/src/target/u-boot/patches/uboot-hxd8.patch
===================================================================
--- trunk/src/target/u-boot/patches/uboot-hxd8.patch    2007-08-23 13:14:51 UTC 
(rev 2811)
+++ trunk/src/target/u-boot/patches/uboot-hxd8.patch    2007-08-23 14:32:59 UTC 
(rev 2812)
@@ -717,7 +717,7 @@
 +#define CFG_VIDEO_LOGO_MAX_SIZE       (640*480+1024+100) /* 100 = slack */
 +#define CONFIG_VIDEO_BMP_GZIP
 +#define CONFIG_VGA_AS_SINGLE_DEVICE
-+#define CONFIG_UNZIP
++#define CONFIG_CMD_UNZIP
 +
 +#define VIDEO_KBD_INIT_FCT    0
 +#define VIDEO_TSTC_FCT                serial_tstc




--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-08-23 16:38:27 +0200 (Thu, 23 Aug 2007)
New Revision: 2813

Added:
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-first-ltr.svg
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-last-ltr.svg
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-forward-ltr.svg
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-next-ltr.svg
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-network.svg
Removed:
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-first.svg
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-last.svg
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-forward.svg
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-next.svg
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-network.png.svg
Modified:
   
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/Makefile.am
Log:
* Fix misnamed icons (as per bug 679)


Modified: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/Makefile.am
===================================================================
--- 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/Makefile.am
       2007-08-23 14:32:59 UTC (rev 2812)
+++ 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/Makefile.am
       2007-08-23 14:38:27 UTC (rev 2813)
@@ -2,6 +2,108 @@
 size = scalable
 context = stock
 iconsdir = $(themedir)/$(size)/$(context)
-icons_DATA = gtk-about.svg gtk-add.svg gtk-apply.svg gtk-bold.svg 
gtk-cancel.svg gtk-cdrom.svg gtk-clear.svg gtk-close.svg gtk-color-picker.svg 
gtk-connect.svg gtk-convert.svg gtk-copy.svg gtk-cut.svg gtk-delete.svg 
gtk-dialog-authentication.svg gtk-dialog-error.svg gtk-dialog-question.svg 
gtk-dialog-warning.svg gtk-directory.svg gtk-disconnect.svg 
gtk-dnd-multiple.svg gtk-dnd.svg gtk-edit.svg gtk-execute.svg gtk-file.svg 
gtk-find-and-replace.svg gtk-find.svg gtk-floppy.svg gtk-fullscreen.svg 
gtk-go-back.svg gtk-go-down.svg gtk-go-forward.svg gtk-goto-bottom.svg 
gtk-goto-first.svg gtk-goto-last.svg gtk-goto-top.svg gtk-go-up.svg 
gtk-harddisk.svg gtk-help.svg gtk-home.svg gtk-indent-ltr.svg 
gtk-indent-rtl.svg gtk-index.svg gtk-info.svg gtk-italic.svg 
gtk-jump-to-ltr.svg gtk-jump-to-rtl.svg gtk-justify-center.svg 
gtk-justify-fill.svg gtk-justify-left.svg gtk-justify-right.svg 
gtk-leave-fullscreen.svg gtk-media-forward.svg gtk-media-next.svg 
gtk-media-pause.svg gtk-media-play-ltr.svg gtk-media-play-rtl.svg 
gtk-media-previous-ltr.svg gtk-media-record.svg gtk-media-rewind-ltr.svg 
gtk-media-stop.svg gtk-missing-image.svg gtk-network.png.svg gtk-new.svg 
gtk-no.svg gtk-ok.svg gtk-open.svg gtk-orientation-landscape.svg 
gtk-orientation-portrait.svg gtk-orientation-reverse-landscape.svg 
gtk-orientation-reverse-portrait.svg gtk-paste.svg gtk-preferences.svg 
gtk-print-preview.svg gtk-print.svg gtk-properties.svg gtk-quit.svg 
gtk-redo.svg gtk-refresh.svg gtk-remove.svg gtk-revert-to-saved-ltr.svg 
gtk-revert-to-saved-rtl.svg gtk-save-as.svg gtk-save.svg gtk-select-color.svg 
gtk-select-font.svg gtk-sort-ascending.svg gtk-sort-descending.svg 
gtk-spell-check.svg gtk-strikethrough.svg gtk-undelete-ltr.svg 
gtk-undelete-rtl.svg gtk-underline.svg gtk-undo-ltr.svg gtk-unindent-ltr.svg 
gtk-unindent-rtl.svg gtk-yes.svg gtk-zoom-100.svg gtk-zoom-fit.svg 
gtk-zoom-in.svg gtk-zoom-out.svg
+icons_DATA = \
+       gtk-about.svg \
+       gtk-add.svg \
+       gtk-apply.svg \
+       gtk-bold.svg \
+       gtk-cancel.svg \
+       gtk-cdrom.svg \
+       gtk-clear.svg \
+       gtk-close.svg \
+       gtk-color-picker.svg \
+       gtk-connect.svg \
+       gtk-convert.svg \
+       gtk-copy.svg \
+       gtk-cut.svg \
+       gtk-delete.svg \
+       gtk-dialog-authentication.svg \
+       gtk-dialog-error.svg \
+       gtk-dialog-question.svg \
+       gtk-dialog-warning.svg \
+       gtk-directory.svg \
+       gtk-disconnect.svg \
+       gtk-dnd-multiple.svg \
+       gtk-dnd.svg \
+       gtk-edit.svg \
+       gtk-execute.svg \
+       gtk-file.svg \
+       gtk-find-and-replace.svg \
+       gtk-find.svg \
+       gtk-floppy.svg \
+       gtk-fullscreen.svg \
+       gtk-go-back.svg \
+       gtk-go-down.svg \
+       gtk-go-forward.svg \
+       gtk-goto-bottom.svg \
+       gtk-goto-first-ltr.svg \
+       gtk-goto-last-ltr.svg \
+       gtk-goto-top.svg \
+       gtk-go-up.svg \
+       gtk-harddisk.svg \
+       gtk-help.svg \
+       gtk-home.svg \
+       gtk-indent-ltr.svg \
+       gtk-indent-rtl.svg \
+       gtk-index.svg \
+       gtk-info.svg \
+       gtk-italic.svg \
+       gtk-jump-to-ltr.svg \
+       gtk-jump-to-rtl.svg \
+       gtk-justify-center.svg \
+       gtk-justify-fill.svg \
+       gtk-justify-left.svg \
+       gtk-justify-right.svg \
+       gtk-leave-fullscreen.svg \
+       gtk-media-forward-ltr.svg \
+       gtk-media-next-ltr.svg \
+       gtk-media-pause.svg \
+       gtk-media-play-ltr.svg \
+       gtk-media-play-rtl.svg \
+       gtk-media-previous-ltr.svg \
+       gtk-media-record.svg \
+       gtk-media-rewind-ltr.svg \
+       gtk-media-stop.svg \
+       gtk-missing-image.svg \
+       gtk-network.svg \
+       gtk-new.svg \
+       gtk-no.svg \
+       gtk-ok.svg \
+       gtk-open.svg \
+       gtk-orientation-landscape.svg \
+       gtk-orientation-portrait.svg \
+       gtk-orientation-reverse-landscape.svg \
+       gtk-orientation-reverse-portrait.svg \
+       gtk-paste.svg \
+       gtk-preferences.svg \
+       gtk-print-preview.svg \
+       gtk-print.svg \
+       gtk-properties.svg \
+       gtk-quit.svg \
+       gtk-redo.svg \
+       gtk-refresh.svg \
+       gtk-remove.svg \
+       gtk-revert-to-saved-ltr.svg \
+       gtk-revert-to-saved-rtl.svg \
+       gtk-save-as.svg \
+       gtk-save.svg \
+       gtk-select-color.svg \
+       gtk-select-font.svg \
+       gtk-sort-ascending.svg \
+       gtk-sort-descending.svg \
+       gtk-spell-check.svg \
+       gtk-strikethrough.svg \
+       gtk-undelete-ltr.svg \
+       gtk-undelete-rtl.svg \
+       gtk-underline.svg \
+       gtk-undo-ltr.svg \
+       gtk-unindent-ltr.svg \
+       gtk-unindent-rtl.svg \
+       gtk-yes.svg \
+       gtk-zoom-100.svg \
+       gtk-zoom-fit.svg \
+       gtk-zoom-in.svg \
+       gtk-zoom-out.svg
+
 EXTRA_DIST = $(icons_DATA)
 MAINTAINERCLEANFILES = Makefile.in

Copied: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-first-ltr.svg
 (from rev 2811, 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-last.svg)

Deleted: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-first.svg
===================================================================
--- 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-first.svg
        2007-08-23 14:32:59 UTC (rev 2812)
+++ 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-first.svg
        2007-08-23 14:38:27 UTC (rev 2813)
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 
3.0.0 Build 77)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"    
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"; [
-       <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/";>
-       <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/";>
-       <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/";>
-       <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/";>
-       <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/";>
-       <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/";>
-       <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/";>
-       <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/";>
-       <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/";>
-       <!ENTITY ns_svg "http://www.w3.org/2000/svg";>
-       <!ENTITY ns_xlink "http://www.w3.org/1999/xlink";>
-]>
-<svg 
-        xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" 
i:viewOrigin="9.765625e-004 32.001" i:rulerOrigin="0 0" i:pageBounds="0 32 32 0"
-        xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" 
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/";
-        width="32" height="32.002" viewBox="0 0 32 32.002" overflow="visible" 
enable-background="new 0 0 32 32.002"
-        xml:space="preserve">
-       <metadata>
-               <variableSets  xmlns="&ns_vars;">
-                       <variableSet  varSetName="binding1" locked="none">
-                               <variables></variables>
-                               <v:sampleDataSets  xmlns="&ns_custom;" 
xmlns:v="&ns_vars;"></v:sampleDataSets>
-                       </variableSet>
-               </variableSets>
-               <sfw  xmlns="&ns_sfw;">
-                       <slices></slices>
-                       <sliceSourceBounds  y="-0.001" x="0.001" width="32" 
height="32.002" bottomLeftOrigin="true"></sliceSourceBounds>
-               </sfw>
-       </metadata>
-       <g id="圖層_1" i:layer="yes" i:dimmedPercent="50" 
i:rgbTrio="#4F008000FFFF">
-               <path i:knockout="Off" fill="none" d="M32,0L0,0.002v32h32V0z"/>
-               
-                       <linearGradient id="XMLID_1_" 
gradientUnits="userSpaceOnUse" x1="16.0005" y1="14.7515" x2="16.0005" 
y2="24.3774" gradientTransform="matrix(-1 0 0 1 32 0)">
-                       <stop  offset="0.0056" style="stop-color:#FF7800"/>
-                       <stop  offset="1" style="stop-color:#9A2400"/>
-                       <a:midPointStop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                       <a:midPointStop  offset="0.5" 
style="stop-color:#FF7800"/>
-                       <a:midPointStop  offset="1" style="stop-color:#9A2400"/>
-               </linearGradient>
-               <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" 
fill="url(#XMLID_1_)" d="M15.305,11.629H2.048v8.746h13.257
-                       v4.693l12.021-9.067L15.305,6.934V11.629z 
M27.326,16.001v9.875h2.625V6.127h-2.625V16.001z"/>
-       </g>
-</svg>

Copied: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-last-ltr.svg
 (from rev 2811, 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-first.svg)

Deleted: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-last.svg
===================================================================
--- 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-last.svg
 2007-08-23 14:32:59 UTC (rev 2812)
+++ 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-goto-last.svg
 2007-08-23 14:38:27 UTC (rev 2813)
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 
3.0.0 Build 77)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"    
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"; [
-       <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/";>
-       <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/";>
-       <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/";>
-       <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/";>
-       <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/";>
-       <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/";>
-       <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/";>
-       <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/";>
-       <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/";>
-       <!ENTITY ns_svg "http://www.w3.org/2000/svg";>
-       <!ENTITY ns_xlink "http://www.w3.org/1999/xlink";>
-]>
-<svg 
-        xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" 
i:viewOrigin="9.765625e-004 32.001" i:rulerOrigin="0 0" i:pageBounds="0 32 32 0"
-        xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" 
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/";
-        width="32" height="32.002" viewBox="0 0 32 32.002" overflow="visible" 
enable-background="new 0 0 32 32.002"
-        xml:space="preserve">
-       <metadata>
-               <variableSets  xmlns="&ns_vars;">
-                       <variableSet  varSetName="binding1" locked="none">
-                               <variables></variables>
-                               <v:sampleDataSets  xmlns="&ns_custom;" 
xmlns:v="&ns_vars;"></v:sampleDataSets>
-                       </variableSet>
-               </variableSets>
-               <sfw  xmlns="&ns_sfw;">
-                       <slices></slices>
-                       <sliceSourceBounds  y="-0.001" x="0.001" width="32" 
height="32.002" bottomLeftOrigin="true"></sliceSourceBounds>
-               </sfw>
-       </metadata>
-       <g id="圖層_1" i:layer="yes" i:dimmedPercent="50" 
i:rgbTrio="#4F008000FFFF">
-               <path i:knockout="Off" fill="none" d="M0,0l32,0.002v32H0V0z"/>
-               <linearGradient id="XMLID_1_" gradientUnits="userSpaceOnUse" 
x1="16.0005" y1="14.7515" x2="16.0005" y2="24.3774">
-                       <stop  offset="0.0056" style="stop-color:#FF7800"/>
-                       <stop  offset="1" style="stop-color:#9A2400"/>
-                       <a:midPointStop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                       <a:midPointStop  offset="0.5" 
style="stop-color:#FF7800"/>
-                       <a:midPointStop  offset="1" style="stop-color:#9A2400"/>
-               </linearGradient>
-               <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" 
fill="url(#XMLID_1_)" d="M16.695,6.934L4.674,16.001
-                       l12.021,9.067v-4.693h13.257v-8.746H16.695V6.934z 
M4.674,6.127H2.049v19.749h2.625v-9.875V6.127z"/>
-       </g>
-</svg>

Copied: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-forward-ltr.svg
 (from rev 2811, 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-forward.svg)

Deleted: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-forward.svg
===================================================================
--- 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-forward.svg
     2007-08-23 14:32:59 UTC (rev 2812)
+++ 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-forward.svg
     2007-08-23 14:38:27 UTC (rev 2813)
@@ -1,58 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 
3.0.0 Build 77)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"    
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"; [
-       <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/";>
-       <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/";>
-       <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/";>
-       <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/";>
-       <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/";>
-       <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/";>
-       <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/";>
-       <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/";>
-       <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/";>
-       <!ENTITY ns_svg "http://www.w3.org/2000/svg";>
-       <!ENTITY ns_xlink "http://www.w3.org/1999/xlink";>
-]>
-<svg 
-        xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" 
i:viewOrigin="0 32" i:rulerOrigin="0 0" i:pageBounds="0 32 32 0"
-        xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" 
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"; width="32" 
height="32"
-        viewBox="0 0 32 32" overflow="visible" enable-background="new 0 0 32 
32" xml:space="preserve">
-       <metadata>
-               <variableSets  xmlns="&ns_vars;">
-                       <variableSet  varSetName="binding1" locked="none">
-                               <variables></variables>
-                               <v:sampleDataSets  xmlns="&ns_custom;" 
xmlns:v="&ns_vars;"></v:sampleDataSets>
-                       </variableSet>
-               </variableSets>
-               <sfw  xmlns="&ns_sfw;">
-                       <slices></slices>
-                       <sliceSourceBounds  y="0" x="0" width="32" height="32" 
bottomLeftOrigin="true"></sliceSourceBounds>
-               </sfw>
-       </metadata>
-       <g id="圖層_1" i:layer="yes" i:dimmedPercent="50" 
i:rgbTrio="#4F008000FFFF">
-               <g>
-                       <path i:knockout="Off" fill="none" 
d="M32,32H0V0h32V32z"/>
-                       <g>
-                               <linearGradient id="XMLID_1_" 
gradientUnits="userSpaceOnUse" x1="10.856" y1="3.709" x2="10.856" y2="28.2915">
-                                       <stop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                                       <stop  offset="1" 
style="stop-color:#9A2400"/>
-                                       <a:midPointStop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                                       <a:midPointStop  offset="0.5" 
style="stop-color:#FF7800"/>
-                                       <a:midPointStop  offset="1" 
style="stop-color:#9A2400"/>
-                               </linearGradient>
-                               <path i:knockout="Off" fill-rule="evenodd" 
clip-rule="evenodd" fill="url(#XMLID_1_)" d="M19.814,16L1.898,28.291V3.709
-                                       L19.814,16z"/>
-                               
-                                       <linearGradient id="XMLID_2_" 
gradientUnits="userSpaceOnUse" x1="10.856" y1="3.709" x2="10.856" y2="28.2915" 
gradientTransform="matrix(-1 0 0 1 32 0)">
-                                       <stop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                                       <stop  offset="1" 
style="stop-color:#9A2400"/>
-                                       <a:midPointStop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                                       <a:midPointStop  offset="0.5" 
style="stop-color:#FF7800"/>
-                                       <a:midPointStop  offset="1" 
style="stop-color:#9A2400"/>
-                               </linearGradient>
-                               <path i:knockout="Off" fill="url(#XMLID_2_)" 
d="M12.186,8.794V3.709L30.102,16L12.186,28.291v-5.085L22.689,16L12.186,8.794z"
-                                       />
-                       </g>
-               </g>
-       </g>
-</svg>

Copied: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-next-ltr.svg
 (from rev 2811, 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-next.svg)

Deleted: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-next.svg
===================================================================
--- 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-next.svg
        2007-08-23 14:32:59 UTC (rev 2812)
+++ 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-media-next.svg
        2007-08-23 14:38:27 UTC (rev 2813)
@@ -1,58 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 
3.0.0 Build 77)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"    
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"; [
-       <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/";>
-       <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/";>
-       <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/";>
-       <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/";>
-       <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/";>
-       <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/";>
-       <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/";>
-       <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/";>
-       <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/";>
-       <!ENTITY ns_svg "http://www.w3.org/2000/svg";>
-       <!ENTITY ns_xlink "http://www.w3.org/1999/xlink";>
-]>
-<svg 
-        xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" 
i:viewOrigin="0 32" i:rulerOrigin="0 0" i:pageBounds="0 32 32 0"
-        xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" 
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"; width="32" 
height="32"
-        viewBox="0 0 32 32" overflow="visible" enable-background="new 0 0 32 
32" xml:space="preserve">
-       <metadata>
-               <variableSets  xmlns="&ns_vars;">
-                       <variableSet  varSetName="binding1" locked="none">
-                               <variables></variables>
-                               <v:sampleDataSets  xmlns="&ns_custom;" 
xmlns:v="&ns_vars;"></v:sampleDataSets>
-                       </variableSet>
-               </variableSets>
-               <sfw  xmlns="&ns_sfw;">
-                       <slices></slices>
-                       <sliceSourceBounds  y="0" x="0" width="32" height="32" 
bottomLeftOrigin="true"></sliceSourceBounds>
-               </sfw>
-       </metadata>
-       <g id="圖層_1" i:layer="yes" i:dimmedPercent="50" 
i:rgbTrio="#4F008000FFFF">
-               <g>
-                       <path i:knockout="Off" fill="none" 
d="M32,32H0V0h32V32z"/>
-                       <g>
-                               <linearGradient id="XMLID_1_" 
gradientUnits="userSpaceOnUse" x1="14.0269" y1="3.708" x2="14.0269" 
y2="28.2915">
-                                       <stop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                                       <stop  offset="1" 
style="stop-color:#9A2400"/>
-                                       <a:midPointStop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                                       <a:midPointStop  offset="0.5" 
style="stop-color:#FF7800"/>
-                                       <a:midPointStop  offset="1" 
style="stop-color:#9A2400"/>
-                               </linearGradient>
-                               <path i:knockout="Off" fill-rule="evenodd" 
clip-rule="evenodd" fill="url(#XMLID_1_)" d="M22.985,16L5.069,28.291V3.708
-                                       L22.985,16z"/>
-                               
-                                       <linearGradient id="XMLID_2_" 
gradientUnits="userSpaceOnUse" x1="7.0249" y1="3.708" x2="7.0249" y2="28.2915" 
gradientTransform="matrix(-1 0 0 1 32 0)">
-                                       <stop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                                       <stop  offset="1" 
style="stop-color:#9A2400"/>
-                                       <a:midPointStop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                                       <a:midPointStop  offset="0.5" 
style="stop-color:#FF7800"/>
-                                       <a:midPointStop  offset="1" 
style="stop-color:#9A2400"/>
-                               </linearGradient>
-                               <path i:knockout="Off" fill-rule="evenodd" 
clip-rule="evenodd" fill="url(#XMLID_2_)" d="M23.019,28.291h3.913V3.708h-3.913
-                                       V28.291z"/>
-                       </g>
-               </g>
-       </g>
-</svg>

Deleted: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-network.png.svg
===================================================================
--- 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-network.png.svg
       2007-08-23 14:32:59 UTC (rev 2812)
+++ 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-network.png.svg
       2007-08-23 14:38:27 UTC (rev 2813)
@@ -1,101 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 10.0, SVG Export Plug-In . SVG Version: 
3.0.0 Build 77)  -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"    
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"; [
-       <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/";>
-       <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/";>
-       <!ENTITY ns_ai "http://ns.adobe.com/AdobeIllustrator/10.0/";>
-       <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/";>
-       <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/";>
-       <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/";>
-       <!ENTITY ns_sfw "http://ns.adobe.com/SaveForWeb/1.0/";>
-       <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/";>
-       <!ENTITY ns_adobe_xpath "http://ns.adobe.com/XPath/1.0/";>
-       <!ENTITY ns_svg "http://www.w3.org/2000/svg";>
-       <!ENTITY ns_xlink "http://www.w3.org/1999/xlink";>
-]>
-<svg 
-        xmlns:x="&ns_extend;" xmlns:i="&ns_ai;" xmlns:graph="&ns_graphs;" 
i:viewOrigin="0 32" i:rulerOrigin="0 0" i:pageBounds="0 32 32 0"
-        xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" 
xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"; width="32" 
height="32"
-        viewBox="0 0 32 32" overflow="visible" enable-background="new 0 0 32 
32" xml:space="preserve">
-       <metadata>
-               <variableSets  xmlns="&ns_vars;">
-                       <variableSet  varSetName="binding1" locked="none">
-                               <variables></variables>
-                               <v:sampleDataSets  xmlns="&ns_custom;" 
xmlns:v="&ns_vars;"></v:sampleDataSets>
-                       </variableSet>
-               </variableSets>
-               <sfw  xmlns="&ns_sfw;">
-                       <slices></slices>
-                       <sliceSourceBounds  y="0" x="0" width="32" height="32" 
bottomLeftOrigin="true"></sliceSourceBounds>
-               </sfw>
-       </metadata>
-       <g id="_x00B9_柉x00BC_h_x005F_1" i:layer="yes" i:dimmedPercent="50" 
i:rgbTrio="#4F008000FFFF">
-               <linearGradient id="XMLID_1_" gradientUnits="userSpaceOnUse" 
x1="15.9995" y1="1.1108" x2="15.9995" y2="31.2407">
-                       <stop  offset="0.0056" style="stop-color:#FF7800"/>
-                       <stop  offset="1" style="stop-color:#9A2400"/>
-                       <a:midPointStop  offset="0.0056" 
style="stop-color:#FF7800"/>
-                       <a:midPointStop  offset="0.5" 
style="stop-color:#FF7800"/>
-                       <a:midPointStop  offset="1" style="stop-color:#9A2400"/>
-               </linearGradient>
-               <path i:knockout="Off" fill-rule="evenodd" clip-rule="evenodd" 
fill="url(#XMLID_1_)" d="M30.457,29.275
-                       
c0-0.426-0.344-0.771-0.768-0.771h-0.572l-0.569-1.152h-1.806v-0.528h1.18c0.452,0,0.816-0.324,0.816-0.723v-8.019
-                       
c0-0.4-0.364-0.723-0.816-0.723H17.258c-0.453,0-0.818,0.322-0.818,0.723v1.177l-7.095,0.015l0.004-4.28h7.705
-                       
c0.426,0,0.768-0.345,0.768-0.77l-0.541-1.196c0-0.425-0.345-0.768-0.769-0.768h-0.572l-0.568-1.159h-1.806v-0.527h1.18
-                       
c0.452,0,0.816-0.321,0.816-0.722v-8.02c0-0.397-0.364-0.722-0.816-0.722H4.078c-0.451,0-0.818,0.325-0.818,0.722v8.02
-                       
c0,0.401,0.367,0.722,0.818,0.722h1.18v0.527H3.451L2.882,12.26H2.311c-0.424,0-0.77,0.343-0.77,0.768L1,14.224
-                       
c0,0.425,0.345,0.77,0.77,0.77h6.692l0.014,5.148h7.964v5.959c0,0.398,0.365,0.723,0.818,0.723h1.178v0.528h-1.805l-0.569,1.152
-                       
H15.49c-0.425,0-0.769,0.346-0.769,0.771l-0.542,1.193c0,0.426,0.345,0.771,0.768,0.771H30.23c0.426,0,0.77-0.346,0.77-0.771
-                       L30.457,29.275z"/>
-               <path i:knockout="Off" fill="none" d="M32,32H0V0h32V32z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M13.68,2.201H5.14c-0.446,0-0.808,0.359-0.808,0.808V8.68
-                       
c0,0.445,0.362,0.807,0.808,0.807h8.541c0.447,0,0.808-0.362,0.808-0.807V3.009C14.488,2.561,14.127,2.201,13.68,2.201z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M4.366,13.371H3.57c-0.19,0-0.346,0.108-0.346,0.244c0,0.133,0.155,0.241,0.346,0.241
-                       
h0.796c0.19,0,0.347-0.108,0.347-0.241C4.712,13.479,4.556,13.371,4.366,13.371z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M6.541,13.371H5.748c-0.191,0-0.348,0.108-0.348,0.244c0,0.133,0.157,0.241,0.348,0.241
-                       
h0.793c0.192,0,0.349-0.108,0.349-0.241C6.89,13.479,6.733,13.371,6.541,13.371z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M8.72,13.371H7.924c-0.191,0-0.347,0.108-0.347,0.244c0,0.133,0.156,0.241,0.347,0.241
-                       
H8.72c0.19,0,0.347-0.108,0.347-0.241C9.067,13.479,8.911,13.371,8.72,13.371z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M10.895,13.371h-0.793c-0.192,0-0.348,0.108-0.348,0.244
-                       
c0,0.133,0.156,0.241,0.348,0.241h0.793c0.193,0,0.35-0.108,0.35-0.241C11.245,13.479,11.088,13.371,10.895,13.371z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M13.073,13.371h-0.794c-0.19,0-0.348,0.108-0.348,0.244c0,0.133,0.158,0.241,0.348,0.241
-                       
h0.794c0.192,0,0.347-0.108,0.347-0.241C13.419,13.479,13.265,13.371,13.073,13.371z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M15.25,13.371h-0.795c-0.191,0-0.346,0.108-0.346,0.244c0,0.133,0.154,0.241,0.346,0.241
-                       
h0.795c0.191,0,0.347-0.108,0.347-0.241C15.597,13.479,15.442,13.371,15.25,13.371z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M4.656,13.088H5.45c0.192,0,0.347-0.108,0.347-0.242c0-0.133-0.154-0.243-0.347-0.243
-                       
H4.656c-0.192,0-0.347,0.11-0.347,0.243C4.309,12.979,4.464,13.088,4.656,13.088z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M6.832,13.088h0.795c0.191,0,0.348-0.108,0.348-0.242c0-0.133-0.157-0.243-0.348-0.243
-                       
H6.832c-0.19,0-0.346,0.11-0.346,0.243C6.486,12.979,6.641,13.088,6.832,13.088z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M9.009,13.088h0.794c0.192,0,0.349-0.108,0.349-0.242c0-0.133-0.156-0.243-0.349-0.243
-                       
H9.009c-0.191,0-0.347,0.11-0.347,0.243C8.662,12.979,8.818,13.088,9.009,13.088z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M11.187,13.088h0.794c0.191,0,0.347-0.108,0.347-0.242c0-0.133-0.156-0.243-0.347-0.243
-                       
h-0.794c-0.192,0-0.346,0.11-0.346,0.243C10.84,12.979,10.995,13.088,11.187,13.088z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M13.362,13.088h0.795c0.193,0,0.349-0.108,0.349-0.242c0-0.133-0.155-0.243-0.349-0.243
-                       
h-0.795c-0.191,0-0.347,0.11-0.347,0.243C13.015,12.979,13.17,13.088,13.362,13.088z"/>
-               <path i:knockout="Off" fill="#FFFFFF" 
d="M26.86,18.45h-8.542c-0.446,0-0.807,0.359-0.807,0.804v5.672
-                       
c0,0.447,0.36,0.807,0.807,0.807h8.542c0.445,0,0.808-0.359,0.808-0.807v-5.672C27.668,18.81,27.306,18.45,26.86,18.45z"/>
-               <g>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M17.545,29.631h-0.796c-0.19,0-0.347,0.109-0.347,0.241
-                               
c0,0.136,0.156,0.245,0.347,0.245h0.796c0.191,0,0.347-0.109,0.347-0.245C17.892,29.74,17.736,29.631,17.545,29.631z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M19.721,29.631h-0.794c-0.192,0-0.347,0.109-0.347,0.241
-                               
c0,0.136,0.154,0.245,0.347,0.245h0.794c0.191,0,0.347-0.109,0.347-0.245C20.067,29.74,19.912,29.631,19.721,29.631z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M21.898,29.631h-0.795c-0.191,0-0.348,0.109-0.348,0.241
-                               
c0,0.136,0.156,0.245,0.348,0.245h0.795c0.19,0,0.348-0.109,0.348-0.245C22.246,29.74,22.089,29.631,21.898,29.631z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M24.075,29.631h-0.794c-0.191,0-0.349,0.109-0.349,0.241
-                               
c0,0.136,0.157,0.245,0.349,0.245h0.794c0.191,0,0.349-0.109,0.349-0.245C24.424,29.74,24.267,29.631,24.075,29.631z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M26.252,29.631h-0.794c-0.191,0-0.348,0.109-0.348,0.241
-                               
c0,0.136,0.156,0.245,0.348,0.245h0.794c0.191,0,0.348-0.109,0.348-0.245C26.6,29.74,26.443,29.631,26.252,29.631z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M28.43,29.631h-0.795c-0.191,0-0.346,0.109-0.346,0.241
-                               
c0,0.136,0.154,0.245,0.346,0.245h0.795c0.19,0,0.346-0.109,0.346-0.245C28.775,29.74,28.62,29.631,28.43,29.631z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M17.835,29.349h0.794c0.192,0,0.348-0.11,0.348-0.246c0-0.131-0.155-0.241-0.348-0.241
-                               
h-0.794c-0.192,0-0.347,0.11-0.347,0.241C17.488,29.238,17.643,29.349,17.835,29.349z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M20.012,29.349h0.796c0.19,0,0.347-0.11,0.347-0.246c0-0.131-0.156-0.241-0.347-0.241
-                               
h-0.796c-0.189,0-0.348,0.11-0.348,0.241C19.664,29.238,19.822,29.349,20.012,29.349z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M22.189,29.349h0.793c0.193,0,0.348-0.11,0.348-0.246c0-0.131-0.154-0.241-0.348-0.241
-                               
h-0.793c-0.192,0-0.348,0.11-0.348,0.241C21.842,29.238,21.997,29.349,22.189,29.349z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M24.365,29.349h0.794c0.191,0,0.348-0.11,0.348-0.246c0-0.131-0.156-0.241-0.348-0.241
-                               
h-0.794c-0.191,0-0.346,0.11-0.346,0.241C24.02,29.238,24.174,29.349,24.365,29.349z"/>
-                       <path i:knockout="Off" fill="#FFFFFF" 
d="M26.543,29.349h0.794c0.191,0,0.348-0.11,0.348-0.246c0-0.131-0.156-0.241-0.348-0.241
-                               
h-0.794c-0.192,0-0.349,0.11-0.349,0.241C26.194,29.238,26.351,29.349,26.543,29.349z"/>
-               </g>
-       </g>
-</svg>

Copied: 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-network.svg
 (from rev 2811, 
trunk/src/target/OM-2007.2/artwork/icons/openmoko-standard/scalable/stock/gtk-network.png.svg)




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to