From mboxrd@z Thu Jan 1 00:00:00 1970 From: Henning Weiss Subject: [PATCH] org-mobile agenda title Date: Wed, 25 Jan 2012 22:21:16 +0100 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=20cf300e56ad115c5c04b760d871 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:57105) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqAHP-0007kT-98 for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 16:21:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RqAHN-0003Sn-HB for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 16:21:19 -0500 Received: from mail-yw0-f41.google.com ([209.85.213.41]:47002) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqAHN-0003Sh-EH for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 16:21:17 -0500 Received: by yhpp34 with SMTP id p34so2900026yhp.0 for ; Wed, 25 Jan 2012 13:21:16 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --20cf300e56ad115c5c04b760d871 Content-Type: text/plain; charset=ISO-8859-1 Hi everyone, I have been working on a patch for mobileorg-androidthat improves the displaying of the generated agendas.org file. The problem I'm having is that TITLE: fields of all entries are generated by concatenating the name and the matching criterion of an entry. The issue is discussed in further details here . I have tried to create a patch that removes the match criterions from the generated title entry and attached it below. This could potentially break other org-mobile clients and might not be the best way to solve this. What would it take to include this in orgmode? best regards, Henning Weiss diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el index 541ccc8..82320c7 100644 --- a/lisp/org-mobile.el +++ b/lisp/org-mobile.el @@ -592,7 +592,7 @@ The table of checksums is written to the file mobile-checksums." (cons (list 'org-agenda-title-append (concat "KEYS=" gkey "#" (number-to-string (setq cnt (1+ cnt))) - " TITLE: " gdesc " " match "")) + " TITLE: " gdesc "")) settings)) (push (list type match settings) new))))) (and new (list "X" "SUMO" (reverse new) --20cf300e56ad115c5c04b760d871 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi everyone,

I have been working on a patch for mobileorg-android tha= t improves the displaying of the generated a= gendas.org file. The problem I'm having is that TITLE: fields of al= l entries are generated by=A0concatenating=A0the name and the matching crit= erion of an entry. The issue is discussed in further details=A0

I have tried to create a patch that removes the match c= riterions from the generated title entry and attached it below. This could = potentially break other org-mobile clients and might not be the best way to= solve this.

What would it take to include this in orgmode?

best regards,
Henning Weiss

=
diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
index 541ccc8..82320c7 100644
--- a/lisp/org-mobile.el
= +++ b/lisp/org-mobile.el
@@ -592,7 +592,7 @@ The table of checksu= ms is written to the file mobile-checksums."
=A0 (cons (list 'org= -agenda-title-append
=A0 = =A0 =A0(concat "<after>KEYS=3D" gkey "#" (number= -to-string
=A0 =A0 =A0 =A0(setq cnt (1+ cnt)))
- = =A0 =A0" TITLE: " gdesc " " match "</after>&= quot;))
+ =A0 =A0" TITLE: " gdesc "</after>"))=
=A0 = =A0 =A0 =A0settings))
=A0 =A0(push (list type match settings) new)))))
=A0 =A0 =A0(and new (list "X" "SUMO" (reverse new= )
--20cf300e56ad115c5c04b760d871--