bug-buddy r2571 - in trunk: . data data/icons gentool google-breakpad/src m4 pixmaps src



Author: cosimoc
Date: Sun Jul 27 00:26:26 2008
New Revision: 2571
URL: http://svn.gnome.org/viewvc/bug-buddy?rev=2571&view=rev

Log:
2008-07-26  Cosimo Cecchi  <cosimoc gnome org>

	* Makefile.am:
	* autogen.sh:
	* configure.in:
	* data/*:
	* src/*.in:
	* src/bug-buddy.gtkbuilder:
	* src/bug-buddy.c:
	* src/bugzilla.c:
	* src/Makefile.am:
	* src/libglade-buddy.h
	* pixmaps/*:
	* m4/:
	* gentool/*:
	Rearranged the code tree into a more coherent fashion.
	Added data/ to hold icons, XML and .in files, added m4/ to
	hold macro files.
	Change the icon to a new Tango one, thanks to Andreas Nilsson,
	Michael Monreal and Sebastian Kraft (#406958).
	Fixed bits of autogen.sh, configure.in and Makefile.am to get rid
	of old stuff and fix some warnings.
	Remove some useless includes and obsolete libglade-buddy.h file.


Added:
   trunk/data/
   trunk/data/Makefile.am
   trunk/data/bug-buddy.desktop.in.in   (props changed)
      - copied unchanged from r2566, /trunk/src/bug-buddy.desktop.in.in
   trunk/data/bug-buddy.gtkbuilder   (contents, props changed)
      - copied, changed from r2566, /trunk/src/bug-buddy.gtkbuilder
   trunk/data/bug-buddy.menu.in   (props changed)
      - copied unchanged from r2566, /trunk/src/bug-buddy.menu.in
   trunk/data/bug-buddy.schemas.in   (props changed)
      - copied unchanged from r2566, /trunk/bug-buddy.schemas.in
   trunk/data/gdb-cmd   (props changed)
      - copied unchanged from r2566, /trunk/src/gdb-cmd
   trunk/data/icons/
   trunk/data/icons/HighContrastLargePrint_apps_48x48_bug-buddy.png   (contents, props changed)
   trunk/data/icons/HighContrastLargePrint_apps_48x48_bug-buddy.svg
   trunk/data/icons/Makefile.am
   trunk/data/icons/hicolor_apps_16x16_bug-buddy.png   (contents, props changed)
   trunk/data/icons/hicolor_apps_16x16_bug-buddy.svg
   trunk/data/icons/hicolor_apps_22x22_bug-buddy.png   (contents, props changed)
   trunk/data/icons/hicolor_apps_22x22_bug-buddy.svg
   trunk/data/icons/hicolor_apps_24x24_bug-buddy.png   (contents, props changed)
   trunk/data/icons/hicolor_apps_32x32_bug-buddy.png   (contents, props changed)
   trunk/data/icons/hicolor_apps_32x32_bug-buddy.svg
   trunk/data/icons/hicolor_apps_48x48_bug-buddy.png   (contents, props changed)
   trunk/data/icons/hicolor_apps_scalable_bug-buddy.svg
   trunk/m4/
Removed:
   trunk/bug-buddy.schemas.in
   trunk/gentool/
   trunk/pixmaps/
   trunk/src/bug-buddy.desktop.in.in
   trunk/src/bug-buddy.gtkbuilder
   trunk/src/bug-buddy.menu.in
   trunk/src/gdb-cmd
   trunk/src/libglade-buddy.h
Modified:
   trunk/ChangeLog
   trunk/Makefile.am
   trunk/autogen.sh
   trunk/configure.in
   trunk/google-breakpad/src/config.h.in
   trunk/src/Makefile.am
   trunk/src/bug-buddy.c
   trunk/src/bugzilla.c

Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am	(original)
+++ trunk/Makefile.am	Sun Jul 27 00:26:26 2008
@@ -1,24 +1,20 @@
+ACLOCAL_AMFLAGS = -I m4
+
 if USE_GOOGLE_BREAKPAD
 GOOGLE_BREAKPAD_DIR = google-breakpad
 else
 GOOGLE_BREAKPAD_DIST_DIR = google-breakpad
 endif
 
-SUBDIRS = po pixmaps $(GOOGLE_BREAKPAD_DIR) gnome-breakpad src bugzilla docs
+SUBDIRS = po $(GOOGLE_BREAKPAD_DIR) gnome-breakpad src bugzilla docs data
 
 DIST_SUBDIRS = $(SUBDIRS) $(GOOGLE_BREAKPAD_DIST_DIR) 
 
-schemasdir       = $(GCONF_SCHEMA_FILE_DIR)
-schemas_in_files = bug-buddy.schemas.in
-schemas_DATA     = $(schemas_in_files:.schemas.in=.schemas)
-
 EXTRA_DIST = \
 	MAINTAINERS					\
 	gnome-doc-utils.make				\
 	omf.make					\
-	xmldocs.make					\
-	$(schemas_in_files)				\
-	$(schemas_DATA)
+	xmldocs.make
 
 DISTCLEANFILES =					\
 	gnome-doc-utils.make
@@ -28,17 +24,3 @@
 distuninstallcheck_listfiles =  \
 find -regex '.*/var/scrollkeeper/.*' -prune -or -type f -print
 
-
-if GCONF_SCHEMAS_INSTALL
-install-data-local:
-	if test -z "$(DESTDIR)" ; then \
-                for p in $(schemas_DATA) ; do \
-                        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p ; \
-                done \
-        fi
-else
-install-data-local:
-endif
-
-
-

Modified: trunk/autogen.sh
==============================================================================
--- trunk/autogen.sh	(original)
+++ trunk/autogen.sh	Sun Jul 27 00:26:26 2008
@@ -6,10 +6,9 @@
 
 PKG_NAME="Bug Buddy"
 
-(test -f $srcdir/configure.in \
-  && test -d $srcdir/pixmaps) || {
+(test -f $srcdir/src/bug-buddy.c) || {
     echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
-    echo " top-level gnome directory"
+    echo " top-level $PKG_NAME directory"
     exit 1
 }
 

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Sun Jul 27 00:26:26 2008
@@ -4,6 +4,7 @@
 
 AC_CANONICAL_TARGET
 
+AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_HEADERS([config.h])
 
 AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2 tar-ustar])
@@ -145,18 +146,19 @@
 GNOME_MAINTAINER_MODE_DEFINES
 
 AC_OUTPUT([
-bug-buddy.schemas
 Makefile
 bugzilla/Makefile
 bugzilla/gnome/Makefile
 bugzilla/ximian/Makefile
+data/Makefile
+data/icons/Makefile
+data/bug-buddy.schemas
+data/bug-buddy.menu
+data/bug-buddy.desktop.in
 docs/Makefile
-pixmaps/Makefile
 po/Makefile.in
 gnome-breakpad/Makefile
 src/Makefile
-src/bug-buddy.menu
-src/bug-buddy.desktop.in
 ])
 
 dnl help is totally hosed

Added: trunk/data/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/Makefile.am	Sun Jul 27 00:26:26 2008
@@ -0,0 +1,46 @@
+SUBDIRS = icons
+
+schemasdir       = $(GCONF_SCHEMA_FILE_DIR)
+schemas_in_files = 		\
+	bug-buddy.schemas.in
+schemas_DATA     = 		\
+	$(schemas_in_files:.schemas.in=.schemas)
+
+desktopdir = $(datadir)/applications
+desktop_in_files = 		\
+	bug-buddy.desktop.in.in
+desktop_DATA = 			\
+	$(desktop_in_files:.desktop.in.in=.desktop)
+ INTLTOOL_DESKTOP_RULE@
+
+uidir = $(pkgdatadir)
+ui_DATA = 			\
+	bug-buddy.gtkbuilder	\
+	bug-buddy.menu
+
+utilsdir = $(pkgdatadir)
+utils_DATA =			\
+	gdb-cmd
+
+EXTRA_DIST = 			\
+	$(schemas_in_files) 	\
+	$(desktop_in_files)	\
+	$(ui_DATA)		\
+	$(utils_DATA)
+
+DISTCLEANFILES = 		\
+	$(desktop_DATA)		\
+	$(schemas_DATA)		\
+	bug-buddy.menu
+
+if GCONF_SCHEMAS_INSTALL
+install-data-local:
+	if test -z "$(DESTDIR)" ; then \
+                for p in $(schemas_DATA) ; do \
+                        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p ; \
+                done \
+        fi
+else
+install-data-local:
+endif
+

Copied: trunk/data/bug-buddy.gtkbuilder (from r2566, /trunk/src/bug-buddy.gtkbuilder)
==============================================================================
--- /trunk/src/bug-buddy.gtkbuilder	(original)
+++ trunk/data/bug-buddy.gtkbuilder	Sun Jul 27 00:26:26 2008
@@ -67,7 +67,8 @@
                 <child>
                   <object class="GtkImage" id="druid-logo">
                     <property name="visible">True</property>
-                    <property name="pixbuf">bug-buddy.png</property>
+                    <property name="icon-name">bug-buddy</property>
+                    <property name="icon-size">4</property>
                     <property name="xalign">1</property>
                     <property name="yalign">0.5</property>
                     <property name="xpad">0</property>

Added: trunk/data/icons/HighContrastLargePrint_apps_48x48_bug-buddy.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/HighContrastLargePrint_apps_48x48_bug-buddy.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/HighContrastLargePrint_apps_48x48_bug-buddy.svg	Sun Jul 27 00:26:26 2008
@@ -0,0 +1,178 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://web.resource.org/cc/";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="48px"
+   height="48px"
+   id="svg4908"
+   sodipodi:version="0.32"
+   inkscape:version="0.44+devel"
+   sodipodi:modified="true">
+  <defs
+     id="defs4910" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="11.313708"
+     inkscape:cx="31.468061"
+     inkscape:cy="25.674712"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:window-width="1680"
+     inkscape:window-height="973"
+     inkscape:window-x="0"
+     inkscape:window-y="26" />
+  <metadata
+     id="metadata4913">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title>Bug Buddy</dc:title>
+        <dc:date>February 2007</dc:date>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Andreas Nilsson</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:source>http://www.gnome.org</dc:source>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/GPL/2.0/"; />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/GPL/2.0/";>
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/ShareAlike"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/SourceCode"; />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer">
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect5909"
+       width="10.606602"
+       height="9"
+       x="-17.324116"
+       y="-3.272016"
+       rx="0.7265746"
+       ry="0.72657466"
+       transform="matrix(-0.7071068,-0.7071068,0.7071068,-0.7071068,0,0)" />
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect5905"
+       width="10.606602"
+       height="9"
+       x="51.265244"
+       y="-3.6066637"
+       rx="0.7265746"
+       ry="0.72657466"
+       transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,0,0)" />
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect5917"
+       width="10.606602"
+       height="9"
+       x="16.803244"
+       y="-37.026913"
+       rx="0.7265746"
+       ry="0.72657466"
+       transform="matrix(0.7071068,-0.7071068,-0.7071068,-0.7071068,0,0)" />
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect5919"
+       width="10.606602"
+       height="9"
+       x="17.137884"
+       y="30.148232"
+       rx="0.7265746"
+       ry="0.72657466"
+       transform="matrix(-0.7071068,0.7071068,0.7071068,0.7071068,0,0)" />
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect5903"
+       width="10.606602"
+       height="9"
+       x="37.393398"
+       y="22"
+       rx="0.7265746"
+       ry="0.72657466" />
+    <rect
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="rect5901"
+       width="10.606602"
+       height="9"
+       x="0"
+       y="22"
+       rx="0.7265746"
+       ry="0.72657466" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2.80079722;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path5899"
+       sodipodi:cx="27.785715"
+       sodipodi:cy="23.214285"
+       sodipodi:rx="17.428572"
+       sodipodi:ry="17.428572"
+       d="M 45.214287 23.214285 A 17.428572 17.428572 0 1 1  10.357143,23.214285 A 17.428572 17.428572 0 1 1  45.214287 23.214285 z"
+       transform="matrix(0.9754098,0,0,1.1762295,-3.6024599,-1.3053269)" />
+    <path
+       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 41.5,42.41691 L 7.2724874,5.4999996"
+       id="path5913" />
+    <path
+       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.00000048;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 3.0733193,26.5 L 45.127417,26.5"
+       id="path5887"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 6.500003,42.153538 L 40.727515,5.236628"
+       id="path5921" />
+    <path
+       sodipodi:type="arc"
+       style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.3404119;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+       id="path4916"
+       sodipodi:cx="27.785715"
+       sodipodi:cy="23.214285"
+       sodipodi:rx="17.428572"
+       sodipodi:ry="17.428572"
+       d="M 45.214287 23.214285 A 17.428572 17.428572 0 1 1  10.357143,23.214285 A 17.428572 17.428572 0 1 1  45.214287 23.214285 z"
+       transform="matrix(0.8032787,0,0,1.0040983,1.1803276,2.6905748)" />
+    <path
+       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 24,20 L 24,43.52"
+       id="path5893" />
+    <path
+       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="M 8.5625,21 L 38.4375,21 C 38.4375,21 35.5,6.9999996 23.6875,7.0624996 C 11.8125,7.1249996 8.5625,21 8.5625,21 z "
+       id="path5897"
+       sodipodi:nodetypes="cczc" />
+  </g>
+</svg>

Added: trunk/data/icons/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/data/icons/Makefile.am	Sun Jul 27 00:26:26 2008
@@ -0,0 +1,87 @@
+NULL =
+
+public_icons_themes = \
+	hicolor	\
+	HighContrastLargePrint \
+	$(NULL)
+
+public_icons = \
+	hicolor_apps_16x16_bug-buddy.png \
+	hicolor_apps_22x22_bug-buddy.png \
+	hicolor_apps_24x24_bug-buddy.png \
+	hicolor_apps_32x32_bug-buddy.png \
+	hicolor_apps_48x48_bug-buddy.png \
+	hicolor_apps_scalable_bug-buddy.svg \
+	HighContrastLargePrint_apps_48x48_bug-buddy.png \
+	$(NULL)
+
+private_icons = \
+	$(NULL)
+
+noinst_DATA = \
+	hicolor_apps_16x16_bug-buddy.svg \
+	hicolor_apps_22x22_bug-buddy.svg \
+	hicolor_apps_32x32_bug-buddy.svg \
+	HighContrastLargePrint_apps_48x48_bug-buddy.svg \
+	$(NULL)
+
+EXTRA_DIST = \
+	$(public_icons)		\
+	$(private_icons)	\
+	$(noinst_DATA)		\
+	$(NULL)
+
+###############################################################################
+
+gtk_update_icon_cache = gtk-update-icon-cache -f -t
+
+update-icon-cache:
+	@-if test -z "$(DESTDIR)"; then \
+		echo "Updating Gtk icon cache."; \
+		for theme in $(public_icons_themes); do \
+			$(gtk_update_icon_cache) $(datadir)/icons/$$theme; \
+		done; \
+	else \
+		echo "*** Icon cache not updated.  After (un)install, run this:"; \
+		for theme in $(public_icons_themes); do \
+			echo "***   $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \
+		done; \
+	fi
+
+install-icons:
+	for icon in $(public_icons); do \
+		THEME=`echo $$icon | cut -d_ -f1`; \
+		CONTEXT=`echo $$icon | cut -d_ -f2`; \
+		SIZE=`echo $$icon | cut -d_ -f3`; \
+		ICONFILE=`echo $$icon | cut -d_ -f4`; \
+		mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
+		$(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+	done; \
+	for icon in $(private_icons); do \
+		THEME=`echo $$icon | cut -d_ -f1`; \
+		CONTEXT=`echo $$icon | cut -d_ -f2`; \
+		SIZE=`echo $$icon | cut -d_ -f3`; \
+		ICONFILE=`echo $$icon | cut -d_ -f4`; \
+		mkdir -p $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
+		$(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+	done
+
+uninstall-icons:
+	-for icon in $(public_icons); do \
+		THEME=`echo $$icon | cut -d_ -f1`; \
+		CONTEXT=`echo $$icon | cut -d_ -f2`; \
+		SIZE=`echo $$icon | cut -d_ -f3`; \
+		ICONFILE=`echo $$icon | cut -d_ -f4`; \
+		rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+	done; \
+	for icon in $(private_icons); do \
+		THEME=`echo $$icon | cut -d_ -f1`; \
+		CONTEXT=`echo $$icon | cut -d_ -f2`; \
+		SIZE=`echo $$icon | cut -d_ -f3`; \
+		ICONFILE=`echo $$icon | cut -d_ -f4`; \
+		rm -f $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
+	done
+
+install-data-local: install-icons update-icon-cache
+
+uninstall-local: uninstall-icons update-icon-cache

Added: trunk/data/icons/hicolor_apps_16x16_bug-buddy.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/hicolor_apps_16x16_bug-buddy.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_16x16_bug-buddy.svg	Sun Jul 27 00:26:26 2008
@@ -0,0 +1,407 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://web.resource.org/cc/";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="16"
+   height="16"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.45+devel"
+   version="1.0"
+   sodipodi:docname="bug-buddy.svg"
+   sodipodi:docbase="/home/needcoffee/Desktop/bug-buddy (Kopie)/16x16"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/needcoffee/Desktop/bug-buddy (Kopie)/16x16/bug-buddy.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   sodipodi:modified="TRUE">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient21252">
+      <stop
+         id="stop21254"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop21256"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7862">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop7864" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.46739131;"
+         offset="1"
+         id="stop7866" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9617">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9619" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9621" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3821">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop3823" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3825" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient5265"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2853925,0.2853925,-0.531506,0.531506,14.369527,-12.196775)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient5267"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2391983,0.2391983,-0.1779554,0.1779554,5.9975371,-1.6074671)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.602362"
+       y2="58.328846" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21252"
+       id="radialGradient5269"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6247172,0.1853081,-0.4706324,1.5375284,7.702403,-17.902756)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient5271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.9735542,0,0.2510445)"
+       cx="8.0246916"
+       cy="9.4927979"
+       fx="8.0246916"
+       fy="9.4927979"
+       r="2.9176955" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient5273"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.9735543,0,0.2047911)"
+       cx="6.4300413"
+       cy="7.7438269"
+       fx="6.4300413"
+       fy="7.7438269"
+       r="2.9176953" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient5275"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.1563558,0.1563558,-0.130279,0.130279,8.119959,0.2465524)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient2707"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.1563558,0.1563558,-0.130279,0.130279,8.119959,0.2465524)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient2711"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.9735543,-0.2057614,0.1019104)"
+       cx="6.4300413"
+       cy="7.7438269"
+       fx="6.4300413"
+       fy="7.7438269"
+       r="2.9176953" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient2715"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.9735542,0.2572016,0.3024848)"
+       cx="8.0246916"
+       cy="9.4927979"
+       fx="8.0246916"
+       fy="9.4927979"
+       r="2.9176955" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21252"
+       id="radialGradient2718"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6247172,0.1853081,-0.4706324,1.5375284,7.702403,-17.902756)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient2723"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2391983,0.2391983,-0.1779554,0.1779554,5.9975371,-1.6074671)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.602362"
+       y2="58.328846" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient2726"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2853925,0.2853925,-0.531506,0.531506,14.369527,-12.196775)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient2713"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.1563558,0.1563558,-0.130279,0.130279,8.119959,0.2465524)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient2717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.9735543,-0.2057614,0.1019104)"
+       cx="6.4300413"
+       cy="7.7438269"
+       fx="6.4300413"
+       fy="7.7438269"
+       r="2.9176953" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient2721"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1,0,0,0.9735542,0.2572016,0.3024848)"
+       cx="8.0246916"
+       cy="9.4927979"
+       fx="8.0246916"
+       fy="9.4927979"
+       r="2.9176955" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21252"
+       id="radialGradient2724"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6247172,0.1853081,-0.4706324,1.5375284,7.702403,-17.902756)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient2729"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2391983,0.2391983,-0.1779554,0.1779554,5.9975371,-1.6074671)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.602362"
+       y2="58.328846" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient2732"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2853925,0.2853925,-0.531506,0.531506,14.369527,-12.196775)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="17.034452"
+     inkscape:cy="9.4368974"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer3"
+     width="16px"
+     height="16px"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="952"
+     inkscape:window-x="0"
+     inkscape:window-y="25" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title>bug-buddy</dc:title>
+        <dc:date>2007-11-02</dc:date>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/"; />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:language>de-DE</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>bug-buddy</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>bug-buddy icon for the Tango Desktop Project</dc:description>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/2.5/";>
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Attribution"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/ShareAlike"; />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="01">
+    <g
+       id="g2736">
+      <path
+         id="path6628"
+         d="M 10.560457,0.4642615 L 10.154207,0.6205115 L 9.8104567,1.4017615 L 9.6854567,1.4017615 L 9.7167067,2.1830115 L 9.5604567,2.3080115 L 10.029207,2.8392615 L 9.9354567,2.9330115 L 10.435457,3.2767615 L 10.372957,3.3080115 L 10.685457,3.8392615 L 10.654207,3.8392615 L 10.497957,4.8080115 L 10.841707,4.1205115 L 10.841707,4.0892615 L 10.935457,3.8705115 L 10.779207,3.8392615 L 10.654207,3.1830115 L 10.529207,3.2455115 L 10.154207,2.7142615 L 10.091707,2.7767615 L 9.8104567,2.1205115 L 9.7792067,2.1517615 L 9.9667067,1.3705115 L 9.8729567,1.3705115 L 10.560457,0.4642615 z M 12.091707,5.0580115 L 11.185457,5.4642615 L 12.154207,5.3392615 L 12.154207,5.3080115 L 12.685457,5.5892615 L 12.716707,5.5580115 L 13.029207,6.0267615 L 13.154207,5.9330115 L 13.685457,6.4017615 L 13.747957,6.2767615 L 14.591707,6.3080115 L 14.591707,6.1517615 L 15.372957,5.8392615 L 15.529207,5.4955115 L 14.591707,6.1205115 L 14.591707,6.0267615 L 13.779207,6.2455115 L 13.841707,6.1517615 L 13.18
 5457,5.9017615 L 13.279207,5.8080115 L 12.747957,5.4330115 L 12.810457,5.3392615 L 12.122957,5.2142615 L 12.091707,5.0580115 z"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc"
+         id="rect11805"
+         d="M 6.8017587,15.535738 L 7.4265897,13.932334 L 7.5979464,13.863885 L 9.6283777,10.36848 L 9.1324789,10.189956 L 7.086206,13.653189 L 7.1488876,13.839767 L 6.8017587,15.535738 z M 0.47079334,9.2775047 L 2.2295786,9.1981612 L 2.3826524,9.294568 L 5.8661641,7.2145685 L 5.6942533,6.7120586 L 2.1719566,8.796273 L 2.1303989,8.9138463 L 0.47079334,9.2775047 z M 3.3556108,5.2698292 L 4.5239336,5.3169317 L 4.6251101,5.4024436 L 7.1554991,5.9252335 L 7.261291,5.1582445 L 4.6845065,4.9335482 L 4.5636055,5.0127809 L 3.3556108,5.2698292 z M 11.449977,12.395051 L 11.387163,11.188366 L 11.432671,11.074519 L 10.765637,8.5700242 L 10.031709,8.8014423 L 10.996945,11.219761 L 11.102848,11.287544 L 11.449977,12.395051 z M 13.096358,8.8378086 L 12.405407,7.6311234 L 12.39484,7.4274698 L 10.368919,7.3930922 L 12.240108,7.9154384 L 12.24672,7.92205 L 13.096358,8.8378086 z M 6.8811025,3.0060468 L 7.849756,3.8821334 L 7.8299203,3.8887455 L 8.3125951,5.7202622 L 8.3496301,3.7181524 L 8.186
 9664,3.756506 L 6.8811025,3.0060468 z"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path3778"
+         d="M 8.7303156,10.603936 C 7.5458123,11.788439 5.3149428,12.694737 4.2458974,11.625692 C 3.1768524,10.556647 4.0831496,8.3257772 5.2676529,7.1412737 C 6.4521567,5.9567699 8.4921143,5.1857938 9.5611597,6.2548387 C 10.630205,7.323884 9.9148189,9.4194332 8.7303156,10.603936 z"
+         style="color:#000000;fill:url(#radialGradient2732);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="csssc"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2729);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 8.0330088,10.644759 C 6.8236868,11.85408 5.4399688,12.037217 4.665464,11.262711 C 3.8909589,10.488207 4.0175094,9.0479038 5.2268319,7.8385815 C 6.4361539,6.6292589 8.6354945,5.6870848 9.4099999,6.46159 C 10.184505,7.2360954 9.2423304,9.4354369 8.0330088,10.644759 z"
+         id="path3804" />
+      <path
+         id="path3766"
+         d="M 10.943407,6.2677282 C 10.723716,6.0495444 10.385872,5.9195139 9.8974329,5.9147924 C 9.7319013,6.0945023 5.3156397,10.896596 4.2247899,12.370312 C 4.5333962,12.343656 6.6333505,13.311434 9.608668,10.336117 C 10.924517,9.0202689 11.742739,7.061575 10.943407,6.2677282 z M 9.8974329,5.9147924 C 9.892852,5.9147481 9.889206,5.9148144 9.884599,5.9147924 L 9.7498416,6.0495499 C 9.7775655,6.0239595 9.8890656,5.9225268 9.8974329,5.9147924 z"
+         style="color:#000000;fill:#e9b96e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:#e9b96e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 9.5721229,4.8964441 C 9.7829867,5.1088159 9.905196,5.4388382 9.9016738,5.9190328 C 9.7222009,6.0848019 4.9265565,10.507513 3.4592417,11.604763 C 3.4906108,11.30087 2.5741149,9.2521994 5.5494319,6.2768817 C 6.865281,4.9610321 8.8049095,4.1237451 9.5721229,4.8964441 z M 9.9016738,5.9190328 C 9.9016405,5.9235366 9.9015146,5.9271225 9.9014588,5.9316522 L 9.7667022,6.0664097 C 9.7923274,6.0387213 9.8939281,5.92739 9.9016738,5.9190328 z"
+         id="path11796" />
+      <path
+         id="path6886"
+         d="M 9.2531937,4.8341956 C 8.5001741,4.2617001 6.9615974,4.8926078 5.5633776,6.2908274 C 4.5340564,7.320149 3.9812316,8.2499711 3.6935078,9.0412104 C 4.7063703,8.3068389 5.984918,8.0934335 7.1762278,8.4042045 C 8.4370667,7.2672135 9.4179127,6.3687662 9.7231265,6.0870046 C 9.7248822,5.4714162 9.5478539,5.0582156 9.2531937,4.8341956 z M 10.80997,6.4166391 C 10.581816,6.2134907 10.241688,6.0921 9.7615191,6.0868953 C 9.5090727,6.361266 8.6545153,7.2998451 7.5534089,8.5247051 C 8.1399742,8.7365727 8.6961429,9.0770744 9.1693597,9.5502913 C 9.3785518,9.7594834 9.5595546,9.9777925 9.7177567,10.214194 C 10.960569,8.9075624 11.623307,7.1408375 10.80997,6.4166391 z M 9.7615191,6.0868953 C 9.8018577,6.0430535 9.9669002,5.8687529 9.9669002,5.8687529 C 9.9669002,5.8687529 9.7816399,6.0452582 9.7295073,6.0933852 C 9.740951,6.0933792 9.7502266,6.086773 9.7615191,6.0868953 z"
+         style="opacity:0.6;color:#000000;fill:url(#radialGradient2724);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="opacity:0.6;fill:none;fill-rule:evenodd;stroke:url(#radialGradient2721);stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
+         d="M 5.8641975,11.884773 C 5.8641975,11.884773 9.1049382,11.627572 10.699589,7.2037037"
+         id="path5238" />
+      <path
+         sodipodi:nodetypes="cccsccccc"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 10.95914,6.2834615 C 10.734569,6.060398 10.391511,5.9251528 9.8975762,5.9149352 C 9.7322023,6.0948033 5.3202408,10.901197 4.2336581,12.37918 C 4.6198603,12.504574 6.6795488,13.357633 9.6548656,10.382316 C 10.970716,9.0664673 11.776228,7.0950635 10.95914,6.2834615 z M 9.8975762,5.9149352 C 9.8929432,5.9148394 9.8892581,5.9148658 9.884599,5.9147924 L 9.7498416,6.0495499 C 9.7775894,6.0239835 9.8892009,5.922663 9.8975762,5.9149352 z"
+         id="path11802" />
+      <path
+         id="path5236"
+         d="M 8.6419752,5.3004115 C 8.6419752,5.3004115 5.4012345,5.5576131 3.8065843,9.9814813"
+         style="opacity:0.6;fill:none;fill-rule:evenodd;stroke:url(#radialGradient2717);stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cccsccccc"
+         id="path11800"
+         d="M 9.5485233,4.8728444 C 9.7667073,5.0925361 9.8967382,5.4303801 9.9014596,5.9188181 C 9.7217493,6.0843507 4.9196553,10.500612 3.4459399,11.591462 C 3.3609148,11.171175 2.5048171,9.1829015 5.4801344,6.2075837 C 6.7959835,4.8917344 8.7546766,4.0735127 9.5485233,4.8728444 z M 9.9014596,5.9188181 C 9.901503,5.9233998 9.9014371,5.9270451 9.9014596,5.9316522 L 9.7667022,6.0664097 C 9.7922927,6.0386865 9.8937247,5.9271858 9.9014596,5.9188181 z"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="czcsc"
+         id="path3781"
+         d="M 11.266202,6.4430506 C 10.281386,5.672321 9.2748929,6.5966969 9.2748929,6.5966969 C 9.2748929,6.5966969 10.12997,5.4747076 9.4285387,4.6053872 C 9.7896751,4.2442513 10.839697,4.2626469 11.224319,4.64727 C 11.608395,5.0313454 11.627338,6.0819148 11.266202,6.4430506 z"
+         style="color:#000000;fill:url(#radialGradient2713);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 11.304843,6.4044095 C 10.158331,5.7953749 9.2194313,6.6521574 9.2194313,6.6521574 C 9.2194313,6.6521574 10.076214,5.7594566 9.4671788,4.5667463 C 9.8283152,4.2056104 10.837846,4.1835143 11.26296,4.6086292 C 11.647583,4.9932522 11.665979,6.0432736 11.304843,6.4044095 z"
+         id="path9625"
+         sodipodi:nodetypes="csczc" />
+    </g>
+  </g>
+</svg>

Added: trunk/data/icons/hicolor_apps_22x22_bug-buddy.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/hicolor_apps_22x22_bug-buddy.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_22x22_bug-buddy.svg	Sun Jul 27 00:26:26 2008
@@ -0,0 +1,683 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://web.resource.org/cc/";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="22"
+   height="22"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.45+devel"
+   version="1.0"
+   sodipodi:docname="bug-buddy.svg"
+   sodipodi:docbase="/home/needcoffee/Desktop/bug-buddy (Kopie)/22x22"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/needcoffee/Desktop/bug-buddy (Kopie)/22x22/bug-buddy.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   sodipodi:modified="TRUE">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient21252">
+      <stop
+         id="stop21254"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop21256"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient20125">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop20127" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop20129" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient16727">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop16729" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="1"
+         id="stop16731" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient10800">
+      <stop
+         style="stop-color:#343434;stop-opacity:1;"
+         offset="0"
+         id="stop10802" />
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1;"
+         offset="1"
+         id="stop10804" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7862">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop7864" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.46739131;"
+         offset="1"
+         id="stop7866" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6878">
+      <stop
+         style="stop-color:#fcaf3e;stop-opacity:1;"
+         offset="0"
+         id="stop6880" />
+      <stop
+         style="stop-color:#f57900;stop-opacity:1;"
+         offset="1"
+         id="stop6882" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9617">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9619" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9621" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3821">
+      <stop
+         style="stop-color:#75796d;stop-opacity:1;"
+         offset="0"
+         id="stop3823" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3825" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="linearGradient2755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.778598,-3.0435805)"
+       x1="10.85426"
+       y1="9.0594749"
+       x2="29.972343"
+       y2="12.551182" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient2758"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2202153,0.2202153,-0.1834882,0.1834882,11.040752,0.21626)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient2761"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.778598,-3.0435805)"
+       x1="13.675855"
+       y1="12.46873"
+       x2="13.675855"
+       y2="44.6875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient2764"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.778598,-3.0435805)"
+       x1="23.6875"
+       y1="12.46873"
+       x2="23.6875"
+       y2="44.6875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient2767"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.8831731,0.4230368,-1.1063291,2.13947,23.555788,-56.835016)"
+       cx="17.97797"
+       cy="26.878088"
+       fx="17.97797"
+       fy="26.878088"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient2770"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4483679,0.6833562,-1.2428787,2.5743965,19.382809,-65.841958)"
+       cx="15.165148"
+       cy="24.656099"
+       fx="15.165148"
+       fy="24.656099"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21252"
+       id="radialGradient2773"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.885915,0.239571,-0.3405457,1.2352048,6.6904398,-14.449217)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient2776"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.1271742,-0.1271742,0.755559,-0.755559,-6.5051858,34.376819)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient2779"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.1315731,0.1315731,0.755559,-0.755559,-12.732884,28.149121)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient2782"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3368928,0.3368928,-0.2506367,0.2506367,8.0514811,-2.3949863)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.602362"
+       y2="58.328846" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient2785"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4019537,0.4019537,-0.748586,0.748586,19.842796,-17.309227)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient16727"
+       id="radialGradient2788"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2542143,0.2542143,9.7612487,-2.0262314)"
+       cx="24.703125"
+       cy="29.068731"
+       fx="24.703125"
+       fy="29.068731"
+       r="18.515625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient20125"
+       id="radialGradient2791"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2402859,0.231797,-0.2990925,0.3100458,12.655161,-0.3426921)"
+       cx="21.991045"
+       cy="26.89328"
+       fx="21.991045"
+       fy="26.89328"
+       r="15.02314" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient20125"
+       id="radialGradient3853"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2402859,0.231797,-0.2990925,0.3100458,12.655161,-0.3426921)"
+       cx="21.991045"
+       cy="26.89328"
+       fx="21.991045"
+       fy="26.89328"
+       r="15.02314" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient16727"
+       id="radialGradient3855"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2542143,0.2542143,9.7612487,-2.0262314)"
+       cx="24.703125"
+       cy="29.068731"
+       fx="24.703125"
+       fy="29.068731"
+       r="18.515625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient3857"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4019537,0.4019537,-0.748586,0.748586,19.842796,-17.309227)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient3859"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3368928,0.3368928,-0.2506367,0.2506367,8.0514811,-2.3949863)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.602362"
+       y2="58.328846" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient3861"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.1315731,0.1315731,0.755559,-0.755559,-12.732884,28.149121)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient3863"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.1271742,-0.1271742,0.755559,-0.755559,-6.5051858,34.376819)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21252"
+       id="radialGradient3865"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.885915,0.239571,-0.3405457,1.2352048,6.6904398,-14.449217)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient3867"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4483679,0.6833562,-1.2428787,2.5743965,19.382809,-65.841958)"
+       cx="15.165148"
+       cy="24.656099"
+       fx="15.165148"
+       fy="24.656099"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient3869"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.8831731,0.4230368,-1.1063291,2.13947,23.555788,-56.835016)"
+       cx="17.97797"
+       cy="26.878088"
+       fx="17.97797"
+       fy="26.878088"
+       r="4.4293375" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient3871"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.778598,-3.0435805)"
+       x1="23.6875"
+       y1="12.46873"
+       x2="23.6875"
+       y2="44.6875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient3873"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.778598,-3.0435805)"
+       x1="13.675855"
+       y1="12.46873"
+       x2="13.675855"
+       y2="44.6875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient3875"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2202153,0.2202153,-0.1834882,0.1834882,11.040752,0.21626)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="linearGradient3877"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.778598,-3.0435805)"
+       x1="10.85426"
+       y1="9.0594749"
+       x2="29.972343"
+       y2="12.551182" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="linearGradient3712"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.729404,-2.988459)"
+       x1="10.85426"
+       y1="9.0594749"
+       x2="29.972343"
+       y2="12.551182" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient3715"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2202153,0.2202153,-0.1834882,0.1834882,10.991558,0.2713815)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient3718"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.729404,-2.988459)"
+       x1="13.675855"
+       y1="12.46873"
+       x2="13.675855"
+       y2="44.6875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient3721"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2892123,0.2892123,10.729404,-2.988459)"
+       x1="23.6875"
+       y1="12.46873"
+       x2="23.6875"
+       y2="44.6875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient3724"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.8831731,0.4230368,-1.1063291,2.13947,23.506594,-56.779894)"
+       cx="17.97797"
+       cy="26.878088"
+       fx="17.97797"
+       fy="26.878088"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient3727"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.4483679,0.6833562,-1.2428787,2.5743965,19.333615,-65.786836)"
+       cx="15.165148"
+       cy="24.656099"
+       fx="15.165148"
+       fy="24.656099"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21252"
+       id="radialGradient3730"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.885915,0.239571,-0.3405457,1.2352048,6.6412462,-14.394095)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient3733"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.1271742,-0.1271742,0.755559,-0.755559,-6.5543794,34.431941)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient3736"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.1315731,0.1315731,0.755559,-0.755559,-12.782078,28.204243)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient3739"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3368928,0.3368928,-0.2506367,0.2506367,8.0022875,-2.3398648)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.602362"
+       y2="58.328846" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient3742"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4019537,0.4019537,-0.748586,0.748586,19.793602,-17.254105)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient16727"
+       id="radialGradient3745"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2892123,0.2892123,-0.2542143,0.2542143,9.7120551,-1.9711099)"
+       cx="24.703125"
+       cy="29.068731"
+       fx="24.703125"
+       fy="29.068731"
+       r="18.515625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient20125"
+       id="radialGradient3748"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2402859,0.231797,-0.2990925,0.3100458,12.605967,-0.2875706)"
+       cx="21.991045"
+       cy="26.89328"
+       fx="21.991045"
+       fy="26.89328"
+       r="15.02314" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="22.55487"
+     inkscape:cy="10.253773"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer3"
+     width="22px"
+     height="22px"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="952"
+     inkscape:window-x="0"
+     inkscape:window-y="25" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title>bug-buddy</dc:title>
+        <dc:date>2007-11-02</dc:date>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/"; />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:language>de-DE</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>bug-buddy</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>bug-buddy icon for the Tango Desktop Project</dc:description>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/2.5/";>
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Attribution"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/ShareAlike"; />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="01">
+    <g
+       id="g3751">
+      <path
+         id="path6628"
+         d="M 14.419556,0.5551215 L 13.857056,0.7738715 L 13.388306,1.8676215 L 13.169556,1.8676215 L 13.232056,3.0551215 L 13.044556,3.1801215 L 13.700806,3.9301215 L 13.575806,4.0551215 L 14.263306,4.5551215 L 14.169556,4.5863715 L 14.544556,5.3051215 L 14.357056,6.7113715 L 14.950806,5.3988715 L 14.732056,5.3363715 L 14.575806,4.3988715 L 14.388306,4.4926215 L 13.857056,3.7426215 L 13.763306,3.8363715 L 13.388306,2.9301215 L 13.294556,2.9926215 L 13.575806,1.8676215 L 13.482056,1.8676215 L 14.419556,0.5551215 z M 16.607056,7.0551215 L 16.294556,7.1801215 L 16.294556,7.2113715 L 15.294556,7.6488715 L 16.669556,7.4301215 L 16.669556,7.3988715 L 17.419556,7.8051215 L 17.450806,7.7426215 L 17.919556,8.4301215 L 18.075806,8.2738715 L 18.794556,8.9613715 L 18.919556,8.7738715 L 20.107056,8.8051215 L 20.107056,8.5863715 L 21.200806,8.1176215 L 21.419556,7.6801215 L 20.107056,8.5238715 L 20.107056,8.3988715 L 18.950806,8.7113715 L 19.044556,8.5863715 L 18.138306,8.2113715 L 18.23
 2056,8.1176215 L 17.513306,7.5863715 L 17.575806,7.4301215 L 16.638306,7.2426215 L 16.607056,7.0551215 z"
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+      <path
+         style="opacity:0.6;color:#000000;fill:url(#radialGradient3748);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 13.603385,17.343175 C 10.579439,20.356089 6.2389195,20.92193 3.9147261,18.606214 C 1.590532,16.290498 2.1584446,11.965812 5.1823895,8.9528988 C 8.2063347,5.9399845 12.546855,5.3741432 14.871048,7.689859 C 17.195242,10.005575 16.62733,14.330261 13.603385,17.343175 z"
+         id="path14570" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc"
+         id="rect11805"
+         d="M 9.1342178,21.544879 L 9.9882974,19.353192 L 10.222524,19.259629 L 12.997913,14.481772 L 12.320071,14.237749 L 9.5230278,18.971629 L 9.608707,19.226661 L 9.1342178,21.544879 z M 0.4804436,12.990521 L 2.8845209,12.882067 L 3.093757,13.013844 L 7.8553568,10.170701 L 7.6203727,9.4838218 L 2.8057577,12.332727 L 2.7489526,12.493437 L 0.4804436,12.990521 z M 4.4236904,7.5124434 L 6.0206667,7.5768276 L 6.1589644,7.6937137 L 9.6177443,8.4083133 L 9.7623509,7.3599188 L 6.2401533,7.0527822 L 6.074894,7.1610851 L 4.4236904,7.5124434 z M 15.487851,17.251884 L 15.40199,15.60247 L 15.464194,15.446854 L 14.552429,12.023468 L 13.549224,12.339793 L 14.868604,15.645385 L 15.013361,15.738038 L 15.487851,17.251884 z M 17.738283,12.389502 L 16.793825,10.740088 L 16.77938,10.461716 L 14.010156,10.414724 L 16.567877,11.128717 L 16.576915,11.137755 L 17.738283,12.389502 z M 9.2426726,4.4180872 L 10.566722,5.6156069 L 10.539608,5.6246452 L 11.199374,8.1281388 L 11.249998,5.3914619 L 11.
 027654,5.4438873 L 9.2426726,4.4180872 z"
+         style="fill:url(#radialGradient3745);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path3778"
+         d="M 11.8512,14.858975 C 10.182916,16.527258 7.0409051,17.80371 5.5352353,16.298041 C 4.0295662,14.792371 5.3060174,11.65036 6.9743008,9.9820757 C 8.6425849,8.3137916 11.515711,7.2279299 13.02138,8.7335989 C 14.52705,10.239269 13.519483,13.190691 11.8512,14.858975 z"
+         style="color:#000000;fill:url(#radialGradient3742);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="csssc"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3739);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 10.869095,14.91647 C 9.165857,16.619708 7.2169948,16.877642 6.1261632,15.78681 C 5.0353312,14.695978 5.2135682,12.66742 6.9168075,10.964181 C 8.6200462,9.2609415 11.717652,7.9339605 12.808483,9.0247925 C 13.899315,10.115625 12.572334,13.213231 10.869095,14.91647 z"
+         id="path3804" />
+      <path
+         id="path3766"
+         d="M 14.968172,8.7517529 C 14.658752,8.4444574 14.182925,8.2613193 13.494997,8.2546695 C 13.261857,8.5077773 7.0418865,15.271164 5.5055071,17.346782 C 5.9401557,17.309238 8.8977827,18.672281 13.088292,14.481772 C 14.941567,12.628498 16.09397,9.8698261 14.968172,8.7517529 z M 13.494997,8.2546695 C 13.488544,8.2546069 13.483409,8.2547004 13.476921,8.2546695 L 13.287125,8.4444652 C 13.326172,8.408423 13.483211,8.2655627 13.494997,8.2546695 z"
+         style="color:#000000;fill:url(#radialGradient3736);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:url(#radialGradient3733);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 13.036821,6.8204026 C 13.333807,7.1195123 13.50593,7.5843239 13.500969,8.2606416 C 13.248195,8.4941149 6.4938923,14.72317 4.4272902,16.268564 C 4.4714712,15.840554 3.1806561,12.955155 7.3711652,8.7646448 C 9.2244392,6.9113701 11.956259,5.7321147 13.036821,6.8204026 z M 13.500969,8.2606416 C 13.500922,8.2669849 13.500744,8.2720353 13.500666,8.2784152 L 13.310871,8.4682109 C 13.346963,8.429214 13.49006,8.2724122 13.500969,8.2606416 z"
+         id="path11796" />
+      <path
+         id="path6886"
+         d="M 12.587634,6.7327305 C 11.527062,5.9264137 9.3600936,6.8149996 7.3908067,8.7842863 C 5.9410855,10.234009 5.1624736,11.543592 4.7572363,12.657993 C 6.1837766,11.623687 7.9845146,11.32312 9.6623843,11.760819 C 11.43818,10.159452 12.819629,8.8940571 13.249499,8.4972173 C 13.251971,7.6302075 13.00264,7.0482456 12.587634,6.7327305 z M 14.780235,8.9614826 C 14.458897,8.6753633 13.979853,8.5043937 13.303572,8.4970633 C 12.94802,8.8834936 11.744441,10.205412 10.193615,11.930534 C 11.019749,12.228934 11.80307,12.708505 12.46956,13.374995 C 12.764192,13.669626 13.01912,13.977099 13.241936,14.310053 C 14.992342,12.46976 15.925759,9.9814613 14.780235,8.9614826 z M 13.303572,8.4970633 C 13.360385,8.4353154 13.592836,8.1898262 13.592836,8.1898262 C 13.592836,8.1898262 13.33191,8.4384206 13.258485,8.5062039 C 13.274603,8.5061955 13.287667,8.4968911 13.303572,8.4970633 z"
+         style="opacity:0.6;color:#000000;fill:url(#radialGradient3730);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="cscsc"
+         id="path7870"
+         d="M 14.463574,9.6266041 C 13.919762,9.1313071 13.645873,9.002051 12.048271,10.682139 C 9.0659102,13.817464 7.4798011,15.931882 6.7456497,16.806558 C 7.0770551,16.73122 9.2081537,17.744595 12.806727,14.085094 C 14.398215,12.466662 15.04298,10.464369 14.463574,9.6266041 z"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient3727);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient3724);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 12.361073,7.2401214 C 12.774856,7.8501544 12.831383,8.0813965 11.137744,9.6730001 C 7.9771413,12.644173 5.9695651,14.056092 5.086761,14.786408 C 5.1598559,14.453378 4.2165863,12.405284 7.9043012,8.8189119 C 9.5352111,7.2328209 11.657006,6.4447025 12.361073,7.2401214 z"
+         id="path7875"
+         sodipodi:nodetypes="cscsc" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3721);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 14.990331,8.7739119 C 14.674039,8.4597438 14.190867,8.2692612 13.495198,8.2548705 C 13.262281,8.5082012 7.0483669,15.277645 5.5179972,17.359271 C 5.957071,17.326154 8.9628496,18.737349 13.153359,14.546839 C 15.006633,12.693565 16.141136,9.916992 14.990331,8.7739119 z M 13.495198,8.2548705 C 13.488673,8.2547356 13.483483,8.2547728 13.476921,8.2546695 L 13.287125,8.4444652 C 13.326205,8.4084568 13.483402,8.2657546 13.495198,8.2548705 z"
+         id="path11802" />
+      <path
+         id="path11800"
+         d="M 13.003584,6.7871642 C 13.310879,7.0965835 13.494017,7.5724113 13.500667,8.2603393 C 13.247559,8.4934793 6.4841726,14.713451 4.4085557,16.24983 C 4.4460984,15.815182 3.0830553,12.857554 7.273565,8.6670438 C 9.126839,6.8137695 11.88551,5.6613661 13.003584,6.7871642 z M 13.500667,8.2603393 C 13.500729,8.2667923 13.500636,8.2719264 13.500667,8.2784152 L 13.310871,8.4682109 C 13.346913,8.4291648 13.489773,8.2721246 13.500667,8.2603393 z"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3718);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="czcsc"
+         id="path3781"
+         d="M 15.422804,8.9986812 C 14.035764,7.9131667 12.618195,9.2150804 12.618195,9.2150804 C 12.618195,9.2150804 13.822507,7.6348432 12.834594,6.4104711 C 13.343227,5.9018384 14.822103,5.9277473 15.363816,6.4694598 C 15.904757,7.0104009 15.931437,8.4900486 15.422804,8.9986812 z"
+         style="color:#000000;fill:url(#radialGradient3715);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3712);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 15.206579,8.6003692 C 14.1335,7.5912971 12.710866,9.0799335 12.710866,9.0799335 C 12.710866,9.0799335 14.237773,7.6966326 13.190428,6.5191523 C 13.580301,6.1292802 14.570817,6.0711491 15.145234,6.6455651 C 15.719649,7.2199816 15.596451,8.2104977 15.206579,8.6003692 z"
+         id="path3829"
+         sodipodi:nodetypes="czcsc" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 15.477226,8.944258 C 13.862451,8.0864788 12.540083,9.2931923 12.540083,9.2931923 C 12.540083,9.2931923 13.746795,8.0358906 12.889016,6.3560484 C 13.397649,5.8474157 14.819496,5.816295 15.418238,6.4150371 C 15.95995,6.9567497 15.985859,8.4356255 15.477226,8.944258 z"
+         id="path9625"
+         sodipodi:nodetypes="csczc" />
+    </g>
+  </g>
+</svg>

Added: trunk/data/icons/hicolor_apps_24x24_bug-buddy.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/hicolor_apps_32x32_bug-buddy.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/hicolor_apps_32x32_bug-buddy.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_32x32_bug-buddy.svg	Sun Jul 27 00:26:26 2008
@@ -0,0 +1,608 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://web.resource.org/cc/";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="32"
+   height="32"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.45+devel"
+   version="1.0"
+   sodipodi:docname="bug-buddy.svg"
+   sodipodi:docbase="/home/needcoffee/Desktop/bug-buddy (Kopie)/32x32"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/needcoffee/Desktop/bug-buddy (Kopie)/32x32/bug-buddy.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   sodipodi:modified="TRUE">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient21252">
+      <stop
+         id="stop21254"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop21256"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient20125">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop20127" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop20129" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient16727">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop16729" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="1"
+         id="stop16731" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient10800">
+      <stop
+         style="stop-color:#343434;stop-opacity:1;"
+         offset="0"
+         id="stop10802" />
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1;"
+         offset="1"
+         id="stop10804" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7862">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop7864" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.46739131;"
+         offset="1"
+         id="stop7866" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6878">
+      <stop
+         style="stop-color:#fcaf3e;stop-opacity:1;"
+         offset="0"
+         id="stop6880" />
+      <stop
+         style="stop-color:#f57900;stop-opacity:1;"
+         offset="1"
+         id="stop6882" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9617">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9619" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9621" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7627">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop7629" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop7631" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3821">
+      <stop
+         style="stop-color:#75796d;stop-opacity:1;"
+         offset="0"
+         id="stop3823" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3825" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,0.1534688,-0.1534688,25.174411,3.4615266)"
+       cx="11.095629"
+       cy="3.1346092"
+       fx="11.095629"
+       fy="3.1346092"
+       r="2.5092411" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22258"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,0.48495,-0.48495,24.065921,4.570016)"
+       cx="7.3500023"
+       cy="4.9504719"
+       fx="7.3500023"
+       fy="4.9504719"
+       r="1.9361346" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22260"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,1.0436711,-1.0436711,19.305129,9.3308088)"
+       cx="5.3143821"
+       cy="8.2922049"
+       fx="5.3143821"
+       fy="8.2922049"
+       r="1.0651822" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22262"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,-0.6294932,0.6294932,27.459415,1.1765223)"
+       cx="20.317476"
+       cy="5.4575567"
+       fx="20.317476"
+       fy="5.4575567"
+       r="1.635862" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22264"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,-0.2373051,0.2373051,25.840921,2.7950167)"
+       cx="18.051439"
+       cy="2.9653726"
+       fx="18.051439"
+       fy="2.9653726"
+       r="2.4392891" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22266"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,-0.1349124,0.1349124,25.674625,2.9613122)"
+       cx="14.963775"
+       cy="2.524915"
+       fx="14.963775"
+       fy="2.524915"
+       r="2.4867301" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22268"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,-0.6294932,0.6294932,46.781305,20.498412)"
+       cx="20.317476"
+       cy="5.4575567"
+       fx="20.317476"
+       fy="5.4575567"
+       r="1.635862" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22270"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,-0.2373051,0.2373051,45.162811,22.116907)"
+       cx="18.051439"
+       cy="2.9653726"
+       fx="18.051439"
+       fy="2.9653726"
+       r="2.4392891" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22272"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,-0.1349124,0.1349124,44.996515,22.283202)"
+       cx="14.963775"
+       cy="2.524915"
+       fx="14.963775"
+       fy="2.524915"
+       r="2.4867301" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22274"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,0.1534688,-0.1534688,44.496301,22.783417)"
+       cx="11.095629"
+       cy="3.1346092"
+       fx="11.095629"
+       fy="3.1346092"
+       r="2.5092411" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22276"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,0.48495,-0.48495,43.387811,23.891906)"
+       cx="7.3500023"
+       cy="4.9504719"
+       fx="7.3500023"
+       fy="4.9504719"
+       r="1.9361346" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient22278"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,1.0436711,-1.0436711,38.627019,28.652699)"
+       cx="5.3143821"
+       cy="8.2922049"
+       fx="5.3143821"
+       fy="8.2922049"
+       r="1.0651822" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="linearGradient2755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4113887,0.4113887,-0.4113887,0.4113887,15.685068,-3.9762259)"
+       x1="10.85426"
+       y1="9.0594749"
+       x2="29.972343"
+       y2="12.551182" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient2758"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3132443,0.3132443,-0.2610019,0.2610019,16.057968,0.6607191)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient2761"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4113887,0.4113887,-0.4113887,0.4113887,15.685068,-3.9762259)"
+       x1="13.675855"
+       y1="12.46873"
+       x2="13.675855"
+       y2="44.6875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient2764"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4113887,0.4113887,-0.4113887,0.4113887,15.685068,-3.9762259)"
+       x1="23.6875"
+       y1="12.46873"
+       x2="23.6875"
+       y2="44.6875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient2767"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.3627356,0.6711906,-1.707065,3.3944857,35.478597,-91.290129)"
+       cx="17.97797"
+       cy="26.878088"
+       fx="17.97797"
+       fy="26.878088"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient2770"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.27252,1.0543493,-1.950103,3.9720328,29.035997,-102.85522)"
+       cx="15.165148"
+       cy="24.656099"
+       fx="15.165148"
+       fy="24.656099"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient21252"
+       id="radialGradient2773"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.2601657,0.3407766,-0.4844076,1.7570113,9.8698861,-20.200121)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient2776"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.1808983,-0.1808983,1.0747414,-1.0747414,-8.9001704,49.252248)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient2779"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.1871556,0.1871556,1.0747414,-1.0747414,-17.758731,40.393687)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient2782"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4792116,0.4792116,-0.356517,0.356517,11.805893,-3.0536361)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.602362"
+       y2="58.328846" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient2785"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5717572,0.5717572,-1.0648227,1.0648227,28.578394,-24.268328)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient16727"
+       id="radialGradient2788"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4113887,0.4113887,-0.3616059,0.3616059,14.237944,-2.5291025)"
+       cx="24.703125"
+       cy="29.068731"
+       fx="24.703125"
+       fy="29.068731"
+       r="18.515625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient20125"
+       id="radialGradient2791"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3417936,0.3297186,-0.4254427,0.4410232,18.354376,-0.1343598)"
+       cx="21.991045"
+       cy="26.89328"
+       fx="21.991045"
+       fy="26.89328"
+       r="15.02314" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="18"
+     inkscape:cy="15"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer3"
+     width="32px"
+     height="32px"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="952"
+     inkscape:window-x="0"
+     inkscape:window-y="25" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title>bug-buddy</dc:title>
+        <dc:date>2007-11-02</dc:date>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/"; />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:language>de-DE</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>bug-buddy</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>bug-buddy icon for the Tango Desktop Project</dc:description>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/2.5/";>
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Attribution"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/ShareAlike"; />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="01">
+    <g
+       id="g3777">
+      <g
+         transform="matrix(0.6541381,0,0,0.6541381,0.1449302,0.4564403)"
+         id="g17946">
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path6628"
+           d="M 30.625458,8.7206253 L 29.53787,6.0926765 L 28.762696,6.6326936 L 30.625458,8.7206253 z"
+           style="fill:url(#radialGradient22256);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient22258);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 29.182882,6.7633706 L 29.977208,3.8019824 L 29.089188,3.8087017 L 29.182882,6.7633706 z"
+           id="path6630"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path6632"
+           d="M 29.358851,4.2992624 L 31.797869,0.9515633 L 30.553253,1.427777 L 29.358851,4.2992624 z"
+           style="fill:url(#radialGradient22260);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient22262);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 31.635307,14.282931 L 32.051167,11.291476 L 32.908269,11.436838 L 31.635307,14.282931 z"
+           id="rect6614"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path6617"
+           d="M 32.623813,12.143017 L 31.241112,9.685161 L 32.087047,9.2908283 L 32.623813,12.143017 z"
+           style="fill:url(#radialGradient22264);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient22266);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 32.21817,10.155308 L 29.913744,8.5526973 L 30.580619,7.877609 L 32.21817,10.155308 z"
+           id="path6619"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path7679"
+           d="M 33.674896,16.32252 L 36.666352,15.906661 L 36.52099,15.049558 L 33.674896,16.32252 z"
+           style="fill:url(#radialGradient22268);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient22270);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 35.814811,15.334014 L 38.272666,16.716716 L 38.667,15.87078 L 35.814811,15.334014 z"
+           id="path7681"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path7683"
+           d="M 37.80252,15.739657 L 39.40513,18.044084 L 40.080219,17.377209 L 37.80252,15.739657 z"
+           style="fill:url(#radialGradient22272);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient22274);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 39.237202,17.332369 L 41.865151,18.419957 L 41.325134,19.195132 L 39.237202,17.332369 z"
+           id="path7685"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path7687"
+           d="M 41.194457,18.774946 L 44.155845,17.98062 L 44.149126,18.868639 L 41.194457,18.774946 z"
+           style="fill:url(#radialGradient22276);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient22278);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 43.658565,18.598976 L 47.006265,16.403581 L 46.53005,17.404574 L 43.658565,18.598976 z"
+           id="path7689"
+           sodipodi:nodetypes="cccc" />
+      </g>
+      <path
+         style="opacity:0.6;color:#000000;fill:url(#radialGradient2791);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 19.773148,24.944412 C 15.471751,29.230118 9.2975983,30.034995 5.9915602,26.741016 C 2.6855211,23.447037 3.4933457,17.295407 7.7947422,13.009703 C 12.096139,8.7239971 18.270292,7.9191187 21.57633,11.213098 C 24.882369,14.507077 24.074545,20.658706 19.773148,24.944412 z"
+         id="path14570" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc"
+         id="rect11805"
+         d="M 13.416002,30.921106 L 14.630884,27.803551 L 14.964059,27.670463 L 18.911898,20.874222 L 17.947705,20.527113 L 13.969063,27.260799 L 14.090937,27.623568 L 13.416002,30.921106 z M 1.106481,18.753 L 4.5261496,18.598729 L 4.8237765,18.786175 L 11.596892,14.74196 L 11.26264,13.764912 L 4.4141132,17.817323 L 4.3333111,18.045925 L 1.106481,18.753 z M 6.7155341,10.960734 L 8.9871457,11.052317 L 9.1838666,11.218581 L 14.103792,12.23506 L 14.309487,10.743776 L 9.2993534,10.306891 L 9.064281,10.460946 L 6.7155341,10.960734 z M 22.453698,24.814555 L 22.331566,22.468354 L 22.420048,22.246999 L 21.123112,17.377419 L 19.696108,17.827375 L 21.572853,22.529398 L 21.778763,22.661192 L 22.453698,24.814555 z M 25.654815,17.898082 L 24.311375,15.551881 L 24.290828,15.155912 L 20.351758,15.089069 L 23.989977,16.104685 L 24.002833,16.117541 L 25.654815,17.898082 z M 13.570273,6.5591814 L 15.453662,8.2625877 L 15.415094,8.2754441 L 16.353575,11.836527 L 16.425584,7.9437536 L 16.109312
 ,8.018326 L 13.570273,6.5591814 z"
+         style="fill:url(#radialGradient2788);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path3778"
+         d="M 17.280761,21.410773 C 14.907718,23.783815 10.438379,25.599498 8.296646,23.457766 C 6.154914,21.316033 7.9705961,16.846693 10.343638,14.473651 C 12.716681,12.100608 16.803547,10.556029 18.945279,12.697761 C 21.087012,14.839493 19.653803,19.03773 17.280761,21.410773 z"
+         style="color:#000000;fill:url(#radialGradient2785);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="csssc"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2782);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 15.883771,21.492556 C 13.461007,23.91532 10.688857,24.282217 9.1372087,22.730568 C 7.5855598,21.178919 7.8390921,18.293406 10.261857,15.870641 C 12.684621,13.447877 17.090796,11.560319 18.642444,13.111968 C 20.194093,14.663617 18.306535,19.069792 15.883771,21.492556 z"
+         id="path3804" />
+      <path
+         id="path3766"
+         d="M 21.714483,12.723584 C 21.274351,12.286473 20.597512,12.025969 19.618972,12.01651 C 19.287344,12.376542 10.439775,21.99709 8.2543593,24.949542 C 8.8726231,24.896139 13.079686,26.834993 19.040457,20.874222 C 21.676639,18.238042 23.31587,14.313982 21.714483,12.723584 z M 19.618972,12.01651 C 19.609794,12.016421 19.60249,12.016554 19.59326,12.01651 L 19.323286,12.286484 C 19.378828,12.235216 19.602208,12.032005 19.618972,12.01651 z"
+         style="color:#000000;fill:url(#radialGradient2779);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:url(#radialGradient2776);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 18.967243,9.9763438 C 19.389689,10.401811 19.634524,11.06298 19.627467,12.025005 C 19.26791,12.357108 9.6602832,21.217598 6.7206547,23.415837 C 6.7834997,22.807015 4.9473857,18.702693 10.908156,12.741922 C 13.544337,10.10574 17.430202,8.4283136 18.967243,9.9763438 z M 19.627467,12.025005 C 19.627401,12.034028 19.627148,12.041212 19.627037,12.050287 L 19.357064,12.320261 C 19.408402,12.26479 19.61195,12.041748 19.627467,12.025005 z"
+         id="path11796" />
+      <path
+         id="path6886"
+         d="M 18.328298,9.851635 C 16.819693,8.7046934 13.737298,9.9686583 10.936095,12.769861 C 8.8739458,14.832011 7.7664128,16.694822 7.189985,18.279996 C 9.2191606,16.808752 11.780612,16.381213 14.16729,17.003815 C 16.693263,14.725959 18.658298,12.926004 19.269765,12.361521 C 19.273282,11.128247 18.918622,10.300438 18.328298,9.851635 z M 21.447153,13.021913 C 20.990068,12.614924 20.308654,12.371729 19.346681,12.361302 C 18.840928,12.910978 17.128902,14.791334 14.922937,17.245226 C 16.098067,17.669683 17.212299,18.351847 18.160345,19.299893 C 18.579442,19.718989 18.942063,20.156352 19.259007,20.629961 C 21.748864,18.012245 23.076599,14.472777 21.447153,13.021913 z M 19.346681,12.361302 C 19.427495,12.273469 19.758143,11.924274 19.758143,11.924274 C 19.758143,11.924274 19.386991,12.277886 19.282548,12.374304 C 19.305474,12.374292 19.324057,12.361057 19.346681,12.361302 z"
+         style="opacity:0.6;color:#000000;fill:url(#radialGradient2773);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="cscsc"
+         id="path7870"
+         d="M 21.3948,13.500073 C 20.541548,12.73588 20.111812,12.536451 17.605139,15.128657 C 12.925751,19.966144 10.437112,23.228477 9.2852129,24.578014 C 9.8051951,24.461774 13.148934,26.02531 18.795173,20.379071 C 21.292251,17.881994 22.303902,14.792659 21.3948,13.500073 z"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient2770);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient2767);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 18.281064,10.284105 C 18.91953,11.251984 19.006754,11.618873 16.393468,14.144113 C 11.51666,18.858179 8.4189712,21.098331 7.0568051,22.257051 C 7.1695903,21.728665 5.7141261,18.479157 11.404268,12.789016 C 13.920761,10.272522 17.194691,9.0220924 18.281064,10.284105 z"
+         id="path7875"
+         sodipodi:nodetypes="cscsc" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2764);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 21.746003,12.755104 C 21.296095,12.308217 20.60881,12.037266 19.619258,12.016796 C 19.287947,12.377145 10.448993,22.006308 8.2721257,24.967308 C 8.8966843,24.9202 13.17224,26.927548 19.133011,20.966777 C 21.769193,18.330596 23.382961,14.381073 21.746003,12.755104 z M 19.619258,12.016796 C 19.609977,12.016604 19.602594,12.016657 19.59326,12.01651 L 19.323286,12.286484 C 19.378876,12.235264 19.60248,12.032278 19.619258,12.016796 z"
+         id="path11802" />
+      <path
+         id="path11800"
+         d="M 18.919964,9.929064 C 19.357075,10.369196 19.617579,11.046035 19.627038,12.024575 C 19.267005,12.356204 9.6464574,21.203773 6.6940058,23.389188 C 6.7474083,22.770925 4.8085539,18.563861 10.769325,12.60309 C 13.405506,9.9669085 17.329566,8.3276777 18.919964,9.929064 z M 19.627038,12.024575 C 19.627126,12.033754 19.626994,12.041057 19.627038,12.050287 L 19.357064,12.320261 C 19.408332,12.26472 19.611542,12.041339 19.627038,12.024575 z"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2761);stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="czcsc"
+         id="path3781"
+         d="M 22.361173,13.074826 C 20.388184,11.530741 18.37177,13.382642 18.37177,13.382642 C 18.37177,13.382642 20.084838,11.134841 18.679586,9.3932386 C 19.403088,8.6697363 21.506709,8.7065904 22.277265,9.4771468 C 23.046724,10.246606 23.084675,12.351324 22.361173,13.074826 z"
+         style="color:#000000;fill:url(#radialGradient2758);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2755);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 22.053604,12.508249 C 20.527209,11.072899 18.503589,13.190403 18.503589,13.190403 C 18.503589,13.190403 20.675531,11.222733 19.18574,9.5478317 C 19.740313,8.9932599 21.149268,8.9105716 21.966344,9.727647 C 22.783419,10.544723 22.608176,11.953678 22.053604,12.508249 z"
+         id="path3829"
+         sodipodi:nodetypes="czcsc" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 22.438585,12.997412 C 20.141656,11.777268 18.260659,13.493752 18.260659,13.493752 C 18.260659,13.493752 19.977141,11.705309 18.756998,9.3158252 C 19.480501,8.592323 21.503,8.5480555 22.354678,9.3997335 C 23.125234,10.17029 23.162088,12.27391 22.438585,12.997412 z"
+         id="path9625"
+         sodipodi:nodetypes="csczc" />
+    </g>
+  </g>
+</svg>

Added: trunk/data/icons/hicolor_apps_48x48_bug-buddy.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/icons/hicolor_apps_scalable_bug-buddy.svg
==============================================================================
--- (empty file)
+++ trunk/data/icons/hicolor_apps_scalable_bug-buddy.svg	Sun Jul 27 00:26:26 2008
@@ -0,0 +1,747 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://web.resource.org/cc/";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="48"
+   height="48"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.45+devel"
+   version="1.0"
+   sodipodi:docname="bug-buddy.svg"
+   sodipodi:docbase="/home/needcoffee/Desktop/bug-buddy (Kopie)/48x48"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   inkscape:export-filename="/home/needcoffee/Desktop/bug-buddy (Kopie)/48x48/bug-buddy.png"
+   inkscape:export-xdpi="90"
+   inkscape:export-ydpi="90"
+   sodipodi:modified="true">
+  <defs
+     id="defs4">
+    <linearGradient
+       id="linearGradient3718">
+      <stop
+         id="stop3720"
+         offset="0"
+         style="stop-color:#ffffff;stop-opacity:1;" />
+      <stop
+         id="stop3722"
+         offset="1"
+         style="stop-color:#ffffff;stop-opacity:0;" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient20125">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop20127" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0;"
+         offset="1"
+         id="stop20129" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient16727">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop16729" />
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="1"
+         id="stop16731" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient10800">
+      <stop
+         style="stop-color:#343434;stop-opacity:1;"
+         offset="0"
+         id="stop10802" />
+      <stop
+         style="stop-color:#ce5c00;stop-opacity:1;"
+         offset="1"
+         id="stop10804" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7862">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop7864" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.48369566;"
+         offset="1"
+         id="stop7866" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6878">
+      <stop
+         style="stop-color:#fcaf3e;stop-opacity:1;"
+         offset="0"
+         id="stop6880" />
+      <stop
+         style="stop-color:#f57900;stop-opacity:1;"
+         offset="1"
+         id="stop6882" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9617">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop9619" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop9621" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient7627">
+      <stop
+         style="stop-color:#2e3436;stop-opacity:1;"
+         offset="0"
+         id="stop7629" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop7631" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3821">
+      <stop
+         style="stop-color:#75796d;stop-opacity:1;"
+         offset="0"
+         id="stop3823" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="1"
+         id="stop3825" />
+    </linearGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19053"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,0.1534688,-0.1534688,25.174411,3.4615266)"
+       cx="11.095629"
+       cy="3.1346092"
+       fx="11.095629"
+       fy="3.1346092"
+       r="2.5092411" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19055"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,0.48495,-0.48495,24.065921,4.570016)"
+       cx="7.3500023"
+       cy="4.9504719"
+       fx="7.3500023"
+       fy="4.9504719"
+       r="1.9361346" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19057"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,1.0436711,-1.0436711,19.305129,9.3308088)"
+       cx="5.3143821"
+       cy="8.2922049"
+       fx="5.3143821"
+       fy="8.2922049"
+       r="1.0651822" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19059"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,-0.6294932,0.6294932,27.459415,1.1765223)"
+       cx="20.317476"
+       cy="5.4575567"
+       fx="20.317476"
+       fy="5.4575567"
+       r="1.635862" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19061"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,-0.2373051,0.2373051,25.840921,2.7950167)"
+       cx="18.051439"
+       cy="2.9653726"
+       fx="18.051439"
+       fy="2.9653726"
+       r="2.4392891" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19063"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.3936144,0.3936144,-0.1349124,0.1349124,25.674625,2.9613122)"
+       cx="14.963775"
+       cy="2.524915"
+       fx="14.963775"
+       fy="2.524915"
+       r="2.4867301" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19065"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,-0.6294932,0.6294932,46.781305,20.498412)"
+       cx="20.317476"
+       cy="5.4575567"
+       fx="20.317476"
+       fy="5.4575567"
+       r="1.635862" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19067"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,-0.2373051,0.2373051,45.162811,22.116907)"
+       cx="18.051439"
+       cy="2.9653726"
+       fx="18.051439"
+       fy="2.9653726"
+       r="2.4392891" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19069"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,-0.1349124,0.1349124,44.996515,22.283202)"
+       cx="14.963775"
+       cy="2.524915"
+       fx="14.963775"
+       fy="2.524915"
+       r="2.4867301" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19071"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,0.1534688,-0.1534688,44.496301,22.783417)"
+       cx="11.095629"
+       cy="3.1346092"
+       fx="11.095629"
+       fy="3.1346092"
+       r="2.5092411" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19073"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,0.48495,-0.48495,43.387811,23.891906)"
+       cx="7.3500023"
+       cy="4.9504719"
+       fx="7.3500023"
+       fy="4.9504719"
+       r="1.9361346" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7627"
+       id="radialGradient19075"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.3936144,-0.3936144,1.0436711,-1.0436711,38.627019,28.652699)"
+       cx="5.3143821"
+       cy="8.2922049"
+       fx="5.3143821"
+       fy="8.2922049"
+       r="1.0651822" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient19105"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6289019,0.6289019,-0.6289019,0.6289019,23.518554,-6.5382394)"
+       x1="10.85426"
+       y1="9.0594749"
+       x2="29.972343"
+       y2="12.551182" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient19108"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4788657,0.4788657,-0.3990012,0.3990012,24.088617,0.5503937)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient19111"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6289019,0.6289019,-0.6289019,0.6289019,23.518554,-6.5382394)"
+       x1="13.675855"
+       y1="12.46873"
+       x2="13.675855"
+       y2="44.6875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient19114"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6289019,0.6289019,-0.6289019,0.6289019,23.518554,-6.5382394)"
+       x1="23.6875"
+       y1="12.46873"
+       x2="23.6875"
+       y2="44.6875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient19117"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0832536,1.0260687,-2.6096401,5.1892494,53.7775,-140.01755)"
+       cx="17.97797"
+       cy="26.878088"
+       fx="17.97797"
+       fy="26.878088"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient19120"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.4740677,1.6118146,-2.9811793,6.0721624,43.928509,-157.69744)"
+       cx="15.165148"
+       cy="24.656099"
+       fx="15.165148"
+       fy="24.656099"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718"
+       id="radialGradient19123"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.926452,0.5209552,-0.7405281,2.6859944,14.628716,-31.340181)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient19126"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.2765445,-0.2765445,1.6429885,-1.6429885,-14.065617,74.833681)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient19129"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2861102,0.2861102,1.6429885,-1.6429885,-27.607957,61.291341)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient19132"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7325847,0.7325847,-0.5450179,0.5450179,17.588346,-5.1278494)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.365795"
+       y2="49.425411" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient19135"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.8740619,0.8740619,-1.6278256,1.6278256,43.228958,-37.559368)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient16727"
+       id="radialGradient19138"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6289019,0.6289019,-0.5527975,0.5527975,21.306294,-4.3259797)"
+       cx="24.703125"
+       cy="29.068731"
+       fx="24.703125"
+       fy="29.068731"
+       r="18.515625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient20125"
+       id="radialGradient20131"
+       cx="21.991045"
+       cy="26.89328"
+       fx="21.991045"
+       fy="26.89328"
+       r="15.02314"
+       gradientTransform="matrix(0.5308558,0.4952531,-0.635795,0.6815008,27.023251,-0.6678098)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient3739"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6289019,0.6289019,-0.6289019,0.6289019,23.518554,-6.5382394)"
+       x1="10.85426"
+       y1="9.0594749"
+       x2="29.972343"
+       y2="12.551182" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient3742"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.4788657,0.4788657,-0.3990012,0.3990012,24.088617,0.5503937)"
+       cx="22.320988"
+       cy="8.7810698"
+       fx="22.320988"
+       fy="8.7810698"
+       r="5.8765426" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient3745"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6289019,0.6289019,-0.6289019,0.6289019,23.518554,-6.5382394)"
+       x1="13.675855"
+       y1="12.46873"
+       x2="13.675855"
+       y2="44.6875" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10800"
+       id="linearGradient3748"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6289019,0.6289019,-0.6289019,0.6289019,23.518554,-6.5382394)"
+       x1="23.6875"
+       y1="12.46873"
+       x2="23.6875"
+       y2="44.6875" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient3751"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.0832536,1.0260687,-2.6096401,5.1892494,53.7775,-140.01755)"
+       cx="17.97797"
+       cy="26.878088"
+       fx="17.97797"
+       fy="26.878088"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient7862"
+       id="radialGradient3754"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.4740677,1.6118146,-2.9811793,6.0721624,43.928509,-157.69744)"
+       cx="15.165148"
+       cy="24.656099"
+       fx="15.165148"
+       fy="24.656099"
+       r="4.4293375" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3718"
+       id="radialGradient3757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.926452,0.5209552,-0.7405281,2.6859944,14.628716,-31.340181)"
+       cx="9.4155846"
+       cy="11.496181"
+       fx="9.4155846"
+       fy="11.496181"
+       r="9.890625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient3760"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.2765445,-0.2765445,1.6429885,-1.6429885,-14.065617,74.833681)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6878"
+       id="radialGradient3763"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.2861102,0.2861102,1.6429885,-1.6429885,-27.607957,61.291341)"
+       cx="24.363298"
+       cy="28.883881"
+       fx="24.363298"
+       fy="28.883881"
+       r="9.90625" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9617"
+       id="linearGradient3766"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.7325847,0.7325847,-0.5450179,0.5450179,17.588346,-5.1278494)"
+       x1="30.365795"
+       y1="31.133732"
+       x2="30.365795"
+       y2="49.425411" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3821"
+       id="radialGradient3769"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.8740619,0.8740619,-1.6278256,1.6278256,43.228958,-37.559368)"
+       cx="24"
+       cy="28.363541"
+       fx="24"
+       fy="28.363541"
+       r="6.7860088" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient16727"
+       id="radialGradient3772"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.6289019,0.6289019,-0.5527975,0.5527975,21.306294,-4.3259797)"
+       cx="24.703125"
+       cy="29.068731"
+       fx="24.703125"
+       fy="29.068731"
+       r="18.515625" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient20125"
+       id="radialGradient3775"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.5308558,0.4952531,-0.635795,0.6815008,27.023251,-0.6678098)"
+       cx="21.991045"
+       cy="26.89328"
+       fx="21.991045"
+       fy="26.89328"
+       r="15.02314" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="56"
+     inkscape:cy="37.5"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer3"
+     width="48px"
+     height="48px"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="952"
+     inkscape:window-x="0"
+     inkscape:window-y="25" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title>bug-buddy</dc:title>
+        <dc:date>2007-11-02</dc:date>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/"; />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:rights>
+        <dc:language>de-DE</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>bug-buddy</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>bug-buddy icon for the Tango Desktop Project</dc:description>
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title>Sebastian Kraft</dc:title>
+          </cc:Agent>
+        </dc:contributor>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/2.5/";>
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Reproduction"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/Distribution"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Notice"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/Attribution"; />
+        <cc:permits
+           rdf:resource="http://web.resource.org/cc/DerivativeWorks"; />
+        <cc:requires
+           rdf:resource="http://web.resource.org/cc/ShareAlike"; />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="01">
+    <g
+       id="g4759">
+      <g
+         transform="translate(-0.2381079,0.2381068)"
+         id="g17946">
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path6628"
+           d="M 30.625458,8.7206253 L 29.53787,6.0926765 L 28.762696,6.6326936 L 30.625458,8.7206253 z"
+           style="fill:url(#radialGradient19053);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient19055);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 29.182882,6.7633706 L 29.977208,3.8019824 L 29.089188,3.8087017 L 29.182882,6.7633706 z"
+           id="path6630"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path6632"
+           d="M 29.358851,4.2992624 L 31.797869,0.9515633 L 30.553253,1.427777 L 29.358851,4.2992624 z"
+           style="fill:url(#radialGradient19057);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient19059);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 31.635307,14.282931 L 32.051167,11.291476 L 32.908269,11.436838 L 31.635307,14.282931 z"
+           id="rect6614"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path6617"
+           d="M 32.623813,12.143017 L 31.241112,9.685161 L 32.087047,9.2908283 L 32.623813,12.143017 z"
+           style="fill:url(#radialGradient19061);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient19063);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 32.21817,10.155308 L 29.913744,8.5526973 L 30.580619,7.877609 L 32.21817,10.155308 z"
+           id="path6619"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path7679"
+           d="M 33.674896,16.32252 L 36.666352,15.906661 L 36.52099,15.049558 L 33.674896,16.32252 z"
+           style="fill:url(#radialGradient19065);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient19067);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 35.814811,15.334014 L 38.272666,16.716716 L 38.667,15.87078 L 35.814811,15.334014 z"
+           id="path7681"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path7683"
+           d="M 37.80252,15.739657 L 39.40513,18.044084 L 40.080219,17.377209 L 37.80252,15.739657 z"
+           style="fill:url(#radialGradient19069);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient19071);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 39.237202,17.332369 L 41.865151,18.419957 L 41.325134,19.195132 L 39.237202,17.332369 z"
+           id="path7685"
+           sodipodi:nodetypes="cccc" />
+        <path
+           sodipodi:nodetypes="cccc"
+           id="path7687"
+           d="M 41.194457,18.774946 L 44.155845,17.98062 L 44.149126,18.868639 L 41.194457,18.774946 z"
+           style="fill:url(#radialGradient19073);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+        <path
+           style="fill:url(#radialGradient19075);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
+           d="M 43.658565,18.598976 L 47.006265,16.403581 L 46.53005,17.404574 L 43.658565,18.598976 z"
+           id="path7689"
+           sodipodi:nodetypes="cccc" />
+      </g>
+      <path
+         style="opacity:0.6;color:#000000;fill:url(#radialGradient3775);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 29.768122,37.673584 C 23.192451,44.225267 13.753843,45.455706 8.6998061,40.420105 C 3.6457676,35.384503 4.8807127,25.980327 11.456383,19.428645 C 18.032054,12.876962 27.470661,11.646521 32.524699,16.682123 C 37.578737,21.717725 36.343792,31.1219 29.768122,37.673584 z"
+         id="path14570" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc"
+         id="rect11805"
+         d="M 20.049767,46.81033 L 21.906993,42.044433 L 22.416327,41.840977 L 28.451503,31.451366 L 26.977514,30.92073 L 20.895248,41.214712 L 21.081559,41.769288 L 20.049767,46.81033 z M 1.231843,28.208591 L 6.4595901,27.972753 L 6.9145811,28.259307 L 17.268841,22.076797 L 16.757859,20.583155 L 6.2883168,26.778194 L 6.1647923,27.127666 L 1.231843,28.208591 z M 9.8065661,16.296327 L 13.279245,16.436333 L 13.579978,16.690506 L 21.101212,18.244426 L 21.415663,15.964657 L 13.756526,15.296778 L 13.397164,15.532287 L 9.8065661,16.296327 z M 33.865956,37.475067 L 33.67925,33.888361 L 33.814515,33.54997 L 31.831851,26.1057 L 29.650348,26.793561 L 32.519383,33.981681 L 32.834163,34.183159 L 33.865956,37.475067 z M 38.759598,26.901654 L 36.705841,23.314948 L 36.674431,22.709618 L 30.65266,22.607433 L 36.214511,24.160035 L 36.234164,24.179688 L 38.759598,26.901654 z M 20.285605,9.5675452 L 23.164797,12.171592 L 23.105837,12.191246 L 24.54052,17.635178 L 24.650602,11.684181 L 24.16710
 9,11.798182 L 20.285605,9.5675452 z"
+         style="fill:url(#radialGradient3772);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path3778"
+         d="M 25.957936,32.271606 C 22.330197,35.899345 15.497787,38.675033 12.223658,35.400904 C 8.9495297,32.126775 11.725216,25.294364 15.352955,21.666626 C 18.980695,18.038886 25.228406,15.677642 28.502534,18.951771 C 31.776663,22.225899 29.585676,28.643867 25.957936,32.271606 z"
+         style="color:#000000;fill:url(#radialGradient3769);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="csssc"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3766);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 23.822318,32.39663 C 20.118567,36.100381 15.187482,37.181181 12.815432,34.809131 C 10.443381,32.43708 11.524182,27.505996 15.227933,23.802245 C 18.931683,20.098495 25.667531,17.21293 28.039581,19.584981 C 30.411632,21.957032 27.526068,28.69288 23.822318,32.39663 z"
+         id="path3804" />
+      <path
+         id="path3766"
+         d="M 32.735897,18.991247 C 32.063055,18.323023 31.028351,17.924783 29.532428,17.910322 C 29.025458,18.460714 15.499922,33.167927 12.159013,37.681426 C 13.104171,37.599788 19.535631,40.56377 28.648035,31.451366 C 32.678043,27.42136 35.183984,21.422535 32.735897,18.991247 z M 29.532428,17.910322 C 29.518397,17.910187 29.507232,17.91039 29.493122,17.910322 L 29.080405,18.323039 C 29.165313,18.244665 29.506801,17.93401 29.532428,17.910322 z"
+         style="color:#000000;fill:url(#radialGradient3763);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:url(#radialGradient3760);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 28.536111,14.791461 C 29.181917,15.441885 29.556203,16.452634 29.545415,17.923309 C 28.995749,18.431005 14.30829,31.976295 9.8143941,35.336806 C 9.9104671,34.406083 7.103546,28.131686 16.21595,19.019281 C 20.245957,14.989273 26.186392,12.424942 28.536111,14.791461 z M 29.545415,17.923309 C 29.545313,17.937103 29.544927,17.948085 29.544758,17.961958 L 29.132041,18.374675 C 29.210524,18.289876 29.521694,17.948904 29.545415,17.923309 z"
+         id="path11796" />
+      <path
+         id="path6886"
+         d="M 27.559337,14.600815 C 25.253088,12.847452 20.540942,14.779712 16.258661,19.061992 C 13.106193,22.214461 11.413075,25.062195 10.531873,27.485497 C 13.633933,25.236363 17.549698,24.582772 21.198283,25.534562 C 25.059811,22.052336 28.063817,19.300693 28.998585,18.437751 C 29.003962,16.552409 28.461783,15.286913 27.559337,14.600815 z M 32.327221,19.447311 C 31.628463,18.825135 30.586765,18.453357 29.116169,18.437416 C 28.343009,19.277722 25.725785,22.152277 22.353462,25.903614 C 24.149918,26.552493 25.853277,27.595337 27.302583,29.044642 C 27.943268,29.685327 28.497618,30.353937 28.982139,31.077956 C 32.788456,27.076177 34.818204,21.66529 32.327221,19.447311 z M 29.116169,18.437416 C 29.239712,18.303144 29.745183,17.769319 29.745183,17.769319 C 29.745183,17.769319 29.177792,18.309895 29.018127,18.457293 C 29.053174,18.457274 29.081583,18.437041 29.116169,18.437416 z"
+         style="opacity:0.6;color:#000000;fill:url(#radialGradient3757);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="cscsc"
+         id="path7870"
+         d="M 32.247188,20.178289 C 30.942797,19.010045 30.285847,18.705172 26.453823,22.667952 C 19.300306,30.06316 15.495851,35.050384 13.734909,37.113461 C 14.529821,36.935761 19.641492,39.325984 28.273062,30.694414 C 32.090418,26.877059 33.636959,22.154302 32.247188,20.178289 z"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient3754);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient3751);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 27.487129,15.261944 C 28.46317,16.741569 28.596512,17.302444 24.601506,21.162852 C 17.146188,28.369381 12.41066,31.793967 10.328277,33.565337 C 10.500695,32.757578 8.2756845,27.78996 16.97437,19.091275 C 20.821407,15.244237 25.826359,13.332669 27.487129,15.261944 z"
+         id="path7875"
+         sodipodi:nodetypes="cscsc" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3748);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 32.784083,19.039433 C 32.096295,18.356263 31.045622,17.942053 29.532866,17.91076 C 29.02638,18.461636 15.514013,33.182018 12.186173,37.708585 C 13.140954,37.63657 19.677121,40.705261 28.789525,31.592857 C 32.819533,27.56285 35.286548,21.525099 32.784083,19.039433 z M 29.532866,17.91076 C 29.518677,17.910467 29.50739,17.910548 29.493122,17.910322 L 29.080405,18.323039 C 29.165386,18.244738 29.507217,17.934427 29.532866,17.91076 z"
+         id="path11802" />
+      <path
+         id="path11800"
+         d="M 28.463834,14.719183 C 29.132058,15.392025 29.530298,16.426729 29.544759,17.922652 C 28.994366,18.429623 14.287154,31.955159 9.7736551,35.296067 C 9.8552931,34.35091 6.8913098,27.919449 16.003714,18.807045 C 20.033721,14.777037 26.032546,12.271097 28.463834,14.719183 z M 29.544759,17.922652 C 29.544894,17.936684 29.544691,17.947849 29.544759,17.961959 L 29.132042,18.374676 C 29.210416,18.289768 29.52107,17.94828 29.544759,17.922652 z"
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3745);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="czcsc"
+         id="path3781"
+         d="M 33.724511,19.528201 C 30.708345,17.167714 27.625794,19.998768 27.625794,19.998768 C 27.625794,19.998768 30.244611,16.562489 28.096361,13.900051 C 29.2024,12.794012 32.418266,12.850352 33.596238,14.028324 C 34.772533,15.204619 34.83055,18.422162 33.724511,19.528201 z"
+         style="color:#000000;fill:url(#radialGradient3742);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3739);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 33.254321,18.662059 C 30.920877,16.467797 27.827309,19.704887 27.827309,19.704887 C 27.827309,19.704887 31.147621,16.696852 28.870134,14.136382 C 29.717925,13.288592 31.871836,13.162184 33.120924,14.411271 C 34.370011,15.660359 34.102111,17.814269 33.254321,18.662059 z"
+         id="path3829"
+         sodipodi:nodetypes="czcsc" />
+      <path
+         style="color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         d="M 33.842853,19.409856 C 30.33147,17.544587 27.455935,20.168626 27.455935,20.168626 C 27.455935,20.168626 30.079972,17.434581 28.214704,13.781707 C 29.320743,12.675668 32.412596,12.607995 33.714581,13.90998 C 34.892553,15.087952 34.948893,18.303817 33.842853,19.409856 z"
+         id="path9625"
+         sodipodi:nodetypes="csczc" />
+    </g>
+  </g>
+</svg>

Modified: trunk/google-breakpad/src/config.h.in
==============================================================================
--- trunk/google-breakpad/src/config.h.in	(original)
+++ trunk/google-breakpad/src/config.h.in	Sun Jul 27 00:26:26 2008
@@ -30,6 +30,10 @@
 /* Define to 1 if you have the <unistd.h> header file. */
 #undef HAVE_UNISTD_H
 
+/* Define to the sub-directory in which libtool stores uninstalled libraries.
+   */
+#undef LT_OBJDIR
+
 /* Name of package */
 #undef PACKAGE
 

Modified: trunk/src/Makefile.am
==============================================================================
--- trunk/src/Makefile.am	(original)
+++ trunk/src/Makefile.am	Sun Jul 27 00:26:26 2008
@@ -1,11 +1,8 @@
-buddydir = $(pkgdatadir)
-
 INCLUDES = \
 	-DGNOMELOCALEDIR=\""$(datadir)/locale"\"	\
 	-DGNOMELIBEXECDIR=\""$(libexecdir)"\"		\
 	$(WARN_CFLAGS)					\
 	$(BUG_BUDDY_CFLAGS) -I$(includedir)		\
-	$(LIBNM_CFLAGS)                                 \
 	-DBUDDY_DATADIR=\""$(buddydir)"\"		\
 	$(DISABLE_DEPRECATED)                           \
 	$(BUG_BUDDY_EDS_CFLAGS)				\
@@ -32,8 +29,7 @@
 
 bug_buddy_LDADD = \
 	$(BUG_BUDDY_LIBS)       \
-	$(BUG_BUDDY_EDS_LIBS)	\
-	$(LIBNM_LIBS)
+	$(BUG_BUDDY_EDS_LIBS)
 
 bug_buddy_LDFLAGS = -export-dynamic
 
@@ -53,20 +49,3 @@
 verify_desktop_files_LDADD = \
         $(BUG_BUDDY_LIBS)
 
-
-buddy_DATA = \
-	bug-buddy.gtkbuilder	\
-	bug-buddy.menu \
-	gdb-cmd
-
-utilsdir = $(datadir)/applications
-utils_in_files = bug-buddy.desktop.in.in 
-utils_DATA = $(utils_in_files:.desktop.in.in=.desktop)
- INTLTOOL_DESKTOP_RULE@
-
-EXTRA_DIST = \
-	$(buddy_DATA)		\
-	$(utils_in_files)
-
-DISTCLEANFILES = $(utils_DATA) 
-

Modified: trunk/src/bug-buddy.c
==============================================================================
--- trunk/src/bug-buddy.c	(original)
+++ trunk/src/bug-buddy.c	Sun Jul 27 00:26:26 2008
@@ -43,10 +43,8 @@
 #include <glib/gi18n.h>
 #include <gio/gio.h>
 #include <gnome.h>
-#include <libgnomeui/gnome-window-icon.h>
 #include <gtk/gtkbuilder.h>
 #include <gdk-pixbuf/gdk-pixbuf.h>
-#include <libgnomecanvas/gnome-canvas-pixbuf.h>
 #include <libgnome/libgnometypebuiltins.h>
 #include <gdk/gdkx.h>
 #include <gdk/gdk.h>
@@ -58,11 +56,6 @@
 
 #include <libsoup/soup.h>
 
-#include <sys/types.h>
-#include <signal.h>
-
-#define d(x)
-
 #define USE_PROXY_KEY 	"/system/http_proxy/use_http_proxy"
 #define PROXY_HOST_KEY	"/system/http_proxy/host"
 #define PROXY_PORT_KEY	"/system/http_proxy/port"

Modified: trunk/src/bugzilla.c
==============================================================================
--- trunk/src/bugzilla.c	(original)
+++ trunk/src/bugzilla.c	Sun Jul 27 00:26:26 2008
@@ -40,8 +40,6 @@
 #include <bonobo/bonobo-exception.h>
 #include <bonobo-activation/bonobo-activation.h>
 
-#include <dirent.h>
-
 #include <libxml/tree.h>
 #include <libxml/parser.h>
 #include <libxml/xmlmemory.h>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]