From owner-freebsd-gnome@FreeBSD.ORG Tue Dec 18 04:39:11 2007 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42D0616A419 for ; Tue, 18 Dec 2007 04:39:11 +0000 (UTC) (envelope-from lihong.chen@gmail.com) Received: from ro-out-1112.google.com (ro-out-1112.google.com [72.14.202.176]) by mx1.freebsd.org (Postfix) with ESMTP id 3D22B13C45A for ; Tue, 18 Dec 2007 04:39:10 +0000 (UTC) (envelope-from lihong.chen@gmail.com) Received: by ro-out-1112.google.com with SMTP id m6so445405roe.13 for ; Mon, 17 Dec 2007 20:39:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding:sender; bh=QcFmoh444xe9w6MkmnpNOJxjZJ1nHKzZNEX52wjVdCA=; b=auE2g6ppDOw7g/B2QyyQ3y5vZUHiT0pJ/vn/H3bukmDO44BwE/mA7QTfs7WE5kOmuvmcm+iQTGFSmxhLrGpKSJzRN3RJFbpMR6x7nEmBFQ86ATMl3gT73ehR+XmTXmHMJntI6FIKZukgvBkfzmW20921dvc27au7evXhkD4i47k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding:sender; b=gOCZ6fB9/O0wcLOeJ/aIV+5yPQLYUCXcxnbCu5CJY2y0u2cydKFHIm1JsjtOgfLlGjxj5bHsnGnQkBiBOv5EH6nwhTqiw77G9PV1mr6uXHAkyLUTZe4jRoONOAaaGbkIq4dZJj+osCApY73eIPxKVjpjHKaojpLsy/rHKXvTnRE= Received: by 10.115.95.1 with SMTP id x1mr4469701wal.94.1197951802890; Mon, 17 Dec 2007 20:23:22 -0800 (PST) Received: from ?192.168.10.84? ( [59.125.13.44]) by mx.google.com with ESMTPS id q18sm17606384pog.2007.12.17.20.23.21 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 17 Dec 2007 20:23:22 -0800 (PST) From: "Eric L. Chen" To: freebsd-gnome@freebsd.org Content-Type: text/plain Date: Tue, 18 Dec 2007 12:23:17 +0800 Message-Id: <1197951797.57414.4.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.12.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Sender: "Eric L. Chen" Subject: Cannot add file into sepentine. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Dec 2007 04:39:11 -0000 Hi, I cannot add any file into sepentine's playlist. Here: "/usr/local/lib/python2.5/site-packages/serpentine/plugins/plugfilter_plparser.py", line 39, in filter_location p.connect("entry", self.__on_pl_entry, hints_list) TypeError: : unknown signal name: entry I did a workaround for now. If you cannot wait official fix. ----------------------------------- diff -urN ports/sysutils/serpentine/files/patch-serpentine::plugins::plugfilter_plparser.py ports/sysutils/serpentine/files/patch-serpentine::plugins::plugfilter_plparser.py --- ports/sysutils/serpentine/files/patch-serpentine::plugins::plugfilter_plparser.py 1970-01-01 08:00:00.000000000 +0800 +++ ports/sysutils/serpentine/files/patch-serpentine::plugins::plugfilter_plparser.py 2007-12-18 12:14:07.000000000 +0800 @@ -0,0 +1,11 @@ +--- serpentine/plugins/plugfilter_plparser.py 2007-12-18 12:10:28.000000000 +0800 ++++ serpentine/plugins/plugfilter_plparser.py 2007-12-18 12:10:50.000000000 +0800 +@@ -36,7 +36,7 @@ + def filter_location (self, location): + hints_list = [] + p = plparser.Parser() +- p.connect("entry", self.__on_pl_entry, hints_list) ++ p.connect("entry-parsed", self.__on_pl_entry, hints_list) + if p.parse(location, False) == plparser.PARSER_RESULT_SUCCESS: + return hints_list +