[Gnome-zeitgeist] [Bug 966284] Re: World or Scheduled activities shown as initiated by the User

2012-03-27 Thread Stefano Candori
** Changed in: gnome-activity-journal
   Status: New = Confirmed

** Changed in: gnome-activity-journal
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/966284

Title:
  World or Scheduled activities shown as initiated by the User

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  I've been syncing this past month my whole collection of 16k photos to
  Ubuntu One, and u1 has been logging ~500 synchronization events per
  day to zg as each file is uploaded.

  These events are logged with manifestation=SCHEDULED_ACTIVITY, but
  still they show up on GAJ as You worked with 300 images in the
  Evening, which is wrong.

  I think that GAJ in this case should only show the events with
  manifestation=USER_ACTIVITY.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-activity-journal/+bug/966284/+subscriptions

___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 929644] Re: Add filesystem crawler support

2012-03-19 Thread Stefano Candori
Uh? Can you explain it a little more Manish? I don't remember such a
feature... :)

-- 
You received this bug notification because you are a member of Activity
Log Manager, which is the registrant for Activity Log Manager.
https://bugs.launchpad.net/bugs/929644

Title:
  Add filesystem crawler support

Status in Activity Log Manager for Zeitgeist:
  Confirmed

Bug description:
  Previous version of activity-log-manager,we had a feature to crawl the
  filesystem and look for files which have not been logged. It needs to
  be added

To manage notifications about this bug go to:
https://bugs.launchpad.net/activity-log-manager/+bug/929644/+subscriptions

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Zeitgeist] [Merge] lp:~kelemeng/activity-log-manager/bug958483 into lp:activity-log-manager

2012-03-18 Thread Stefano Candori
Manish, those gettext changes are already in my branch.. could you review
my merge request?

Stefano Candori
Il giorno 18/mar/2012 19:47, Manish Sinha (मनीष सिन्हा 
manishsi...@ubuntu.com ha scritto:

 Review: Needs Fixing

  var last_accessed = time.format(_(%e %B %Y));

 These are string formatting for how the time should be rendered. It
 doesn't get printed on the screen. It doesn't need to be translated.

  var date_string = date.format(_(%d %B %Y));
 Same

  var date_string = date.format(_(%d %B %Y));
 Same
 --

 https://code.launchpad.net/~kelemeng/activity-log-manager/bug958483/+merge/98096
 Your team Activity Log Manager is subscribed to branch
 lp:activity-log-manager.


-- 
https://code.launchpad.net/~kelemeng/activity-log-manager/bug958483/+merge/98096
Your team Activity Log Manager is subscribed to branch lp:activity-log-manager.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Merge] lp:~cando/activity-log-manager/appdialog-fixes into lp:activity-log-manager

2012-03-15 Thread Stefano Candori
Stefano Candori has proposed merging 
lp:~cando/activity-log-manager/appdialog-fixes into lp:activity-log-manager.

Requested reviews:
  Activity Log Manager (activity-log-manager)

For more details, see:
https://code.launchpad.net/~cando/activity-log-manager/appdialog-fixes/+merge/97629

In this branch i've added a bunch of fixes regarding the 
ApplicationChooserDialog.
See the commit below for the explanation of the changes.
-- 
https://code.launchpad.net/~cando/activity-log-manager/appdialog-fixes/+merge/97629
Your team Activity Log Manager is requested to review the proposed merge of 
lp:~cando/activity-log-manager/appdialog-fixes into lp:activity-log-manager.
=== modified file 'src/applications-widget.vala'
--- src/applications-widget.vala	2012-03-12 14:45:32 +
+++ src/applications-widget.vala	2012-03-15 12:34:23 +
@@ -347,20 +347,34 @@
 			this.pack_start (scroll);
 		}
 		
-		public static Gdk.Pixbuf? get_pixbuf_from_gio_icon (Icon icon, int size=32) {
+		public static Gdk.Pixbuf? get_pixbuf_from_gio_icon (Icon? icon, int size=32) {
 			Gdk.Pixbuf? pix = null;
-			var icon_info = IconTheme.get_default ().lookup_by_gicon (icon ,
-			size,
-			IconLookupFlags.FORCE_SVG);
-			if (icon_info != null) {
-try {
-	pix = icon_info.load_icon ();
-}
-catch (Error e){
-	return null;
-}
-			}
-			
+			IconTheme theme = IconTheme.get_default ();
+			IconInfo icon_info = null;
+			/*If the application hasn't an icon in the current theme
+			  let's use the gtk-execute icon: 
+			  http://developer.gnome.org/gtk3/3.2/gtk3-Stock-Items.html#GTK-STOCK-EXECUTE:CAPS
+			*/
+			if(icon == null) {
+icon_info = theme.lookup_icon (gtk-execute ,
+size,
+IconLookupFlags.FORCE_SVG);
+			}
+			else {
+icon_info = theme.lookup_by_gicon (icon ,
+	size,
+	IconLookupFlags.FORCE_SVG);
+if (icon_info == null)
+	icon_info = theme.lookup_icon (gtk-execute ,
+size,
+IconLookupFlags.FORCE_SVG);
+			}
+			try {
+pix = icon_info.load_icon ();
+			}
+			catch (Error e){
+return null;
+			}
 			return pix;
 		}
 
@@ -375,7 +389,13 @@
 
 // Insert only when it is empty
 if(this.blocked_apps.lookup(app) == null)
-	this.blocked_apps.insert(app, new AppChooseInfo(app_info.get_id(), app_info.get_name(), pix, , 0));
+	this.blocked_apps.insert(app, new AppChooseInfo(
+		app_info.get_id(),
+		app_info.get_name(),
+		pix,
+		,
+		0,
+		0));
 			}
 		}
 		
@@ -466,7 +486,7 @@
 		
 		private void set_up_ui () {
 			var column_pix_name = new TreeViewColumn ();
-			column_pix_name.set_title (Name);
+			column_pix_name.set_title (_(Name));
 			this.treeview.append_column (column_pix_name);
 			var pix_rend = new CellRendererPixbuf ();
 			column_pix_name.pack_start (pix_rend, false);
@@ -477,10 +497,11 @@
 			column_pix_name.add_attribute (name_rend, text, 0);
 			column_pix_name.set_resizable (true);
 			column_pix_name.set_min_width (200);
+			column_pix_name.set_max_width (400);
 			column_pix_name.set_sort_column_id (0);
 
 			var column_used_name = new TreeViewColumn ();
-			column_used_name.set_title (Last Used);
+			column_used_name.set_title (_(Last Used));
 			this.treeview.append_column (column_used_name);
 			var used_rend = new CellRendererText ();
 			used_rend.set_property (ellipsize, Pango.EllipsizeMode.END);
@@ -488,11 +509,12 @@
 			column_used_name.add_attribute (used_rend, text, 3);
 			column_used_name.set_resizable (true);
 			column_used_name.set_min_width (200);
+			column_used_name.set_max_width (400);
 			column_used_name.set_sort_column_id (4);
-			used_rend.set_property(xalign, 1);
+			used_rend.set_property(xalign, 0);
 			
 			var column_usage_name = new TreeViewColumn ();
-			column_usage_name.set_title (Activity);
+			column_usage_name.set_title (_(Activity));
 			this.treeview.append_column (column_usage_name);
 			var usage_rend = new UsageCellRenderer ();
 			column_usage_name.pack_start (usage_rend, true);
@@ -557,6 +579,18 @@
 			}
 		}
 		
+		private int compare_dates(DateTime now, DateTime time) {
+			int res = -1;
+			int now_y, now_m, now_d, time_y, time_m, time_d;
+			now.get_ymd(out now_y, out now_m, out now_d); 
+			time.get_ymd(out time_y, out time_m, out time_d);
+			if (now_y == time_y  now_m == time_m  now_d == time_d)
+return 0;
+			else if (now_y == time_y  now_m == time_m  now_d == time_d + 1)
+return 1;
+			return res;
+		}
+		
 		public void handle_app_population(HashTablestring, int64? all_actors) {
 			all_actors_list = all_actors;
 
@@ -570,18 +604,27 @@
 			{
 string id = app_info.get_id ();
 int64? last_accessed_time = all_actors.lookup(id);
-//
 if(last_accessed_time != null)
 {
 	var time = new DateTime.from_unix_local (last_accessed_time/1000);
-	var last_accessed = time.format(%e %B %Y);
+	var now = new

Re: [Zeitgeist] [Merge] lp:~cando/activity-log-manager/appdialog-fixes into lp:activity-log-manager

2012-03-15 Thread Stefano Candori
I've also added the udpated .pot files.
Currently launchpad is configured to import the pot file from the 0.8 
series...we should udpate this, right?
-- 
https://code.launchpad.net/~cando/activity-log-manager/appdialog-fixes/+merge/97629
Your team Activity Log Manager is requested to review the proposed merge of 
lp:~cando/activity-log-manager/appdialog-fixes into lp:activity-log-manager.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Zeitgeist] [Merge] lp:~cando/activity-log-manager/appdialog-fixes into lp:activity-log-manager

2012-03-15 Thread Stefano Candori
Cool..review on the branch? :)

-- 
https://code.launchpad.net/~cando/activity-log-manager/appdialog-fixes/+merge/97629
Your team Activity Log Manager is requested to review the proposed merge of 
lp:~cando/activity-log-manager/appdialog-fixes into lp:activity-log-manager.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 925637] Re: Folder blacklisted list should be enhanced to match with the prototype

2012-03-13 Thread Stefano Candori
I've pushed the correction you've asked, seif. :)

-- 
You received this bug notification because you are a member of Activity
Log Manager, which is the registrant for Activity Log Manager.
https://bugs.launchpad.net/bugs/925637

Title:
  Folder blacklisted list should be enhanced to match with the prototype

Status in Activity Log Manager for Zeitgeist:
  Fix Committed

Bug description:
  Right now files blocklisting is just a list of folders. It should contain a 
icon and nautilus icon in case of special folders
  Right now it looks like this
  http://i.imgur.com/MfD5E.png

  and should look like
  
https://lh4.googleusercontent.com/VzHz73ZkGqMdtsqK3uelIRMJqCXsQ74Y6WhP4qLRLkTNdOoHAZrgEkurV-N_wSPFQwr5inz0gT0iL5hb6rXk-Ughj1FAk_A3RXtgFIM9L8K2c_kJ2Ok

To manage notifications about this bug go to:
https://bugs.launchpad.net/activity-log-manager/+bug/925637/+subscriptions

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 925637] Re: Folder blacklisted list should be enhanced to match with the prototype

2012-03-12 Thread Stefano Candori
** Changed in: activity-log-manager
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Activity
Log Manager, which is the registrant for Activity Log Manager.
https://bugs.launchpad.net/bugs/925637

Title:
  Folder blacklisted list should be enhanced to match with the prototype

Status in Activity Log Manager for Zeitgeist:
  Fix Committed

Bug description:
  Right now files blocklisting is just a list of folders. It should contain a 
icon and nautilus icon in case of special folders
  Right now it looks like this
  http://i.imgur.com/MfD5E.png

  and should look like
  
https://lh4.googleusercontent.com/VzHz73ZkGqMdtsqK3uelIRMJqCXsQ74Y6WhP4qLRLkTNdOoHAZrgEkurV-N_wSPFQwr5inz0gT0iL5hb6rXk-Ughj1FAk_A3RXtgFIM9L8K2c_kJ2Ok

To manage notifications about this bug go to:
https://bugs.launchpad.net/activity-log-manager/+bug/925637/+subscriptions

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 925637] Re: Folder blacklisted list should be enhanced to match with the prototype

2012-03-12 Thread Stefano Candori
Sure seif, thanks. I'll fix it this evening...

-- 
You received this bug notification because you are a member of Activity
Log Manager, which is the registrant for Activity Log Manager.
https://bugs.launchpad.net/bugs/925637

Title:
  Folder blacklisted list should be enhanced to match with the prototype

Status in Activity Log Manager for Zeitgeist:
  Fix Committed

Bug description:
  Right now files blocklisting is just a list of folders. It should contain a 
icon and nautilus icon in case of special folders
  Right now it looks like this
  http://i.imgur.com/MfD5E.png

  and should look like
  
https://lh4.googleusercontent.com/VzHz73ZkGqMdtsqK3uelIRMJqCXsQ74Y6WhP4qLRLkTNdOoHAZrgEkurV-N_wSPFQwr5inz0gT0iL5hb6rXk-Ughj1FAk_A3RXtgFIM9L8K2c_kJ2Ok

To manage notifications about this bug go to:
https://bugs.launchpad.net/activity-log-manager/+bug/925637/+subscriptions

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 925637] Re: Folder blacklisted list should be enhanced to match with the prototype

2012-03-11 Thread Stefano Candori
I'm on it...and it's shaping up nicely... :)

-- 
You received this bug notification because you are a member of Activity
Log Manager, which is the registrant for Activity Log Manager.
https://bugs.launchpad.net/bugs/925637

Title:
  Folder blacklisted list should be enhanced to match with the prototype

Status in Activity Log Manager for Zeitgeist:
  Confirmed

Bug description:
  Right now files blocklisting is just a list of folders. It should contain a 
icon and nautilus icon in case of special folders
  Right now it looks like this
  http://i.imgur.com/MfD5E.png

  and should look like
  
https://lh4.googleusercontent.com/VzHz73ZkGqMdtsqK3uelIRMJqCXsQ74Y6WhP4qLRLkTNdOoHAZrgEkurV-N_wSPFQwr5inz0gT0iL5hb6rXk-Ughj1FAk_A3RXtgFIM9L8K2c_kJ2Ok

To manage notifications about this bug go to:
https://bugs.launchpad.net/activity-log-manager/+bug/925637/+subscriptions

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Zeitgeist] [Merge] lp:~cando/activity-log-manager/925638 into lp:activity-log-manager

2012-02-24 Thread Stefano Candori
ops..sorry! Now should be fixed.
-- 
https://code.launchpad.net/~cando/activity-log-manager/925638/+merge/94543
Your team Activity Log Manager is requested to review the proposed merge of 
lp:~cando/activity-log-manager/925638 into lp:activity-log-manager.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Merge] lp:~cando/zeitgeist/storage-monitor into lp:zeitgeist

2011-12-02 Thread Stefano Candori
Stefano Candori has proposed merging lp:~cando/zeitgeist/storage-monitor into 
lp:zeitgeist.

Requested reviews:
  Zeitgeist Framework Team (zeitgeist)

For more details, see:
https://code.launchpad.net/~cando/zeitgeist/storage-monitor/+merge/84299

In this branch i've ported the support for net-storages in the 
storage-monitor.
-- 
https://code.launchpad.net/~cando/zeitgeist/storage-monitor/+merge/84299
Your team Zeitgeist Framework Team is requested to review the proposed merge of 
lp:~cando/zeitgeist/storage-monitor into lp:zeitgeist.
=== modified file 'extensions/storage-monitor.vala'
--- extensions/storage-monitor.vala	2011-09-30 09:35:12 +
+++ extensions/storage-monitor.vala	2011-12-02 17:23:25 +
@@ -2,6 +2,7 @@
  *
  * Copyright © 2011 Collabora Ltd.
  * By Siegfried-Angel Gevatter Pujals siegfr...@gevatter.com
+ * Copyright © 2011 Stefano Candori stefano.cand...@gmail.com
  *
  * Based upon a Python implementation:
  *  Copyright © 2009 Mikkel Kamstrup Erlandsen mikkel.kamst...@gmail.com
@@ -36,6 +37,14 @@
 [DBus (signature = a{sv})] Variant storage_description);
 public signal void storage_unavailable (string storage_id);
 }
+
+public interface NetworkMonitor: Object
+{
+public abstract void setup ();
+
+public signal void on_network_up ();
+public signal void on_network_down ();
+}
 
 namespace StorageMedia
 {
@@ -97,6 +106,10 @@
 private Sqlite.Statement store_storage_medium_stmt;
 private Sqlite.Statement insert_unavailable_medium_stmt;
 private Sqlite.Statement update_medium_state_stmt;
+
+private NetworkMonitor network;
+private uint watch_connman;
+private uint watch_nm;
 
 StorageMonitor ()
 {
@@ -136,7 +149,48 @@
 volume.get_icon ().to_string (), volume.get_name ());
 }
 
-// FIXME: ConnMan / NetworkManager D-Bus stuff...
+//Write connectivity to the DB. Dynamically decide whether to use
+// Connman or NetworkManager
+watch_connman = Bus.watch_name (BusType.SYSTEM, 
+  net.connman, 
+  BusNameWatcherFlags.NONE,
+  name_appeared_handler,
+  null);
+watch_nm = Bus.watch_name (BusType.SYSTEM, 
+  org.freedesktop.NetworkManager, 
+  BusNameWatcherFlags.NONE,
+  name_appeared_handler,
+  null);
+
+}
+
+private void name_appeared_handler(DBusConnection connection, string name, string name_owner)
+{
+if (this.network != null)
+{
+if (name == net.connman)
+Bus.unwatch_name (watch_connman);
+else if (name == org.freedesktop.NetworkManager)
+Bus.unwatch_name (watch_nm);
+}
+else
+{   
+if (name == net.connman)
+this.network = new ConnmanNetworkMonitor ();
+else if (name == org.freedesktop.NetworkManager)
+this.network = new NMNetworkMonitor ();
+
+this.network.on_network_up.connect (() = 
+this.add_storage_medium (net, stock_internet, Internet));
+this.network.on_network_down.connect (() = 
+this.remove_storage_medium (net));
+
+this.network.setup ();
+
+Bus.unwatch_name (watch_connman);
+Bus.unwatch_name (watch_nm);
+}
+
 }
 
 public override void unload ()
@@ -329,6 +383,106 @@
 
 }
 
+/*
+ * Checks whether there is a funtioning network interface via
+ * NetworkManager (requires NM = 0.8).
+ * See http://projects.gnome.org/NetworkManager/developers/spec-08.html
+ */
+class NMNetworkMonitor : Object, NetworkMonitor
+{
+private const string NM_BUS_NAME = org.freedesktop.NetworkManager;
+private const string NM_IFACE = org.freedesktop.NetworkManager;
+private const string NM_OBJECT_PATH = /org/freedesktop/NetworkManager;
+
+//NM 0.9 broke API so we have to check for two possible values for the state
+private const int NM_STATE_CONNECTED_PRE_09 = 3;
+private const int NM_STATE_CONNECTED_POST_09 = 70;
+
+private NetworkManagerDBus proxy;
+
+public NMNetworkMonitor ()
+{
+Object ();
+}
+
+public void setup ()
+{
+debug (Creating NetworkManager network monitor);
+try
+{
+proxy

[Zeitgeist] [Bug 784884] Re: Bazaar plugin: Commits from others should be WORLD_ACTIVITY

2011-05-18 Thread Stefano Candori
+1

-- 
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Data-Sources.
https://bugs.launchpad.net/bugs/784884

Title:
  Bazaar plugin: Commits from others should be WORLD_ACTIVITY

Status in Zeitgeist Data-Providers:
  New

Bug description:
  Currently the bzr plugin is using Manifestation.USER_ACTIVITY for
  everything. It should use WORLD_ACTIVITY when pulling new revision so
  that applications can discriminate commits by other people.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 762138] Re: Please add a button Stop all logging

2011-04-22 Thread Stefano Candori
** Changed in: history-manager
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of History
Manager, which is the registrant for History Manager.
https://bugs.launchpad.net/bugs/762138

Title:
  Please add a button Stop all logging

Status in History Manager for Zeitgeist:
  Fix Committed

Bug description:
  There can be times when the user wants to stop all the logging, in
  such a case there has to be a big fat  button named Stop All

  After Stop All is pressed, the status should change No activities
  are been logged and the Stop All is replaced byStart

  This can be added in the first tab itself.

___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 738675] Re: Spanish translation for trunk

2011-03-20 Thread Stefano Candori
Thanks Jorge for your work!! By the way the next time please use the 
translation platform included in Launchpad : 
https://translations.launchpad.net/gnome-activity-journal .
Thanks again,

Cheers

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/738675

Title:
  Spanish translation for trunk

Status in GNOME Activity Journal:
  New

Bug description:
  Translation update for Trunk.

___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 735361] Re: Window width restriction is too strict

2011-03-15 Thread Stefano Candori
** Changed in: gnome-activity-journal
   Status: New = Confirmed

** Changed in: gnome-activity-journal
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/735361

Title:
  Window width restriction is too strict

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  GAJ with the minimum width it'll let me resize itself to doesn't fit
  on my netbook's screen if I'm using Unity. The width restriction
  should be relaxed, maybe even reducing the amount of days displayed to
  just two if the user makes the window too small.

___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Gnome-zeitgeist] [Bug 663654] Re: dark text on dark background using dark background white text theme

2011-02-23 Thread Stefano Candori
This bug has been already fixed; you're using an older GAJ version (looking
to the screenshot it seems to be the 0.5 version).
Please update your GAJ to 0.6, and tell me if the bug is gone.


2011/2/23 Manish Sinha (मनीष सिन्हा manishsi...@ubuntu.com

 This is a bug. The colours should be taken from the current theme rather
 than hard-coded

 --
 You received this bug notification because you are subscribed to The
 Zeitgeist Project.
 https://bugs.launchpad.net/bugs/663654

 Title:
  dark text on dark background using dark background white text theme

 Status in GNOME Activity Journal:
  New

 Bug description:
  Gnome activity journal uses a fixed font colour for the name of the
  files it displays and when using a dark background theme the text is
  only possible to see when hovering over the name of the file. also
  effect's the date


-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/663654

Title:
  dark text on dark background using dark background white text theme

Status in GNOME Activity Journal:
  New

Bug description:
  Gnome activity journal uses a fixed font colour for the name of the
  files it displays and when using a dark background theme the text is
  only possible to see when hovering over the name of the file. also
  effect's the date

___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 715910] Re: Allow to attach a note to documents

2011-02-12 Thread Stefano Candori
** Changed in: gnome-activity-journal
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/715910

Title:
  Allow to attach a note to documents

Status in GNOME Activity Journal:
  Fix Committed

Bug description:
  I'd be great to have a way to attach a small note to a (pinned) documents.
  For example, I've pinned a document to review tomorrow and I'd like to attach 
a note saying Review the document layout.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 715910] Re: Allow to attach a note to documents

2011-02-10 Thread Stefano Candori
** Changed in: gnome-activity-journal
 Assignee: (unassigned) = Stefano Candori (cando)

** Changed in: gnome-activity-journal
   Status: Confirmed = In Progress

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/715910

Title:
  Allow to attach a note to documents

Status in GNOME Activity Journal:
  In Progress

Bug description:
  I'd be great to have a way to attach a small note to a (pinned) documents.
  For example, I've pinned a document to review tomorrow and I'd like to attach 
a note saying Review the document layout.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 716396] [NEW] Add new Month view

2011-02-10 Thread Stefano Candori
Public bug reported:

Dave_largo in IRC suggested the creation of a new Month view. Something
like that:  http://imagebin.org/137155.

** Affects: gnome-activity-journal
 Importance: Wishlist
 Status: Confirmed

** Changed in: gnome-activity-journal
   Status: New = Confirmed

** Changed in: gnome-activity-journal
   Importance: Undecided = Low

** Changed in: gnome-activity-journal
   Status: Confirmed = Invalid

** Changed in: gnome-activity-journal
   Importance: Low = Wishlist

** Changed in: gnome-activity-journal
   Status: Invalid = Confirmed

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/716396

Title:
  Add new Month view

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  Dave_largo in IRC suggested the creation of a new Month view.
  Something like that:  http://imagebin.org/137155.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 715910] Re: Allow to attach a note to documents

2011-02-09 Thread Stefano Candori
Very nice idea! I've marked this bug as Wishlist..we'll work on it asap!

** Changed in: gnome-activity-journal
   Importance: Undecided = Wishlist

** Changed in: gnome-activity-journal
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/715910

Title:
  Allow to attach a note to documents

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  I'd be great to have a way to attach a small note to a (pinned) documents.
  For example, I've pinned a document to review tomorrow and I'd like to attach 
a note saying Review the document layout.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Gnome-zeitgeist] [Bug 705545] Re: gstreamer0.10-plugins-base dependency?

2011-01-31 Thread Stefano Candori
Mmm..gstreamer it's not a dep because in case you don't have it, GAJ should
start anyway: you only can't see video previewsor at least this is the
behaviour we want.
Please past here the output you get on the terminal...

2011/1/31 ortango 705...@bugs.launchpad.net

 grabbed it - gstreamer0.10-plugins-base is in the recommends part of the
 control, shouldn't it be a depend?
 gaj will not start (at least for me) without it installed.

 --
 You received this bug notification because you are subscribed to The
 Zeitgeist Project.
 https://bugs.launchpad.net/bugs/705545

 Title:
  gstreamer0.10-plugins-base dependency?

 Status in GNOME Activity Journal:
  Fix Released

 Bug description:
  gnome-activity-journal 0.5.0.1-0ubuntu1

  i installed, went to run it and I was getting playbin errors. After
  looking around i installed gstreamer0.10-plugins-base.

  dpkg -S playbin
  gstreamer0.10-plugins-base: /usr/lib/gstreamer-0.10/libgstplaybin.so

  but its not a gaj dependency, shouldn't it be?

  also is it not possible to use assigned mime to get thumbnails or
  whatever. i don't like gstreamer and use my own ffmpegthumbs solution.
  that would be pretty nice.




-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/705545

Title:
  gstreamer0.10-plugins-base dependency?

Status in GNOME Activity Journal:
  Fix Released

Bug description:
  gnome-activity-journal 0.5.0.1-0ubuntu1

  i installed, went to run it and I was getting playbin errors. After
  looking around i installed gstreamer0.10-plugins-base.

  dpkg -S playbin
  gstreamer0.10-plugins-base: /usr/lib/gstreamer-0.10/libgstplaybin.so

  but its not a gaj dependency, shouldn't it be?

  also is it not possible to use assigned mime to get thumbnails or
  whatever. i don't like gstreamer and use my own ffmpegthumbs solution.
  that would be pretty nice.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 705545] Re: gstreamer0.10-plugins-base dependency?

2011-01-25 Thread Stefano Candori
yeah Manish should package it and add gstreamer as a Recommended
dependece...please keep tuned.

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/705545

Title:
  gstreamer0.10-plugins-base dependency?

Status in GNOME Activity Journal:
  Fix Committed

Bug description:
  gnome-activity-journal 0.5.0.1-0ubuntu1

  i installed, went to run it and I was getting playbin errors. After
  looking around i installed gstreamer0.10-plugins-base.

  dpkg -S playbin
  gstreamer0.10-plugins-base: /usr/lib/gstreamer-0.10/libgstplaybin.so

  but its not a gaj dependency, shouldn't it be?

  also is it not possible to use assigned mime to get thumbnails or
  whatever. i don't like gstreamer and use my own ffmpegthumbs solution.
  that would be pretty nice.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 707071] Re: GAJ doesn't show thumbnails for mimtype image/jpg and image/png

2011-01-25 Thread Stefano Candori
** Changed in: gnome-activity-journal
   Status: Triaged = Invalid

** Changed in: gnome-activity-journal
Milestone: 0.6.0 = None

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/707071

Title:
  GAJ doesn't show thumbnails for mimtype image/jpg and image/png

Status in GNOME Activity Journal:
  Invalid

Bug description:
  When I check any event related to opening the image, I see that images
  are not displayed with the image of their mimetype. I thought jpg, png
  have an icon when thumbnails cannot be used

  Attached the snapshot of GAJ.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 706543] Re: Please make sure that new window opened does not show in panel

2011-01-25 Thread Stefano Candori
Fixed in revision 1182.

** Changed in: gnome-activity-journal
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/706543

Title:
  Please make sure that new window opened does not show in panel

Status in GNOME Activity Journal:
  Fix Committed

Bug description:
  When I right-click on any new event and click More information I get
  a window as shown in the attachment. Please make sure that the new
  window opened does not show in the panel which contains opened
  applications.

  This is not a desired feature. The opened window is a child of GAJ.

  I am not sure if gtk allows this. Please set as invalid if gtk
  doesn't.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 707071] Re: GAJ doesn't show thumbnails for mimtype image/jpg and image/png

2011-01-25 Thread Stefano Candori
Ops i've commented before setting to invalid this bug...but the comment is not 
here...sorry Manish.
Well, i set this as invalid because it's a theme related problem and not a GAJ 
one: Humanity theme has not different icon for different image mimetype.
If you try with a different iconset like Faenza the problem disappears because 
Faenza  has different icons for different mimetype...

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/707071

Title:
  GAJ doesn't show thumbnails for mimtype image/jpg and image/png

Status in GNOME Activity Journal:
  Invalid

Bug description:
  When I check any event related to opening the image, I see that images
  are not displayed with the image of their mimetype. I thought jpg, png
  have an icon when thumbnails cannot be used

  Attached the snapshot of GAJ.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 705545] Re: gstreamer0.10-plugins-base dependency?

2011-01-24 Thread Stefano Candori
Revision 1181 fixes that bug! Ortango please check it out and tell me if you 
get again this error...
If gstreamer is not installed gaj fails silently...

** Changed in: gnome-activity-journal
   Status: Triaged = Fix Committed

** Changed in: gnome-activity-journal
Milestone: None = 0.6.0

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/705545

Title:
  gstreamer0.10-plugins-base dependency?

Status in GNOME Activity Journal:
  Fix Committed

Bug description:
  gnome-activity-journal 0.5.0.1-0ubuntu1

  i installed, went to run it and I was getting playbin errors. After
  looking around i installed gstreamer0.10-plugins-base.

  dpkg -S playbin
  gstreamer0.10-plugins-base: /usr/lib/gstreamer-0.10/libgstplaybin.so

  but its not a gaj dependency, shouldn't it be?

  also is it not possible to use assigned mime to get thumbnails or
  whatever. i don't like gstreamer and use my own ffmpegthumbs solution.
  that would be pretty nice.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 707071] Re: GAJ doesn't show thumbnails for mimtype image/jpg and image/png

2011-01-24 Thread Stefano Candori
Here images with different mimetypes have their own icon...btw i'll dig
into that

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/707071

Title:
  GAJ doesn't show thumbnails for mimtype image/jpg and image/png

Status in GNOME Activity Journal:
  Triaged

Bug description:
  When I check any event related to opening the image, I see that images
  are not displayed with the image of their mimetype. I thought jpg, png
  have an icon when thumbnails cannot be used

  Attached the snapshot of GAJ.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 680653] Re: Pinning feature is broken

2011-01-23 Thread Stefano Candori
** Changed in: gnome-activity-journal
Milestone: None = 0.6.0

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/680653

Title:
  Pinning feature is broken

Status in GNOME Activity Journal:
  Fix Committed

Bug description:
  When i try to pin an item i get this error/warning and the item isn't
  pinned:

  /home/cando/Scrivania/gnome-activity-journal/src/common.py:752: 
DeprecationWarning: object.__new__() takes no parameters
GIO_FILES[subj] = object.__new__(classtype, *args, **kwargs)
  /home/cando/Scrivania/gnome-activity-journal/src/activity_widgets.py:279: 
GtkWarning: gtk_box_pack: assertion `child-parent == NULL' failed
self.pack_end(hbox)



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 561863] Re: Usability: Need to Display Full File Paths

2011-01-23 Thread Stefano Candori
** Changed in: gnome-activity-journal
Milestone: None = 0.6.0

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/561863

Title:
  Usability: Need to Display Full File Paths

Status in GNOME Activity Journal:
  Fix Committed

Bug description:
  
  Description of problem:
  Realise it is early days and the Activity Journal/Zeitgeist look great so far
  but to make it more useable, it needs to display full filepaths.  At present,
  if a user edits files with the same name on the same day, it is difficult to
  discern them, even with the thumbnail preview.

  Version-Release number of selected component (if applicable):

  
  How reproducible:
  Every time.

  Steps to Reproduce:
  1. Edit two different files with the same name such as
  ~/workingcopiessvn/jbossadminguide/introduction.xml and
  ~/workingcopiessvn/jbossprogrammersguide/introduction.xml
  2. Launch the Activity Journal.
  3. There will be two files, both named introduction.xml.  The thumbnail
  preview's effectiveness will be limited if the header data is the same in each
  XML file.

  Actual results:
  Two indistinguishable files.

  Expected results:
  Full file paths displayed so which file is which can be discerned.
  

  Reported in Fedora 13 against gnome-activity-
  journal-0.3.3-1.fc13.noarch.

  https://bugzilla.redhat.com/show_bug.cgi?id=578961



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 705545] Re: gstreamer0.10-plugins-base dependency?

2011-01-23 Thread Stefano Candori
HI ortango!Thanks for your bug report.
Please open GAJ from a terminal and past here what you get.


** Changed in: gnome-activity-journal
   Status: New = Triaged

** Changed in: gnome-activity-journal
   Importance: Undecided = Low

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/705545

Title:
  gstreamer0.10-plugins-base dependency?

Status in GNOME Activity Journal:
  Triaged

Bug description:
  gnome-activity-journal 0.5.0.1-0ubuntu1

  i installed, went to run it and I was getting playbin errors. After
  looking around i installed gstreamer0.10-plugins-base.

  dpkg -S playbin
  gstreamer0.10-plugins-base: /usr/lib/gstreamer-0.10/libgstplaybin.so

  but its not a gaj dependency, shouldn't it be?

  also is it not possible to use assigned mime to get thumbnails or
  whatever. i don't like gstreamer and use my own ffmpegthumbs solution.
  that would be pretty nice.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 706543] Re: Please make sure that new window opened does not show in panel

2011-01-23 Thread Stefano Candori
** Changed in: gnome-activity-journal
   Status: New = Confirmed

** Changed in: gnome-activity-journal
   Importance: Undecided = Low

** Changed in: gnome-activity-journal
 Assignee: (unassigned) = Stefano Candori (cando)

** Changed in: gnome-activity-journal
Milestone: None = 0.6.0

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/706543

Title:
  Please make sure that new window opened does not show in panel

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  When I right-click on any new event and click More information I get
  a window as shown in the attachment. Please make sure that the new
  window opened does not show in the panel which contains opened
  applications.

  This is not a desired feature. The opened window is a child of GAJ.

  I am not sure if gtk allows this. Please set as invalid if gtk
  doesn't.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 706543] Re: Please make sure that new window opened does not show in panel

2011-01-23 Thread Stefano Candori
Awesome Manish!!Also Preferences window should not show in the
panel...fixing this as soon as possible.

** Changed in: gnome-activity-journal
   Status: Confirmed = In Progress

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/706543

Title:
  Please make sure that new window opened does not show in panel

Status in GNOME Activity Journal:
  In Progress

Bug description:
  When I right-click on any new event and click More information I get
  a window as shown in the attachment. Please make sure that the new
  window opened does not show in the panel which contains opened
  applications.

  This is not a desired feature. The opened window is a child of GAJ.

  I am not sure if gtk allows this. Please set as invalid if gtk
  doesn't.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 378329] Re: Add multiple selection and deleting several stuff at once

2011-01-07 Thread Stefano Candori
After a quick talk with seiflotfy in irc, we have decided that the normal view 
won't be revamped into a tree-view...
Maybe the other two view could implement this feature.

** Changed in: gnome-activity-journal
   Status: New = Triaged

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/378329

Title:
  Add multiple selection and deleting several stuff at once

Status in GNOME Activity Journal:
  Triaged

Bug description:
  Add multiple selection and deleting several stuff at once.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 695003] Re: Bzr datasource doesn't use different uri for different events on the same branch

2011-01-05 Thread Stefano Candori
The bzr: URN sounds good to me, because doing that we have different uris and 
we don't have to compare text.
Anyway the URL thing doesn't work: a COMMIT on a branch it's not a PUSH. So if 
the user only commits we don't have an URL suitable for the URI...but i could 
be wrong.

In conclusion: +1 bzr: URN.

-- 
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Data-Sources.
https://bugs.launchpad.net/bugs/695003

Title:
  Bzr datasource doesn't use different uri for different events on the same 
branch

Status in Zeitgeist Data-Sources:
  New

Bug description:
  Step to reproduce:
 -commit or pull in a bzr branch the event show up in GAJ
 -commit or pull another time--- the event doens't show up because GAJ 
discard it (these two events have the same uri: the branch's path one) 

RainCT opinion: IMHO the Bazaar plugin should be fixed to give each revision a 
different URI, possibly including the revision ID.



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Gnome-zeitgeist] [Bug 694849] Re: Gnome Activity Journal doesn't show any activities even if all dipendencies installed

2010-12-28 Thread Stefano Candori
Well, now the warning are normal because i get these too.
Btw at the moment i've no clue on why it's freezing...tell me as soon as
you've tested the trunk version.

2010/12/28 joshg 694...@bugs.launchpad.net

 I installed appmenu-gtk (wich I had recently uninstalled due to its
 presumed futility) and now the error has become this:


 ** Message: pygobject_register_sinkfunc is deprecated (GstObject)
 /usr/share/gnome-activity-journal/src/common.py:747: DeprecationWarning:
 object.__new__() takes no parameters
  GIO_FILES[subj] = object.__new__(classtype, *args, **kwargs)
 /usr/share/gnome-activity-journal/src/activity_widgets.py:303: GtkWarning:
 gtk_box_pack: assertion `child-parent == NULL' failed
  self.pack_end(hbox)


 But GAJ freezes. I'll install the trunk version

 --
 You received this bug notification because you are subscribed to The
 Zeitgeist Project.
 https://bugs.launchpad.net/bugs/694849

 Title:
  Gnome Activity Journal doesn't show any activities even if all
 dipendencies installed

 Status in GNOME Activity Journal:
  Confirmed

 Bug description:
  When starting Activity Journal (ppa) from terminal:

 ** Message: pygobject_register_sinkfunc is deprecated (GstObject)
 `menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
 /usr/share/gnome-activity-journal/src/supporting_widgets.py:728:
 GtkWarning: Failed to load type module: (null)

  super(ContextMenu, self).__init__()
 `menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
 /usr/share/gnome-activity-journal/src/supporting_widgets.py:348:
 GtkWarning: Failed to load type module: (null)

  self.combobox = gtk.combo_box_new_text()

 Ubuntu Maverick 10.10 32bit
 gnome-activity-journal 0.5.0.1-0ubuntu1
 zeitgeist-core 0.6-0ubuntu1~0ppa1~maverick




-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/694849

Title:
  Gnome Activity Journal doesn't show any activities even if all dipendencies 
installed

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  When starting Activity Journal (ppa) from terminal:

** Message: pygobject_register_sinkfunc is deprecated (GstObject)
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
/usr/share/gnome-activity-journal/src/supporting_widgets.py:728: GtkWarning: 
Failed to load type module: (null)

  super(ContextMenu, self).__init__()
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
/usr/share/gnome-activity-journal/src/supporting_widgets.py:348: GtkWarning: 
Failed to load type module: (null)

  self.combobox = gtk.combo_box_new_text()

Ubuntu Maverick 10.10 32bit
gnome-activity-journal 0.5.0.1-0ubuntu1
zeitgeist-core 0.6-0ubuntu1~0ppa1~maverick



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


Re: [Gnome-zeitgeist] [Bug 694849] Re: Gnome Activity Journal doesn't show any activities even if all dipendencies installed

2010-12-28 Thread Stefano Candori
have you copied the file extension/gnome-activity-journal.py  from the trunk
directory of GAJ  in /home/joshg/.local/share/zeitgeist/extensions??
(apparently no:
 [2010-12-28 19:16:52,618] - DEBUG - zeitgeist.extension - Searching for
user extensions in: /home/joshg/.local/share/zeitgeist/extensions
[2010-12-28 19:16:52,631] - DEBUG - zeitgeist.extension - No extra
extensions
)
And looking to your debug of GAJ it seems you're launching the system
installed one and not the trunk version...

2010/12/28 joshg 694...@bugs.launchpad.net

 starting zeitgeist-daemon:

 [2010-12-28 19:16:52,562] - DEBUG - root - Checking for another running
 instance...
 [2010-12-28 19:16:52,573] - DEBUG - root - No running instances found.
 [2010-12-28 19:16:52,612] - INFO - zeitgeist.sql - Using database:
 /home/joshg/.local/share/zeitgeist/activity.sqlite
 [2010-12-28 19:16:52,616] - DEBUG - zeitgeist.sql - Core schema is good. DB
 loaded in 3.95607948303ms
 [2010-12-28 19:16:52,617] - DEBUG - zeitgeist.extension - Searching for
 system extensions in:
 /home/joshg/zeitgeist/zeitgeist/_zeitgeist/engine/extensions
 [2010-12-28 19:16:52,618] - DEBUG - zeitgeist.extension - Searching for
 user extensions in: /home/joshg/.local/share/zeitgeist/extensions
 [2010-12-28 19:16:52,631] - DEBUG - zeitgeist.extension - No extra
 extensions
 [2010-12-28 19:16:52,631] - DEBUG - zeitgeist.extension - Found extensions:
 [class '_zeitgeist.engine.extensions.blacklist.Blacklist', class
 '_zeitgeist.engine.extensions.datasource_registry.DataSourceRegistry']
 [2010-12-28 19:16:52,632] - DEBUG - zeitgeist.extension - Loading extension
 'Blacklist'
 [2010-12-28 19:16:52,632] - DEBUG - zeitgeist.blacklist - No existing
 blacklist config found
 [2010-12-28 19:16:52,633] - DEBUG - zeitgeist.extension - Loading extension
 'DataSourceRegistry'
 [2010-12-28 19:16:52,634] - DEBUG - zeitgeist.datasource_registry - Loaded
 data-source data from /home/joshg/.local/share/zeitgeist/datasources.pickle
 [2010-12-28 19:16:52,638] - INFO - root - Trying to start the datahub
 [2010-12-28 19:16:52,667] - DEBUG - root - Running datahub
 (/usr/bin/zeitgeist-datahub) with PID=7402
 [2010-12-28 19:16:52,667] - INFO - root - Starting Zeitgeist service...
 [2010-12-28 19:16:53,242] - DEBUG - zeitgeist.engine - Inserted 4 events in
 0.007849s
 [2010-12-28 19:17:29,705] - DEBUG - zeitgeist.engine - Found 0 events IDs
 in 0.000871s


 starting GAJ:


 ** Message: pygobject_register_sinkfunc is deprecated (GstObject)
 Traceback (most recent call last):
   File /usr/bin/gnome-activity-journal, line 94, in module
 from src.main import PortalWindow
   File /usr/share/gnome-activity-journal/src/main.py, line 30, in
 module
 from activity_widgets import MultiViewContainer, TimelineViewContainer,
 ThumbViewContainer
   File /usr/share/gnome-activity-journal/src/activity_widgets.py, line
 35, in module
 from store import ContentStruct, CLIENT
   File /usr/share/gnome-activity-journal/src/store.py, line 504, in
 module
STORE = Store()
  File /usr/share/gnome-activity-journal/src/store.py, line 367, in
 __init__
 days_population = ZeitgeistDBusInterface().get_extension(Log,
 journal/activity).GetHistogramData()
   File /usr/lib/pymodules/python2.6/zeitgeist/client.py, line 82, in
 __getattr__
 raise TypeError(Unknown method name: %s % name)
 TypeError: Unknown method name: GetHistogramData

 --
 You received this bug notification because you are subscribed to The
 Zeitgeist Project.
 https://bugs.launchpad.net/bugs/694849

 Title:
  Gnome Activity Journal doesn't show any activities even if all
 dipendencies installed

 Status in GNOME Activity Journal:
  Confirmed

 Bug description:
  When starting Activity Journal (ppa) from terminal:

 ** Message: pygobject_register_sinkfunc is deprecated (GstObject)
 `menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
 /usr/share/gnome-activity-journal/src/supporting_widgets.py:728:
 GtkWarning: Failed to load type module: (null)

  super(ContextMenu, self).__init__()
 `menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
 /usr/share/gnome-activity-journal/src/supporting_widgets.py:348:
 GtkWarning: Failed to load type module: (null)

  self.combobox = gtk.combo_box_new_text()

 Ubuntu Maverick 10.10 32bit
 gnome-activity-journal 0.5.0.1-0ubuntu1
 zeitgeist-core 0.6-0ubuntu1~0ppa1~maverick




-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/694849

Title:
  Gnome Activity Journal doesn't show any activities even if all dipendencies 
installed

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  When starting Activity Journal (ppa) from terminal:

** Message: pygobject_register_sinkfunc is deprecated (GstObject)
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load

[Zeitgeist] [Bug 695003] Re: Bzr datasource doesn't use different uri for different events on the same branch

2010-12-28 Thread Stefano Candori
+1 for me. I've suggested the same thing in a previous bug.
If nobody else has a better idea i could assign this bug to me.

-- 
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Data-Sources.
https://bugs.launchpad.net/bugs/695003

Title:
  Bzr datasource doesn't use different uri for different events on the same 
branch

Status in Zeitgeist Data-Sources:
  New

Bug description:
  Step to reproduce:
 -commit or pull in a bzr branch the event show up in GAJ
 -commit or pull another time--- the event doens't show up because GAJ 
discard it (these two events have the same uri: the branch's path one) 

RainCT opinion: IMHO the Bazaar plugin should be fixed to give each revision a 
different URI, possibly including the revision ID.



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 694849] Re: Gnome Activity Journal doesn't show any activities even if all dipendencies installed

2010-12-28 Thread Stefano Candori
It seems to work properly...Other try: download and try the trunk version from 
here:https://launchpad.net/gnome-activity-journal
Follow the instructions and tell me if it works.
Meanwhile i'll think to what is causing this bug...:)

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/694849

Title:
  Gnome Activity Journal doesn't show any activities even if all dipendencies 
installed

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  When starting Activity Journal (ppa) from terminal:

** Message: pygobject_register_sinkfunc is deprecated (GstObject)
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
/usr/share/gnome-activity-journal/src/supporting_widgets.py:728: GtkWarning: 
Failed to load type module: (null)

  super(ContextMenu, self).__init__()
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
/usr/share/gnome-activity-journal/src/supporting_widgets.py:348: GtkWarning: 
Failed to load type module: (null)

  self.combobox = gtk.combo_box_new_text()

Ubuntu Maverick 10.10 32bit
gnome-activity-journal 0.5.0.1-0ubuntu1
zeitgeist-core 0.6-0ubuntu1~0ppa1~maverick



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitge...@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 694849] Re: Gnome Activity Journal doesn't show any activities even if all dipendencies installed

2010-12-28 Thread Stefano Candori
before doing what i've just said try this: sudo apt-get install appmenu-
gtk

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/694849

Title:
  Gnome Activity Journal doesn't show any activities even if all dipendencies 
installed

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  When starting Activity Journal (ppa) from terminal:

** Message: pygobject_register_sinkfunc is deprecated (GstObject)
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
/usr/share/gnome-activity-journal/src/supporting_widgets.py:728: GtkWarning: 
Failed to load type module: (null)

  super(ContextMenu, self).__init__()
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
/usr/share/gnome-activity-journal/src/supporting_widgets.py:348: GtkWarning: 
Failed to load type module: (null)

  self.combobox = gtk.combo_box_new_text()

Ubuntu Maverick 10.10 32bit
gnome-activity-journal 0.5.0.1-0ubuntu1
zeitgeist-core 0.6-0ubuntu1~0ppa1~maverick



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitge...@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 694706] [NEW] GAJ histogram should highlight every day where a searched item is found

2010-12-27 Thread Stefano Candori
Public bug reported:

GAJ histogram at the moment highlights only days that i've visited.
It should highlight every days containing a searched item.

** Affects: gnome-activity-journal
 Importance: Undecided
 Assignee: Stefano Candori (cando)
 Status: In Progress

** Changed in: gnome-activity-journal
 Assignee: (unassigned) = Stefano Candori (cando)

** Changed in: gnome-activity-journal
   Status: New = In Progress

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/694706

Title:
  GAJ histogram should highlight every day where a searched item is found

Status in GNOME Activity Journal:
  In Progress

Bug description:
  GAJ histogram at the moment highlights only days that i've visited.
It should highlight every days containing a searched item.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 694849] Re: Gnome Activity Journal doesn't show any activities even if all dipendencies installed

2010-12-27 Thread Stefano Candori
Hi joshg! Thanks for your bug report.
Btw i've not completely understood your problem: the Activity Journal starts or 
crashes before starting?
And if it starts, your problem is that it doesn't show any activities like 
opening and modifying a file?

** Changed in: gnome-activity-journal
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/694849

Title:
  Gnome Activity Journal doesn't show any activities even if all dipendencies 
installed

Status in GNOME Activity Journal:
  Incomplete

Bug description:
  When starting Activity Journal (ppa) from terminal:

** Message: pygobject_register_sinkfunc is deprecated (GstObject)
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
/usr/share/gnome-activity-journal/src/supporting_widgets.py:728: GtkWarning: 
Failed to load type module: (null)

  super(ContextMenu, self).__init__()
`menu_proxy_module_load': python: undefined symbol: menu_proxy_module_load
/usr/share/gnome-activity-journal/src/supporting_widgets.py:348: GtkWarning: 
Failed to load type module: (null)

  self.combobox = gtk.combo_box_new_text()

Ubuntu Maverick 10.10 32bit
gnome-activity-journal 0.5.0.1-0ubuntu1
zeitgeist-core 0.6-0ubuntu1~0ppa1~maverick



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 689080] Re: Vim datasource results in error when editing files remotely

2010-12-21 Thread Stefano Candori
Hi Carlos, thanks for your bug report...However this is not a gnome-
activity-journal bug but a zeitgeist-daemon / data-providers one.


** Also affects: zeitgeist-dataproviders
   Importance: Undecided
   Status: New

** Changed in: gnome-activity-journal
   Status: New = Invalid

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/689080

Title:
  Vim datasource results in error when editing files remotely

Status in GNOME Activity Journal:
  Invalid
Status in Zeitgeist Data-Sources:
  New

Bug description:
  Hi,

With zeitgeist-datasource-vim installed, vim returns the following errors if I 
try to open vim in a SSH session:

Error detected while processing /usr/share/vim/vim72/plugin/zeitgeist.vim:
line   54:
Traceback (most recent call last):
  File string, line 9, in module
  File /usr/lib/pymodules/python2.6/zeitgeist/client.py, line 310, in __init__
self._iface = ZeitgeistDBusInterface()
  File /usr/lib/pymodules/python2.6/zeitgeist/client.py, line 175, in __init__
proxy = dbus.SessionBus().get_object(self.BUS_NAME,
  File /usr/lib/pymodules/python2.6/dbus/_dbus.py, line 219, in __new__
mainloop=mainloop)
  File /usr/lib/pymodules/python2.6/dbus/_dbus.py, line 108, in __new__
bus = BusConnection.__new__(subclass, bus_type, mainloop=mainloop)
  File /usr/lib/pymodules/python2.6/dbus/bus.py, line 125, in __new__
bus = cls._new_for_bus(address_or_type, mainloop=mainloop)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.Spawn.ExecFailed: 
/bin/dbus-launch terminated abnormally with the following error: Autolaunch 
error: X11 initialization failed.


All the best.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 689080] Re: Vim datasource results in error when editing files remotely

2010-12-21 Thread Stefano Candori
I've added Zeitgeist data-sources in affected projects..

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/689080

Title:
  Vim datasource results in error when editing files remotely

Status in GNOME Activity Journal:
  Invalid
Status in Zeitgeist Data-Sources:
  New

Bug description:
  Hi,

With zeitgeist-datasource-vim installed, vim returns the following errors if I 
try to open vim in a SSH session:

Error detected while processing /usr/share/vim/vim72/plugin/zeitgeist.vim:
line   54:
Traceback (most recent call last):
  File string, line 9, in module
  File /usr/lib/pymodules/python2.6/zeitgeist/client.py, line 310, in __init__
self._iface = ZeitgeistDBusInterface()
  File /usr/lib/pymodules/python2.6/zeitgeist/client.py, line 175, in __init__
proxy = dbus.SessionBus().get_object(self.BUS_NAME,
  File /usr/lib/pymodules/python2.6/dbus/_dbus.py, line 219, in __new__
mainloop=mainloop)
  File /usr/lib/pymodules/python2.6/dbus/_dbus.py, line 108, in __new__
bus = BusConnection.__new__(subclass, bus_type, mainloop=mainloop)
  File /usr/lib/pymodules/python2.6/dbus/bus.py, line 125, in __new__
bus = cls._new_for_bus(address_or_type, mainloop=mainloop)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.Spawn.ExecFailed: 
/bin/dbus-launch terminated abnormally with the following error: Autolaunch 
error: X11 initialization failed.


All the best.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 365048] Re: Drag and drop pinning

2010-12-21 Thread Stefano Candori
I've fixed that..

** Changed in: gnome-activity-journal
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/365048

Title:
  Drag and drop pinning

Status in GNOME Activity Journal:
  Fix Committed

Bug description:
  Add support for dragdrop bookmarking



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 685828] Re: Enhance applications usage logging.

2010-12-21 Thread Stefano Candori
** Changed in: gnome-activity-journal
   Importance: Undecided = Wishlist

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/685828

Title:
  Enhance applications usage logging.

Status in GNOME Activity Journal:
  New
Status in Synapse:
  Fix Released

Bug description:
  Synapse task:
=

Thanks for logging used apps into Zeitgeist! It's one thing I always missed in 
Zeitgeist.It's a pity it doesn't do it with items launched from gnome-main-menu 
or others.

Anyway here are some ideas. I assume you already have plans to explore that 
feature, so I may repeat your ideas.

Also, it would be very nice if those apps appeared under the Applications 
tabs in Synapse. For example, if I launch Syanpse and right away I press down 
under the Internet tab, I see the last logged webpages. Same could be done 
for the Applications tabs. I also guess that using Zeitgeist to log app usage 
can be helpful to let Synapse make better choices and remember what we last 
launched.

Again, I assume you thought of some (or all) of these ideas. Hope at least one 
is new :)

Thanks for such a nice launcher, it replaced my other choices in 1 minute.

GNOME Activity Journal task:


Apps are logged under Unknown. It would be nice to log it under 
Applications or Synapse, the former being better, maybe in the future 
Zeitgeist could place there Applications used through other way different than 
Synapse.

Another thing, if I run Activity Journal and press on those logged items, 
synapse launches, instead of the application.

Currently apps as logged the same way libzg-gio-module logs them: actor is 
launcher, subject uri is launched app (application://xyz.desktop), 
interpretation: NFO_SOFTWARE, manifestation: NFO_SOFTWARE_ITEM (event int: 
ACCESS_EVENT, event man: USER_ACTIVITY).



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 689080] Re: Vim datasource results in error when editing files remotely

2010-12-21 Thread Stefano Candori
Hi Carlos, thanks for your bug report...However this is not a gnome-
activity-journal bug but a zeitgeist-daemon / data-providers one.


** Also affects: zeitgeist-dataproviders
   Importance: Undecided
   Status: New

** Changed in: gnome-activity-journal
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Data-Sources.
https://bugs.launchpad.net/bugs/689080

Title:
  Vim datasource results in error when editing files remotely

Status in GNOME Activity Journal:
  Invalid
Status in Zeitgeist Data-Sources:
  New

Bug description:
  Hi,

With zeitgeist-datasource-vim installed, vim returns the following errors if I 
try to open vim in a SSH session:

Error detected while processing /usr/share/vim/vim72/plugin/zeitgeist.vim:
line   54:
Traceback (most recent call last):
  File string, line 9, in module
  File /usr/lib/pymodules/python2.6/zeitgeist/client.py, line 310, in __init__
self._iface = ZeitgeistDBusInterface()
  File /usr/lib/pymodules/python2.6/zeitgeist/client.py, line 175, in __init__
proxy = dbus.SessionBus().get_object(self.BUS_NAME,
  File /usr/lib/pymodules/python2.6/dbus/_dbus.py, line 219, in __new__
mainloop=mainloop)
  File /usr/lib/pymodules/python2.6/dbus/_dbus.py, line 108, in __new__
bus = BusConnection.__new__(subclass, bus_type, mainloop=mainloop)
  File /usr/lib/pymodules/python2.6/dbus/bus.py, line 125, in __new__
bus = cls._new_for_bus(address_or_type, mainloop=mainloop)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.Spawn.ExecFailed: 
/bin/dbus-launch terminated abnormally with the following error: Autolaunch 
error: X11 initialization failed.


All the best.



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 522595] Re: Support custom icons and handler to launch an object

2010-12-18 Thread Stefano Candori
Now with the last version of Bzr-dataprovider GAJ shows the bzr icon
instead of the generic folder icon...

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/522595

Title:
  Support custom icons and handler to launch an object

Status in GNOME Activity Journal:
  Confirmed

Bug description:
  Zeitgeist has a plugin for bzr which logs commits to a bzr branch.
Right now for this events a generic folder icon will be shown and on clicking 
this icon the branch will be shown in the default filebrowser.

It would be cool if GAJ could show a bzr icon instead of the folder icon in 
this case, and also open this branch in `bzr viz` or such.



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 685828] Re: Enhance applications usage logging.

2010-12-17 Thread Stefano Candori
HI Omar!Thanks for your ideas...:)
With my last commit GAJ doesn't show anymore Application-events( so Unknow 
section will no more show up..:) ).
At the moment we have no plan for adding A Used Applications section but it's 
not  a bad idea...we should discuss it...:).
However, feel free to open  a new  blueprint for that.
Thanks again,

Cheers

-- 
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.
https://bugs.launchpad.net/bugs/685828

Title:
  Enhance applications usage logging.

Status in GNOME Activity Journal:
  New
Status in Synapse:
  Fix Released

Bug description:
  Synapse task:
=

Thanks for logging used apps into Zeitgeist! It's one thing I always missed in 
Zeitgeist.It's a pity it doesn't do it with items launched from gnome-main-menu 
or others.

Anyway here are some ideas. I assume you already have plans to explore that 
feature, so I may repeat your ideas.

Also, it would be very nice if those apps appeared under the Applications 
tabs in Synapse. For example, if I launch Syanpse and right away I press down 
under the Internet tab, I see the last logged webpages. Same could be done 
for the Applications tabs. I also guess that using Zeitgeist to log app usage 
can be helpful to let Synapse make better choices and remember what we last 
launched.

Again, I assume you thought of some (or all) of these ideas. Hope at least one 
is new :)

Thanks for such a nice launcher, it replaced my other choices in 1 minute.

GNOME Activity Journal task:


Apps are logged under Unknown. It would be nice to log it under 
Applications or Synapse, the former being better, maybe in the future 
Zeitgeist could place there Applications used through other way different than 
Synapse.

Another thing, if I run Activity Journal and press on those logged items, 
synapse launches, instead of the application.

Currently apps as logged the same way libzg-gio-module logs them: actor is 
launcher, subject uri is launched app (application://xyz.desktop), 
interpretation: NFO_SOFTWARE, manifestation: NFO_SOFTWARE_ITEM (event int: 
ACCESS_EVENT, event man: USER_ACTIVITY).



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 687324] Re: Tomboy notes should be filed under documents

2010-12-08 Thread Stefano Candori
Hi Omar! Thanks for your bug report. Maybe i've not completely understood you 
question but at the moment in GAJ, Tomboy notes appear on their own category: 
Edited or Read Notes. Like other files, notes are grouped  and displayed 
categorized together only after there are few of them; in our case 4 notes.
Please tell me if i've misunderstood your bug report.

Cheers

** Changed in: zeitgeist-dataproviders
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Data-Sources.
https://bugs.launchpad.net/bugs/687324

Title:
  Tomboy notes should be filed under documents

Status in Zeitgeist Data-Sources:
  Incomplete

Bug description:
  Actually, this is a bug I found through gnome-activity-journal. It displays 
the records below categories, and I guess it's zeitgeist's job to organize the 
entries in the database.

Point is, tomboy notes do not appear under any category (internet, documents, 
etc), but on their own. This means that if I access zeitgeist through an 
external app, like synpase or g-a-j, tomboy's notes results are not shown under 
the documents tabs in Synapse, but as an individual element with no 
categorization.

I hope I filed the bug in the right place. Please reassign to another package 
if I did wrong.

Cheers,



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 561860] Re: Activity Journal's Right-Click Delete Functionality Broken

2010-12-01 Thread Stefano Candori
@Siegfried, solved thanks..
Well, also GAJ works flawlessy..i think we can close this bug.

-- 
Activity Journal's Right-Click Delete Functionality Broken
https://bugs.launchpad.net/bugs/561860
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.

Status in GNOME Activity Journal: In Progress
Status in Zeitgeist Framework: Fix Released

Bug description:

Description of problem:
Activity Journal's right-click delete functionality is broken.

Version-Release number of selected component (if applicable):
0.3.3

How reproducible:
100%

Steps to Reproduce:
1. Launch the Activity Journal.
2. Right-click on an item.
3. From the context menu that appears, choose to delete the item from the
journal.

Actual results:
Nothing happens.

Expected results:
Item's entry should be removed.



Reported in Fedora 13 against gnome-activity-journal-0.3.3-1.fc13.noarch.

https://bugzilla.redhat.com/show_bug.cgi?id=579144



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 561860] Re: Activity Journal's Right-Click Delete Functionality Broken

2010-12-01 Thread Stefano Candori
@Siegfried, solved thanks..
Well, also GAJ works flawlessy..i think we can close this bug.

-- 
Activity Journal's Right-Click Delete Functionality Broken
https://bugs.launchpad.net/bugs/561860
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Framework.

Status in GNOME Activity Journal: In Progress
Status in Zeitgeist Framework: Fix Released

Bug description:

Description of problem:
Activity Journal's right-click delete functionality is broken.

Version-Release number of selected component (if applicable):
0.3.3

How reproducible:
100%

Steps to Reproduce:
1. Launch the Activity Journal.
2. Right-click on an item.
3. From the context menu that appears, choose to delete the item from the
journal.

Actual results:
Nothing happens.

Expected results:
Item's entry should be removed.



Reported in Fedora 13 against gnome-activity-journal-0.3.3-1.fc13.noarch.

https://bugzilla.redhat.com/show_bug.cgi?id=579144



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 532303] Re: add an right click menu with open in folder item

2010-11-28 Thread Stefano Candori
I've commited(revision 1133) the changes that Randal Barlow has
suggested. I think that for the moment it's a good compromise...

** Changed in: gnome-activity-journal
   Status: Confirmed = Fix Committed

** Changed in: gnome-activity-journal
   Importance: Wishlist = Low

-- 
add an right click menu with open in folder item
https://bugs.launchpad.net/bugs/532303
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.

Status in GNOME Activity Journal: Fix Committed

Bug description:
As stated in summary, It would be useful to be able to open the folder 
containing the selected file.

Cheers

Davide



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 682207] Re: Deleted Tomboy notes appears on AJ

2010-11-28 Thread Stefano Candori
well, there is actually a delete_event..so it's not a tomboy related problem..
It's GAJ that should not display item with a DELETE_EVENT Interpretation...

** Changed in: zeitgeist-dataproviders
   Status: Incomplete = Invalid

-- 
Deleted Tomboy notes appears on AJ 
https://bugs.launchpad.net/bugs/682207
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Data-Sources.

Status in Zeitgeist Data-Sources: Invalid

Bug description:
As title says, if i delete a tomboy's note it appears anyway in GAJ. I report 
this bug here because i think it's a tomboy dataprovider related problem.



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Zeitgeist] [Bug 682207] [NEW] Deleted Tomboy notes appears on AJ

2010-11-27 Thread Stefano Candori
Public bug reported:

As title says, if i delete a tomboy's note it appears anyway in GAJ. I
report this bug here because i think it's a tomboy dataprovider related
problem.

** Affects: zeitgeist-dataproviders
 Importance: Undecided
 Status: New

-- 
Deleted Tomboy notes appears on AJ 
https://bugs.launchpad.net/bugs/682207
You received this bug notification because you are a member of Zeitgeist
Framework Team, which is subscribed to Zeitgeist Data-Sources.

Status in Zeitgeist Data-Sources: New

Bug description:
As title says, if i delete a tomboy's note it appears anyway in GAJ. I report 
this bug here because i think it's a tomboy dataprovider related problem.



___
Mailing list: https://launchpad.net/~zeitgeist
Post to : zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Merge] lp:~cando/gnome-activity-journal/dnd-pinning into lp:gnome-activity-journal

2010-11-25 Thread Stefano Candori
Stefano Candori has proposed merging 
lp:~cando/gnome-activity-journal/dnd-pinning into lp:gnome-activity-journal.

Requested reviews:
  GNOME Zeitgeist Team (gnome-zeitgeist)


This merge proposal include this one: 
https://code.launchpad.net/~cando/gnome-activity-journal/fix-pinning/+merge/41754
 (so forget about it).

In this branch I've:
 * fixed bug #680653 ;
 * added DND support to bookmarking/pinning area ;
 * refactored a little DND code, as asked by RainCT.


-- 
https://code.launchpad.net/~cando/gnome-activity-journal/dnd-pinning/+merge/41866
Your team GNOME Zeitgeist Team is requested to review the proposed merge of 
lp:~cando/gnome-activity-journal/dnd-pinning into lp:gnome-activity-journal.
=== modified file 'src/activity_widgets.py'
--- src/activity_widgets.py	2010-11-11 16:43:36 +
+++ src/activity_widgets.py	2010-11-25 14:45:55 +
@@ -41,7 +41,27 @@
 #DND support variables
 TYPE_TARGET_TEXT = 80
 TYPE_TARGET_URI = 81
-
+ 
+class Draggable():
+
+def __init__(self, widget):
+targets = [(text/plain, 0, TYPE_TARGET_TEXT),
+   (text/uri-list, 0, TYPE_TARGET_URI)]
+widget.drag_source_set( gtk.gdk.BUTTON1_MASK, targets,
+gtk.gdk.ACTION_COPY)
+widget.connect(drag_data_get, self.on_drag_data_get)
+
+class Droppable():
+
+def __init__(self, widget):
+targets = [(text/plain, 0, TYPE_TARGET_TEXT),]
+widget.drag_dest_set(gtk.DEST_DEFAULT_MOTION |
+  	gtk.DEST_DEFAULT_HIGHLIGHT |
+	gtk.DEST_DEFAULT_DROP, 
+targets, gtk.gdk.ACTION_COPY)
+widget.connect(drag_data_received, self.on_drag_data_received)
+
+
 class _GenericViewWidget(gtk.VBox):
 day = None
 day_signal_id = None
@@ -172,7 +192,7 @@
 self.day = day
 if pinbox in self.box.get_children():
 self.box.remove(pinbox)
-if (day.date - datetime.date.today()) == 0:
+if (day.date - datetime.date.today()) == datetime.timedelta(days=0):
 self.box.pack_start(pinbox, False, False)
 self.box.reorder_child(pinbox, 0)
 self.daylabel.set_date(day.date)
@@ -360,7 +380,7 @@
 self._set_up_box(self.event_structs)
 
 
-class Item(gtk.HBox):
+class Item(gtk.HBox, Draggable):
 
 def __init__(self, content_struct, allow_pin = False, do_style=True):
 event = content_struct.event
@@ -368,6 +388,7 @@
 self.set_border_width(2)
 self.allow_pin = allow_pin
 self.btn = gtk.Button()
+Draggable.__init__(self, self.btn)
 self.search_results = []
 self.subject = event.subjects[0]
 self.content_obj = content_struct.content_object
@@ -459,11 +480,6 @@
 self.btn.connect(realize, self.realize_cb, evbox)
 self.init_multimedia_tooltip()
 
-self.targets = [(text/plain, 0, TYPE_TARGET_TEXT),
-(text/uri-list, 0, TYPE_TARGET_URI),]
-self.btn.drag_source_set( gtk.gdk.BUTTON1_MASK, self.targets,
-gtk.gdk.ACTION_COPY)
-self.btn.connect(drag_data_get, self.on_drag_data_get)
 
 def on_drag_data_get(self, treeview, context, selection, target_id, etime):
 uri = self.content_obj.uri
@@ -672,7 +688,7 @@
 pass
 
 
-class ThumbIconView(gtk.IconView):
+class ThumbIconView(gtk.IconView, Draggable):
 
 A iconview which uses a custom cellrenderer to render square pixbufs
 based on zeitgeist events
@@ -681,7 +697,8 @@
 child_width = _ThumbViewRenderer.width
 child_height = _ThumbViewRenderer.height
 def __init__(self):
-super(ThumbIconView, self).__init__()
+gtk.IconView.__init__(self)
+Draggable.__init__(self, self)
 self.active_list = []
 self.popupmenu = ContextMenu
 self.add_events(gtk.gdk.LEAVE_NOTIFY_MASK)
@@ -700,12 +717,6 @@
 SearchBox.connect(search, lambda *args: self.queue_draw())
 SearchBox.connect(clear, lambda *args: self.queue_draw())
 
-self.targets = [(text/plain, 0, TYPE_TARGET_TEXT),
-(text/uri-list, 0, TYPE_TARGET_URI),]
-self.drag_source_set( gtk.gdk.BUTTON1_MASK, self.targets,
-gtk.gdk.ACTION_COPY)
-self.connect(drag_data_get, self.on_drag_data_get)
-
 def _set_model_in_thread(self, items):
 
 A threaded which generates pixbufs and emblems for a list of events.
@@ -751,7 +762,7 @@
 if uri.startswith(file://):
 unquoted_uri = urllib.unquote(uri)
 if os.path.exists(unquoted_uri[7:]):
-selection.set_uris([uri])
+selection.set_uris([uri]) 
 
 def on_button_press(self, widget, event):
 if event.button == 3:
@@ -1060,7 +1071,7 @@
 pass
 
 
-class TimelineView(gtk.TreeView):
+class TimelineView(gtk.TreeView, Draggable):
 child_width = _TimelineRenderer.width

[Gnome-zeitgeist] [Bug 680653] Re: Pinning feature is broken

2010-11-25 Thread Stefano Candori
** Branch unlinked: lp:~cando/gnome-activity-journal/fix-pinning

-- 
Pinning feature is broken
https://bugs.launchpad.net/bugs/680653
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.

Status in GNOME Activity Journal: In Progress

Bug description:
When i try to pin an item i get this error/warning and the item isn't pinned:

/home/cando/Scrivania/gnome-activity-journal/src/common.py:752: 
DeprecationWarning: object.__new__() takes no parameters
  GIO_FILES[subj] = object.__new__(classtype, *args, **kwargs)
/home/cando/Scrivania/gnome-activity-journal/src/activity_widgets.py:279: 
GtkWarning: gtk_box_pack: assertion `child-parent == NULL' failed
  self.pack_end(hbox)



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Merge] lp:~cando/gnome-activity-journal/dnd-pinning into lp:gnome-activity-journal

2010-11-25 Thread Stefano Candori
The proposal to merge lp:~cando/gnome-activity-journal/dnd-pinning into 
lp:gnome-activity-journal has been updated.

Status: Needs review = Merged
-- 
https://code.launchpad.net/~cando/gnome-activity-journal/dnd-pinning/+merge/41866
Your team GNOME Zeitgeist Team is requested to review the proposed merge of 
lp:~cando/gnome-activity-journal/dnd-pinning into lp:gnome-activity-journal.

___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitge...@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 680653] Re: Pinning feature is broken

2010-11-25 Thread Stefano Candori
** Changed in: gnome-activity-journal
   Status: In Progress = Fix Committed

-- 
Pinning feature is broken
https://bugs.launchpad.net/bugs/680653
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.

Status in GNOME Activity Journal: Fix Committed

Bug description:
When i try to pin an item i get this error/warning and the item isn't pinned:

/home/cando/Scrivania/gnome-activity-journal/src/common.py:752: 
DeprecationWarning: object.__new__() takes no parameters
  GIO_FILES[subj] = object.__new__(classtype, *args, **kwargs)
/home/cando/Scrivania/gnome-activity-journal/src/activity_widgets.py:279: 
GtkWarning: gtk_box_pack: assertion `child-parent == NULL' failed
  self.pack_end(hbox)



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitge...@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Merge] lp:~cando/gnome-activity-journal/fix-pinning into lp:gnome-activity-journal

2010-11-24 Thread Stefano Candori
Stefano Candori has proposed merging 
lp:~cando/gnome-activity-journal/fix-pinning into lp:gnome-activity-journal.

Requested reviews:
  GNOME Zeitgeist Team (gnome-zeitgeist)
Related bugs:
  #680653 Pinning feature is broken
  https://bugs.launchpad.net/bugs/680653


In this branch I've fixed bug #680653.
-- 
https://code.launchpad.net/~cando/gnome-activity-journal/fix-pinning/+merge/41754
Your team GNOME Zeitgeist Team is requested to review the proposed merge of 
lp:~cando/gnome-activity-journal/fix-pinning into lp:gnome-activity-journal.
=== modified file 'src/activity_widgets.py'
--- src/activity_widgets.py	2010-11-11 16:43:36 +
+++ src/activity_widgets.py	2010-11-24 15:57:57 +
@@ -172,7 +172,7 @@
 self.day = day
 if pinbox in self.box.get_children():
 self.box.remove(pinbox)
-if (day.date - datetime.date.today()) == 0:
+if (day.date - datetime.date.today()) == datetime.timedelta(days=0):
 self.box.pack_start(pinbox, False, False)
 self.box.reorder_child(pinbox, 0)
 self.daylabel.set_date(day.date)
@@ -1254,6 +1254,8 @@
 self.event_templates, self.do_set,
 self.event_timerange,
 StorageState.Any, 1, ResultType.MostRecentSubjects)
+else:
+self.do_set([])
 
 def do_set(self, event_ids):
 objs = []

=== modified file 'src/supporting_widgets.py'
--- src/supporting_widgets.py	2010-11-09 20:25:08 +
+++ src/supporting_widgets.py	2010-11-24 15:57:57 +
@@ -917,7 +917,7 @@
 uri = obj.uri
 uri = unicode(uri)
 isbookmarked = bookmarker.is_bookmarked(uri)
-if isbookmarked:
+if isbookmarked:   
 bookmarker.unbookmark(uri)
 
 def do_delete(self, menuitem):

___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitge...@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 680653] Re: Pinning feature is broken

2010-11-24 Thread Stefano Candori
** Branch linked: lp:~cando/gnome-activity-journal/fix-pinning

-- 
Pinning feature is broken
https://bugs.launchpad.net/bugs/680653
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.

Status in GNOME Activity Journal: In Progress

Bug description:
When i try to pin an item i get this error/warning and the item isn't pinned:

/home/cando/Scrivania/gnome-activity-journal/src/common.py:752: 
DeprecationWarning: object.__new__() takes no parameters
  GIO_FILES[subj] = object.__new__(classtype, *args, **kwargs)
/home/cando/Scrivania/gnome-activity-journal/src/activity_widgets.py:279: 
GtkWarning: gtk_box_pack: assertion `child-parent == NULL' failed
  self.pack_end(hbox)



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitge...@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp


[Gnome-zeitgeist] [Bug 680653] [NEW] Pinning feature is broken

2010-11-23 Thread Stefano Candori
Public bug reported:

When i try to pin an item i get this error/warning and the item isn't
pinned:

/home/cando/Scrivania/gnome-activity-journal/src/common.py:752: 
DeprecationWarning: object.__new__() takes no parameters
  GIO_FILES[subj] = object.__new__(classtype, *args, **kwargs)
/home/cando/Scrivania/gnome-activity-journal/src/activity_widgets.py:279: 
GtkWarning: gtk_box_pack: assertion `child-parent == NULL' failed
  self.pack_end(hbox)

** Affects: gnome-activity-journal
 Importance: Undecided
 Assignee: Stefano Candori (cando)
 Status: In Progress

** Changed in: gnome-activity-journal
 Assignee: (unassigned) = Stefano Candori (cando)

** Changed in: gnome-activity-journal
   Status: New = In Progress

-- 
Pinning feature is broken
https://bugs.launchpad.net/bugs/680653
You received this bug notification because you are a member of GNOME
Zeitgeist Team, which is the registrant for GNOME Activity Journal.

Status in GNOME Activity Journal: In Progress

Bug description:
When i try to pin an item i get this error/warning and the item isn't pinned:

/home/cando/Scrivania/gnome-activity-journal/src/common.py:752: 
DeprecationWarning: object.__new__() takes no parameters
  GIO_FILES[subj] = object.__new__(classtype, *args, **kwargs)
/home/cando/Scrivania/gnome-activity-journal/src/activity_widgets.py:279: 
GtkWarning: gtk_box_pack: assertion `child-parent == NULL' failed
  self.pack_end(hbox)



___
Mailing list: https://launchpad.net/~gnome-zeitgeist
Post to : gnome-zeitgeist@lists.launchpad.net
Unsubscribe : https://launchpad.net/~gnome-zeitgeist
More help   : https://help.launchpad.net/ListHelp