dd661c0
diff -up gnome-applets-2.30.0/Makefile.am.stickynotes-null gnome-applets-2.30.0/Makefile.am
dd661c0
--- gnome-applets-2.30.0/Makefile.am.stickynotes-null	2010-03-28 01:29:51.000000000 -0400
dd661c0
+++ gnome-applets-2.30.0/Makefile.am	2010-03-28 23:24:47.360759295 -0400
dd661c0
@@ -42,7 +42,6 @@ always_built_SUBDIRS =  \
744f63e
 	geyes		\
744f63e
 	mini-commander	\
744f63e
 	gkb-new		\
744f63e
-	stickynotes	\
744f63e
 	trashapplet	\
744f63e
 	null_applet
744f63e
 
dd661c0
diff -up gnome-applets-2.30.0/null_applet/GNOME_StickyNotesApplet.server.in.stickynotes-null gnome-applets-2.30.0/null_applet/GNOME_StickyNotesApplet.server.in
dd661c0
--- gnome-applets-2.30.0/null_applet/GNOME_StickyNotesApplet.server.in.stickynotes-null	2010-03-28 23:24:47.362759364 -0400
dd661c0
+++ gnome-applets-2.30.0/null_applet/GNOME_StickyNotesApplet.server.in	2010-03-28 23:24:47.363762926 -0400
744f63e
@@ -0,0 +1,17 @@
744f63e
+
744f63e
+<oaf_info>
744f63e
+	<oaf_server iid="OAFIID:GNOME_StickyNotesApplet" type="factory" location="OAFIID:GNOME_NullApplet_Factory">
744f63e
+	    <oaf_attribute name="repo_ids" type="stringv">
744f63e
+		<item value="IDL:GNOME/Vertigo/PanelAppletShell:1.0"/>
744f63e
+		<item value="IDL:Bonobo/Control:1.0"/>
744f63e
+		<item value="IDL:Bonobo/Unknown:1.0"/>
744f63e
+	    </oaf_attribute>
744f63e
+	    <oaf_attribute name="name" type="string" _value="Sticky Notes (Deprecated)"/>
744f63e
+	    <oaf_attribute name="description" type="string" _value="Create, view, and manage sticky notes on the desktop"/>
744f63e
+	    <oaf_attribute name="bugzilla:bugzilla" type="string" value="GNOME"/>
744f63e
+	    <oaf_attribute name="bugzilla:product" type="string" value="gnome-applets"/>
744f63e
+	    <oaf_attribute name="bugzilla:component" type="string" value="stickynotes"/>
744f63e
+	    <oaf_attribute name="bugzilla:other_binaries" type="string" value="stickynotes_applet"/>
744f63e
+	</oaf_server>
744f63e
+</oaf_info>
744f63e
+
dd661c0
diff -up gnome-applets-2.30.0/null_applet/Makefile.am.stickynotes-null gnome-applets-2.30.0/null_applet/Makefile.am
dd661c0
--- gnome-applets-2.30.0/null_applet/Makefile.am.stickynotes-null	2010-03-28 23:24:47.000000000 -0400
dd661c0
+++ gnome-applets-2.30.0/null_applet/Makefile.am	2010-03-28 23:26:45.638021343 -0400
dd661c0
@@ -25,6 +25,7 @@ server_in_files =				\
744f63e
 	GNOME_MailcheckApplet_Factory.server.in	\
dd661c0
 	GNOME_Panel_WirelessApplet.server.in	\
dd661c0
 	GNOME_KeyboardApplet.server.in		\
744f63e
+	GNOME_StickyNotesApplet.server.in	\
744f63e
 	$(battstat_applet)			\
744f63e
 	$(mixer_server_in)
744f63e
 server_DATA = $(server_in_files:.server.in=.server)
dd661c0
@@ -44,6 +45,7 @@ EXTRA_DIST =					\
dd661c0
 	GNOME_MailcheckApplet_Factory.server.in	\
dd661c0
 	GNOME_Panel_WirelessApplet.server.in	\
dd661c0
 	GNOME_MixerApplet.server.in		\
dd661c0
+	GNOME_StickyNotesApplet.server.in	\
dd661c0
 	GNOME_BattstatApplet.server.in		\
dd661c0
 	GNOME_KeyboardApplet.server.in
dd661c0
 
dd661c0
diff -up gnome-applets-2.30.0/null_applet/null_applet.c.stickynotes-null gnome-applets-2.30.0/null_applet/null_applet.c
dd661c0
--- gnome-applets-2.30.0/null_applet/null_applet.c.stickynotes-null	2010-03-28 23:24:47.000000000 -0400
dd661c0
+++ gnome-applets-2.30.0/null_applet/null_applet.c	2010-03-28 23:27:18.451011564 -0400
dd661c0
@@ -47,7 +47,9 @@ insert_oafiids (GHashTable *hash_table)
744f63e
 	g_hash_table_insert (hash_table,
dd661c0
 			     "OAFIID:GNOME_KeyboardApplet", _("Keyboard Indicator"));
744f63e
         g_hash_table_insert (hash_table,
744f63e
-                            "OAFIID:GNOME_BattstatApplet", "Battery Charge Monitor");
744f63e
+                            "OAFIID:GNOME_BattstatApplet", _("Battery Charge Monitor"));
744f63e
+        g_hash_table_insert (hash_table,
744f63e
+                            "OAFIID:GNOME_StickyNotesApplet", _("Sticky Notes"));
744f63e
 }
744f63e
 
744f63e
 static gboolean already_running;