[Pkg-galago-commit] r346 - packages/unstable/slab/debian/patches

Riccardo Setti giskard-guest at costa.debian.org
Tue Sep 19 12:48:14 UTC 2006


Author: giskard-guest
Date: 2006-09-19 12:48:13 +0000 (Tue, 19 Sep 2006)
New Revision: 346

Added:
   packages/unstable/slab/debian/patches/09_double_text.patch
   packages/unstable/slab/debian/patches/10_default_commands.patch
Modified:
   packages/unstable/slab/debian/patches/series
Log:
added 09.patch, 10.patch

Added: packages/unstable/slab/debian/patches/09_double_text.patch
===================================================================
--- packages/unstable/slab/debian/patches/09_double_text.patch	                        (rev 0)
+++ packages/unstable/slab/debian/patches/09_double_text.patch	2006-09-19 12:48:13 UTC (rev 346)
@@ -0,0 +1,125 @@
+diff -urNad slab-0.0.cvs.20060705.orig/application-browser/src/app-window.c slab-0.0.cvs.20060705/application-browser/src/app-window.c
+--- slab-0.0.cvs.20060705.orig/application-browser/src/app-window.c	2006-08-23 09:00:54.000000000 -0300
++++ slab-0.0.cvs.20060705/application-browser/src/app-window.c	2006-09-13 01:21:41.000000000 -0300
+@@ -185,7 +185,7 @@
+ paint_window (GtkWidget * widget, GdkEventExpose * event, gpointer data)
+ {
+ 	printf ("ENTER - SLAB-paint_window\n");
+-	GList *child;
++	/*GList *child;*/
+ 	GtkWidget *left_pane, *right_pane;
+ 
+ 	left_pane = SLAB_WINDOW (widget)->_left_pane;
+@@ -219,12 +219,12 @@
+ 		       right_pane->allocation.y +
+ 		       right_pane->allocation.height - 1);
+ 
+-	child = gtk_container_get_children (GTK_CONTAINER (widget));
++	/*child = gtk_container_get_children (GTK_CONTAINER (widget));
+ 
+ 	for (; child; child = child->next)
+ 		gtk_container_propagate_expose (GTK_CONTAINER (widget),
+ 						GTK_WIDGET (child->data),
+-						event);
++						event);*/
+ 
+ 	return FALSE;
+ }
+diff -urNad slab-0.0.cvs.20060705.orig/libslab/shell-window.c slab-0.0.cvs.20060705/libslab/shell-window.c
+--- slab-0.0.cvs.20060705.orig/libslab/shell-window.c	2006-08-23 09:00:54.000000000 -0300
++++ slab-0.0.cvs.20060705/libslab/shell-window.c	2006-09-13 01:22:24.000000000 -0300
+@@ -183,7 +183,7 @@
+ shell_window_paint_window (GtkWidget * widget, GdkEventExpose * event,
+ 			   gpointer data)
+ {
+-	GList *child;
++	/*GList *child;*/
+ 	GtkWidget *left_pane, *right_pane;
+ 
+ 	left_pane = SHELL_WINDOW (widget)->_left_pane;
+@@ -216,11 +216,11 @@
+ 	values.line_width = orig_line_width;
+ 	gdk_gc_set_values (line_gc, &values, GDK_GC_LINE_WIDTH);
+ 
+-	child = gtk_container_get_children (GTK_CONTAINER (widget));
++	/*child = gtk_container_get_children (GTK_CONTAINER (widget));
+ 	for (; child; child = child->next)
+ 		gtk_container_propagate_expose (GTK_CONTAINER (widget),
+ 						GTK_WIDGET (child->data),
+-						event);
++						event);*/
+ 
+ 	return FALSE;
+ }
+diff -urNad slab-0.0.cvs.20060705.orig/libslab/slab-section.c slab-0.0.cvs.20060705/libslab/slab-section.c
+--- slab-0.0.cvs.20060705.orig/libslab/slab-section.c	2006-08-23 09:00:54.000000000 -0300
++++ slab-0.0.cvs.20060705/libslab/slab-section.c	2006-09-13 01:23:04.000000000 -0300
+@@ -127,12 +127,12 @@
+ 			    widget->allocation.width + 40,
+ 			    widget->allocation.height);
+ 
+-	GList *child = gtk_container_get_children (GTK_CONTAINER (widget));
++	/*GList *child = gtk_container_get_children (GTK_CONTAINER (widget));
+ 
+ 	for (; child; child = child->next)
+ 		gtk_container_propagate_expose (GTK_CONTAINER (widget),
+ 						GTK_WIDGET (child->data),
+-						event);
++						event);*/
+ 
+ 	return FALSE;
+ }
+diff -urNad slab-0.0.cvs.20060705.orig/main-menu/src/slab-window.c slab-0.0.cvs.20060705/main-menu/src/slab-window.c
+--- slab-0.0.cvs.20060705.orig/main-menu/src/slab-window.c	2006-08-23 09:00:54.000000000 -0300
++++ slab-0.0.cvs.20060705/main-menu/src/slab-window.c	2006-09-13 01:24:25.000000000 -0300
+@@ -142,7 +142,7 @@
+ gboolean
+ paint_window (GtkWidget * widget, GdkEventExpose * event, gpointer data)
+ {
+-	GList *child;
++	/*GList *child;*/
+ 	GtkWidget *left_pane, *right_pane;
+ 
+ 
+@@ -209,12 +209,12 @@
+ 		       right_pane->allocation.y +
+ 		       right_pane->allocation.height - 1);
+ 
+-	child = gtk_container_get_children (GTK_CONTAINER (widget));
++	/*child = gtk_container_get_children (GTK_CONTAINER (widget));
+ 
+ 	for (; child; child = child->next)
+ 		gtk_container_propagate_expose (GTK_CONTAINER (widget),
+ 						GTK_WIDGET (child->data),
+-						event);
++						event);*/
+ 
+ 	return FALSE;
+ }
+diff -urNad slab-0.0.cvs.20060705.orig/main-menu/src/text-button.c slab-0.0.cvs.20060705/main-menu/src/text-button.c
+--- slab-0.0.cvs.20060705.orig/main-menu/src/text-button.c	2006-08-23 09:00:54.000000000 -0300
++++ slab-0.0.cvs.20060705/main-menu/src/text-button.c	2006-09-13 01:25:02.000000000 -0300
+@@ -182,7 +182,7 @@
+ static gboolean
+ text_button_expose (GtkWidget * widget, GdkEventExpose * event)
+ {
+-	GList *child;
++	/*GList *child;*/
+ 
+ 
+ 	if (GTK_WIDGET_HAS_FOCUS (widget))
+@@ -196,12 +196,12 @@
+ 				 widget->allocation.width,
+ 				 widget->allocation.height);
+ 
+-	child = gtk_container_get_children (GTK_CONTAINER (widget));
++	/*child = gtk_container_get_children (GTK_CONTAINER (widget));
+ 
+ 	for (; child; child = child->next)
+ 		gtk_container_propagate_expose (GTK_CONTAINER (widget),
+ 						GTK_WIDGET (child->data),
+-						event);
++						event);*/
+ 
+ 	return FALSE;
+ }

Added: packages/unstable/slab/debian/patches/10_default_commands.patch
===================================================================
--- packages/unstable/slab/debian/patches/10_default_commands.patch	                        (rev 0)
+++ packages/unstable/slab/debian/patches/10_default_commands.patch	2006-09-19 12:48:13 UTC (rev 346)
@@ -0,0 +1,37 @@
+diff -urNad slab-0.0.cvs.20060705.old/control-center/etc/control-center.schemas.in slab-0.0.cvs.20060705/control-center/etc/control-center.schemas.in
+--- slab-0.0.cvs.20060705.old/control-center/etc/control-center.schemas.in	2006-08-23 09:00:54.000000000 -0300
++++ slab-0.0.cvs.20060705/control-center/etc/control-center.schemas.in	2006-09-16 02:03:07.000000000 -0300
+@@ -7,7 +7,7 @@
+ 			<type>list</type>
+ 			<list_type>string</list_type>
+ 			<locale name="C">
+-				<default><!-- Translators: The format of this string is the task name to be displayed (translate that part) followed by a ";" separator then the filename (DONT translate the file name) of a .desktop file to launch. Multiple entries are separated by a "," -->[Change Desktop Background;background.desktop,Add Printer;gnome-cups-manager.desktop,Configure Network;YaST2/lan.desktop,Change Password;gnome-passwd.desktop,Add User;YaST2/users.desktop,Open Administrator Settings;YaST.desktop]</default>
++				<default><!-- Translators: The format of this string is the task name to be displayed (translate that part) followed by a ";" separator then the filename (DONT translate the file name) of a .desktop file to launch. Multiple entries are separated by a "," -->[Change Desktop Background;background.desktop,Add Printer;gnome-cups-manager.desktop,Configure Network;network.desktop,Change Password;gnome-about-me.desktop,Add User;users.desktop]</default>
+ 				<short>Task names and associated .desktop files</short>
+ 				<long>The task name to be displayed in the control-center (thus needing to be translated) followed by a ";" separator then the filename of an associated .desktop file to launch for that task.</long>
+ 			</locale>
+diff -urNad slab-0.0.cvs.20060705.old/main-menu/etc/slab.schemas.in.in slab-0.0.cvs.20060705/main-menu/etc/slab.schemas.in.in
+--- slab-0.0.cvs.20060705.old/main-menu/etc/slab.schemas.in.in	2006-08-23 09:00:54.000000000 -0300
++++ slab-0.0.cvs.20060705/main-menu/etc/slab.schemas.in.in	2006-09-16 02:00:46.000000000 -0300
+@@ -6,7 +6,7 @@
+ 			<owner>gnome-main-menu</owner>
+ 			<type>list</type>
+ 			<list_type>string</list_type>
+-			<default>[MozillaFirefox.desktop,evolution.desktop,banshee.desktop,writer.desktop,f-spot.desktop,nautilus-home.desktop]</default>
++			<default>[firefox.desktop,evolution.desktop,banshee.desktop,ooo-writer.desktop,f-spot.desktop,nautilus-home.desktop]</default>
+ 			<locale name="C">
+ 				<short>.desktop files for "Favorite Applications"</short>
+ 				<long>.desktop files for "Favorite Applications"</long>
+@@ -127,10 +127,10 @@
+ 			<applyto>/desktop/gnome/applications/main-menu/network_config_tool</applyto>
+ 			<owner>gnome-main-menu</owner>
+ 			<type>string</type>
+-			<default>/usr/share/applications/YaST2/lan.desktop</default>
++			<default>/usr/share/applications/network.desktop</default>
+ 			<locale name="C">
+ 				<short>.desktop file for the net config tool</short>
+-				<long>.desktop file for the YaST2 network_devices utility</long>
++				<long>.desktop file for the GNOME Network setup utility</long>
+ 			</locale>
+ 		</schema>
+ 

Modified: packages/unstable/slab/debian/patches/series
===================================================================
--- packages/unstable/slab/debian/patches/series	2006-09-18 20:21:33 UTC (rev 345)
+++ packages/unstable/slab/debian/patches/series	2006-09-19 12:48:13 UTC (rev 346)
@@ -4,3 +4,4 @@
 05_binary_locations
 06_fix_applet_conf_file.patch
 08_add_place_menu.patch
+10_default_commands.patch




More information about the Pkg-galago-commit mailing list