From mboxrd@z Thu Jan 1 00:00:00 1970 From: filebat Mark Subject: when export org-mode to html, don't export entries of TODO, CANCELED Date: Fri, 18 Nov 2011 08:22:23 +0800 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=e89a8f3ba0dbc01bac04b1f754b6 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:48553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRCDq-0008NQ-E4 for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 19:22:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RRCDp-0000OI-G4 for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 19:22:26 -0500 Received: from mail-gx0-f169.google.com ([209.85.161.169]:63481) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRCDp-0000OE-Db for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 19:22:25 -0500 Received: by ggnq1 with SMTP id q1so2219996ggn.0 for ; Thu, 17 Nov 2011 16:22:24 -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 Cc: Denny Zhang --e89a8f3ba0dbc01bac04b1f754b6 Content-Type: text/plain; charset=ISO-8859-1 hi emacsers Exporting org-mode's entries to html is a fantastic way for knowledge sharing! Usually entries of "TODO" "HALF" "DELEGATE" "CANCELED" "DEFERRED" are incomplete/immature knowledge. Thus, I don't want to export them. Furthermore, after they are marked as "DONE", I'd like to export them. Any idea for how to do this? Note that org-export-exclude-tags doesn't help us, at my first glance. Draft solution: After checking the implementation of org-mode for this part, I found org-export-handle-export-tags function. It determines what to be excluded when exporting, by search regexp of :\\(TAG1\\|TAG2\\|...\\): in entries' title. Thus I override org-export-handle-export-tags, by search regexp of \\(TAG1\\|TAG2\\|...\\) with leading/tailing colon removed. It's ugly but it works. So my open question is what's the better solution? http://hi.baidu.com/filebat/blog/item/6406a9fd6f79fd0b08244d7d.html --e89a8f3ba0dbc01bac04b1f754b6 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
hi emacsers

<= td style=3D"word-wrap: break-word; word-break: break-all; visibility: visib= le !important; zoom: 1 !important; filter: none; font-size: 12px; line-heig= ht: 18px; ">
<= pre style=3D"color: rgb(51, 51, 51); ">Exporting org-mode's entries to = html is a fantastic way for knowledge sharing! Usually entries of "TODO" "HALF" "DELEGATE" &= quot;CANCELED" "DEFERRED" are incomplete/immature knowledge. Thus, I don't want to export them. Furthermore, after they are marked a= s "DONE", I'd like to export them. Any idea for how to do this? Note that org-export-exclude-tags doesn't help us, at my first glance. Draft solution: After checking the implementation of org-mode for this part, I found org-ex= port-handle-export-tags function. It determines what to be excluded when exporting, by search regexp of :\\(T= AG1\\|TAG2\\|...\\): in entries' title. Thus I override org-export-handle-export-tags, by search regexp of \\(TAG1\= \|TAG2\\|...\\) with leading/tailing colon removed. It's ugly but it works. So my open question is what's the better solution?

http://hi.baidu.com/fileb= at/blog/item/6406a9fd6f79fd0b08244d7d.html



--e89a8f3ba0dbc01bac04b1f754b6-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: when export org-mode to html, don't export entries of TODO, CANCELED Date: Thu, 17 Nov 2011 20:46:30 -0500 Message-ID: <878vnei4nd.fsf@norang.ca> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:54543) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRDXL-0003wF-8t for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 20:46:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RRDXK-0005sb-2f for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 20:46:39 -0500 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:25214) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRDXK-0005sU-0h for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 20:46:38 -0500 In-Reply-To: (filebat Mark's message of "Fri, 18 Nov 2011 08:22:23 +0800") 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: filebat Mark Cc: Denny Zhang , emacs-orgmode@gnu.org filebat Mark writes: > Exporting org-mode's entries to html is a fantastic way for knowledge > sharing! > > Usually entries of "TODO" "HALF" "DELEGATE" "CANCELED" "DEFERRED" are > incomplete/immature knowledge. Thus, I don't want to export > them. Furthermore, after they are marked as "DONE", I'd like to export > them. > > Any idea for how to do this? Note that org-export-exclude-tags > doesn't help us, at my first glance. > > > Draft solution: > After checking the implementation of org-mode for this part, I found > org-export-handle-export-tags function. It determines what to be > excluded when exporting, by search regexp of :\\(TAG1\\|TAG2\\|...\\): > in entries' title. > > Thus I override org-export-handle-export-tags, by search regexp of \\(TAG1\\|TAG2\\|...\\) with leading/tailing colon removed. > > It's ugly but it works. > So my open question is what's the better solution? Hi, Try adding this to your org file and then exporting #+OPTIONS: tasks:("DONE") todo:nil Regards, Bernt From mboxrd@z Thu Jan 1 00:00:00 1970 From: filebat Mark Subject: Re: when export org-mode to html, don't export entries of TODO, CANCELED Date: Fri, 18 Nov 2011 10:10:53 +0800 Message-ID: References: <878vnei4nd.fsf@norang.ca> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=e89a8f50282ac505e404b1f8d80d Return-path: Received: from eggs.gnu.org ([140.186.70.92]:39888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRDup-0006rU-Ev for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 21:10:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RRDuo-0001bk-6y for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 21:10:55 -0500 Received: from mail-gy0-f169.google.com ([209.85.160.169]:50693) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRDuo-0001bf-2d for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 21:10:54 -0500 Received: by ghrr17 with SMTP id r17so6995ghr.0 for ; Thu, 17 Nov 2011 18:10:53 -0800 (PST) In-Reply-To: <878vnei4nd.fsf@norang.ca> 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: Bernt Hansen Cc: Denny Zhang , emacs-orgmode@gnu.org --e89a8f50282ac505e404b1f8d80d Content-Type: text/plain; charset=ISO-8859-1 Hi Bernt I am not sure whether I get you correctly. The behavior of [#+OPTIONS: tasks:("DONE") todo:nil] looks like (setq org-export-with-todo-keywords nil). My purpose is not to export entries of "TODO", "CANCELED", etc, instead of only strings of "TODO", "CANCELED". On Fri, Nov 18, 2011 at 9:46 AM, Bernt Hansen wrote: > filebat Mark writes: > > > Exporting org-mode's entries to html is a fantastic way for knowledge > > sharing! > > > > Usually entries of "TODO" "HALF" "DELEGATE" "CANCELED" "DEFERRED" are > > incomplete/immature knowledge. Thus, I don't want to export > > them. Furthermore, after they are marked as "DONE", I'd like to export > > them. > > > > Any idea for how to do this? Note that org-export-exclude-tags > > doesn't help us, at my first glance. > > > > > > Draft solution: > > After checking the implementation of org-mode for this part, I found > > org-export-handle-export-tags function. It determines what to be > > excluded when exporting, by search regexp of :\\(TAG1\\|TAG2\\|...\\): > > in entries' title. > > > > Thus I override org-export-handle-export-tags, by search regexp of > \\(TAG1\\|TAG2\\|...\\) with leading/tailing colon removed. > > > > It's ugly but it works. > > So my open question is what's the better solution? > > Hi, > > Try adding this to your org file and then exporting > > #+OPTIONS: tasks:("DONE") todo:nil > > Regards, > Bernt > -- Thanks & Regards Denny Zhang --e89a8f50282ac505e404b1f8d80d Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Hi Bernt

I am not sure whether I get you correctly.

The b= ehavior of [#+OPTIONS: tasks:("DONE") todo:nil] looks like (setq = org-export-with-todo-keywords nil).

My purpose is not to export entr= ies of "TODO", "CANCELED", etc, instead of only strings= of "TODO", "CANCELED".



On Fri, Nov 18, 2011 at 9:46 AM, Ber= nt Hansen <bernt@no= rang.ca> wrote:
filebat Mark <filebat.mark@gmail.com> writes:

> Exporting org-mode's entries to html is a fantastic way for knowle= dge
> sharing!
>
> Usually entries of "TODO" "HALF" "DELEGATE&qu= ot; "CANCELED" "DEFERRED" are
> incomplete/immature knowledge. =A0Thus, I don't want to export
> them. Furthermore, after they are marked as "DONE", I'd = like to export
> them.
>
> Any idea for how to do this? =A0Note that org-export-exclude-tags
> doesn't help us, at my first glance.
>
>
> Draft solution:
> After checking the implementation of org-mode for this part, I found > org-export-handle-export-tags function. =A0It determines what to be > excluded when exporting, by search regexp of :\\(TAG1\\|TAG2\\|...\\):=
> in entries' title.
>
> Thus I override org-export-handle-export-tags, by search regexp of \\(= TAG1\\|TAG2\\|...\\) with leading/tailing colon removed.
>
> It's ugly but it works.
> So my open question is what's the better solution?

Hi,

Try adding this to your org file and then exporting

#+OPTIONS: tasks:("DONE") todo:nil

Regards,
Bernt



--
Thanks & Regards
Denny Zhang

--e89a8f50282ac505e404b1f8d80d-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: when export org-mode to html, don't export entries of TODO, CANCELED Date: Thu, 17 Nov 2011 21:59:49 -0500 Message-ID: <87zkfugmoq.fsf@norang.ca> References: <878vnei4nd.fsf@norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:47998) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RREgH-0004jF-Fn for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 21:59:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RREgG-0001sh-1G for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 21:59:57 -0500 Received: from mho-03-ewr.mailhop.org ([204.13.248.66]:44275 helo=mho-01-ewr.mailhop.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RREgF-0001sY-Ql for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 21:59:56 -0500 In-Reply-To: (filebat Mark's message of "Fri, 18 Nov 2011 10:10:53 +0800") 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: filebat Mark Cc: Denny Zhang , emacs-orgmode@gnu.org filebat Mark writes: > Hi Bernt > > I am not sure whether I get you correctly. > > The behavior of [#+OPTIONS: tasks:("DONE") todo:nil] looks like (setq > org-export-with-todo-keywords nil). > > My purpose is not to export entries of "TODO", "CANCELED", etc, > instead of only strings of "TODO", "CANCELED". This should export all headings that have no todo keyword AND headings with the DONE keyword. All other keywords are skipped which I thought was what you were trying to accomplish. I tested it with this org file: http://norang.ca/tmp/scratch.org which exports to http://norang.ca/tmp/scratch.html -Bernt > > On Fri, Nov 18, 2011 at 9:46 AM, Bernt Hansen > wrote: > > filebat Mark writes: >=20=20=20=20 > > Exporting org-mode's entries to html is a fantastic way for > knowledge > > sharing! > > > > Usually entries of "TODO" "HALF" "DELEGATE" "CANCELED" > "DEFERRED" are > > incomplete/immature knowledge. =C2=A0Thus, I don't want to export > > them. Furthermore, after they are marked as "DONE", I'd like to > export > > them. > > > > Any idea for how to do this? =C2=A0Note that org-export-exclude-tags > > doesn't help us, at my first glance. > > > > > > Draft solution: > > After checking the implementation of org-mode for this part, I > found > > org-export-handle-export-tags function. =C2=A0It determines what to > be > > excluded when exporting, by search regexp of :\\(TAG1\\|TAG2\\ > |...\\): > > in entries' title. > > > > Thus I override org-export-handle-export-tags, by search regexp > of \\(TAG1\\|TAG2\\|...\\) with leading/tailing colon removed. > > > > It's ugly but it works. > > So my open question is what's the better solution? >=20=20=20=20 > Hi, >=20=20=20=20 > Try adding this to your org file and then exporting >=20=20=20=20 > #+OPTIONS: tasks:("DONE") todo:nil >=20=20=20=20 > Regards, > Bernt > > > > > -- > Thanks & Regards > > Denny Zhang From mboxrd@z Thu Jan 1 00:00:00 1970 From: markfilebat126 Subject: Re: when export org-mode to html, don't export entries of TODO, CANCELED Date: Fri, 18 Nov 2011 11:18:39 +0800 Message-ID: <871ut6yv74.fsf@126.com> References: <878vnei4nd.fsf@norang.ca> <87zkfugmoq.fsf@norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:56191) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RREzG-0006fE-O2 for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 22:19:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RREzF-0004Qy-1X for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 22:19:34 -0500 Received: from m50-112.126.com ([123.125.50.112]:35476) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RREzD-0004Kf-WA for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 22:19:32 -0500 In-Reply-To: <87zkfugmoq.fsf@norang.ca> (Bernt Hansen's message of "Thu, 17 Nov 2011 21:59:49 -0500") 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: Bernt Hansen Cc: filebat Mark , emacs-orgmode@gnu.org Bernt Hansen writes: Yes, Bernt, this is exactly what I want. I will dig into why my org-mode behavior is different from yours, when I return home. ,----------- my environment | GNU Emacs 23.2.1 (x86_64-pc-linux-gnu, GTK+ Version 2.20.1) of 2010-09-02= on pluot, modified by Debian | Org-mode version 7.5 `----------- Thanks a lot, Bernt! Denny > filebat Mark writes: > >> Hi Bernt >> >> I am not sure whether I get you correctly. >> >> The behavior of [#+OPTIONS: tasks:("DONE") todo:nil] looks like (setq >> org-export-with-todo-keywords nil). >> >> My purpose is not to export entries of "TODO", "CANCELED", etc, >> instead of only strings of "TODO", "CANCELED". > > This should export all headings that have no todo keyword AND headings > with the DONE keyword. All other keywords are skipped which I thought > was what you were trying to accomplish. > > I tested it with this org file: http://norang.ca/tmp/scratch.org > which exports to http://norang.ca/tmp/scratch.html > > -Bernt > >> >> On Fri, Nov 18, 2011 at 9:46 AM, Bernt Hansen >> wrote: >> >> filebat Mark writes: >>=20=20=20=20 >> > Exporting org-mode's entries to html is a fantastic way for >> knowledge >> > sharing! >> > >> > Usually entries of "TODO" "HALF" "DELEGATE" "CANCELED" >> "DEFERRED" are >> > incomplete/immature knowledge. =C2=A0Thus, I don't want to export >> > them. Furthermore, after they are marked as "DONE", I'd like to >> export >> > them. >> > >> > Any idea for how to do this? =C2=A0Note that org-export-exclude-ta= gs >> > doesn't help us, at my first glance. >> > >> > >> > Draft solution: >> > After checking the implementation of org-mode for this part, I >> found >> > org-export-handle-export-tags function. =C2=A0It determines what to >> be >> > excluded when exporting, by search regexp of :\\(TAG1\\|TAG2\\ >> |...\\): >> > in entries' title. >> > >> > Thus I override org-export-handle-export-tags, by search regexp >> of \\(TAG1\\|TAG2\\|...\\) with leading/tailing colon removed. >> > >> > It's ugly but it works. >> > So my open question is what's the better solution? >>=20=20=20=20 >> Hi, >>=20=20=20=20 >> Try adding this to your org file and then exporting >>=20=20=20=20 >> #+OPTIONS: tasks:("DONE") todo:nil >>=20=20=20=20 >> Regards, >> Bernt >> >> >> >> >> -- >> Thanks & Regards >> >> Denny Zhang > --=20 Denny Zhang =E7=94=B5=E8=AF=9D: 18621908421 =E9=82=AE=E7=AE=B1: markfilebat@126.com =E5=BE=AE=E5=8D=9A: http://weibo.com/1686664253 =E5=8D=9A=E5=AE=A2: http://hi.baidu.com/filebat =E4=BD=A0=E6=83=B3=E8=A6=81=E7=AE=A1=E7=90=86=E7=9A=84=E4=BA=8B=E6=83=85=E8= =B6=8A=E5=B9=B3=E6=B7=A1=E6=97=A0=E5=A5=87=EF=BC=8C=E4=BD=A0=E7=9A=84=E7=B3= =BB=E7=BB=9F=E5=B0=B1=E9=9C=80=E8=A6=81=E8=B6=8A=E5=A4=8D=E6=9D=82=E6=89=8D= =E8=83=BD=E6=8A=8A=E5=AE=83=E4=BB=AC=E7=AE=A1=E7=90=86=E5=A5=BD=E3=80=82 =E2=97=8F=E2=96=88=E3=80=93=E2=96=88=E2=96=88=E2=96=84=E2=96=84=E2=96=84=E2= =96=84=E2=96=84=E2=96=84 =E2=97=8F=E2=97=8F=E2=97=8F=E2=97=8F=E2=97=8F=E2= =97=8F---- =E2=96=84=E2=96=85=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2= =96=85=E2=96=84=E2=96=83=E2=96=82 =E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2= =96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88 =E2=97=A5=E2=8A=99=E2=96=B2=E2=8A=99=E2=96=B2=E2=8A=99=E2=96=B2=E2=8A=99=E2= =96=B2=E2=8A=99=E2=96=B2=E2=8A=99=E2=96=B2=E2=97=A4 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: when export org-mode to html, don't export entries of TODO, CANCELED Date: Thu, 17 Nov 2011 22:46:21 -0500 Message-ID: <23856.1321587981@alphaville.dokosmarshall.org> References: <878vnei4nd.fsf@norang.ca> <87zkfugmoq.fsf@norang.ca> <871ut6yv74.fsf@126.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:57046) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRFPH-00018p-SW for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 22:46:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RRFPG-0008BG-Jk for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 22:46:27 -0500 Received: from g5t0009.atlanta.hp.com ([15.192.0.46]:29527) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRFPG-0008B8-Ed for emacs-orgmode@gnu.org; Thu, 17 Nov 2011 22:46:26 -0500 In-Reply-To: Message from markfilebat126 of "Fri, 18 Nov 2011 11:18:39 +0800." <871ut6yv74.fsf@126.com> 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: markfilebat126 Cc: Bernt Hansen , nicholas.dokos@hp.com, emacs-orgmode@gnu.org, filebat Mark markfilebat126 wrote: > Bernt Hansen writes: > > Yes, Bernt, this is exactly what I want. > I will dig into why my org-mode behavior is different from yours, when I > return home. > > ,----------- my environment > | GNU Emacs 23.2.1 (x86_64-pc-linux-gnu, GTK+ Version 2.20.1) of 2010-09-02 on pluot, modified by Debian > | Org-mode version 7.5 > `----------- > release 7.5 was done on March 7, 2011. The tasks option was added to org-mode on March 30, 2011. So you will need to upgrade to take advantage of it. Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Denny Subject: Re: when export org-mode to html, don't export entries of TODO, CANCELED Date: Fri, 18 Nov 2011 13:05:06 +0800 Message-ID: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: base64 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:33253) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRGcW-0007hx-4t for emacs-orgmode@gnu.org; Fri, 18 Nov 2011 00:04:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RRGcU-0002gF-Pp for emacs-orgmode@gnu.org; Fri, 18 Nov 2011 00:04:12 -0500 Received: from m50-110.126.com ([123.125.50.110]:41152) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RRGcT-0002fG-MY for emacs-orgmode@gnu.org; Fri, 18 Nov 2011 00:04:10 -0500 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: nicholas.dokos@hp.com Cc: Bernt Hansen , emacs-orgmode@gnu.org, filebat Mark Z290IGl077yMIHRoYW5rcyBhbGwKCk5pY2sgRG9rb3MgPG5pY2hvbGFzLmRva29zQGhwLmNvbT7n vJblhpnvvJoKCj5tYXJrZmlsZWJhdDEyNiA8bWFya2ZpbGViYXRAMTI2LmNvbT4gd3JvdGU6Cj4K Pj4gQmVybnQgSGFuc2VuIDxiZXJudEBub3JhbmcuY2E+IHdyaXRlczoKPj4gCj4+IFllcywgQmVy bnQsIHRoaXMgaXMgZXhhY3RseSB3aGF0IEkgd2FudC4KPj4gSSB3aWxsIGRpZyBpbnRvIHdoeSBt eSBvcmctbW9kZSBiZWhhdmlvciBpcyBkaWZmZXJlbnQgZnJvbSB5b3Vycywgd2hlbiBJCj4+IHJl dHVybiBob21lLgo+PiAKPj4gLC0tLS0tLS0tLS0tIG15IGVudmlyb25tZW50Cj4+IHwgR05VIEVt YWNzIDIzLjIuMSAoeDg2XzY0LXBjLWxpbnV4LWdudSwgR1RLKyBWZXJzaW9uIDIuMjAuMSkgb2Yg MjAxMC0wOS0wMiBvbiBwbHVvdCwgbW9kaWZpZWQgYnkgRGViaWFuCj4+IHwgT3JnLW1vZGUgdmVy c2lvbiA3LjUKPj4gYC0tLS0tLS0tLS0tCj4+IAo+Cj5yZWxlYXNlIDcuNSB3YXMgZG9uZSBvbiBN YXJjaCA3LCAyMDExLiBUaGUgdGFza3Mgb3B0aW9uIHdhcyBhZGRlZCB0byBvcmctbW9kZQo+b24g TWFyY2ggMzAsIDIwMTEuIFNvIHlvdSB3aWxsIG5lZWQgdG8gdXBncmFkZSB0byB0YWtlIGFkdmFu dGFnZSBvZiBpdC4KPgo+Tmljawo=