From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: custom IDs not exported Date: Sun, 12 Jun 2011 00:42:31 +0200 Message-ID: <87hb7wq9bc.wl%n142857@gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38794) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QVWt2-0000d5-HM for emacs-orgmode@gnu.org; Sat, 11 Jun 2011 18:42:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QVWt1-00062Z-N8 for emacs-orgmode@gnu.org; Sat, 11 Jun 2011 18:42:36 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:54153) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QVWt1-00062N-It for emacs-orgmode@gnu.org; Sat, 11 Jun 2011 18:42:35 -0400 Received: by wwb39 with SMTP id 39so3169830wwb.30 for ; Sat, 11 Jun 2011 15:42:34 -0700 (PDT) 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: org-mode Mailinglist Cc: nick@dokosmarshall.org Commit 438536f6157794101ce0957e39cad6bf70580751 (=E2=80=9EChange undersco= res to hyphens in section labels=E2=80=9C) broke the export of CUSTOM_IDs. Take for instance this file: ----------------------- #+TITLE: Cosas por hacer * Programas :PROPERTIES: :CUSTOM_ID: programas :END: ** emacs :PROPERTIES: :CUSTOM_ID: emacs :END: Editor de textos ------------------------ When exporting (C-c C-e H) you get this table of contents: ------------------------ ------------------------- The first one is correct because it is first-level. All non-first-level g= et #sec-NUMBERS instead of the custom ID. Not only the table of contents; the header's ID is also wrong:

1.1 emacs

Tested with current org-mode.=20 Greetings, Daniel From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Sat, 11 Jun 2011 23:12:26 -0400 Message-ID: <10721.1307848346@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:56925) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QVb6s-0005AE-Iy for emacs-orgmode@gnu.org; Sat, 11 Jun 2011 23:13:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QVb6r-00031B-Gh for emacs-orgmode@gnu.org; Sat, 11 Jun 2011 23:13:10 -0400 Received: from vms173003pub.verizon.net ([206.46.173.3]:46885) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QVb6r-000313-DQ for emacs-orgmode@gnu.org; Sat, 11 Jun 2011 23:13:09 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173003.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LMN00H6OQ9F6PD0@vms173003.mailsrvcs.net> for emacs-orgmode@gnu.org; Sat, 11 Jun 2011 22:13:04 -0500 (CDT) In-reply-to: Message from Daniel Clemente of "Sun, 12 Jun 2011 00:42:31 +0200." <87hb7wq9bc.wl%n142857@gmail.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: Daniel Clemente Cc: nicholas.dokos@hp.com, org-mode Mailinglist Daniel Clemente wrote: > > Commit 438536f6157794101ce0957e39cad6bf70580751 (=E2=80=9EChange undersco= > res to hyphens in section labels=E2=80=9C) broke the export of CUSTOM_IDs. > > Take for instance this file: > > ----------------------- > #+TITLE: Cosas por hacer > > * Programas > :PROPERTIES: > :CUSTOM_ID: programas > :END: > > ** emacs > :PROPERTIES: > :CUSTOM_ID: emacs > :END: > Editor de textos > > ------------------------ > > > When exporting (C-c C-e H) you get this table of contents: > > ------------------------ >
> >
> > ------------------------- > > The first one is correct because it is first-level. All non-first-level g= > et #sec-NUMBERS instead of the custom ID. > > Not only the table of contents; the header's ID is also wrong: >

ction-number-3">1.1 emacs

> > > Tested with current org-mode.=20 > I was afraid that other exporters might break because of this. Apologies for the inconvenience. And, btw, thanks for the test case. I have a minimal patch that I think fixes this problem, but there are other underscores used in various places in org-html.el so there might be additional problems. I'd appreciate it if you (and/or others) test it and report not only on this problem but on any other problems you find. Thanks, Nick diff --git a/lisp/org-html.el b/lisp/org-html.el index afc6a77..b5d371f 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -1395,7 +1395,7 @@ lang=\"%s\" xml:lang=\"%s\"> (setq txt (replace-match "" t t txt))) (setq href (replace-regexp-in-string - "\\." "_" (format "sec-%s" snumber))) + "\\." "-" (format "sec-%s" snumber))) (setq href (org-solidify-link-text (or (cdr (assoc href org-export-preferred-target-alist)) href))) (push (format @@ -2412,7 +2412,7 @@ When TITLE is nil, just close all open levels." (insert "
    \n
  • " title "
    \n")))) (aset org-levels-open (1- level) t) (setq snumber (org-section-number level) - snu (replace-regexp-in-string "\\." "_" snumber)) + snu (replace-regexp-in-string "\\." "-" snumber)) (setq level (+ level org-export-html-toplevel-hlevel -1)) (if (and num (not body-only)) (setq title (concat From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: Re: custom IDs not exported Date: Mon, 13 Jun 2011 12:04:33 +0200 Message-ID: <87zklm6o9a.wl%n142857@gmail.com> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:41161) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QW40e-0006e2-JZ for emacs-orgmode@gnu.org; Mon, 13 Jun 2011 06:04:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QW40d-0005jV-B2 for emacs-orgmode@gnu.org; Mon, 13 Jun 2011 06:04:40 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:40472) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QW40d-0005jN-3C for emacs-orgmode@gnu.org; Mon, 13 Jun 2011 06:04:39 -0400 Received: by wwb39 with SMTP id 39so3834839wwb.30 for ; Mon, 13 Jun 2011 03:04:37 -0700 (PDT) In-Reply-To: <10721.1307848346@alphaville.dokosmarshall.org> 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: org-mode Mailinglist With your patch I could export correctly to HTML a big collection of data, with the same results as before (except for the changed _ to -, of course). Links work. Thanks, Daniel El Sat, 11 Jun 2011 23:12:26 -0400 Nick Dokos va escriure: > > I was afraid that other exporters might break because of this. Apologies > for the inconvenience. And, btw, thanks for the test case. > > I have a minimal patch that I think fixes this problem, but there are > other underscores used in various places in org-html.el so there might > be additional problems. I'd appreciate it if you (and/or others) test it > and report not only on this problem but on any other problems you find. > > Thanks, > Nick > > diff --git a/lisp/org-html.el b/lisp/org-html.el > index afc6a77..b5d371f 100644 > --- a/lisp/org-html.el > +++ b/lisp/org-html.el > @@ -1395,7 +1395,7 @@ lang=\"%s\" xml:lang=\"%s\"> > (setq txt (replace-match "" t t txt))) > (setq href > (replace-regexp-in-string > - "\\." "_" (format "sec-%s" snumber))) > + "\\." "-" (format "sec-%s" snumber))) > (setq href (org-solidify-link-text (or (cdr (assoc href org-export-preferred-target-alist)) href))) > (push > (format > @@ -2412,7 +2412,7 @@ When TITLE is nil, just close all open levels." > (insert "
      \n
    • " title "
      \n")))) > (aset org-levels-open (1- level) t) > (setq snumber (org-section-number level) > - snu (replace-regexp-in-string "\\." "_" snumber)) > + snu (replace-regexp-in-string "\\." "-" snumber)) > (setq level (+ level org-export-html-toplevel-hlevel -1)) > (if (and num (not body-only)) > (setq title (concat > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Mon, 13 Jun 2011 09:16:52 -0400 Message-ID: <30026.1307971012@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <87zklm6o9a.wl%n142857@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:40397) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QW716-0002Ra-H9 for emacs-orgmode@gnu.org; Mon, 13 Jun 2011 09:17:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QW714-0003vL-UU for emacs-orgmode@gnu.org; Mon, 13 Jun 2011 09:17:20 -0400 Received: from vms173011pub.verizon.net ([206.46.173.11]:53643) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QW714-0003uq-Bh for emacs-orgmode@gnu.org; Mon, 13 Jun 2011 09:17:18 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173011.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LMQ0029LCW47520@vms173011.mailsrvcs.net> for emacs-orgmode@gnu.org; Mon, 13 Jun 2011 08:16:59 -0500 (CDT) In-reply-to: Message from Daniel Clemente of "Mon, 13 Jun 2011 12:04:33 +0200." <87zklm6o9a.wl%n142857@gmail.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: Daniel Clemente Cc: nicholas.dokos@hp.com, org-mode Mailinglist Daniel Clemente wrote: > > With your patch I could export correctly to HTML a big collection of > data, with the same results as before (except for the changed _ to > -, of course). Links work. > Great! I really appreciate the extensive testing. Thanks, Nick > Thanks, > Daniel > > El Sat, 11 Jun 2011 23:12:26 -0400 Nick Dokos va escriure: > > > > I was afraid that other exporters might break because of this. Apologies > > for the inconvenience. And, btw, thanks for the test case. > > > > I have a minimal patch that I think fixes this problem, but there are > > other underscores used in various places in org-html.el so there might > > be additional problems. I'd appreciate it if you (and/or others) test it > > and report not only on this problem but on any other problems you find. > > > > Thanks, > > Nick > > > > diff --git a/lisp/org-html.el b/lisp/org-html.el > > index afc6a77..b5d371f 100644 > > --- a/lisp/org-html.el > > +++ b/lisp/org-html.el > > @@ -1395,7 +1395,7 @@ lang=\"%s\" xml:lang=\"%s\"> > > (setq txt (replace-match "" t t txt))) > > (setq href > > (replace-regexp-in-string > > - "\\." "_" (format "sec-%s" snumber))) > > + "\\." "-" (format "sec-%s" snumber))) > > (setq href (org-solidify-link-text (or (cdr (assoc href org-export-preferred-target-alist)) href))) > > (push > > (format > > @@ -2412,7 +2412,7 @@ When TITLE is nil, just close all open levels." > > (insert "
        \n
      • " title "
        \n")))) > > (aset org-levels-open (1- level) t) > > (setq snumber (org-section-number level) > > - snu (replace-regexp-in-string "\\." "_" snumber)) > > + snu (replace-regexp-in-string "\\." "-" snumber)) > > (setq level (+ level org-export-html-toplevel-hlevel -1)) > > (if (and num (not body-only)) > > (setq title (concat > > > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Thu, 16 Jun 2011 17:40:56 -0400 Message-ID: <15432.1308260456@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <87hb7p79ao.wl%n142857@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60254) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXKJT-0006lU-D5 for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 17:41:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QXKJR-0003M6-Pn for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 17:41:19 -0400 Received: from vms173003pub.verizon.net ([206.46.173.3]:55538) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXKJR-0003Ls-D1 for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 17:41:17 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173003.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LMW00L63K889U20@vms173003.mailsrvcs.net> for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 16:41:09 -0500 (CDT) In-reply-to: Message from Daniel Clemente of "Thu, 16 Jun 2011 23:31:27 +0200." <87hb7p79ao.wl%n142857@gmail.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: Daniel Clemente Cc: nicholas.dokos@hp.com, org-mode Mailinglist Daniel Clemente wrote: > Hi, > > Could you check this patch in? > It is checked in already. The commit looks like this: ,---- | commit 1891ee5aafee710315a26595385e670e1ac3771e | Author: Carsten Dominik | Date: Tue Jun 14 10:46:09 2011 +0200 | | Fix HTML export to make CUSTOM_ID links work again | | * lisp/org-html.el (org-export-as-html): | (org-html-level-start): Only convert section number underscores to dashes. `---- ``git show 1891ee5aafee710315a26595385e670e1ac3771e'' will show you whether you have it or need to pull. Nick > > > El Sat, 11 Jun 2011 23:12:26 -0400 Nick Dokos va escriure: > > > > I have a minimal patch that I think fixes this problem, but there are > > other underscores used in various places in org-html.el so there might > > be additional problems. I'd appreciate it if you (and/or others) test it > > and report not only on this problem but on any other problems you find. > > > > Thanks, > > Nick > > > > diff --git a/lisp/org-html.el b/lisp/org-html.el > > index afc6a77..b5d371f 100644 > > --- a/lisp/org-html.el > > +++ b/lisp/org-html.el > > @@ -1395,7 +1395,7 @@ lang=\"%s\" xml:lang=\"%s\"> > > (setq txt (replace-match "" t t txt))) > > (setq href > > (replace-regexp-in-string > > - "\\." "_" (format "sec-%s" snumber))) > > + "\\." "-" (format "sec-%s" snumber))) > > (setq href (org-solidify-link-text (or (cdr (assoc href org-export-preferred-target-alist)) href))) > > (push > > (format > > @@ -2412,7 +2412,7 @@ When TITLE is nil, just close all open levels." > > (insert "
          \n
        • " title "
          \n")))) > > (aset org-levels-open (1- level) t) > > (setq snumber (org-section-number level) > > - snu (replace-regexp-in-string "\\." "_" snumber)) > > + snu (replace-regexp-in-string "\\." "-" snumber)) > > (setq level (+ level org-export-html-toplevel-hlevel -1)) > > (if (and num (not body-only)) > > (setq title (concat > > > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: Re: custom IDs not exported Date: Thu, 16 Jun 2011 23:31:27 +0200 Message-ID: <87hb7p79ao.wl%n142857@gmail.com> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38029) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXKA3-00055e-Ai for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 17:31:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QXKA1-0001mG-Bv for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 17:31:35 -0400 Received: from mail-ww0-f41.google.com ([74.125.82.41]:53541) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXKA0-0001lx-Nh for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 17:31:33 -0400 Received: by wwi18 with SMTP id 18so322829wwi.0 for ; Thu, 16 Jun 2011 14:31:30 -0700 (PDT) In-Reply-To: <10721.1307848346@alphaville.dokosmarshall.org> 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: org-mode Mailinglist Hi, Could you check this patch in? Thanks El Sat, 11 Jun 2011 23:12:26 -0400 Nick Dokos va escriure: > > I have a minimal patch that I think fixes this problem, but there are > other underscores used in various places in org-html.el so there might > be additional problems. I'd appreciate it if you (and/or others) test it > and report not only on this problem but on any other problems you find. > > Thanks, > Nick > > diff --git a/lisp/org-html.el b/lisp/org-html.el > index afc6a77..b5d371f 100644 > --- a/lisp/org-html.el > +++ b/lisp/org-html.el > @@ -1395,7 +1395,7 @@ lang=\"%s\" xml:lang=\"%s\"> > (setq txt (replace-match "" t t txt))) > (setq href > (replace-regexp-in-string > - "\\." "_" (format "sec-%s" snumber))) > + "\\." "-" (format "sec-%s" snumber))) > (setq href (org-solidify-link-text (or (cdr (assoc href org-export-preferred-target-alist)) href))) > (push > (format > @@ -2412,7 +2412,7 @@ When TITLE is nil, just close all open levels." > (insert "
            \n
          • " title "
            \n")))) > (aset org-levels-open (1- level) t) > (setq snumber (org-section-number level) > - snu (replace-regexp-in-string "\\." "_" snumber)) > + snu (replace-regexp-in-string "\\." "-" snumber)) > (setq level (+ level org-export-html-toplevel-hlevel -1)) > (if (and num (not body-only)) > (setq title (concat > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: Re: custom IDs not exported Date: Fri, 17 Jun 2011 00:25:12 +0200 Message-ID: <87fwn976t3.wl%n142857@gmail.com> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <87hb7p79ao.wl%n142857@gmail.com> <15432.1308260456@alphaville.dokosmarshall.org> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:56503) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXL05-0006Bx-82 for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 18:25:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QXL00-0002hH-Rv for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 18:25:21 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:48491) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXL00-0002h7-Na for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 18:25:16 -0400 Received: by wyf19 with SMTP id 19so1678558wyf.0 for ; Thu, 16 Jun 2011 15:25:15 -0700 (PDT) In-Reply-To: <15432.1308260456@alphaville.dokosmarshall.org> 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: org-mode Mailinglist The latest commit I can find after cloning git://repo.or.cz/org-mode.git to a new directory is this: ,---- | commit 90f6765cdf77c1414726d899f00c77da43f45758 | Author: Eric Schulte | Date: Mon Jun 13 14:58:56 2011 -0700 | | ob-tangle: no longer inserting newlines between appended code blocks | | * lisp/ob-tangle.el (org-babel-tangle-combine-named-blocks): No longer | inserting newlines between appended code blocks. `---- So it seems there's some sort of delay with repo.or.cz El Thu, 16 Jun 2011 17:40:56 -0400 Nick Dokos va escriure: > > It is checked in already. The commit looks like this: > > ,---- > | commit 1891ee5aafee710315a26595385e670e1ac3771e > | Author: Carsten Dominik > | Date: Tue Jun 14 10:46:09 2011 +0200 > | > | Fix HTML export to make CUSTOM_ID links work again > | > | * lisp/org-html.el (org-export-as-html): > | (org-html-level-start): Only convert section number underscores to dashes. > `---- > > ``git show 1891ee5aafee710315a26595385e670e1ac3771e'' will show you whether > you have it or need to pull. > > Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Thu, 16 Jun 2011 18:47:40 -0400 Message-ID: <16148.1308264460@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <87hb7p79ao.wl%n142857@gmail.com> <15432.1308260456@alphaville.dokosmarshall.org> <87fwn976t3.wl%n142857@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:32808) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXLM1-0000Ir-5e for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 18:48:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QXLLz-0006IZ-Ed for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 18:48:00 -0400 Received: from vms173005pub.verizon.net ([206.46.173.5]:62442) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QXLLz-0006IG-43 for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 18:47:59 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173005.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LMW008OSNBH6P90@vms173005.mailsrvcs.net> for emacs-orgmode@gnu.org; Thu, 16 Jun 2011 17:47:46 -0500 (CDT) In-reply-to: Message from Daniel Clemente of "Fri, 17 Jun 2011 00:25:12 +0200." <87fwn976t3.wl%n142857@gmail.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: Daniel Clemente Cc: nicholas.dokos@hp.com, org-mode Mailinglist Daniel Clemente wrote: > > The latest commit I can find after cloning git://repo.or.cz/org-mode.git to a new directory is this: > > ,---- > | commit 90f6765cdf77c1414726d899f00c77da43f45758 > | Author: Eric Schulte > | Date: Mon Jun 13 14:58:56 2011 -0700 > | > | ob-tangle: no longer inserting newlines between appended code blocks > | > | * lisp/ob-tangle.el (org-babel-tangle-combine-named-blocks): No longer > | inserting newlines between appended code blocks. > `---- > > > So it seems there's some sort of delay with repo.or.cz > Indeed: the git repo was changed to orgmode.org back in December (?) and repo.or.cz was left as a mirror, but apparently it has been non compos mentis for a little while. Your best best is to go to the horse's mouth - cd into the directory that holds the git clone of org and git config remote.origin.url git://orgmode.org/org-mode.git Then just continue as if nothing happened. Nick PS There was some discussion of this on the ML this morning (or last night? I'm losing track of time...) From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: custom IDs not exported Date: Thu, 30 Jun 2011 18:18:46 +0200 Message-ID: <87vcvnxpg9.fsf@gnu.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <87hb7p79ao.wl%n142857@gmail.com> <15432.1308260456@alphaville.dokosmarshall.org> <87fwn976t3.wl%n142857@gmail.com> <16148.1308264460@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:32778) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QcJwZ-0006aW-FV for emacs-orgmode@gnu.org; Thu, 30 Jun 2011 12:18:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QcJwX-0003xQ-AL for emacs-orgmode@gnu.org; Thu, 30 Jun 2011 12:18:19 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:37811) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QcJwW-0003x8-UI for emacs-orgmode@gnu.org; Thu, 30 Jun 2011 12:18:17 -0400 Received: by wwf22 with SMTP id 22so1946478wwf.30 for ; Thu, 30 Jun 2011 09:18:16 -0700 (PDT) In-Reply-To: <16148.1308264460@alphaville.dokosmarshall.org> (Nick Dokos's message of "Thu, 16 Jun 2011 18:47:40 -0400") 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: org-mode Mailinglist Nick Dokos writes: > Indeed: the git repo was changed to orgmode.org back in December (?) > and repo.or.cz was left as a mirror, but apparently it has been > non compos mentis for a little while. I've just checked: the git mirror at http://repo.or.cz/w/org-mode.git is still working fine. Great to know users can also rely on this. Best, -- Bastien From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Not merging org-lparse, org-xhtml & org-odt to the core Date: Mon, 22 Aug 2011 07:42:42 +0530 Message-ID: <81ei0e6vol.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:46327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvK1B-0003ai-60 for emacs-orgmode@gnu.org; Sun, 21 Aug 2011 22:13:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QvK1A-0007Mk-7r for emacs-orgmode@gnu.org; Sun, 21 Aug 2011 22:13:37 -0400 Received: from mail-gy0-f169.google.com ([209.85.160.169]:62567) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvK1A-0007Mf-4C for emacs-orgmode@gnu.org; Sun, 21 Aug 2011 22:13:36 -0400 Received: by gyg10 with SMTP id 10so3448385gyg.0 for ; Sun, 21 Aug 2011 19:13:35 -0700 (PDT) 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: Bastien Cc: emacs-orgmode@gnu.org Bastien I have made a decision not to merge org-lparse, org-xhtml & org-odt in to Orgmode core. It is a very difficult decision for me to take considering that I had put all my heart in to it. (Btw, this decision has nothing to with me not having enough time at hand.) I leave it up to the community on what would be the best place to "host" this software. I am a signed contributor and all the above files have their copyright assigned to FSF and the files are distributed under the same license as Emacs itself. I would like to emphasize that I am the SOLE AUTHOR of the above files. (More specifically, there is literally none of the changes made by Lennart Borgman had made it's way in to the final product. Though it retains some of the "influence" of his involvement.) At some point in time I would like to make a formal submission to GNU ELPA to host this package as a personal initiative. Not having this package in Orgmode core would also help me move fast in in having my files in a distribution head. I will happily fix any bug reports that come by way. I will be lot less aggressive in adding features though. I will not be making anymore commits to the Orgmode repo and I am switching my development to a private branch. Jambunathan K. -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikas Rawal Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Mon, 22 Aug 2011 12:44:00 +0530 Message-ID: <20110822071400.GA15539@panahar> References: <81ei0e6vol.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:44057) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvOiX-0005q8-37 for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 03:14:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QvOiW-0005Bf-67 for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 03:14:41 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:38070) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvOiW-0005BT-1V for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 03:14:40 -0400 Received: by pzk36 with SMTP id 36so9804819pzk.17 for ; Mon, 22 Aug 2011 00:14:38 -0700 (PDT) Content-Disposition: inline In-Reply-To: <81ei0e6vol.fsf@gmail.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: emacs-orgmode@gnu.org > I have made a decision not to merge org-lparse, org-xhtml & org-odt in > to Orgmode core. It is a very difficult decision for me to take > considering that I had put all my heart in to it. (Btw, this decision > has nothing to with me not having enough time at hand.) This comes as a surprise. Did I miss something on the list? It would help if you would kindly explain your reason for chosing keep your work separate from orgmode core? There has been a lot of excitement on this list about the addition of org-odt into orgmode. What has gone wrong? Vikas From mboxrd@z Thu Jan 1 00:00:00 1970 From: Detlef Steuer Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Mon, 22 Aug 2011 09:48:16 +0200 Message-ID: <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> References: <81ei0e6vol.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60084) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvPFU-0004NC-HB for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 03:48:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QvPFT-00036F-GS for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 03:48:44 -0400 Received: from lo.gmane.org ([80.91.229.12]:37990) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvPFT-000369-7k for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 03:48:43 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QvPFO-0003ay-6r for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 09:48:38 +0200 Received: from vknecht-intel.unibw-hamburg.de ([139.11.181.51]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 22 Aug 2011 09:48:38 +0200 Received: from detlef.steuer by vknecht-intel.unibw-hamburg.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 22 Aug 2011 09:48:38 +0200 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 Hi! First of all thanks for your efforts. I just started to rely on org-odt and am a little bit puzzled by your decision. Will you take care of org-odt working in orgmode for the foreseeable future or don`t you care about orgmode anymore? Just to be clear: It`s of course totally your decision, but I don`t want to be taken by surprise if I base some work on that wonderful tool. Detlef > > Bastien > > I have made a decision not to merge org-lparse, org-xhtml & org-odt in > to Orgmode core. It is a very difficult decision for me to take > considering that I had put all my heart in to it. (Btw, this decision > has nothing to with me not having enough time at hand.) > > I leave it up to the community on what would be the best place to "host" > this software. I am a signed contributor and all the above files have > their copyright assigned to FSF and the files are distributed under the > same license as Emacs itself. I would like to emphasize that I am the > SOLE AUTHOR of the above files. (More specifically, there is literally > none of the changes made by Lennart Borgman had made it's way in to the > final product. Though it retains some of the "influence" of his > involvement.) > > At some point in time I would like to make a formal submission to GNU > ELPA to host this package as a personal initiative. Not having this > package in Orgmode core would also help me move fast in in having my > files in a distribution head. > > I will happily fix any bug reports that come by way. I will be lot less > aggressive in adding features though. > > I will not be making anymore commits to the Orgmode repo and I am > switching my development to a private branch. > > Jambunathan K. > -- > > From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Sebastien Vauban" Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Mon, 22 Aug 2011 14:23:12 +0200 Message-ID: <80k4a5ab4f.fsf@somewhere.org> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: 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-mXXj517/zsQ@public.gmane.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org To: emacs-orgmode-mXXj517/zsQ@public.gmane.org Hi Jambunathan, > I have made a decision not to merge org-lparse, org-xhtml & org-odt in > to Orgmode core. It is a very difficult decision for me to take > considering that I had put all my heart in to it. (Btw, this decision > has nothing to with me not having enough time at hand.) As all, I'm puzzled by this statement, and wonder what went wrong somehow. What you did is a really important piece of the puzzle, as it finally let us cooperate more easily with people we can't convert as Org'ers. At least, they won't bother us to fit their software requirement: we can work in Org up till the very end, and then produce a final result in the expected (by others) format. > I leave it up to the community on what would be the best place to "host" > this software. For me, the answer to this was/is clear: Org-mode itself, hence the reason why I don't understand the above. Best regards, Seb -- Sebastien Vauban From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Renkert Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Mon, 22 Aug 2011 18:09:28 +0000 (UTC) Message-ID: References: <81ei0e6vol.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38368) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvYwU-0005ou-A7 for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 14:09:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QvYwT-0007TT-0N for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 14:09:46 -0400 Received: from lo.gmane.org ([80.91.229.12]:53430) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvYwS-0007TN-Md for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 14:09:44 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QvYwR-00076z-7m for emacs-orgmode@gnu.org; Mon, 22 Aug 2011 20:09:43 +0200 Received: from mnhm-5f74dea6.pool.mediaWays.net ([95.116.222.166]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 22 Aug 2011 20:09:43 +0200 Received: from tunnelblick by mnhm-5f74dea6.pool.mediaWays.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 22 Aug 2011 20:09:43 +0200 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 > I have made a decision not to merge org-lparse, org-xhtml & org-odt in > to Orgmode core. It is a very difficult decision for me to take > considering that I had put all my heart in to it. (Btw, this decision > has nothing to with me not having enough time at hand.) > > I leave it up to the community on what would be the best place to "host" > this software. I am a signed contributor and all the above files have > their copyright assigned to FSF and the files are distributed under the > same license as Emacs itself. I would like to emphasize that I am the > SOLE AUTHOR of the above files. (More specifically, there is literally > none of the changes made by Lennart Borgman had made it's way in to the > final product. Though it retains some of the "influence" of his > involvement.) > > I will not be making anymore commits to the Orgmode repo and I am > switching my development to a private branch. > > Jambunathan K. Hi Jambunathan, this is very bad news - I was just starting to use your org-odt-module and I must say that I already depend on it. It is a fine piece of work! So, like everbody else, I wonder what went wrong? Has it to do with the way the core development of orgmode is handled? Is there something that could be improved? I personally would really like to see important contribution such as yours become more and more integrated into the 'standard' Org ditribution - and not pushed further away. I guess it is also natural for a project like org-mode to face different development-related problems as it becomes bigger and more people are involved. However, I am confident that there is a solution somewhere (maybe we can learn something from other larger OSS projects?). Could you give us some feedback from your perspective? What are the reasons for your decision? Regards, Thomas From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 04:54:13 +0530 Message-ID: <814o17aezm.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:45522) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw0Rp-00048d-8A for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 19:31:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qw0Ro-00023F-BL for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 19:31:57 -0400 Received: from mail-yw0-f41.google.com ([209.85.213.41]:60245) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw0Ro-00022l-8r for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 19:31:56 -0400 Received: by ywm13 with SMTP id 13so530064ywm.0 for ; Tue, 23 Aug 2011 16:31:55 -0700 (PDT) In-Reply-To: <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> (Detlef Steuer's message of "Mon, 22 Aug 2011 09:48:16 +0200") 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: Detlef Steuer Cc: emacs-orgmode@gnu.org Detlef > Will you take care of org-odt working in orgmode for the foreseeable > future or don`t you care about orgmode anymore? I pushed a commit just a few minutes ago. So things are back to normal. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 05:19:23 +0530 Message-ID: <81vctn8z98.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:37553) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw17q-0007UW-IY for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 20:15:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qw17p-0004c0-1h for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 20:15:22 -0400 Received: from mail-gx0-f169.google.com ([209.85.161.169]:35518) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw17o-0004bR-Ok for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 20:15:20 -0400 Received: by gxk23 with SMTP id 23so555197gxk.0 for ; Tue, 23 Aug 2011 17:15:19 -0700 (PDT) In-Reply-To: (Thomas Renkert's message of "Mon, 22 Aug 2011 18:09:28 +0000 (UTC)") 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: Thomas Renkert Cc: emacs-orgmode@gnu.org > I personally would really like to see important contribution such > as yours become more and more integrated into the 'standard' > Org ditribution - and not pushed further away. Precisely my point. Bastien's idea of merge is to make it into a long drawn affair. I disagree. Jambunathan K. -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikas Rawal Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 08:14:46 +0530 Message-ID: <20110824024446.GA30258@panahar> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:36294) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw3T8-0003kf-Vo for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 22:45:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qw3T8-0004Yo-4J for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 22:45:30 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:47253) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw3T7-0004Yk-Vy for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 22:45:30 -0400 Received: by pzk36 with SMTP id 36so102130pzk.17 for ; Tue, 23 Aug 2011 19:45:28 -0700 (PDT) Content-Disposition: inline In-Reply-To: <81vctn8z98.fsf@gmail.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: emacs-orgmode@gnu.org > Precisely my point. Bastien's idea of merge is to make it into a long > drawn affair. I disagree. It would help if you or Bastien could explain what is going on. As is clear, everyone is hoping that the issues will be resolved and your valuable contributions will remain a part of org-mode. It does seem that you are, for now, letting them be within org-mode (your other mail). But it would still help if you express your apprehensions and discuss them openly on this list. Vikas From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 05:16:35 +0530 Message-ID: <81zkiz8zdw.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:48110) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw0h1-0008LZ-Kq for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 19:47:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qw0h0-00023W-Fj for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 19:47:39 -0400 Received: from plane.gmane.org ([80.91.229.3]:41479) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw0h0-000214-AU for emacs-orgmode@gnu.org; Tue, 23 Aug 2011 19:47:38 -0400 Received: from public by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Qw0gx-0000Mv-Da for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 01:47:35 +0200 In-Reply-To: <80k4a5ab4f.fsf@somewhere.org> (Sebastien Vauban's message of "Mon, 22 Aug 2011 14:23:12 +0200") 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: Sebastien Vauban Cc: public-emacs-orgmode-mXXj517/zsQ@plane.gmane.org > Hi Jambunathan, > >> I have made a decision not to merge org-lparse, org-xhtml & org-odt in >> to Orgmode core. It is a very difficult decision for me to take >> considering that I had put all my heart in to it. (Btw, this decision >> has nothing to with me not having enough time at hand.) > > As all, I'm puzzled by this statement, and wonder what went wrong > somehow. Without mincing words, Bastien has to learn how to respect and engage with serious contributors. He should take time to look at the data presented to him and put some serious effort before sending out an email. I am willing to overlook the fact that he seriously pissed me off with unkind words and committed a greater faux paus by inviting Lennart Borgman in to merge discussions. I am sorry to say this - Lennart Borgman did a half-baked work. I have been patient and tried my best to be as co-operative as possible. He just manages to get me on my nerves somehow. He simply didn't have the courtesy to reply to my mails when he simply disappeared from the list for 3 months or so. I hate to such callous attitude who claims to be a maintainer and wants to act like a maintainer. > What you did is a really important piece of the puzzle, as it finally > let us cooperate more easily with people we can't convert as > Org'ers. At least, they won't bother us to fit their software > requirement: we can work in Org up till the very end, and then produce > a final result in the expected (by others) format. > >> I leave it up to the community on what would be the best place to "host" >> this software. > > For me, the answer to this was/is clear: Org-mode itself, hence the reason > why I don't understand the above. I have definite ideas on how the merge should proceed. He should be willing to concede to the fact that I have a far better understanding on what the most effective method of merge is. Bastien has stepped in to big shoes and he has to measure up. > Best regards, > Seb -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 12:12:11 +0530 Message-ID: <814o171fb0.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34235) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw7B9-0000zi-5i for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 02:43:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qw7B8-0007iT-1N for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 02:43:11 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:40535) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw7B7-0007iH-T0 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 02:43:10 -0400 Received: by pzk36 with SMTP id 36so391477pzk.17 for ; Tue, 23 Aug 2011 23:43:08 -0700 (PDT) In-Reply-To: <20110824024446.GA30258@panahar> (Vikas Rawal's message of "Wed, 24 Aug 2011 08:14:46 +0530") 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 > It does seem that you are, for now, letting them be within org-mode > (your other mail). But it would still help if you express your > apprehensions and discuss them openly on this list. There is another mail that is on it's way. (Replies to Sebastien Vauban always appear longer time to appear in the list) Let me wash all the linen in open because Bastien wanted all the criticism to be made public. (This suggestion is against my own experience how a criticism is perceived) I would like to ask (again), does Bastien know the difference between copyright and license (not in legal terms but just the dictionary meaning of it). I doubt he knows it. This cropped up because he made the absurd suggestion that OpenDocument Schema file (which is distributed by OASIS) should be GPLv3. He is asking me to name the schema files to be 8+3 when they are already fixed up right in contrib dir [1]. How long does it take a look at a person to cross verify whether or not a file is renamed. He wants to give him the elpa tarball again and have him upload it to Emacs bzr repo when only a few days ago I had built the tarball and shared a pointer to it [2]. Jason Dunsmor can vouch for what I say here. He had the audacity even to suggest that he is HELPING me committing my changes to Bzr. It is as though getting a commit access to Emacs elpa bzr is like getting an appointment to meet President Obama just to exchange pleasantries. I started my negotiation with emacs-devel when I lost trust in Bastien. How else can you feel about a person who disappears from the list without even returning mails. He has hijacked every single thread in emacs-devel since his re-appearance. Bastien could be a busy man. But not keeping track of conversation and asking meaningless questions is not how a maintainer shows appreciation of hard work one has done. When I criticized him he is labelling me insulting, patronizing and frustrated. Seriously to how low a level this person has to go. Footnotes [1] http://lists.gnu.org/archive/html/emacs-devel/2011-06/msg00671.html [2] http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00666.html > Vikas > > -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 12:56:33 +0530 Message-ID: <81zkizz2vq.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38291) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw7s7-0008Jj-8r for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 03:27:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qw7s5-0000c2-Of for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 03:27:35 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:50243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw7s5-0000bv-I0 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 03:27:33 -0400 Received: by pzk36 with SMTP id 36so457881pzk.17 for ; Wed, 24 Aug 2011 00:27:32 -0700 (PDT) In-Reply-To: <814o171fb0.fsf@gmail.com> (Jambunathan K.'s message of "Wed, 24 Aug 2011 12:12:11 +0530") 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 Jambunathan K writes: >> It does seem that you are, for now, letting them be within org-mode >> (your other mail). But it would still help if you express your >> apprehensions and discuss them openly on this list. 1. I had a test.org file that I had created for testing the exporter. Now this file was simply thrown away because it seemed it was inappropriate to him. Any caring maintainer would not throw away a fruits of labour without a moment's reflection. Even if he felt that the test.org is in the wrong place, he could always SAVE it in whatever suitable place he deems fit. 2. Look at another interaction where is showing his total lack of awareness of how software development happens. He ignores my suggestion and tops it up with a tangential reply. To add more amusement to the whole thing, the changes were non-backward compatible and broke Orgmode Homepage. This particular amuses me because I have taken enormous pains to maintain backward compatibility in org-xhtml.el changes. ,---- See http://lists.gnu.org/archive/html/emacs-orgmode/2011-07/msg01294.html | > ps: I would desire that any changes to org-html.el also need to be | > ported to org-lparse.el and (or) org-xhtml.el. | | (Can you take charge of this?) | | This is the main reason why having duplicate code in this area is a | burden. | | I still think our energy will be better spent by progressively adding | things from org-xhtml.el to org-html.el, feature by feature. This is a | lot of (possibly boring) work, but being lazy now will just make it even | more difficult later. | | In any case, working on porting changes from org-html.el to org-xhtml.el | isn't the right direction. | | Let's keep up the good work! `---- 3. I have a body of work queued up for review and he picks up a variable name and comments on it. http://lists.gnu.org/archive/html/emacs-orgmode/2011-08/msg00735.html I am a professional programmer of 10+ years and in my experience only fresh college graduates pick up the way the variables are named and subject it to serious scrutiny. 4. Sometimes I resent when he indulgently comments on Nicolas Goazious commits. 5. Has anyone noticed this: He commiting a fix and reverting it or he immediately re-fixing a just committed stuff. No this doesn't happen once in a blue moon. Nothing I list is a serious error. But put everything together, I get a picture of a person who is holding the maintainership and falling seriously short of the role he is expected to play. There is a limit to person's patience. I am pouring all out because he called me "frustrated". Honesly who in his right mind would dare call a serious and committed contributor as "frustrated". I hope after all these discussions he understands once and for all that Lennart Borgman has ZERO code in all the three files org-xhtml.el, org-lparse.el and org-odt.el. I hope he brings some insight in to review process. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 11:59:16 +0200 Message-ID: <87fwkrgmff.fsf@gnu.org> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwAEJ-0005rv-F7 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 05:58:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwAEI-00039H-9A for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 05:58:39 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:36203) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwAEI-000395-3W for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 05:58:38 -0400 Received: by fxg9 with SMTP id 9so1022401fxg.0 for ; Wed, 24 Aug 2011 02:58:36 -0700 (PDT) In-Reply-To: <814o171fb0.fsf@gmail.com> (Jambunathan K.'s message of "Wed, 24 Aug 2011 12:12:11 +0530") 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: Jambunathan K Cc: emacs-orgmode@gnu.org Hi Jambunathan, I'm glad you decided to continue sharing your improvements to the Org=>ODT exporter with the rest of the world. I suggest the merge of this exporter into Org's core goes through these steps: 1. Make sure there is no name clash on 8+3 systems. As per last git version of Org, these two files in contrib/odt/OASIS will clash: OpenDocument-v1.2-cs01-manifest-schema.rng OpenDocument-v1.2-cs01-schema.rng 2. Make sure there is no license problem with the schema files. My model here is emacs/etc/schemas/ where: - the README file clearly says what files have what permissions; - most of the time, when the copyright does not belong to the FSF, permissions are stated directly within the file. See emacs/etc/schema/calstbl.rnc for example. When checking OpenDocument-schema-v1.1.rng from Org's contrib directory (I've only checked this one) I saw a non-FSF copyright with no license mentioned, so I thought this could be a problem. If this is not a problem, I need to understand why -- perhaps this will not be a problem because the license of the file will be mentioned in etc/schema/README. 3. Last but not least, I would like us to work on merging org-html.el and org-xhtml.el. I know this is a daunting task, but there is too much duplicate code in these two files, the more we wait, the heavier the maintainance burden will be. I'm open to any suggestion that would spare us this (boring) work... Let me know what you think about my suggestion above. I am not a professional programmer and I'm always willing to learn, so please bare with me. Best, -- Bastien From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 12:08:39 +0200 Message-ID: <87bovfglzs.fsf@gnu.org> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> <81zkizz2vq.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:33614) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwANN-0000n0-Ro for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:08:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwANM-0005Nd-C6 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:08:01 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:46295) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwANM-0005N6-6e for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:08:00 -0400 Received: by fxg9 with SMTP id 9so1028192fxg.0 for ; Wed, 24 Aug 2011 03:07:59 -0700 (PDT) In-Reply-To: <81zkizz2vq.fsf@gmail.com> (Jambunathan K.'s message of "Wed, 24 Aug 2011 12:56:33 +0530") 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: Jambunathan K Cc: emacs-orgmode@gnu.org Hi Jambunathan, Jambunathan K writes: > Nothing I list is a serious error. But put everything together, I get a > picture of a person who is holding the maintainership and falling > seriously short of the role he is expected to play. If the overall Org community is sharing your view, and if someone if willing to step up as a maintainer, I am glad to step down as the Org maintainer. > There is a limit to person's patience. I am pouring all out because he > called me "frustrated". Honesly who in his right mind would dare call a > serious and committed contributor as "frustrated". I meant it. The word sounds harsh and I should have taken care of making it clear I'm not _accusing_ you or whatsoever. The fact that my task is so big forces me to rely on people's patience, and I fully recognize this can create frustration of some sort -- small examples: Michael Brand has been mentioning a possible bug with priorities and I have not had the time to look closely into it; I've not yet replied to the thread about the possible APPT/EVENT feature raised by Jason a while ago; etc. I understand people can feel frustrated about things I don't have time to do, and I'm (silently) thankful to them that they don't get more mad at me. > I hope after all these discussions he understands once and for all that > Lennart Borgman has ZERO code in all the three files org-xhtml.el, > org-lparse.el and org-odt.el. Sorry, this was not clear to me, because Lennart was the original author of org-parse.el. But I believe you and I'm glad this is the case! I hope we can move forward to improve Org again together. Best, -- Bastien From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 16:13:34 +0530 Message-ID: <8162lnw0mh.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> <81zkizz2vq.fsf@gmail.com> <87bovfglzs.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:37382) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwAwl-0000HB-GX for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:44:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwAwk-0006XN-AV for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:44:35 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:41640) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwAwj-0006XJ-Uw for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:44:34 -0400 Received: by pzk36 with SMTP id 36so769193pzk.17 for ; Wed, 24 Aug 2011 03:44:32 -0700 (PDT) In-Reply-To: <87bovfglzs.fsf@gnu.org> (Bastien's message of "Wed, 24 Aug 2011 12:08:39 +0200") 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: Bastien Cc: emacs-orgmode@gnu.org Bastien writes: > Hi Jambunathan, > > Jambunathan K writes: > >> Nothing I list is a serious error. But put everything together, I get a >> picture of a person who is holding the maintainership and falling >> seriously short of the role he is expected to play. > > If the overall Org community is sharing your view, and if someone if > willing to step up as a maintainer, I am glad to step down as the Org > maintainer. I have a task at hand which I am hoping to bring to fruition and it is immaterial (in neutral sense of the word) who the maintainer is. I was reflecting on what a maintainer's role is and what is expected of him. There is no need for others to pitch in with their one cents and two cents worth here and make sure that the discussions hit a bottomless pit. Heed to your heart and stay away from responding to this. >> I hope after all these discussions he understands once and for all that >> Lennart Borgman has ZERO code in all the three files org-xhtml.el, >> org-lparse.el and org-odt.el. > > Sorry, this was not clear to me, because Lennart was the original author > of org-parse.el. But I believe you and I'm glad this is the case! README.org has this entry. Users can afford to NOT read README or manuals. Maintainers are different beast altogether and they have higher responsibilities. They are supposed to take full cognisance of material presented to them. As a maintainer you cannot afford to MISATTRIBUTE authorship. ,---- | ** Is OpenDocumentExporter part of Orgmode or Emacs? | | Not yet. I have expressed my willingness to merge this package in | to official Orgmode and thus to Emacs. The current maintainer of | Orgmode - =Bastien Guerry bzg at gnu.org= - has agreed to consider | the package for integration. If you are interested in having this | package merged with Orgmode send your requests to the maintainer. | | For the sake of record, I am the sole author of the changes | included in this package and I am consenting to have this work or | derivative works make it's way into Emacs proper. My FSF copyright | assignment number is #618390. `---- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 16:18:45 +0530 Message-ID: <811uwbw0du.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> <81zkizz2vq.fsf@gmail.com> <87bovfglzs.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwB1k-0002e0-Ff for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:49:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwB1j-0007kC-Gi for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:49:44 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:48463) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwB1j-0007jx-9U for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:49:43 -0400 Received: by pzk36 with SMTP id 36so777202pzk.17 for ; Wed, 24 Aug 2011 03:49:42 -0700 (PDT) In-Reply-To: <87bovfglzs.fsf@gnu.org> (Bastien's message of "Wed, 24 Aug 2011 12:08:39 +0200") 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: Bastien Cc: emacs-orgmode@gnu.org > I understand people can feel frustrated about things I don't have time > to do, and I'm (silently) thankful to them that they don't get more > mad at me. People wouldn't feel frustrated about things you don't have time to do but they will definitely get frustrated with things that you don't do but have implicitly or explicitly committed yourself to do. Re-read the sentence again. The difference is subtle. For example, users will get frustrated with me if I don't fix bugs in the odt exporter or take efforts to answer their questions. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 16:26:39 +0530 Message-ID: <81sjorulg8.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> <87fwkrgmff.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:35079) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwB9P-0005XO-TI for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:57:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwB9P-0001Va-1D for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:57:39 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:44418) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwB9O-0001VN-Su for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:57:38 -0400 Received: by pzk36 with SMTP id 36so790608pzk.17 for ; Wed, 24 Aug 2011 03:57:37 -0700 (PDT) In-Reply-To: <87fwkrgmff.fsf@gnu.org> (Bastien's message of "Wed, 24 Aug 2011 11:59:16 +0200") 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: Bastien Cc: emacs-orgmode@gnu.org > Let me know what you think about my suggestion above. I will spawn a separate thread and let's strictly stick to that particular thread for all merge related discussions. > I am not a professional programmer and I'm always willing to learn, > so please bare with me. I would be the last person in the world to thump my chest over the most useless of labels. I used the word only to set some context and bring some gravity to the discussion. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 12:55:16 +0200 Message-ID: <87ty97hyej.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> 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]:36826) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwBBx-0006gz-Gn for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:00:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwBBw-0002oR-4B for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:00:17 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:42834) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwBBv-0002oF-Vn for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:00:16 -0400 Received: by fxg9 with SMTP id 9so1058944fxg.0 for ; Wed, 24 Aug 2011 04:00:14 -0700 (PDT) In-Reply-To: <81zkiz8zdw.fsf@gmail.com> (Jambunathan K.'s message of "Wed, 24 Aug 2011 05:16:35 +0530") 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: Jambunathan K Cc: emacs-orgmode@gnu.org On Wed, 24 Aug 2011 01:46:35 +0200 Jambunathan K. wrote: >> Hi Jambunathan, >> >>> I have made a decision not to merge org-lparse, org-xhtml & org-odt in >>> to Orgmode core. It is a very difficult decision for me to take >>> considering that I had put all my heart in to it. (Btw, this decision >>> has nothing to with me not having enough time at hand.) >> >> As all, I'm puzzled by this statement, and wonder what went wrong >> somehow. > > Without mincing words, Bastien has to learn how to respect and engage > with serious contributors. He should take time to look at the data > presented to him and put some serious effort before sending out an > email. I am willing to overlook the fact that he seriously pissed me off > with unkind words and committed a greater faux paus by inviting Lennart > Borgman in to merge discussions. I am sorry to say this - Lennart > Borgman did a half-baked work. > > I have been patient and tried my best to be as co-operative as > possible. He just manages to get me on my nerves somehow. He simply > didn't have the courtesy to reply to my mails when he simply disappeared > from the list for 3 months or so. I hate to such callous attitude who > claims to be a maintainer and wants to act like a maintainer. > >> What you did is a really important piece of the puzzle, as it finally >> let us cooperate more easily with people we can't convert as >> Org'ers. At least, they won't bother us to fit their software >> requirement: we can work in Org up till the very end, and then produce >> a final result in the expected (by others) format. >> >>> I leave it up to the community on what would be the best place to "host" >>> this software. >> >> For me, the answer to this was/is clear: Org-mode itself, hence the reas= on >> why I don't understand the above. > > I have definite ideas on how the merge should proceed. He should be > willing to concede to the fact that I have a far better understanding on > what the most effective method of merge is. > > Bastien has stepped in to big shoes and he has to measure up.=20 So "frustrated" is a dirty word for you? How about "a conceited moron"? Bastien might be an incompetent maintainer or programmer (in any case, you seem to be the first to make such claims), but he's certainly more than willing to deal with it. You've shown more than once here that you're rather incompetent as a contributor and a person[1]. I find it quite surprising that people on this list, including Bastien, are even willing to reply to the dirt you're spitting up.=20=20 [1] Another example of the Jambunathan style: http://thread.gmane.org/gmane.emacs.orgmode/42544/focus=3D42563 --=20 =C5=A0t=C4=9Bp=C3=A1n From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 16:53:12 +0530 Message-ID: <81obzfuk7z.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:50548) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwBZ8-0008Rl-HG for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:24:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwBZ7-0008WQ-Cm for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:24:14 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:34946) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwBZ7-0008WA-49 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:24:13 -0400 Received: by pzk36 with SMTP id 36so832796pzk.17 for ; Wed, 24 Aug 2011 04:24:12 -0700 (PDT) In-Reply-To: <87ty97hyej.fsf@gmail.com> (=?utf-8?B?IsWgdMSbcMOhbiBOxJtt?= =?utf-8?B?ZWMiJ3M=?= message of "Wed, 24 Aug 2011 12:55:16 +0200") 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: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= Cc: emacs-orgmode@gnu.org Please stay away from the discussion. > [1] Another example of the Jambunathan style: > http://thread.gmane.org/gmane.emacs.orgmode/42544/focus=42563 You are mixing stlye with intent. style != intent. Read that again. The intent of hte post is to prod him to post ONLY when he can afford to post. I resent when someone relies on Free Software but suffixes every bug report he files with "No I cannot add more". I can show Samuel's posts which are detailed and which an average poster wouldn't have patience to write. I don't want him to file detailed bug reports. He simply has to remove his signature statement which repeatedly brings focus to what he cannot do and not what he has already brought to the table. When you are on internet you don't have to declare who you are or what you are endowed with. My contributions are non-trivial and useful. Bastien or Thomas or even Carsten (in the post that you point to) are taking a balanced opinion. They are taking a position which would take the discussion forward. You are hell bent on sabotaging the discussion. ps: Please stay away from the discussion. You don't have what it takes to generate a consensus. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 17:08:53 +0530 Message-ID: <81k4a3ujhu.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:48917) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwBoH-00024c-LW for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:39:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwBoG-00043N-DR for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:39:53 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:37598) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwBoG-00043H-5y for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 07:39:52 -0400 Received: by pzk36 with SMTP id 36so857876pzk.17 for ; Wed, 24 Aug 2011 04:39:50 -0700 (PDT) In-Reply-To: <87ty97hyej.fsf@gmail.com> (=?utf-8?B?IsWgdMSbcMOhbiBOxJtt?= =?utf-8?B?ZWMiJ3M=?= message of "Wed, 24 Aug 2011 12:55:16 +0200") 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: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= Cc: emacs-orgmode@gnu.org > So "frustrated" is a dirty word for you? How about "a conceited > moron"? Labels have no meanings. They are merely quick conveniences. (Does this remark make me a MORE CONCEITED MORON) > Bastien might be an incompetent maintainer or programmer (in any case, > you seem to be the first to make such claims) I use words judiciously. I made no mention of incompetence. I was only listing the expectations that I have of him and where I felt he seriously falls short. If I say that I am a professional programmer will that make Bastien a poor programmer. Did you ever have a course in logic? > You've shown more than once here that you're rather incompetent as a > contributor and a person[1]. I am a incompetent contributor to Orgmode if you measure my competence (or incompetence thereof) based on say how many miles I can manage to run in a marathon. You are conveniently ignoring good things that people are saying about org-odt just because you are in ill-mood. Advising a person to refrain from posting after bringing attention to the fact that contrary to his intention he seriously falls short is according to me not unkind. If you force a sick person to sit when it could harm him are you helping him or you harming him. I don't want to confront you with a Zen koan but your reasoning is seriously flawed and your intent is malicious. Btw, if I am dog will org-odt be less useful? > I find it quite surprising that people on this list, including Bastien, > are even willing to reply to the dirt you're spitting up. > > [1] Another example of the Jambunathan style: > http://thread.gmane.org/gmane.emacs.orgmode/42544/focus=42563 -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 17:34:39 +0530 Message-ID: <81fwkruiaw.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55287) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwCDF-0007kR-9f for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 08:05:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwCDE-0002XR-7v for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 08:05:41 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:54989) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwCDE-0002XD-17 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 08:05:40 -0400 Received: by pzk36 with SMTP id 36so899495pzk.17 for ; Wed, 24 Aug 2011 05:05:38 -0700 (PDT) In-Reply-To: <87ty97hyej.fsf@gmail.com> (=?utf-8?B?IsWgdMSbcMOhbiBOxJtt?= =?utf-8?B?ZWMiJ3M=?= message of "Wed, 24 Aug 2011 12:55:16 +0200") 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: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= Cc: emacs-orgmode@gnu.org We all need Zen slaps at various points in time. http://c2.com/cgi/wiki?ZenSlap Hope it will soften your mood. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Moe Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 15:00:38 +0200 Message-ID: <4E54F5F6.5040507@christianmoe.com> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> <81zkizz2vq.fsf@gmail.com> <87bovfglzs.fsf@gnu.org> Reply-To: mail@christianmoe.com Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:35678) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwD4y-0005Qk-IV for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 09:01:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwD4v-0006Wp-Un for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 09:01:12 -0400 Received: from mars.hitrost.net ([91.185.211.18]:27650) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwD4v-0006OJ-Nq for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 09:01:09 -0400 In-Reply-To: <87bovfglzs.fsf@gnu.org> 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: Bastien Cc: emacs-orgmode@gnu.org, Jambunathan K Hi all, I probably shouldn't butt into this, and I understand the technical issues too poorly to offer suggestions on merging. But as a grateful user, and and a semi-active participant on this list, I'd like to voice three concerns. 1. Org-mode maintained by someone able and happy to do it. We are fortunate that Bastien stepped up to take over from Carsten as maintainer. Serving the Org-mode community as maintainer on a voluntary basis is a major personal commitment, and requires community support, including emotional backing and /helpful/ feedback. Jambunathan, please keep criticism of how Bastien has handled your work constructive and to the point. 2. Jambunathan's excellent org-odt maintained as an integral part of Org-mode. Org-odt opens up Org-mode as an all-round authoring environment for users like me who are expected to deliver their work in wp formats. Bastien, and other core developers who may be involved, please go an extra mile if necessary to make sure it will end up actively maintained as core Org. 3. The friendly atmosphere of this mailing list preserved. I think Bastien's replies around noon today are exemplary in this regard. Yours, Christian From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Vollmar Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 15:49:42 +0200 Message-ID: <8FC5B8AF-0843-4236-9AB5-65585C4A1314@nf.mpg.de> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> <81zkizz2vq.fsf@gmail.com> <87bovfglzs.fsf@gnu.org> <4E54F5F6.5040507@christianmoe.com> Mime-Version: 1.0 Content-Type: multipart/signed; boundary=Apple-Mail-36-879133183; protocol="application/pkcs7-signature"; micalg=sha1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:47769) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwDpz-0003IG-Ig for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 09:49:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwDpy-00018u-5U for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 09:49:47 -0400 Received: from mail.nf.mpg.de ([134.107.209.50]:34397) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwDpx-00018V-Qp for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 09:49:46 -0400 Received: from [192.168.178.21] (p4fea3da1.dip.t-dialin.net [79.234.61.161]) by mail.nf.mpg.de (Sun Java(tm) System Messaging Server 6.3-8.03 (built Apr 24 2009; 32bit)) with ESMTPSA id <0LQF00EH7QIY4600@mail.nf.mpg.de> for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 15:52:10 +0200 (MEST) In-reply-to: <4E54F5F6.5040507@christianmoe.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: Org Mode Mailing List Cc: mail@christianmoe.com --Apple-Mail-36-879133183 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=iso-8859-1 Dear Christian, many thanks for your contribution - my sentiments exactly! Warm regards, Stefan On 24.08.2011, at 15:00, Christian Moe wrote: > I probably shouldn't butt into this, and I understand the technical = issues too poorly to offer suggestions on merging. But as a grateful = user, and and a semi-active participant on this list, I'd like to voice = three concerns. >=20 > 1. Org-mode maintained by someone able and happy to do it. >=20 > We are fortunate that Bastien stepped up to take over from Carsten as = maintainer. Serving the Org-mode community as maintainer on a voluntary = basis is a major personal commitment, and requires community support, = including emotional backing and /helpful/ feedback. Jambunathan, please = keep criticism of how Bastien has handled your work constructive and to = the point. >=20 > 2. Jambunathan's excellent org-odt maintained as an integral part of = Org-mode. >=20 > Org-odt opens up Org-mode as an all-round authoring environment for = users like me who are expected to deliver their work in wp formats. = Bastien, and other core developers who may be involved, please go an = extra mile if necessary to make sure it will end up actively maintained = as core Org. >=20 > 3. The friendly atmosphere of this mailing list preserved. >=20 > I think Bastien's replies around noon today are exemplary in this = regard. >=20 > Yours, > Christian >=20 --=20 Dr. Stefan Vollmar, Dipl.-Phys. Head of IT group Max-Planck-Institut f=FCr neurologische Forschung Gleuelerstr. 50, 50931 K=F6ln, Germany Tel.: +49-221-4726-213 FAX +49-221-4726-298 Tel.: +49-221-478-5713 Mobile: 0160-93874279 Email: vollmar@nf.mpg.de http://www.nf.mpg.de --Apple-Mail-36-879133183 Content-Disposition: attachment; filename=smime.p7s Content-Type: application/pkcs7-signature; name=smime.p7s Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIOHTCCBCEw ggMJoAMCAQICAgDHMA0GCSqGSIb3DQEBBQUAMHExCzAJBgNVBAYTAkRFMRwwGgYDVQQKExNEZXV0 c2NoZSBUZWxla29tIEFHMR8wHQYDVQQLExZULVRlbGVTZWMgVHJ1c3QgQ2VudGVyMSMwIQYDVQQD ExpEZXV0c2NoZSBUZWxla29tIFJvb3QgQ0EgMjAeFw0wNjEyMTkxMDI5MDBaFw0xOTA2MzAyMzU5 MDBaMFoxCzAJBgNVBAYTAkRFMRMwEQYDVQQKEwpERk4tVmVyZWluMRAwDgYDVQQLEwdERk4tUEtJ MSQwIgYDVQQDExtERk4tVmVyZWluIFBDQSBHbG9iYWwgLSBHMDEwggEiMA0GCSqGSIb3DQEBAQUA A4IBDwAwggEKAoIBAQDpm8NnhfkNrvWNVMOWUDU9YuluTO2U1wBblSJ01CDrNI/W7MAxBAuZgeKm FNJSoCgjhIt0iQReW+DieMF4yxbLKDU5ey2QRdDtoAB6fL9KDhsAw4bpXCsxEXsM84IkQ4wcOItq aACa7txPeKvSxhObdq3u3ibo7wGvdA/BCaL2a869080UME/15eOkyGKbghoDJzANAmVgTe3RCSMq ljVYJ9N2xnG2kB3E7f81hn1vM7PbD8URwoqDoZRdQWvY0hD1TP3KUazZve+Sg7va64sWVlZDz+HV Ez2mHycwzUlU28kTNJpxdcVs6qcLmPkhnSevPqM5OUhqjK3JmfvDEvK9AgMBAAGjgdkwgdYwcAYD VR0fBGkwZzBloGOgYYZfaHR0cDovL3BraS50ZWxlc2VjLmRlL2NnaS1iaW4vc2VydmljZS9hZl9E b3dubG9hZEFSTC5jcmw/LWNybF9mb3JtYXQ9WF81MDkmLWlzc3Vlcj1EVF9ST09UX0NBXzIwHQYD VR0OBBYEFEm3xs/oPR9/6kR7Eyn38QpwPt5kMB8GA1UdIwQYMBaAFDHDeRu69VPXF+CJei0XbAqz K50zMA4GA1UdDwEB/wQEAwIBBjASBgNVHRMBAf8ECDAGAQH/AgECMA0GCSqGSIb3DQEBBQUAA4IB AQA74Vp3wEgX3KkY7IGvWonwvSiSpspZGBJw7Cjy565/lizn8l0ZMfYTK3S9vYCyufdnyTmieTvh ERHua3iRM347XyYndVNljjNj7s9zw7CSI0khUHUjoR8Y4pSFPT8z6XcgjaK95qGFKUD2P3MyWA0J a6bahWzAP7uNZmRWJE6uDT8yNQFb6YyC2XJZT7GGhfF0hVblw/hc843uR7NTBXDn5U2KaYMo4RMJ hp5eyOpYHgwf+aTUWgRo/Sg+iwK2WLX2oSw3VwBnqyNojWOl75lrXP1LVvarQIc01BGSbOyHxQoL BzNytG8MHVQs2FHHzL8w00Ny8TK/jM5JY6gA9/IcMIIE5zCCA8+gAwIBAgIECs6x2DANBgkqhkiG 9w0BAQUFADBaMQswCQYDVQQGEwJERTETMBEGA1UEChMKREZOLVZlcmVpbjEQMA4GA1UECxMHREZO LVBLSTEkMCIGA1UEAxMbREZOLVZlcmVpbiBQQ0EgR2xvYmFsIC0gRzAxMB4XDTA3MDczMTEzMDgy NVoXDTE5MDYzMDAwMDAwMFowXjELMAkGA1UEBhMCREUxIDAeBgNVBAoTF01heC1QbGFuY2stR2Vz ZWxsc2NoYWZ0MQ8wDQYDVQQDEwZNUEcgQ0ExHDAaBgkqhkiG9w0BCQEWDW1wZy1jYUBtcGcuZGUw ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYUXKeoNTLgkGwbani4rlua5jzlzISfHna j/5qS+mojQqA/eYa0bGucylV5hyQuyJz7d4gRckdhMDV8DZIxERUIsFlXFj6HGHjaZjlhIHbo4S1 2GjLhTH5YZ37O7MHVw0L/JhhzUIxESM1ZfRT/xLqhz2idJYjT98W9OFvzPgT0yrdieMzkLUz5X/f pY8MuyYBgxnddBJRw6ZtlhdCml4F8Q35pSb8J2qANiwuJVu3WCTgL/ydo3eA8vDieMMZ7O+L1wAn CzBbHAjJ5H6xU1B7mlwmu7V3pToKPgcWmlO0HcTpa68McNTGGiY8pO0/Rn1fXkqDYf8z0lPdWUWx bM1RAgMBAAGjggGvMIIBqzASBgNVHRMBAf8ECDAGAQH/AgEBMAsGA1UdDwQEAwIBBjAdBgNVHQ4E FgQUAtYebgmrv1hlpwo8SDNh0c59w1swHwYDVR0jBBgwFoAUSbfGz+g9H3/qRHsTKffxCnA+3mQw GAYDVR0RBBEwD4ENbXBnLWNhQG1wZy5kZTCBiAYDVR0fBIGAMH4wPaA7oDmGN2h0dHA6Ly9jZHAx LnBjYS5kZm4uZGUvZ2xvYmFsLXJvb3QtY2EvcHViL2NybC9jYWNybC5jcmwwPaA7oDmGN2h0dHA6 Ly9jZHAyLnBjYS5kZm4uZGUvZ2xvYmFsLXJvb3QtY2EvcHViL2NybC9jYWNybC5jcmwwgaIGCCsG AQUFBwEBBIGVMIGSMEcGCCsGAQUFBzAChjtodHRwOi8vY2RwMS5wY2EuZGZuLmRlL2dsb2JhbC1y b290LWNhL3B1Yi9jYWNlcnQvY2FjZXJ0LmNydDBHBggrBgEFBQcwAoY7aHR0cDovL2NkcDIucGNh LmRmbi5kZS9nbG9iYWwtcm9vdC1jYS9wdWIvY2FjZXJ0L2NhY2VydC5jcnQwDQYJKoZIhvcNAQEF BQADggEBABtJz5i/SGqQOficdRUN6myFVmVelCYgkGT+zX7frnBRJFoVVafXolstZdVB7ZpH9FAc qj8O6FTZyhAANwh3+Y1D6xYBWTB7mQGy0lUoUL+j0msZjaMvyj/2LCQp7cKB5vA4h6Ntq5BN5MPc aRhunzjJey/i+J/3jMdG7KpufV47Gl0E8ky9lDegaM7SToG4IOQKwv1wsnuHoxoGLRewxO7FmYd9 uq9f4L2mHtqgq+vibT1DeehT0HGPnrjjd8NK6g2TvZwirwjydbGs7szB5oxDm/pfWoJxYzO68HKT iVBlmaWMLpGw4/UsLE+5xJHpvNXfkYCQ3T+k99KBUZuIpKwwggUJMIID8aADAgECAgQP0SFlMA0G CSqGSIb3DQEBBQUAMF4xCzAJBgNVBAYTAkRFMSAwHgYDVQQKExdNYXgtUGxhbmNrLUdlc2VsbHNj aGFmdDEPMA0GA1UEAxMGTVBHIENBMRwwGgYJKoZIhvcNAQkBFg1tcGctY2FAbXBnLmRlMB4XDTEw MDMzMDA3MTAxM1oXDTEzMDMyOTA3MTAxM1owgYMxCzAJBgNVBAYTAkRFMSAwHgYDVQQKExdNYXgt UGxhbmNrLUdlc2VsbHNjaGFmdDE5MDcGA1UECxMwTWF4LVBsYW5jay1JbnN0aXR1dCBmdWVyIG5l dXJvbG9naXNjaGUgRm9yc2NodW5nMRcwFQYDVQQDEw5TdGVmYW4gVm9sbG1hcjCCASIwDQYJKoZI hvcNAQEBBQADggEPADCCAQoCggEBAKJ5Q4/00WAki7/O9UpcBage000pRhy1WNet3uCO6pa5d0Fg KroZ8yaNBF9wtgBDB96bYXIOGtpvjI40hTNYZrEZ2RFIjcHxuIabbaM71XwZpy/dTI5JEFrWtGAo av6T8pEcLWwAB0cPWD32q9Wsc1eGhH4KxnYMfppvc9oMvL43NLnt4iFmxhtFpeiDj/YzkhRtNOm1 aX24ylF415b+lrlJO8LarKj0Ao+eylpnTjTM+//4d8++jbar0Kxrgn1AIdPNEM56xKn0QsLMXF4/ Yv7AaHL3EFcClJN7AiYsmSPJvQV1iWxUNI3ki0cxVfVFxylVK0/ATwacVQx/Ji9fGPMCAwEAAaOC AacwggGjMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgXgMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEF BQcDBDAdBgNVHQ4EFgQUVK+so4zv/Jlf1hLI5tsbsWvUnTEwHwYDVR0jBBgwFoAUAtYebgmrv1hl pwo8SDNh0c59w1swHAYDVR0RBBUwE4ERdm9sbG1hckBuZi5tcGcuZGUwdwYDVR0fBHAwbjA1oDOg MYYvaHR0cDovL2NkcDEucGNhLmRmbi5kZS9tcGctY2EvcHViL2NybC9jYWNybC5jcmwwNaAzoDGG L2h0dHA6Ly9jZHAyLnBjYS5kZm4uZGUvbXBnLWNhL3B1Yi9jcmwvY2FjcmwuY3JsMIGSBggrBgEF BQcBAQSBhTCBgjA/BggrBgEFBQcwAoYzaHR0cDovL2NkcDEucGNhLmRmbi5kZS9tcGctY2EvcHVi L2NhY2VydC9jYWNlcnQuY3J0MD8GCCsGAQUFBzAChjNodHRwOi8vY2RwMi5wY2EuZGZuLmRlL21w Zy1jYS9wdWIvY2FjZXJ0L2NhY2VydC5jcnQwDQYJKoZIhvcNAQEFBQADggEBAMLAoN8vRhG0/YD+ REms9mWKjIH3D3pb90z2smeOMkQfu9UvDiCOMlqor52F/kBu60Z3Z2PAFGUS6ziihfuTrmuyvEJu D50k2vSUxHpn/pd3jLsplQiQNx3ZXByu3Jf0VfbLZeO6ZUD8Gs6C8DXD54F/nGy3TsS3dCSRtw/7 +PZ/GjaErVJRniPGJ4+T9T6mH2hej0EcVWkX2wIMtz9HHQvh0egRLxkQjJ1yEPFLc2K1kwIIElmQ tIOJHcF8mLzd3DCk8iRaJ/Pj/3X2wZHecVTAXIcZgVQDXT9B3iG/Q65RmaNI36UCQjmNirL7gYXh /hjy1VnFwLlZa9xxK/PjttkxggLeMIIC2gIBATBmMF4xCzAJBgNVBAYTAkRFMSAwHgYDVQQKExdN YXgtUGxhbmNrLUdlc2VsbHNjaGFmdDEPMA0GA1UEAxMGTVBHIENBMRwwGgYJKoZIhvcNAQkBFg1t cGctY2FAbXBnLmRlAgQP0SFlMAkGBSsOAwIaBQCgggFNMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0B BwEwHAYJKoZIhvcNAQkFMQ8XDTExMDgyNDEzNDk0MlowIwYJKoZIhvcNAQkEMRYEFAurt7u1UCqE zRMst4OY4O7dulwEMHUGCSsGAQQBgjcQBDFoMGYwXjELMAkGA1UEBhMCREUxIDAeBgNVBAoTF01h eC1QbGFuY2stR2VzZWxsc2NoYWZ0MQ8wDQYDVQQDEwZNUEcgQ0ExHDAaBgkqhkiG9w0BCQEWDW1w Zy1jYUBtcGcuZGUCBA/RIWUwdwYLKoZIhvcNAQkQAgsxaKBmMF4xCzAJBgNVBAYTAkRFMSAwHgYD VQQKExdNYXgtUGxhbmNrLUdlc2VsbHNjaGFmdDEPMA0GA1UEAxMGTVBHIENBMRwwGgYJKoZIhvcN AQkBFg1tcGctY2FAbXBnLmRlAgQP0SFlMA0GCSqGSIb3DQEBAQUABIIBAJOA8BKH5AjJL1lwBiz7 /g7cL0IUMIdQJ04W06azIVZP/M0g4bm0bjvl4loBdQIFhYSpciwxZG5xxjBIp44R9OP5O2WDy0Jf Krpt0ll4ZjqOGdUpEauva44bxuCjJPcaAXK1Z4HG8l6pqbCn40sYfiV3qL0xNkmEpeK8fZPtyQBM bk1Q4tmZzUvxhRC7LKKmPLOWG6LvlkKazunsJh/X6Euu2NmRnSQNZCErYFClA2az+kkd9d9QQbWf U02KzZ4Z5/wyQJEnorpjNUjWrkPfiVbzZaUiKnMwQBD1cTwiwHKH4bqqqjNyXOMZ/TKd9XupwkpZ Fog3imQjpEurMT7gIuoAAAAAAAA= --Apple-Mail-36-879133183-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Price Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 10:10:56 -0400 Message-ID: References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> <81zkizz2vq.fsf@gmail.com> <87bovfglzs.fsf@gnu.org> <4E54F5F6.5040507@christianmoe.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:32906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwEAU-0007HA-UZ for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:11:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwEAT-0006CI-KE for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:10:58 -0400 Received: from mail-yi0-f41.google.com ([209.85.218.41]:47118) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwEAT-0006CC-Hh for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:10:57 -0400 Received: by yib2 with SMTP id 2so945169yib.0 for ; Wed, 24 Aug 2011 07:10:57 -0700 (PDT) In-Reply-To: <4E54F5F6.5040507@christianmoe.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: mail@christianmoe.com Cc: Bastien , emacs-orgmode@gnu.org, Jambunathan K On Wed, Aug 24, 2011 at 9:00 AM, Christian Moe wrote: > Hi all, > > I probably shouldn't butt into this, and I understand the technical issues > too poorly to offer suggestions on merging. But as a grateful user, and and > a semi-active participant on this list, I'd like to voice three concerns. > > 1. Org-mode maintained by someone able and happy to do it. > > We are fortunate that Bastien stepped up to take over from Carsten as > maintainer. Serving the Org-mode community as maintainer on a voluntary > basis is a major personal commitment, and requires community support, > including emotional backing and /helpful/ feedback. Jambunathan, please keep > criticism of how Bastien has handled your work constructive and to the > point. > > 2. Jambunathan's excellent org-odt maintained as an integral part of > Org-mode. > > Org-odt opens up Org-mode as an all-round authoring environment for users > like me who are expected to deliver their work in wp formats. Bastien, and > other core developers who may be involved, please go an extra mile if > necessary to make sure it will end up actively maintained as core Org. > > 3. The friendly atmosphere of this mailing list preserved. > > I think Bastien's replies around noon today are exemplary in this regard. > > Yours, > Christian > > just +1ing this -- I think when people work really hard on these voluntary contributions it's not at all unusual for them to feel frustrated when the process doesn't move as smoothly as it could. But I truly believe both Bastien and Jambunathan are doing the very best they can and making fantastic contributions to the tool we all love. And I am very thankful to people like Christian for making it a priority to keep this list a friendly and enormously helpful resource for developers and users both. Matt From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 16:22:56 +0200 Message-ID: <87liuisxbz.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <81vctn8z98.fsf@gmail.com> <20110824024446.GA30258@panahar> <814o171fb0.fsf@gmail.com> <81zkizz2vq.fsf@gmail.com> <87bovfglzs.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:45623) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwEKh-0001GO-GC for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:21:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwEKc-0000JG-4q for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:21:31 -0400 Received: from lo.gmane.org ([80.91.229.12]:40248) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwEKb-0000J9-Rn for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:21:26 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QwEKa-00074j-5b for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 16:21:24 +0200 Received: from h130.natout.aau.dk ([130.225.198.130]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 24 Aug 2011 16:21:24 +0200 Received: from rasmus by h130.natout.aau.dk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 24 Aug 2011 16:21:24 +0200 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 >> Nothing I list is a serious error. But put everything together, I get >> a picture of a person who is holding the maintainership and falling >> seriously short of the role he is expected to play. > If the overall Org community is sharing your view, and if someone if > willing to step up as a maintainer, I am glad to step down as the Org > maintainer. I appreciate Bastien's engagement as an Org maintainer. I can appreciate that the learning curve for being (the Org) maintainer is steep. Further, I echo Christian Moe: Org-odt is an important contribution. I cannot judge whether someone has done anythin wrong, but in any case it is `human' to make mistakes. The important thing is to correct ones future behavior IMO (I haven't had any philosophy classes beside `worldly' ones). From my perspective Bastien and the rest of the Org-devs seems to live up to this. I hope this issue can be resolved and that we can enjoy odt export in a not to distant future without having to go through extra hoops such as ELPA. —Rasmus -- Sent from my Emacs From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 10:48:06 -0400 Message-ID: <13235.1314197286@alphaville.dokosmarshall.org> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:54434) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwEkU-00013l-UK for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:48:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwEkT-0006CB-PS for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:48:10 -0400 Received: from g4t0016.houston.hp.com ([15.201.24.19]:43915) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwEkT-0006Br-M6 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:48:09 -0400 In-Reply-To: Message from =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= of "Wed, 24 Aug 2011 12:55:16 +0200." <87ty97hyej.fsf@gmail.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: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Please, all, take a step back and take a deep breath. There are always frustrations and there are different ways of dealing with them. But we have to keep the larger goal in mind: whether I like or hate Bastien's maintainership or Jambunathan K.s code or email style is *completely irrelevant*. Things are what they are: what we have to think about is how to improve org. In this connection, the best advice that I can offer is what your mother told you: "if you can't say anything nice, then don't say anything at all." This list has always been an island of civility and calmness in an otherwise crazy ocean. Let us keep it that way. Thanks, Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Allen S. Rout" Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 13:30:54 -0400 Message-ID: References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:53187) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwHIG-0004ty-By for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 13:31:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwHIF-0004cL-D3 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 13:31:12 -0400 Received: from lo.gmane.org ([80.91.229.12]:55173) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwHIF-0004c2-7i for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 13:31:11 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QwHIC-0001Rs-BF for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 19:31:08 +0200 Received: from n128-227-48-12.xlate.ufl.edu ([128.227.48.12]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 24 Aug 2011 19:31:08 +0200 Received: from asr by n128-227-48-12.xlate.ufl.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 24 Aug 2011 19:31:08 +0200 In-Reply-To: <87ty97hyej.fsf@gmail.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: emacs-orgmode@gnu.org On 08/24/2011 06:55 AM, Štěpán Němec wrote: > I find it quite surprising that people on this list, including Bastien, > are even willing to reply to the dirt you're spitting up. Jambunathan is abrupt and speaks without much concern for the feelings of the recipients of his messages. He has great concern for the exact meaning of his words, and for being technically correct. This makes him an extremely uncomfortable conversational partner, and an extremely rewarding collaborator. I'd suggest trying to avoid emotional involvement with things that he says. He's not even a patch on Xah Lee. :) - Allen S. Rout From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?xaB0xJtww6FuIE7Em21lYw==?= Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 20:50:02 +0200 Message-ID: <87hb56iqzp.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> 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]:54764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwIbP-0007l7-4J for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 14:55:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwIbO-0000P3-2P for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 14:55:03 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:45898) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwIbN-0000Oi-U9 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 14:55:02 -0400 Received: by fxg9 with SMTP id 9so1450413fxg.0 for ; Wed, 24 Aug 2011 11:55:00 -0700 (PDT) In-Reply-To: (Allen S. Rout's message of "Wed, 24 Aug 2011 13:30:54 -0400") 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: "Allen S. Rout" Cc: emacs-orgmode@gnu.org [As most people here apparently consider Jambunathan's communication style acceptable, there is little point for me to continue replying in this thread, but I really couldn't resist in this case, sorry.] On Wed, 24 Aug 2011 19:30:54 +0200 Allen S. Rout wrote: > Jambunathan is abrupt and speaks without much concern for the feelings of= the > recipients of his messages. He has great concern for the exact meaning o= f his > words, and for being technically correct. This makes him an extremely > uncomfortable conversational partner, and an extremely rewarding > collaborator. I'm (sincerely) glad you have some positive experience to share, but you're really being much too generous with regard to this thread. Utterances like "I am willing to overlook the fact that he seriously pissed me off with unkind words and committed a greater faux paus by inviting Lennart Borgman in to merge discussions." or "When I criticized him he is labelling me insulting, patronizing and frustrated. Seriously to how low a level this person has to go." (and many others, as well as the general "everybody except me is an idiot" spirit permeating many of Jambunathan's e-mails) have nothing to do with "concern for the exact meaning" of anything. Such words are not even condescending. They're just insane and for me personally disqualify their originator from any possible collaboration until he comes to his senses again _precisely_ because I value not only basic civity, but also rationality and exactness. --=20 =C5=A0t=C4=9Bp=C3=A1n From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 15:30:19 -0400 Message-ID: <4340.1314214219@alphaville.americas.hpqcorp.net> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> <87hb56iqzp.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com 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]:36232) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwJyR-0002LI-F8 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 16:22:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwJyM-0004cw-TL for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 16:22:52 -0400 Received: from g1t0029.austin.hp.com ([15.216.28.36]:47643) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwJyM-0004ce-MD for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 16:22:50 -0400 In-Reply-To: Message from =?us-ascii?Q?=3D=3Futf-8=3FB=3FxaB0xJtww6FuIE7Em?= =?us-ascii?Q?21lYw=3D=3D=3F=3D?= of "Wed\, 24 Aug 2011 20\:50\:02 +0200." <87hb56iqzp.fsf@gmail.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: =?us-ascii?Q?=3D=3Futf-8=3FB=3FxaB0xJtww6FuIE7Em21lYw=3D=3D=3F=3D?= Cc: emacs-orgmode@gnu.org, nicholas.dokos@hp.com, "Allen S. Rout" =C5=A0t=C4=9Bp=C3=A1n N=C4=9Bmec wrote: > [As most people here apparently consider Jambunathan's communication > style acceptable, there is little point for me to continue replying in > this thread, but I really couldn't resist in this case, sorry.] >=20 That is what *you* read into it: as long as we understand that this viewpoint is not necessarily shared by others, I don't have much problem with you believing that. But please do not ascribe motives to others: you just don't know what they do or do not consider acceptable. IME, flame wars erupt and eventually die down, but not before they have done some damage. Whatever damage has been done in this case is done and we can't do much about it. But it behooves us (all of us) to limit the spread. I repeat: if you cannot stand Jambunathan K., or if Jambunathan K. cannot stand Samuel Wales or ... cannot stand ... (fill in the blanks), there is an easy solution: do not read the offending messages. But in any case, do not reply in an uncivil manner and if you cannot be civil, do not reply at all. Nick PS. Don't be like this guy: http://xkcd.com/386/ From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikas Rawal Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Thu, 25 Aug 2011 04:56:34 +0530 Message-ID: <20110824232634.GA8253@panahar> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> <13235.1314197286@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42607) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwN0U-0000b9-6j for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 19:37:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwN0T-0008A5-69 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 19:37:14 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:48392) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwN0S-00089r-Tv for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 19:37:13 -0400 Received: by pzk36 with SMTP id 36so1800342pzk.17 for ; Wed, 24 Aug 2011 16:37:11 -0700 (PDT) Content-Disposition: inline In-Reply-To: <13235.1314197286@alphaville.dokosmarshall.org> 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 > Please, all, take a step back and take a deep breath. +1. Now that various people have given vent to their feelings (and I hope others have managed to swallow what they did not like), let us just move on. May I suggest: go watch a film, grab a beer, or simply sit down and code. Do whatever it takes to cool down, and laugh at one more flame war that we will hopefully manage to douse. Vikas From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: My apprehensions listed (Re: Not merging org-lparse, org-xhtml & org-odt to the core) Date: Thu, 25 Aug 2011 07:42:30 +0530 Message-ID: <81zkiy8c4f.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> <81fwkruiaw.fsf@gmail.com> <87obzesvb7.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42038) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwPaJ-0001rS-9i for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 22:22:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwPaI-0006Vt-23 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 22:22:23 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:36266) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwPaH-0006Vb-N9 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 22:22:21 -0400 Received: by pzk36 with SMTP id 36so1995914pzk.17 for ; Wed, 24 Aug 2011 19:22:20 -0700 (PDT) In-Reply-To: <87obzesvb7.fsf@gnu.org> (Bastien's message of "Wed, 24 Aug 2011 17:06:36 +0200") 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: Bastien Cc: Orgmode Bastien (Now with courtesy copy to the list) > Really, Jambunathan, let's get over this useless discussion. I don't think that the discussion was intended to be useless. I have raised or recorded numerous issues that I was apprehensive about. > As someone said, we both are doing our best, we should not let > frustration (mine too!) guide our reactions. My only goal is this - I would like to have all three files in the core with minimum of effort expended by all parties (including you and volunteer testers). > My point now is: how can we make it easy for *other people* to help us > in merging org-html.el and org-xhtml.el (assuming that you agree > having org-xhtml.el in core is not a good idea, tell me otherwise)? My point is having org-xhtml.el is a good idea. It takes zero effort to merge it. We only need some serious testers to give an independent assessment that org-xhtml.el is good to go. All checkins to org-html.el should merge back to org-lparse.el and/or org-odt.el and org-html.el. It is the responsibility of the whoever makes the commit to that file. (There has been checkin to org-html.el yesterday) Anyone should think twice before making widestpread changes to org-html.el. It is difficult for me to work when the ground beneath me is shifting. As a maintainer, it is your responsibility to make sure that you don't do it yourself and nobody else does it. I have said it twice already. As I said, I will open a new thread with my merge proposals. > I think I've perhaps put too much pressure on you by implicitly > expecting that *you* would do this merge -- but this can be a > task for several people. Most people who have participated on this thread are onlookers (in a non-derogatory sense) and none of them have committed upfront so much as 10 month of effort into sole purpose improving something while also living with uncertainty of whether their efforts will make it's way back in to the core. My situation is akin to a first-time would-be-mother who has confused sense of high hope and worst fears. It is a daunting feeling. I am sure there are enough fathers (if no mothers) in this list. I will tell Nick Dokos only this. Whether a person is civil or uncivil shouldn't really matter. Etiquette matters but doesn't matter so much as understanding. IMHO, everyone should make sincere effort to cut through and look in to a person's innermost fears, concerns and apprehensions. If this doesn't happen the person has failed in a moral sense. I fear that 1. I will end up doing too much work. 2. Maintainers have not invested or unwilling/unable to expend sufficient time to assess the changes in org-lparse.el and org-xhtml.el. This fuels the fear because it is easy to discard something than to assess something and embrace it. 3. I will end up just walking away being annoyed throwing everything that I have put my heart in to. I have a life-long record of doing this. 4. People will move on to other things and start talking about the next awesone way to improve in Orgmode. I need an assurance on 2. I want a freeze on org-html.el going forward. Whatever happens the last thing that I want is an abandonware. There lies my bottomline. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: My apprehensions listed (Re: Not merging org-lparse, org-xhtml & org-odt to the core) Date: Thu, 25 Aug 2011 08:09:06 +0530 Message-ID: <81ty968bat.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> <81fwkruiaw.fsf@gmail.com> <87obzesvb7.fsf@gnu.org> <81zkiy8c4f.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:59132) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwPrR-0004bR-1D for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 22:40:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwPrP-0001Ns-Qa for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 22:40:05 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:63689) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwPrP-0001Nj-Lt for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 22:40:03 -0400 Received: by pzk36 with SMTP id 36so2016856pzk.17 for ; Wed, 24 Aug 2011 19:40:02 -0700 (PDT) In-Reply-To: <81zkiy8c4f.fsf@gmail.com> (Jambunathan K.'s message of "Thu, 25 Aug 2011 07:42:30 +0530") 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: Bastien Cc: Orgmode Bastien > All checkins to org-html.el should merge back to org-lparse.el and/or > org-odt.el and org-html.el. It is the responsibility of the whoever > makes the commit to that file. (There has been checkin to org-html.el > yesterday) Anyone should think twice before making widestpread changes > to org-html.el. > > It is difficult for me to work when the ground beneath me is > shifting. As a maintainer, it is your responsibility to make sure that > you don't do it yourself and nobody else does it. I have said it twice > already. I am re-sending this for emphasis. I am not convinced that you have paid heed to what I have been trying to say (because there had been a checkin yesterday) This is what I expressed sometime back. ,---- See http://lists.gnu.org/archive/html/emacs-orgmode/2011-07/msg01294.html | > ps: I would desire that any changes to org-html.el also need to be | > ported to org-lparse.el and (or) org-xhtml.el. `---- There is also one post roughly (I believe in February or March) Requesting a feature freeze is a common practice. You either accept the freeze or reject the freeze. You don't overlook it. Because the later leaves me confused on where you stand on the matter. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: My apprehensions listed (Re: Not merging org-lparse, org-xhtml & org-odt to the core) Date: Thu, 25 Aug 2011 01:18:37 -0400 Message-ID: <4743.1314249517@alphaville.dokosmarshall.org> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> <81fwkruiaw.fsf@gmail.com> <87obzesvb7.fsf@gnu.org> <81zkiy8c4f.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:40787) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwSKw-0005LD-JT for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 01:18:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwSKv-0004bA-K7 for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 01:18:42 -0400 Received: from g5t0008.atlanta.hp.com ([15.192.0.45]:34970) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwSKv-0004b0-DG for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 01:18:41 -0400 In-Reply-To: Message from Jambunathan K of "Thu, 25 Aug 2011 07:42:30 +0530." <81zkiy8c4f.fsf@gmail.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: "Jambunathan K." Cc: Bastien , nicholas.dokos@hp.com, Orgmode Jambunathan K wrote: > ... > I will tell Nick Dokos only this. Whether a person is civil or uncivil > shouldn't really matter. Etiquette matters but doesn't matter so much as > understanding. IMHO, everyone should make sincere effort to cut through > and look in to a person's innermost fears, concerns and apprehensions. > > I disagree: it most definitely matters and it's not just "etiquette" either that I'm talking about. I'm talking about respect for the other person's point of view; in fact, something very close to what you express in your last sentence above. If I'm ranting and raving against you, how can I possibly look in at your "...fears, concerns and apprehensions"? All I'd be thinking about is how to hurt you. And remember that I only felt compelled to say something when I saw what I considered an ad hominem attack. Before that, even though I most definitely did not like the tone of the discussion, there were reasonable technical points being addressed. The trouble is that when the tone becomes grating (as it did), it gets harder and harder to avoid the ad hominem part and whatever discussion was going on cannot continue being a discussion on the matters of interest. It becomes a "me against you" and "whoever is not for me is against me" kind of thing - there are no shades of gray, only black and white. That's why incivility matters. There are of course cases where no such respect should be given: if someone is consistently making an ass of himself, then shouting him down may be the only alternative. But I hope that we all understand that we are not in this situation here: there has been frustration (on both sides), some of it legitimate, some of it perhaps not. But I think that both Bastien and you know deep down that you both care very much for orgmode (that's why we are *all* here), so it behooves you (both of you) to find a way forward. > If this doesn't happen the person has failed in a moral sense. [I don't understand what you mean here: which person has failed? The same person whose fears, concerns and apprehensions have not been understood? Or the "other"? ] In any case, I have said more than I wanted to say on the matter at hand, so I'll shut up for now and hope that things proceed in a more constructive direction in the future. Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: My apprehensions listed (Re: Not merging org-lparse, org-xhtml & org-odt to the core) Date: Thu, 25 Aug 2011 09:21:38 +0200 Message-ID: <87y5yic5x9.fsf@gnu.org> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> <81fwkruiaw.fsf@gmail.com> <87obzesvb7.fsf@gnu.org> <81zkiy8c4f.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:41490) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwUFJ-00020O-SZ for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 03:21:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwUFI-0003Bp-Rn for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 03:21:01 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:59014) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwUFI-0003Bh-Lk for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 03:21:00 -0400 Received: by wwf10 with SMTP id 10so1649384wwf.30 for ; Thu, 25 Aug 2011 00:20:59 -0700 (PDT) In-Reply-To: <81zkiy8c4f.fsf@gmail.com> (Jambunathan K.'s message of "Thu, 25 Aug 2011 07:42:30 +0530") 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: Orgmode Hi Jambunathan, Thanks for your reply. I will take one week of vacation next week (till sept. 5th) and try to tackle the various issues about org-html.el and org-xhtml.el -- I will then make a proposal that I hope we can both agree upon. Again, let me rephrase that I have two goals: merging the ODT exporter into Org's core, and keeping you as a motivated contributor to Org. So be reassured that I will do whatever I can in order to smooth out the way we collaborate on this. For the record, I disagree that those who make changes to org-html.el should also backport their changes to org-xhtml.el. For example: Emacs developers make changes to Org in Emacs, and it is my responsability to backport these changes into upstream Org, not their responsability. It doesn't mean we are stuck in a painful process. I'm sure we can find a smart way of dealing with this issue. I like the motherhood metaphor: to my hears, it underlines how *patient* we need to be! And focused on the baby, not on our hope and fears. So be it :) Thanks! -- Bastien From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: My apprehensions listed (Re: Not merging org-lparse, org-xhtml & org-odt to the core) Date: Thu, 25 Aug 2011 09:42:30 +0200 Message-ID: <87pqjuc4yh.fsf@gnu.org> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <87ty97hyej.fsf@gmail.com> <81fwkruiaw.fsf@gmail.com> <87obzesvb7.fsf@gnu.org> <81zkiy8c4f.fsf@gmail.com> <81ty968bat.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:53441) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwUZT-0007kj-FG for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 03:41:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwUZS-0007xc-Gv for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 03:41:51 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:41362) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwUZS-0007xS-65 for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 03:41:50 -0400 Received: by wwf10 with SMTP id 10so1660611wwf.30 for ; Thu, 25 Aug 2011 00:41:49 -0700 (PDT) In-Reply-To: <81ty968bat.fsf@gmail.com> (Jambunathan K.'s message of "Thu, 25 Aug 2011 08:09:06 +0530") 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: Orgmode Hi Jambunathan, Jambunathan K writes: > You either accept the freeze or reject the freeze. You don't overlook > it. Because the later leaves me confused on where you stand on the > matter. I'm not yet clear about what would be the purpose of this freeze. If we need to freeze org-html.el in the future, in order to ease the org-html.el/org-xhtml.el merge process, sure, we will freeze this file for the necessary amount of time. Let's decide this after sept. 5th, when I'm back from vacation. Thanks, -- Bastien From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 12:10:55 +0200 Message-ID: <877h63glw0.fsf@gnu.org> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34286) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwAPm-0002NP-Sy for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:10:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwAPl-00060Y-OH for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:10:30 -0400 Received: from plane.gmane.org ([80.91.229.3]:35199) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwAPl-00060Q-El for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:10:29 -0400 Received: from public by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1QwAPd-0003Nm-U9 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 12:10:21 +0200 In-Reply-To: <81zkiz8zdw.fsf@gmail.com> (Jambunathan K.'s message of "Wed, 24 Aug 2011 05:16:35 +0530") 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: Jambunathan K Cc: public-emacs-orgmode-mXXj517/zsQ@plane.gmane.org, Sebastien Vauban Jambunathan K writes: > Bastien has stepped in to big shoes and he has to measure up. Those shoes are so big that there is room for more than one guy. And I'm *really* glad I can rely on people like you, Carsten, Eric, Nicolas, David and many others to help me wear them :) -- Bastien From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 16:20:45 +0530 Message-ID: <81wre3ulq2.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <877h63glw0.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:37467) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwB3q-0003UO-Cq for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:51:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwB3n-0008EI-Fc for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:51:54 -0400 Received: from plane.gmane.org ([80.91.229.3]:56995) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwB3m-0008DV-Jz for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 06:51:51 -0400 Received: from public by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1QwB3k-0001M3-Cu for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 12:51:48 +0200 In-Reply-To: <877h63glw0.fsf@gnu.org> (Bastien's message of "Wed, 24 Aug 2011 12:10:55 +0200") 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: Bastien Cc: public-emacs-orgmode-mXXj517/zsQ@plane.gmane.org, Sebastien Vauban Bastien writes: > Jambunathan K writes: > >> Bastien has stepped in to big shoes and he has to measure up. > > Those shoes are so big that there is room for more than one guy. > > And I'm *really* glad I can rely on people like you, Carsten, Eric, > Nicolas, David and many others to help me wear them :) Remove me from the list. I am a charlatan and I don't want to even pretend to be otherwise. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: tsd@tsdye.com (Thomas S. Dye) Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 06:50:14 -1000 Message-ID: References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <81bovf19t0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34877) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwGeq-00071B-Uj for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 12:50:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwGep-0002Yk-KO for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 12:50:28 -0400 Received: from plane.gmane.org ([80.91.229.3]:50994) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwGep-0002Yg-DW for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 12:50:27 -0400 Received: from public by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1QwGen-00081C-8b for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 18:50:25 +0200 In-Reply-To: <81bovf19t0.fsf@gmail.com> (Jambunathan K.'s message of "Wed, 24 Aug 2011 14:10:59 +0530") 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: Jambunathan K Cc: public-emacs-orgmode-mXXj517/zsQ@plane.gmane.org, Sebastien Vauban Jambunathan K writes: >> I hope that you'll join me in expressing gratitude for all that they >> have contributed > > Ok. Done. > > Let bygones be bygones. What is important to me is that my work be > available and used widely. All other concerns are secondary. > > I am on a sabbatical from work and I will be failing myself badly if I > let my natural confrontational self to get the better of me. > > Jambunathan K. > Aloha Jambunathan K., Thank you for this. I appreciate the passion you bring to Org-mode development and am pleased at the thought the Org-mode community will continue to enjoy your efforts. All the best, Tom -- Thomas S. Dye http://www.tsdye.com From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Wed, 24 Aug 2011 14:10:59 +0530 Message-ID: <81bovf19t0.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42151) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw92K-0005vS-Kp for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 04:42:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qw92J-0000Qj-Rx for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 04:42:12 -0400 Received: from plane.gmane.org ([80.91.229.3]:36901) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw92J-0000MP-H0 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 04:42:11 -0400 Received: from public by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Qw92E-000718-25 for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 10:42:06 +0200 In-Reply-To: (Thomas S. Dye's message of "Tue, 23 Aug 2011 21:44:52 -1000") 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: "Thomas S. Dye" Cc: public-emacs-orgmode-mXXj517/zsQ@plane.gmane.org, Sebastien Vauban > I hope that you'll join me in expressing gratitude for all that they > have contributed Ok. Done. Let bygones be bygones. What is important to me is that my work be available and used widely. All other concerns are secondary. I am on a sabbatical from work and I will be failing myself badly if I let my natural confrontational self to get the better of me. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: tsd@tsdye.com (Thomas S. Dye) Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Tue, 23 Aug 2011 21:44:52 -1000 Message-ID: References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:58269) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw895-0003YJ-Nh for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 03:45:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qw894-0004Pk-Et for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 03:45:07 -0400 Received: from plane.gmane.org ([80.91.229.3]:52915) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qw894-0004O3-2X for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 03:45:06 -0400 Received: from public by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Qw892-0001wS-Nw for emacs-orgmode@gnu.org; Wed, 24 Aug 2011 09:45:04 +0200 In-Reply-To: <81zkiz8zdw.fsf@gmail.com> (Jambunathan K.'s message of "Wed, 24 Aug 2011 05:16:35 +0530") 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: Jambunathan K Cc: public-emacs-orgmode-mXXj517/zsQ@plane.gmane.org, Sebastien Vauban Jambunathan K writes: >> Hi Jambunathan, >> >>> I have made a decision not to merge org-lparse, org-xhtml & org-odt in >>> to Orgmode core. It is a very difficult decision for me to take >>> considering that I had put all my heart in to it. (Btw, this decision >>> has nothing to with me not having enough time at hand.) >> >> As all, I'm puzzled by this statement, and wonder what went wrong >> somehow. > > Without mincing words, Bastien has to learn how to respect and engage > with serious contributors. He should take time to look at the data > presented to him and put some serious effort before sending out an > email. I am willing to overlook the fact that he seriously pissed me off > with unkind words and committed a greater faux paus by inviting Lennart > Borgman in to merge discussions. I am sorry to say this - Lennart > Borgman did a half-baked work. > > I have been patient and tried my best to be as co-operative as > possible. He just manages to get me on my nerves somehow. He simply > didn't have the courtesy to reply to my mails when he simply disappeared > from the list for 3 months or so. I hate to such callous attitude who > claims to be a maintainer and wants to act like a maintainer. > Aloha Jambunathan K, It is good to have you back. The Org-mode community is poorer without you. Please understand that the Org-mode community is a community of volunteers, committed to the cause of interesting and useful software. When one of us contributes, as you have so generously, the contribution represents commitment to that cause. I have nothing but admiration for the contributions of Lennart Borgman and Bastien Guerry. I am eager to see what they will contribute next. I hope that you'll join me in expressing gratitude for all that they have contributed and that, like me, you'll encourage them to contribute as the spirit moves them. I don't see any other way a community of volunteers can move forward. All the best, Tom >> What you did is a really important piece of the puzzle, as it finally >> let us cooperate more easily with people we can't convert as >> Org'ers. At least, they won't bother us to fit their software >> requirement: we can work in Org up till the very end, and then produce >> a final result in the expected (by others) format. >> >>> I leave it up to the community on what would be the best place to "host" >>> this software. >> >> For me, the answer to this was/is clear: Org-mode itself, hence the reason >> why I don't understand the above. > > I have definite ideas on how the merge should proceed. He should be > willing to concede to the fact that I have a far better understanding on > what the most effective method of merge is. > > Bastien has stepped in to big shoes and he has to measure up. > >> Best regards, >> Seb -- Thomas S. Dye http://www.tsdye.com From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Thu, 25 Aug 2011 20:15:26 +0530 Message-ID: <81sjoppn21.fsf@gmail.com> References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <877h63glw0.fsf@gnu.org> <81wre3ulq2.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52927) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwbCO-0005DE-JE for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 10:46:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwbCN-00069X-Hy for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 10:46:28 -0400 Received: from mail-pz0-f44.google.com ([209.85.210.44]:59269) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwbCN-00069L-7k for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 10:46:27 -0400 Received: by pzk36 with SMTP id 36so3100727pzk.17 for ; Thu, 25 Aug 2011 07:46:26 -0700 (PDT) In-Reply-To: (Matt Price's message of "Thu, 25 Aug 2011 10:22:43 -0400") 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: Matt Price Cc: emacs-orgmode@gnu.org >>> And I'm *really* glad I can rely on people like you, Carsten, Eric, >>> Nicolas, David and many others to help me wear them :) >> >> Remove me from the list. I am a charlatan and I don't want to even >> pretend to be otherwise. >> > Please stay on the list! I meant the list of people Bastien lined up not the mailing list. I am simply overwhelmed and humbled by the enthusiasm shown for my work. I should say your words (boxquoted here) ,---- | I think when people work really hard on these voluntary contributions | it's not at all unusual for them to feel frustrated when the process | doesn't move as smoothly as it could. `---- personally made most emotional sense to me. It rightly captures what I was trying to articulate (very poorly). Btw, one of the reasons this list doesn't get insane is because it has people from "humanities" who have a natural flair for neutralizing any discord. The conventional stereotype of a geek as a social misfit also has some truth to it. I truly appreciate your kind words. I have no doubt that they are genuine words of love that bring LOTS OF understanding. Jambunathan K. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Sauer Subject: Re: Not merging org-lparse, org-xhtml & org-odt to the core Date: Thu, 25 Aug 2011 20:34:32 -0500 Message-ID: References: <81ei0e6vol.fsf@gmail.com> <20110822094816.0f61f019@vknecht-intel.unibw-hamburg.de> <80k4a5ab4f.fsf@somewhere.org> <81zkiz8zdw.fsf@gmail.com> <877h63glw0.fsf@gnu.org> <81wre3ulq2.fsf@gmail.com> <81sjoppn21.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:39976) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwlJb-0008Fd-3y for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 21:34:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QwlJa-0003um-4D for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 21:34:35 -0400 Received: from mail-gx0-f169.google.com ([209.85.161.169]:44240) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QwlJa-0003uf-1R for emacs-orgmode@gnu.org; Thu, 25 Aug 2011 21:34:34 -0400 Received: by gxk23 with SMTP id 23so2482832gxk.0 for ; Thu, 25 Aug 2011 18:34:33 -0700 (PDT) In-Reply-To: <81sjoppn21.fsf@gmail.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: Matt Price , emacs-orgmode@gnu.org To all, I would just like to, at this point, say that I am honored to have read this discussion. I was very worried that a major blowout was going to occur but you have shown me something that I appreciate about OSS, it not only attempts to make the world better through Freedom but it makes us better as we work together across divides. Hopefully I will be able to become more active, I just finished making the web version of Practical Common Lisp into an e-book to sit on my Nook for me to peruse and study as I continue working on some of my DEV ideas. Thank you to all of you and I am glad that org-odt is still here and everyone involved is as well. --- Matthew From mboxrd@z Thu Jan 1 00:00:00 1970 From: Herbert Sitz Subject: How to include comments on export? org-exp-blocks.el? Date: Mon, 24 Oct 2011 21:30:24 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:50512) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIS6V-0008Fl-PY for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 17:30:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIS6U-0006fX-Kv for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 17:30:43 -0400 Received: from lo.gmane.org ([80.91.229.12]:35191) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIS6U-0006fT-Cx for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 17:30:42 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RIS6R-0006LE-R8 for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 23:30:40 +0200 Received: from c-24-22-131-140.hsd1.wa.comcast.net ([24.22.131.140]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Oct 2011 23:30:39 +0200 Received: from hesitz by c-24-22-131-140.hsd1.wa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Oct 2011 23:30:39 +0200 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 I'm trying to see if there is a way to include comments on export, to show up as something like the comments boxes you see in MS Word. I see Eric Schulte did some work on this and that somehow it ended up (I think) as part of what you could do using the org-exp-blocks addon. But I'm not sure how you actually use it. Can someone give an example of how org-exp-blocks (or anything else) could be used to export comment blocks as graphic notes in the text? Thanks, Herb From mboxrd@z Thu Jan 1 00:00:00 1970 From: Herbert Sitz Subject: Re: How to include comments on export? org-exp-blocks.el? Date: Mon, 24 Oct 2011 22:20:03 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38012) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RISsU-0005n9-4P for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 18:20:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RISsS-0006dp-W4 for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 18:20:18 -0400 Received: from lo.gmane.org ([80.91.229.12]:52208) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RISsS-0006dh-QE for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 18:20:16 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RISsR-0007ku-Ep for emacs-orgmode@gnu.org; Tue, 25 Oct 2011 00:20:15 +0200 Received: from c-24-22-131-140.hsd1.wa.comcast.net ([24.22.131.140]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Oct 2011 00:20:15 +0200 Received: from hesitz by c-24-22-131-140.hsd1.wa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Oct 2011 00:20:15 +0200 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 Herbert Sitz gmail.com> writes: > > Can someone give an example of how org-exp-blocks (or anything else) could be > used to export comment blocks as graphic notes in the text? > Just to add a bit. I do have the following line in my .emacs: (require 'org-exp-blocks) and I have a comment like this in my document: --- sample text below ---------- * Heading one text here #+begin_comment some comment text here #+end_comment * Heading two --- sample text above ---------- When I export it the headings and text print out but the comment doesn't. I assume I need to do something more than have the 'require' for org-exp-blocks in my .emacs but I can't figure out what it is. -- Herb From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: How to include comments on export? org-exp-blocks.el? Date: Mon, 24 Oct 2011 18:52:32 -0400 Message-ID: <14553.1319496752@alphaville.americas.hpqcorp.net> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60688) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RITNk-00043x-3f for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 18:52:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RITNi-0003F0-Ti for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 18:52:36 -0400 Received: from g1t0029.austin.hp.com ([15.216.28.36]:2619) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RITNi-0003EX-JA for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 18:52:34 -0400 In-Reply-To: Message from Herbert Sitz of "Mon, 24 Oct 2011 22:20:03 -0000." 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: Herbert Sitz Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Herbert Sitz wrote: > Herbert Sitz gmail.com> writes: > > > > > Can someone give an example of how org-exp-blocks (or anything else) could be > > used to export comment blocks as graphic notes in the text? > > > > Just to add a bit. I do have the following line in my .emacs: > > (require 'org-exp-blocks) > > and I have a comment like this in my document: > > --- sample text below ---------- > * Heading one > text here > #+begin_comment > some comment text here > #+end_comment > * Heading two > --- sample text above ---------- > > > When I export it the headings and text print out but the comment doesn't. I > assume I need to do something more than have the 'require' for org-exp-blocks in > my .emacs but I can't figure out what it is. > The only documentation there is seems to be in the file itself (and that is not very complete). If you get it working, you might want to submit a patch to improve the documentation. Two hints from org-exp-blocks.el: ,---- | ;; This is a utility for pre-processing blocks in org files before | ;; export using the `org-export-preprocess-hook'. It can be used for `---- ,---- | (defun org-export-blocks-preprocess () | "Export all blocks according to the `org-export-blocks' block export alist. | Does not export block types specified in specified in BLOCKS | which defaults to the value of `org-export-blocks-witheld'." `---- So I tried --8<---------------cut here---------------start------------->8--- (add-hook 'org-export-preprocess-hook (function org-export-blocks-preprocess)) --8<---------------cut here---------------end--------------->8--- and I get the comment in the HTML output. Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: How to include comments on export? org-exp-blocks.el? Date: Tue, 25 Oct 2011 07:27:08 +0530 Message-ID: <81aa8p6dfv.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34763) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIWGf-0005ob-5P for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 21:57:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIWGd-0007K6-W6 for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 21:57:29 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:59758) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIWGd-0007Jx-Qm for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 21:57:27 -0400 Received: by iagf6 with SMTP id f6so7114iag.0 for ; Mon, 24 Oct 2011 18:57:26 -0700 (PDT) In-Reply-To: (Herbert Sitz's message of "Mon, 24 Oct 2011 21:30:24 +0000 (UTC)") 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: Herbert Sitz Cc: emacs-orgmode@gnu.org Herbert Sitz writes: > I'm trying to see if there is a way to include comments on export, to show up as > something like the comments boxes you see in MS Word. What is your target format? Is it org->odt->doc. If yes, then currently there is no support for annotations/comments. It is doable. I did some investigation of it in some other context - inline tasks. You can see some of my notes here: See the Footnotes section of - http://lists.gnu.org/archive/html/emacs-orgmode/2011-08/msg00357.html From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: How to include comments on export? org-exp-blocks.el? Date: Tue, 25 Oct 2011 08:13:40 +0530 Message-ID: <8162jd6bab.fsf@gmail.com> References: <14553.1319496752@alphaville.americas.hpqcorp.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:46671) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIWzf-00055n-Bz for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 22:44:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIWze-0005IU-95 for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 22:43:59 -0400 Received: from mail-gx0-f169.google.com ([209.85.161.169]:44291) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIWze-0005IL-6V for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 22:43:58 -0400 Received: by ggnh4 with SMTP id h4so44826ggn.0 for ; Mon, 24 Oct 2011 19:43:57 -0700 (PDT) In-Reply-To: <14553.1319496752@alphaville.americas.hpqcorp.net> (Nick Dokos's message of "Mon, 24 Oct 2011 18:52:32 -0400") 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: emacs-orgmode@gnu.org, Herbert Sitz > So I tried > > (add-hook 'org-export-preprocess-hook (function org-export-blocks-preprocess)) > > and I get the comment in the HTML output. Is it valid a valid xhtml? M-x nxml-mode C-c C-n (assumming rng validation is on) I find that it suffers from the same problem that cropped up wrt special blocks. See this thread http://lists.gnu.org/archive/html/emacs-orgmode/2011-10/msg00046.html I think the comment blocks are better handled as special blocks instead of org-exp-blocks. ps: I think number of blocks and hooks in Org reflect number of people that worked on it :-) -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: How to include comments on export? org-exp-blocks.el? Date: Mon, 24 Oct 2011 23:33:12 -0400 Message-ID: <5935.1319513592@alphaville.dokosmarshall.org> References: <14553.1319496752@alphaville.americas.hpqcorp.net> <8162jd6bab.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:40921) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIXlM-0001Su-C8 for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 23:33:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIXlL-0003cA-DB for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 23:33:16 -0400 Received: from g1t0029.austin.hp.com ([15.216.28.36]:15461) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIXlL-0003c3-6Q for emacs-orgmode@gnu.org; Mon, 24 Oct 2011 23:33:15 -0400 In-Reply-To: Message from Jambunathan K of "Tue, 25 Oct 2011 08:13:40 +0530." <8162jd6bab.fsf@gmail.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: Herbert Sitz , emacs-orgmode@gnu.org Cc: nicholas.dokos@hp.com Jambunathan K wrote: > > > So I tried > > > > (add-hook 'org-export-preprocess-hook (function org-export-blocks-preprocess)) > > > > and I get the comment in the HTML output. > > Is it valid a valid xhtml? > I have no idea: I was mainly interested in how to make org-exp-blocks to work (for some value of "work") and although I looked at the HTML, I didn't check it. > M-x nxml-mode > C-c C-n (assumming rng validation is on) > > I find that it suffers from the same problem that cropped up wrt special > blocks. See this thread > http://lists.gnu.org/archive/html/emacs-orgmode/2011-10/msg00046.html > > I think the comment blocks are better handled as special blocks instead > of org-exp-blocks. > That may very well be true. > ps: I think number of blocks and hooks in Org reflect number of people > that worked on it :-) > -- > Well, I don't mind a plethora of hooks: they enable things that wouldn't be possible otherwise (and they are even documented and easily findable because of uniform naming: either the M-x org--hook trick which works because of the uniform naming [fn:1] or the Worg (?) page that Carsten pointed to some time ago[fn:2]). As for org-exp-blocks, two out of the three areas of its application, as discussed in the commentary, are deprecated: only comment remains. But contrary to your (tongue-in-cheek) remark, Eric Schulte seems to be single-handedly responsible for all of the block stuff :-) Nick Footnotes: [fn:1] Note to future maintainers: don't ever name a hook anything other than org-foo-bar-hook or else :-) [fn:2] I prefer the first to the second because I can do it right in emacs: no need to go look up URLs and use inferior tools. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: How to include comments on export? org-exp-blocks.el? Date: Tue, 25 Oct 2011 10:02:18 +0530 Message-ID: <811uu16699.fsf@gmail.com> References: <14553.1319496752@alphaville.americas.hpqcorp.net> <8162jd6bab.fsf@gmail.com> <5935.1319513592@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52991) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIYgo-0008IT-Nb for emacs-orgmode@gnu.org; Tue, 25 Oct 2011 00:32:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RIYgn-00046d-Hg for emacs-orgmode@gnu.org; Tue, 25 Oct 2011 00:32:38 -0400 Received: from mail-pz0-f47.google.com ([209.85.210.47]:43047) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIYgn-00046Y-As for emacs-orgmode@gnu.org; Tue, 25 Oct 2011 00:32:37 -0400 Received: by pzd13 with SMTP id 13so335200pzd.6 for ; Mon, 24 Oct 2011 21:32:36 -0700 (PDT) In-Reply-To: <5935.1319513592@alphaville.dokosmarshall.org> (Nick Dokos's message of "Mon, 24 Oct 2011 23:33:12 -0400") 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: emacs-orgmode@gnu.org, Herbert Sitz >> I think the comment blocks are better handled as special blocks instead >> of org-exp-blocks. > That may very well be true. If only - ,---- From org-export-preprocess-string | ;; Call the hook | (run-hooks 'org-export-preprocess-hook) | | ;; Remove comment environment and comment subtrees | (org-export-remove-comment-blocks-and-subtrees) | | ;; Blockquotes, verse, and center | (org-export-mark-blockquote-verse-center) | (run-hooks 'org-export-preprocess-after-blockquote-hook) `---- Before it hits the blockquote hook the comment block gets removed. Now there is a reason why the hook is hooking up to org-export-preprocess-hook. While complaining of plethora of hooks, I was mainly complaining from this standpoint. This example also illustrates my frustration as an implementer well. Apart from other things, there is this - Oh! yet another hook that I need to take care of and cater to in org-odt.el. Also software behaviour is counter-intuitive. This prevents one from asserting a mental model with any confidence without diving in to the code. >> ps: I think number of blocks and hooks in Org reflect number of people >> that worked on it :-) >> -- >> > > Well, I don't mind a plethora of hooks: they enable things that wouldn't > be possible otherwise (and they are even documented and easily findable > because of uniform naming: either the M-x org--hook trick which works > because of the uniform naming [fn:1] or the Worg (?) page that Carsten > pointed to some time ago[fn:2]). org-exp.el is a sequential assembly line. If one rearranges logic in it even a bit - with no regard to the hook boundaries for example - the whole export process goes for a toss. And when you name a hook afterblockquote hook you can't move it before the blockquote can you? > As for org-exp-blocks, two out of the three areas of its application, as > discussed in the commentary, are deprecated: only comment remains. But > contrary to your (tongue-in-cheek) remark, Eric Schulte seems to be > single-handedly responsible for all of the block stuff :-) I do see some aspects of current day babel in the deprecated blocks. May be Carsten and various users from the distant past had a hand in various "standard but useful" hooks like verse, quote, center, comments etc. > Nick > > Footnotes: > > [fn:1] Note to future maintainers: don't ever name a hook anything other than > org-foo-bar-hook or else :-) > > [fn:2] I prefer the first to the second because I can do it right in emacs: no > need to go look up URLs and use inferior tools. > > -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Torsten Wagner Subject: table alignment failed for Asian characters Date: Thu, 27 Oct 2011 20:33:26 +0900 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60396) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJODA-0001QK-Gk for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 07:33:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJOD9-0006J6-9b for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 07:33:28 -0400 Received: from mail-yw0-f41.google.com ([209.85.213.41]:32773) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJOD9-0006Ge-4A for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 07:33:27 -0400 Received: by ywa17 with SMTP id 17so2996708ywa.0 for ; Thu, 27 Oct 2011 04:33:26 -0700 (PDT) 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: Org Mode Mailing List Hi, just noticed, that the table alignment fails if I use Asian characters within the table. Guess this has nothing to do with the table itself but rather something with the different spacing of different character sets. Maybe someone had a similar problem already and know how to solve this. Thanks Torsten From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: table alignment failed for Asian characters Date: Thu, 27 Oct 2011 13:55:50 +0200 Message-ID: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> References: Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:43439) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJOYt-0008V8-SH for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 07:55:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJOYs-0001xe-SJ for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 07:55:55 -0400 Received: from mail-ey0-f169.google.com ([209.85.215.169]:43261) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJOYs-0001xS-K1 for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 07:55:54 -0400 Received: by eye4 with SMTP id 4so2678949eye.0 for ; Thu, 27 Oct 2011 04:55:53 -0700 (PDT) In-Reply-To: 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: Torsten Wagner Cc: Org Mode Mailing List On Oct 27, 2011, at 1:33 PM, Torsten Wagner wrote: > Hi, > just noticed, that the table alignment fails if I use Asian characters > within the table. Guess this has nothing to do with the table itself > but rather something with the different spacing of different character > sets. > Maybe someone had a similar problem already and know how to solve = this. If you are wondering if this question has come up before, why don't you = try the FAQ? - Carsten= From mboxrd@z Thu Jan 1 00:00:00 1970 From: Torsten Wagner Subject: Re: table alignment failed for Asian characters Date: Thu, 27 Oct 2011 22:26:55 +0900 Message-ID: <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> References: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:43057) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJPzC-0006vm-Vz for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 09:27:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJPzB-0004V9-OV for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 09:27:10 -0400 Received: from mail-gx0-f169.google.com ([209.85.161.169]:41914) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJPzB-0004V3-Ly for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 09:27:09 -0400 Received: by ggnh4 with SMTP id h4so3116248ggn.0 for ; Thu, 27 Oct 2011 06:27:09 -0700 (PDT) In-Reply-To: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.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: Carsten Dominik Cc: Org Mode Mailing List Carsten Dominik wrote: > >On Oct 27, 2011, at 1:33 PM, Torsten Wagner wrote: > >> Hi, >> just noticed, that the table alignment fails if I use Asian >characters >> within the table. Guess this has nothing to do with the table itself >> but rather something with the different spacing of different >character >> sets. >> Maybe someone had a similar problem already and know how to solve >this. > >If you are wondering if this question has come up before, why don't you >try the FAQ? Hehe I could simply say I like so much to talk to the org family.... but indeed I simply forgot about it. Well the FAQ tells me what I thought already. I will post here a specific solution for Japanese and it might be added to the FAQ later. Maybe others can contribute to add Chinese, Korean and other languages. Thanks Torsten From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: table alignment failed for Asian characters Date: Thu, 27 Oct 2011 15:46:32 +0200 Message-ID: <46FBCDB3-06C4-4DE4-B2F1-5F6418CE19AD@gmail.com> References: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:58245) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJQI9-0002Wq-AP for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 09:46:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJQI3-0000Ww-Eu for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 09:46:45 -0400 Received: from mail-ey0-f169.google.com ([209.85.215.169]:57918) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJQI3-0000Wr-11 for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 09:46:39 -0400 Received: by eye4 with SMTP id 4so2800737eye.0 for ; Thu, 27 Oct 2011 06:46:36 -0700 (PDT) In-Reply-To: <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.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: Torsten Wagner Cc: Org Mode Mailing List On Oct 27, 2011, at 3:26 PM, Torsten Wagner wrote: >=20 >=20 > Carsten Dominik wrote: >=20 >>=20 >> On Oct 27, 2011, at 1:33 PM, Torsten Wagner wrote: >>=20 >>> Hi, >>> just noticed, that the table alignment fails if I use Asian >> characters >>> within the table. Guess this has nothing to do with the table itself >>> but rather something with the different spacing of different >> character >>> sets. >>> Maybe someone had a similar problem already and know how to solve >> this. >>=20 >> If you are wondering if this question has come up before, why don't = you >> try the FAQ? > Hehe I could simply say I like so much to talk to the org family.... = but indeed I simply forgot about it. Well the FAQ tells me what I = thought already. I will post here a specific solution for Japanese and = it might be added to the FAQ later. Maybe others can contribute to add = Chinese, Korean and other languages. That would be great, and updating thee FAQ with more detailed = information will be even better. I think if you search the mailing list, there is some info there = already: = http://search.gmane.org/?query=3Dtable+align+chinese&author=3D&group=3Dgma= ne.emacs.orgmode&sort=3Drelevance&DEFAULTOP=3Dand&xP=3DZasian%09Ztabl&xFIL= TERS=3DGemacs.orgmode---A - Carsten > Thanks >=20 > Torsten >=20 - Carsten From mboxrd@z Thu Jan 1 00:00:00 1970 From: Giovanni Ridolfi Subject: Re: table alignment failed for Asian characters Date: Thu, 27 Oct 2011 16:00:06 +0200 Message-ID: <83sjmey1p5.fsf@yahoo.it> References: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55924) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJQVE-0005Zn-UL for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:00:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJQV9-0003Pm-4t for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:00:16 -0400 Received: from nm18.bullet.mail.ukl.yahoo.com ([217.146.183.192]:34188) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RJQV8-0003PJ-RB for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:00:11 -0400 In-Reply-To: <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> (Torsten Wagner's message of "Thu, 27 Oct 2011 22:26:55 +0900") 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: Torsten Wagner Cc: Matt Lundin , Org Mode Mailing List , Carsten Dominik Torsten Wagner writes: > Well the FAQ tells me > what I thought already. I will post here a specific solution for > Japanese and it might be added to the FAQ later. Maybe others can > contribute to add Chinese, Korean and other languages. Personally I think that it does not woth to add a *specific* solution for the faq, who knows how many non-fixed-width *fonts* are out there ! ;-) But I leave the last word to Matt Lundin. (cc) Cheers, Giovanni From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: table alignment failed for Asian characters Date: Thu, 27 Oct 2011 16:02:53 +0200 Message-ID: <69A7E2DF-5095-4E59-B5D3-29FDD406270F@gmail.com> References: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> <83sjmey1p5.fsf@yahoo.it> Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55815) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJQY0-0006Bo-2k for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:03:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJQXu-0003n7-GZ for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:03:08 -0400 Received: from mail-ey0-f169.google.com ([209.85.215.169]:47131) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJQXu-0003mm-7i for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:03:02 -0400 Received: by eye4 with SMTP id 4so2823205eye.0 for ; Thu, 27 Oct 2011 07:03:01 -0700 (PDT) In-Reply-To: <83sjmey1p5.fsf@yahoo.it> 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: Giovanni Ridolfi Cc: Matt Lundin , Org Mode Mailing List On Oct 27, 2011, at 4:00 PM, Giovanni Ridolfi wrote: > Torsten Wagner writes: >=20 >> Well the FAQ tells me >> what I thought already. I will post here a specific solution for >> Japanese and it might be added to the FAQ later. Maybe others can >> contribute to add Chinese, Korean and other languages. >=20 > Personally I think that it does not woth to add a *specific* > solution for the faq, who knows how many non-fixed-width *fonts* > are out there ! ;-) No, but what would help is information on how to identify a font where = each character is an integer width. And maybe a few example fonts. - Carsten >=20 > But I leave the last word to Matt Lundin. (cc) >=20 > Cheers, > Giovanni - Carsten From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: table alignment failed for Asian characters Date: Thu, 27 Oct 2011 20:06:26 +0530 Message-ID: <81vcrapklx.fsf@gmail.com> References: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> <83sjmey1p5.fsf@yahoo.it> <69A7E2DF-5095-4E59-B5D3-29FDD406270F@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:39861) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJR4f-00059d-QQ for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:37:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJR4a-0003N3-TG for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:36:53 -0400 Received: from mail-vw0-f41.google.com ([209.85.212.41]:42532) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJR4a-0003Mx-Qb for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 10:36:48 -0400 Received: by vws16 with SMTP id 16so3078216vws.0 for ; Thu, 27 Oct 2011 07:36:48 -0700 (PDT) In-Reply-To: <69A7E2DF-5095-4E59-B5D3-29FDD406270F@gmail.com> (Carsten Dominik's message of "Thu, 27 Oct 2011 16:02:53 +0200") 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: Carsten Dominik Cc: Matt Lundin , Org Mode Mailing List Carsten Dominik writes: > On Oct 27, 2011, at 4:00 PM, Giovanni Ridolfi wrote: > >> Torsten Wagner writes: >> >>> Well the FAQ tells me >>> what I thought already. I will post here a specific solution for >>> Japanese and it might be added to the FAQ later. Maybe others can >>> contribute to add Chinese, Korean and other languages. >> >> Personally I think that it does not woth to add a *specific* >> solution for the faq, who knows how many non-fixed-width *fonts* >> are out there ! ;-) > > No, but what would help is information on how to identify a font where > each character is an integer width. And maybe a few example fonts. If you do a C-h C-\ RET tamil-itrans RET you will see a nicely aligned table which gives translation table for tamil characters - (OK, Tamil is the language I speak) - which look like http://debbugs.gnu.org/cgi/bugreport.cgi?msg=56;filename=temp.png;att=1;bug=9336 Each entry is a *single* character but it made up of as much as 3 glyphs (?) with each glyph being of fixed width(?). The alignment is produced by doing something like: ,---- See (find-file (locate-library "indian.el")) | (propertize "\t" 'display (list 'space :align-to clm)) `---- I wonder whether similar strategy could be adopted. ps: I don't understand much of what I am speaking. But I would like to be able to use Tamil tables in Orgmode tables even though I may never use it - sounds paradoxical isn't it. > - Carsten > >> >> But I leave the last word to Matt Lundin. (cc) >> >> Cheers, >> Giovanni > > - Carsten > > > > > -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: OT: collage of scripts [was: Re: table alignment failed for Asian characters] Date: Thu, 27 Oct 2011 12:28:18 -0400 Message-ID: <11431.1319732898@alphaville.dokosmarshall.org> References: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> <83sjmey1p5.fsf@yahoo.it> <69A7E2DF-5095-4E59-B5D3-29FDD406270F@gmail.com> <81vcrapklx.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com 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]:34006) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJSoe-0007QW-N7 for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 12:28:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJSoZ-0006pe-54 for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 12:28:28 -0400 Received: from g6t0187.atlanta.hp.com ([15.193.32.64]:14832) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJSoZ-0006p5-1Z for emacs-orgmode@gnu.org; Thu, 27 Oct 2011 12:28:23 -0400 In-Reply-To: Message from Jambunathan K of "Thu\, 27 Oct 2011 20\:06\:26 +0530." <81vcrapklx.fsf@gmail.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: Carsten Dominik , Giovanni Ridolfi , Matt Lundin , Org Mode Mailing List Cc: nicholas.dokos@hp.com [I hope you'll forgive me the off-topic ruminations] Jambunathan K wrote: > If you do a=20 >=20 > C-h C-\ RET tamil-itrans RET=20 >=20 > you will see a nicely aligned table which gives translation table for > tamil characters - (OK, Tamil is the language I speak) - which look like >=20 > http://debbugs.gnu.org/cgi/bugreport.cgi?msg=3D56;filename=3Dtemp.png;att= =3D1;bug=3D9336 >=20 Jambunathan's mention of Tamil brought to mind a picture that I had seen long ago and found mysterious, beautiful and fascinating. It is Fig. 40, p. 168, in Hofstadter's "G=C3=B6del, Escher, Bach": I looked for a copy on the web, but I only found the complete book. The picture is a collage of scripts, from the undeciphered (at least in 1980, the time of publication) script of Easter Island to Tamil to Assyrian cuneiform. I have no idea what each snippet says - yet there are people around today (and in some cases, perhaps, there *were* people some time ago, but no longer) who can (or could) extract meaning from each of these snippets. Conversely, there are scripts that I can extract meaning from, that other people find mysterious. I can't help the feeling that there is something deep going on here, I just don't know *what*! Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: OT: collage of scripts [was: Re: table alignment failed for Asian characters] Date: Fri, 28 Oct 2011 12:11:25 +0530 Message-ID: <81r51xd3e2.fsf@gmail.com> References: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> <83sjmey1p5.fsf@yahoo.it> <69A7E2DF-5095-4E59-B5D3-29FDD406270F@gmail.com> <81vcrapklx.fsf@gmail.com> <11431.1319732898@alphaville.dokosmarshall.org> 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]:55518) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJg8W-0006hV-D2 for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 02:41:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJg8U-0005iG-Rv for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 02:41:52 -0400 Received: from mail-gy0-f169.google.com ([209.85.160.169]:49225) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJg8U-0005iC-MV for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 02:41:50 -0400 Received: by gyf3 with SMTP id 3so4024484gyf.0 for ; Thu, 27 Oct 2011 23:41:50 -0700 (PDT) In-Reply-To: <11431.1319732898@alphaville.dokosmarshall.org> (Nick Dokos's message of "Thu, 27 Oct 2011 12:28:18 -0400") 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: Org Mode Mailing List > Jambunathan's mention of Tamil brought to mind a picture that > I had seen long ago and found mysterious, beautiful and fascinating. > It is Fig. 40, p. 168, in Hofstadter's "G=C3=B6del, Escher, Bach": I look= ed > for a copy on the web, but I only found the complete book. > > The picture is a collage of scripts, from the undeciphered (at least > in 1980, the time of publication) script of Easter Island to Tamil > to Assyrian cuneiform. Book seems like an interesting read. For me to go from frame message -> outer message -> inner message, I think I need to read the whole book and not just a fragment of it :-) Just curious, is the book a standard regular or supplementary reading for courses in US. If yes, courses here could improve a lot. Such readings will make CS/Mathematics fun, fascinating and mysterious. > I have no idea what each snippet says - yet there are people around > today (and in some cases, perhaps, there *were* people some time ago, > but no longer) who can (or could) extract meaning from each of these > snippets. Conversely, there are scripts that I can extract meaning from, > that other people find mysterious. I can't help the feeling that there > is something deep going on here, I just don't know *what*! > > Nick --=20 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: [odt] Support for annotations/comments Date: Sat, 29 Oct 2011 04:01:47 +0530 Message-ID: <81y5w4ych8.fsf_-_@gmail.com> References: <81aa8p6dfv.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60819) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJuyA-0003c7-1z for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 18:32:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJuy8-00082L-Ky for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 18:32:10 -0400 Received: from mail-yw0-f41.google.com ([209.85.213.41]:60099) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJuy8-00082E-CZ for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 18:32:08 -0400 Received: by ywa17 with SMTP id 17so4770898ywa.0 for ; Fri, 28 Oct 2011 15:32:07 -0700 (PDT) In-Reply-To: <81aa8p6dfv.fsf@gmail.com> (Jambunathan K.'s message of "Tue, 25 Oct 2011 07:27:08 +0530") 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: Herbert Sitz Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Jambunathan K writes: > Herbert Sitz writes: > >> I'm trying to see if there is a way to include comments on export, to >> show up as something like the comments boxes you see in MS Word. > > What is your target format? Is it org->odt->doc. If yes, then currently > there is no support for annotations/comments. It is doable. I needed an excuse for adding support for annotations. Exporting the below org will produce the attached odt/pdf files. Note that the pdf file is produced by LibreOffice pdf export. Annotations is a ODT only feature right now and will not work with other backends. #+TITLE: annotations.org #+AUTHOR: Jambunathan K #+EMAIL: kjambunathan@gmail.com #+DATE: 2011-10-29 Sat #+DESCRIPTION: #+KEYWORDS: #+LANGUAGE: en #+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t #+OPTIONS: TeX:t LaTeX:dvipng skip:nil d:nil todo:t pri:nil tags:not-in-toc #+EXPORT_SELECT_TAGS: export #+EXPORT_EXCLUDE_TAGS: noexport #+LINK_UP: #+LINK_HOME: #+XSLT: * Annotations There is an annotation by the original author here #+begin_annotation Do you see this annotation? #+end_annotation There is an annotation by a reviewer - "Someone else" - here. #+begin_annotation author "Someone else" date "<2011-10-22 Wed 15:43>" Yes I do. #+end_annotation > I did some investigation of it in some other context - inline tasks. You > can see some of my notes here: > > See the Footnotes section of - > http://lists.gnu.org/archive/html/emacs-orgmode/2011-08/msg00357.html > > > > > -- --=-=-= Content-Type: application/vnd.oasis.opendocument.text Content-Disposition: attachment; filename=annotations.odt Content-Transfer-Encoding: base64 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 BgAAAAAGAAYAzwEAAJUhAAAAAA== --=-=-= Content-Type: text/x-org Content-Disposition: attachment; filename=annotations.org #+TITLE: annotations.org #+AUTHOR: Jambunathan K #+EMAIL: kjambunathan@gmail.com #+DATE: 2011-10-29 Sat #+DESCRIPTION: #+KEYWORDS: #+LANGUAGE: en #+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t #+OPTIONS: TeX:t LaTeX:dvipng skip:nil d:nil todo:t pri:nil tags:not-in-toc #+EXPORT_SELECT_TAGS: export #+EXPORT_EXCLUDE_TAGS: noexport #+LINK_UP: #+LINK_HOME: #+XSLT: * Annotations There is an annotation by the original author here #+begin_annotation Do you see this annotation? #+end_annotation There is an annotation by a reviewer - "Someone else" - here. #+begin_annotation author "Someone else" date "<2011-10-22 Wed 15:43>" Yes I do. #+end_annotation --=-=-= Content-Type: application/pdf Content-Disposition: attachment; filename=annotations.pdf Content-Transfer-Encoding: base64 JVBERi0xLjQKJcOkw7zDtsOfCjIgMCBvYmoKPDwvTGVuZ3RoIDMgMCBSL0ZpbHRlci9GbGF0ZURl Y29kZT4+CnN0cmVhbQp4nMVTy2rDQAy8+yv2XLAr7dMGs+AkTqG3tIYeSk99QWkKzSW/X2nl+NHE vRaTtbwrzYxGGyhQHbNvBQoocpUrtCotFqU6vGYPV+pLzug5vGerLtMmqOBKyu1e1PUWFXqO3x5r wJjrGnTEfjG82GhPJzbmtOFSbIYsn77DuFumtCo+dbdZ22W7XwKcJ21BYxFGBcLfxGCIC1YJax1p 2UAbc8PAvLXlrZYWhJ7OsgjRlrInH/5MQOEAKz+TAXgyQivUvQ2gCdkB4zjqlx5P/enUma8lrBIF HTVTGkxENIYR/HmfAbV6nEm4u8lA5Uij2lOaRJ/q/rJXPmBhzqaFOPG9XTI7WOJeANAxTTu383Hz 8DCav8e9SCiKHZymO9q6Yro1bBiEhlrWEhqxshEaspg5x0C8z10tGzPvYx64ZMtvuhElf4QJi6Gk NmWzWaEvdAmJumdQ4cGhjgvMoJJePHCz1KyuApl53i2XdB/L9hgoqv+xpxTMNoGjldwUy5wn9AY9 /QLK39njkJqufS8uGSQ3qRkAMEjx1Ee+PstGGmcv+jI1cqd+AJkeDIIKZW5kc3RyZWFtCmVuZG9i agoKMyAwIG9iago0MjYKZW5kb2JqCgo4IDAgb2JqCjw8L0xlbmd0aCA5IDAgUi9GaWx0ZXIvRmxh dGVEZWNvZGUvTGVuZ3RoMSAyNTY3Mj4+CnN0cmVhbQp4nO18eXxbxbXwzNx7tVmyZFm2JC/RlWXL i+x4j+PExNfxAsEkcRIntQMmlm05FrEtxZJjQlsS1oDZQtmXNoYWSIEWWQ5gJ6ExBQq05ZGWlqa0 /cjXhrI88iPtC8trE+k7M/d6CUl57XvfH9/v90XK3Dkzc7Y558yZGSlWeGjYh/RoJ+KQ1D3gDUr5 OWUIoZ8jhM3d28LiX++yZgN8FCH1kt7g5oEbn/vLHoS0GQgJv9ncv723c+PP/45Q4kmELA/2+bw9 e684nIiQazfwWNQHHV2xa9XQfg3a2X0D4SsXJCyoh/bH0L6kP9DtxVVvF8PQYmjnDXivDP7a9HMV tDuhLQ56B3wr+I9uhfZOhIqrgoFQ+DeoII7Qukk6HhzyBY2r81ZC+whCpgD0YXjTlx5AFW0TjhdU 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 +WydaxLr1myMCK7lOGJuRs2tyyOLPc2T6vjaSJWnOaJuubRtHOPb26E3Qm6axKi1bRLHadcN6fRH RccxuuG29CmEsf2G29rbkS11W62t1rwsqbqp4RyPTuXpmXvZ5oOZkXub17VFnsxsj5RRIJ7Z3hy5 hv7k6BQxEkNjwxRJpFV72xQfJMbGtbSfDza0A9oxhgbRnAhoKJdWgKZZjkSKBvlkOUUDH8l4biAH PCetAE9nQG6G59YZGB6PKd74EbGxYVwUGU4OQkcYzpEcNA8HIgZoG8bdboblEnEbxcJtLpEpls8Y ORyAUuRgKHBzczBGDsyERYrnUHIUlMpZlEomi8NzOA4Zx5I3g2PJAxzP//DlW+7BE6XDV79Ef8W1 09Xog9IZuWVbny2ys0sUx68eVn7e1d3Z1d1Ha68vMuzyNUSudjWI46UvnWP4JTpc6moYRy81traN vyT5GqKlUmmjy9vQPlFb01Z3hqybZ2W11ZyDWQ1l1kZl1dadY7iODtdSWXVUVh2VVSvVMlmNfhr3 LW3jGrS8vf4yuZ4gCTqI4c50Z/vyVFNwGQ3oqaVO29Xp+3mE96IET3tE71oeMUChQ0V1RXV0CNYZ HUqkP9WrDNmuXupM34/3KkMm6E5yLUczpkUUif46UnPEuW5jGw2ViOQ9t89C9MWGbajR3wD/oB1m Bd7zMVHonK/wuV7Dw8Mh+hj2wC25OVKwrjmyiP5Wk1oNojob2qFv4Uwfx7G+ca22cTI+DYMeUAKH qTgKeTD9BRJJB7cuNRlTjakJvSqEJ9IyywIvwA6+Awrc48hItJjdl8nIRFYOvb+EJ4or5Rrup7SO pjnL6I9VVAEprXPkWkoqAmB3zu6i3VVjOWNFY1Uq+pMdj0On43G6lUaLH+dQ2BOaMQSA4XYk/zAK yHskmpHJBI9RwONp94Qws9fZxsYzRp81bEjhGmLswzMOkftDSEaWBz3DM0TDCgkbHGYkTOD/AZJM 6yoKZW5kc3RyZWFtCmVuZG9iagoKOSAwIG9iagoxMjkwOQplbmRvYmoKCjEwIDAgb2JqCjw8L1R5 cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvQkFBQUFBK0FyaWFsLUJvbGRNVAovRmxhZ3MgNAov Rm9udEJCb3hbLTYyNyAtMzc2IDIwMDAgMTAxMV0vSXRhbGljQW5nbGUgMAovQXNjZW50IDkwNQov RGVzY2VudCAyMTEKL0NhcEhlaWdodCAxMDEwCi9TdGVtViA4MAovRm9udEZpbGUyIDggMCBSCj4+ CmVuZG9iagoKMTEgMCBvYmoKPDwvTGVuZ3RoIDMwNy9GaWx0ZXIvRmxhdGVEZWNvZGU+PgpzdHJl YW0KeJxdkclugzAQhu9+Ch/TQ4RNyCYhpJQEiUMXlfYBwB5SS8VYhhx4+3o8aSv1YOub5R+PZ5Ky PtfWzMmrH1UDM++N1R6m8eYV8A6uxjKZcm3UfLfirYbWsSRom2WaYahtP+Y5S95CbJr9wlcnPXbw wJIXr8Ebe+Wrj7IJdnNz7gsGsDMXrCi4hj7UeWrdcztAElXrWoewmZd1kPwlvC8OeBptSa2oUcPk WgW+tVdguRAFz6uqYGD1v5g8kKTr1WfrQ6oMqULsZBE4Jb4gb4gr5CzyPkPekv+IvCP/BnkfOY3a A/lT5CPl75FPkbexziP5Y05JXCKfibfIF6opkCvy7wJLETnDdyX1v8H+JfWfyfjx+w9xBLijn9Fy dfM+jDUuMs4TJ2ks/O7ajQ5V8XwD2rCVUgplbmRzdHJlYW0KZW5kb2JqCgoxMiAwIG9iago8PC9U eXBlL0ZvbnQvU3VidHlwZS9UcnVlVHlwZS9CYXNlRm9udC9CQUFBQUErQXJpYWwtQm9sZE1UCi9G aXJzdENoYXIgMAovTGFzdENoYXIgMTgKL1dpZHRoc1s3NTAgNTU2IDYxMCA2MTAgMzMzIDI3NyA1 NTYgMjc3IDM4OSA2MTAgNjEwIDYxMCAyNzcgNTU2IDI3NyAzMzMKNzIyIDU1NiA3MjIgXQovRm9u dERlc2NyaXB0b3IgMTAgMCBSCi9Ub1VuaWNvZGUgMTEgMCBSCj4+CmVuZG9iagoKMTMgMCBvYmoK PDwvTGVuZ3RoIDE0IDAgUi9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoMSAzNjgyMD4+CnN0cmVh bQp4nOy9eXxb1ZkwfM69V/t2tVi7pStLsixLluRFtuWY+BrHzuKYGOIsDpjYsZ3YxLEd2U4IJY1b CiGBNmlLy9Y2aTsUWjqDs4EDpRgmpdA2Jd2Y0ilLZ9KWtnGb6aQMM2Drfc65V44DtG/f9/v++H6/ Dyv3nufsz3nOs51Fynh2oh/p0SRikdi7o2d0eN2aFQihHyCELb27xoWHf5a0APwGQqrnt45u2zEu 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 n7kinBYKifgVYZJJNnOFviqcThxldvpqPPsgjKjCJMKIwYSFrRKVhRGVrvKwFA/DNFUT8Yqq1oI+ oAMsCNPnAx50qparDSWQK80EYcIu0sZztQm7WBjmQy2Z99FkTYR6eTJvE+HJdrKgiq4jJKyzkEqf joCK3sfdiw/dml4bTpbovI5Os7wOpQ9j2msxmAX1GMGNmND/c5mI/Q/BdHX01snxxISWyGuJCSBv /eCVF/3WmbFAoHLyFnMELHF3fmz8RaajE9YtbSJundTigcro+BPc48w9qsUrZDxxLFMZNyfi9qg5 mtBG49nVhan+5GO1zj+o1T/1hGRTLFk/q7WQfII7ydwLrFaS1UqyWgvmAq+VPBqjyXSm4iYx9soc rquCpxHHQ74lmI3t8E0e5AfHgaD/tZarDoLLlieUtZq0mCUDzNUZ7YwyF45O5toCs7fu8r92INhy lb5Xd/lg3qrFSIj4Ey/FH3yLxWKJoVwOgUtlP7eVcNAGh5PWoSMjGcuwjIRl5uNZ/iyLcn3pz5i+ G8a6IRSMKWPamDVWDGe5nIW5+Ya6rgo5taBOqdPqrLqiSszxfOayacyqf1fFMmYTLWFJxHnNMhRf 1iyVi2whKFAEauVC5VB/JqqScfzbpfhn3kmeAjSgFxgGnOQ34D8BHwF3AAf5LvgC8C6wyixip9iZ 8L8UZxWzIXbS8Ys9q93P9OyrQke/XtPhkZomnqupEe3xQ+1Ib2PUiz/elFwF/x74M/BX4DPAKfaI PTx5uTZrs0VSDFEMnz3Ko8SoGCrx5/hTtrtLxVCIFPlbR2EoFfmzIR+f94QWywS7Aj8IBEHcWmTd ykwfBv4XHEe5rwplbmRzdHJlYW0KZW5kb2JqCgoxNCAwIG9iagoyMDg3MAplbmRvYmoKCjE1IDAg b2JqCjw8L1R5cGUvRm9udERlc2NyaXB0b3IvRm9udE5hbWUvQ0FBQUFBK1RpbWVzTmV3Um9tYW5Q U01UCi9GbGFncyA2Ci9Gb250QkJveFstNTY4IC0zMDYgMjAwMCAxMDA3XS9JdGFsaWNBbmdsZSAw Ci9Bc2NlbnQgODkxCi9EZXNjZW50IDIxNgovQ2FwSGVpZ2h0IDEwMDYKL1N0ZW1WIDgwCi9Gb250 RmlsZTIgMTMgMCBSCj4+CmVuZG9iagoKMTYgMCBvYmoKPDwvTGVuZ3RoIDMzNS9GaWx0ZXIvRmxh dGVEZWNvZGU+PgpzdHJlYW0KeJxdks9ugzAMxu88RY7doYKkBVoJIXVQJA77o7E9AE1MhzQCCvTA 2y+2u03aAfSz/dn6ZCcs6rK2/RK+ulE3sIiut8bBPN6cBnGBa28DqYTp9XKP6K+HdgpC39us8wJD bbsxy4Lwzdfmxa1iczLjBR6C8MUZcL29is1H0fi4uU3TFwxgFxEFeS4MdH7OUzs9twOE1LWtjS/3 y7r1LX+C93UCoSiWbEWPBuap1eBae4Ugi6JcZFWVB2DNv5qKueXS6c/Wean00ijaydyzIlZn5B1z hLwn3pMmJk5IkzBXyClxukc+cJ70R+Yj8ok1O+RH4pj0BWsOyCVzjHxmvUKuOI8sI87jTMn+kxSZ /ScFMvtPcY5k/2mCzP5T0rN/VSKzf0Xz2X+MPuXdf0nLvG8N14p3/zmX0Dfn/KnocdCN8Dq9hd/3 M40TdtH3DaHfpaEKZW5kc3RyZWFtCmVuZG9iagoKMTcgMCBvYmoKPDwvVHlwZS9Gb250L1N1YnR5 cGUvVHJ1ZVR5cGUvQmFzZUZvbnQvQ0FBQUFBK1RpbWVzTmV3Um9tYW5QU01UCi9GaXJzdENoYXIg MAovTGFzdENoYXIgMjUKL1dpZHRoc1s3NzcgNTAwIDI1MCAyNTAgNzIyIDUwMCA1MDAgMjc3IDQ0 MyAyNzcgMzg5IDYxMCA1MDAgNDQzIDMzMyA1MDAKNTAwIDUwMCAyNzcgNTAwIDUwMCA3MjIgMzMz IDQwOCA1NTYgNzc3IF0KL0ZvbnREZXNjcmlwdG9yIDE1IDAgUgovVG9Vbmljb2RlIDE2IDAgUgo+ PgplbmRvYmoKCjE4IDAgb2JqCjw8L0YxIDEyIDAgUi9GMiAxNyAwIFIKPj4KZW5kb2JqCgoxOSAw IG9iago8PC9Gb250IDE4IDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoKMSAwIG9i ago8PC9UeXBlL1BhZ2UvUGFyZW50IDcgMCBSL1Jlc291cmNlcyAxOSAwIFIvTWVkaWFCb3hbMCAw IDU5NSA4NDJdL0Fubm90c1sKNCAwIFIgNSAwIFIgNiAwIFIgXQovR3JvdXA8PC9TL1RyYW5zcGFy ZW5jeS9DUy9EZXZpY2VSR0IvSSB0cnVlPj4vQ29udGVudHMgMiAwIFI+PgplbmRvYmoKCjIwIDAg b2JqCjw8L0NvdW50IDEvRmlyc3QgMjEgMCBSL0xhc3QgMjEgMCBSCj4+CmVuZG9iagoKMjEgMCBv YmoKPDwvQ291bnQgMC9UaXRsZTxGRUZGMDAzMTAwMkUwMDIwMDA0MTAwNkUwMDZFMDA2RjAwNzQw MDYxMDA3NDAwNjkwMDZGMDA2RTAwNzM+Ci9EZXN0WzEgMCBSL1hZWiA3NC42IDY4Ni41IDBdL1Bh cmVudCAyMCAwIFI+PgplbmRvYmoKCjcgMCBvYmoKPDwvVHlwZS9QYWdlcwovUmVzb3VyY2VzIDE5 IDAgUgovTWVkaWFCb3hbIDAgMCA1OTUgODQyIF0KL0tpZHNbIDEgMCBSIF0KL0NvdW50IDE+Pgpl bmRvYmoKCjYgMCBvYmoKPDwvVHlwZS9Bbm5vdC9TdWJ0eXBlL0xpbmsvQm9yZGVyWzAgMCAwXS9S ZWN0WzU2IDY5OC41IDEyNy41IDcxMi4zXS9EZXN0WzEgMCBSL1hZWiA3NC42IDY4Ni41IDBdPj4K ZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9UZXh0L1JlY3RbMjk3IDY0OC4x IDI5Ny4xIDY2MS45XS9Db250ZW50cwo8RkVGRjAwNDQwMDZGMDAyMDAwNzkwMDZGMDA3NTAwMjAw MDczMDA2NTAwNjUwMDIwMDA3NDAwNjgwMDY5MDA3MzAwMjAwMDYxMDA2RTAwNkUwMDZGMDA3NDAw NjEwMDc0MDA2OTAwNkYwMDZFMDAzRjAwMjA+Ci9UPEZFRkYwMDRBMDA2MTAwNkQwMDYyMDA3NTAw NkUwMDYxMDA3NDAwNjgwMDYxMDA2RTAwMjAwMDRCMDAyQzAwMjAwMDMyMDAzOTAwMkYwMDMxMDAz MDAwMkYwMDMxMDAzMT4KPj4KZW5kb2JqCgo1IDAgb2JqCjw8L1R5cGUvQW5ub3QvU3VidHlwZS9U ZXh0L1JlY3RbMzU0LjcgNjI4LjMgMzU0LjggNjQyLjFdL0NvbnRlbnRzCjxGRUZGMDA1OTAwNjUw MDczMDAyMDAwNDkwMDIwMDA2NDAwNkYwMDJFMDAyMD4KL1Q8RkVGRjAwNTMwMDZGMDA2RDAwNjUw MDZGMDA2RTAwNjUwMDIwMDA2NTAwNkMwMDczMDA2NTAwMkMwMDIwMDAzMjAwMzkwMDJGMDAzMTAw MzAwMDJGMDAzMTAwMzE+Cj4+CmVuZG9iagoKMjIgMCBvYmoKPDwvVHlwZS9DYXRhbG9nL1BhZ2Vz IDcgMCBSCi9QYWdlTGF5b3V0L1NpbmdsZVBhZ2UKL09wZW5BY3Rpb25bMSAwIFIgL1hZWiBudWxs IG51bGwgMF0KL1ZpZXdlclByZWZlcmVuY2VzPDwvRGlzcGxheURvY1RpdGxlIHRydWUKPj4KL091 dGxpbmVzIDIwIDAgUgovTGFuZyhlbi1HQikKPj4KZW5kb2JqCgoyMyAwIG9iago8PC9UaXRsZTxG RUZGMDA2MTAwNkUwMDZFMDA2RjAwNzQwMDYxMDA3NDAwNjkwMDZGMDA2RTAwNzMwMDJFMDA2RjAw NzIwMDY3PgovQXV0aG9yPEZFRkYwMDRBMDA2MTAwNkQwMDYyMDA3NTAwNkUwMDYxMDA3NDAwNjgw MDYxMDA2RTAwMjAwMDRCPgovQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgov UHJvZHVjZXI8RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1 MDAyMDAwMzMwMDJFMDAzND4KL0NyZWF0aW9uRGF0ZShEOjIwMTExMDI5MDM1NTQwKzA1JzMwJyk+ PgplbmRvYmoKCnhyZWYKMCAyNAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMzYzMDMgMDAwMDAg biAKMDAwMDAwMDAxOSAwMDAwMCBuIAowMDAwMDAwNTE2IDAwMDAwIG4gCjAwMDAwMzY4ODcgMDAw MDAgbiAKMDAwMDAzNzE5MCAwMDAwMCBuIAowMDAwMDM2NzcyIDAwMDAwIG4gCjAwMDAwMzY2NzMg MDAwMDAgbiAKMDAwMDAwMDUzNiAwMDAwMCBuIAowMDAwMDEzNTMwIDAwMDAwIG4gCjAwMDAwMTM1 NTIgMDAwMDAgbiAKMDAwMDAxMzc0NiAwMDAwMCBuIAowMDAwMDE0MTIzIDAwMDAwIG4gCjAwMDAw MTQzNTUgMDAwMDAgbiAKMDAwMDAzNTMxMiAwMDAwMCBuIAowMDAwMDM1MzM1IDAwMDAwIG4gCjAw MDAwMzU1MzUgMDAwMDAgbiAKMDAwMDAzNTk0MCAwMDAwMCBuIAowMDAwMDM2MjA1IDAwMDAwIG4g CjAwMDAwMzYyNDggMDAwMDAgbiAKMDAwMDAzNjQ3NSAwMDAwMCBuIAowMDAwMDM2NTMxIDAwMDAw IG4gCjAwMDAwMzc0MTkgMDAwMDAgbiAKMDAwMDAzNzYwMSAwMDAwMCBuIAp0cmFpbGVyCjw8L1Np emUgMjQvUm9vdCAyMiAwIFIKL0luZm8gMjMgMCBSCi9JRCBbIDxGNEZDNkJENjM0MkFFMEM4NUFF NTQyNzNDMDU5MUU1OD4KPEY0RkM2QkQ2MzQyQUUwQzg1QUU1NDI3M0MwNTkxRTU4PiBdCi9Eb2ND aGVja3N1bSAvRTQ1M0I2RTJENTg0RjBFOTJBQjBGRUNENUY3MTBCQUUKPj4Kc3RhcnR4cmVmCjM3 OTE1CiUlRU9GCg== --=-=-=-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Herbert Sitz Subject: Re: [odt] Support for annotations/comments Date: Sat, 29 Oct 2011 00:20:20 +0000 (UTC) Message-ID: References: <81aa8p6dfv.fsf@gmail.com> <81y5w4ych8.fsf_-_@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42665) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJwf8-00048p-C6 for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 20:20:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJwf7-0000un-Fm for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 20:20:38 -0400 Received: from lo.gmane.org ([80.91.229.12]:56948) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJwf7-0000uh-AT for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 20:20:37 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RJwf5-0000M0-1c for emacs-orgmode@gnu.org; Sat, 29 Oct 2011 02:20:35 +0200 Received: from c-24-22-131-140.hsd1.wa.comcast.net ([24.22.131.140]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 29 Oct 2011 02:20:35 +0200 Received: from hesitz by c-24-22-131-140.hsd1.wa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 29 Oct 2011 02:20:35 +0200 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 Jambunathan K gmail.com> writes: > > I needed an excuse for adding support for annotations. Exporting the > below org will produce the attached odt/pdf files. Note that the pdf > file is produced by LibreOffice pdf export. > > Annotations is a ODT only feature right now and will not work with other > backends. > Wow! That's great. I wasn't thinking of odt, have never used it, but maybe I will check into it. I loaded into Word 2007 and it gave some error message but displayed the comments fine. And of course they work great in the LibreOffice pdf. Thanks, Herb From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: [odt] Support for annotations/comments Date: Sat, 29 Oct 2011 12:58:45 +0200 Message-ID: <87r51wysgq.fsf@gnu.org> References: <81aa8p6dfv.fsf@gmail.com> <81y5w4ych8.fsf_-_@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:45941) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RK6bq-0005qv-Hg for emacs-orgmode@gnu.org; Sat, 29 Oct 2011 06:57:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RK6bo-0000WU-8e for emacs-orgmode@gnu.org; Sat, 29 Oct 2011 06:57:54 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:64232) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RK6bo-0000WM-4L for emacs-orgmode@gnu.org; Sat, 29 Oct 2011 06:57:52 -0400 Received: by wyg34 with SMTP id 34so5633591wyg.0 for ; Sat, 29 Oct 2011 03:57:51 -0700 (PDT) In-Reply-To: <81y5w4ych8.fsf_-_@gmail.com> (Jambunathan K.'s message of "Sat, 29 Oct 2011 04:01:47 +0530") 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: Herbert Sitz Cc: emacs-orgmode@gnu.org Hi Jambunathan, Jambunathan K writes: > I needed an excuse for adding support for annotations. Exporting the > below org will produce the attached odt/pdf files. Note that the pdf > file is produced by LibreOffice pdf export. This is very nice, thanks! > Annotations is a ODT only feature right now and will not work with other > backends. We can also try to implement support for annotations for LaTeX: http://pdfcomment.berlios.de/doc/pdfcomment.pdf Mayber there are other libraries -- can anyone tell which one is the most usable/frequently-used/simple? Btw, I would favor #+begin_note as the keyword for annotations. -- Bastien From mboxrd@z Thu Jan 1 00:00:00 1970 From: Torsten Wagner Subject: Re: [odt] Support for annotations/comments Date: Sat, 29 Oct 2011 23:54:55 +0900 Message-ID: References: <81aa8p6dfv.fsf@gmail.com> <81y5w4ych8.fsf_-_@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001636ed6a67559f3404b0713063 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKAJG-0003tX-UF for emacs-orgmode@gnu.org; Sat, 29 Oct 2011 10:54:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RKAJF-0002q7-Ml for emacs-orgmode@gnu.org; Sat, 29 Oct 2011 10:54:58 -0400 Received: from mail-yw0-f41.google.com ([209.85.213.41]:41478) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKAJF-0002pf-Jt for emacs-orgmode@gnu.org; Sat, 29 Oct 2011 10:54:57 -0400 Received: by ywa17 with SMTP id 17so5301968ywa.0 for ; Sat, 29 Oct 2011 07:54:55 -0700 (PDT) In-Reply-To: <81y5w4ych8.fsf_-_@gmail.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: emacs-orgmode@gnu.org, Herbert Sitz --001636ed6a67559f3404b0713063 Content-Type: text/plain; charset=ISO-8859-1 Hi, Jambunathan On Oct 29, 2011 7:32 AM, "Jambunathan K" > I needed an excuse for adding support for annotations. Exporting the > below org will produce the attached odt/pdf files. Note that the pdf > file is produced by LibreOffice pdf export. > > Annotations is a ODT only feature right now and will not work with other > backends. Does this include annotations in form of text changes too? Marking removed or added text? Would be great to have such a feature. It would require rather less coding to wrap annotation marks around the result of a diff output between the original org file and the modified version. Hence, we would be able to generate automatically annotaded odt versions of modified org files. Totti --001636ed6a67559f3404b0713063 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

            Hi, Jambunathan
            On Oct 29, 2011 7:32 AM, "Jambunathan K"
            > I needed an excuse for adding support for annotations. Exporting the > below org will produce the attached odt/pdf files. Note that the pdf > file is produced by LibreOffice pdf export.
            >
            > Annotations is a ODT only feature right now and will not work with oth= er
            > backends.
            Does this include annotations in form of text changes too? Marking removed = or added text?
            Would be great to have such a feature. It would require rather less coding = to wrap annotation marks around the result of a diff output=A0 between the = original org file and the modified version.
            Hence, we would be able to generate automatically annotaded odt versions of= modified org files.

            Totti

            --001636ed6a67559f3404b0713063-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: tsd@tsdye.com (Thomas S. Dye) Subject: Re: OT: collage of scripts Date: Sun, 30 Oct 2011 07:48:25 -1000 Message-ID: References: <4C630D7B-BD05-4ED4-98A6-5CC6308EED48@gmail.com> <4f2e5228-5cbf-4e4e-bdae-81e32f0017d9@email.android.com> <83sjmey1p5.fsf@yahoo.it> <69A7E2DF-5095-4E59-B5D3-29FDD406270F@gmail.com> <81vcrapklx.fsf@gmail.com> <11431.1319732898@alphaville.dokosmarshall.org> 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]:47941) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKZUt-00082h-FN for emacs-orgmode@gnu.org; Sun, 30 Oct 2011 13:48:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RKZUr-0001Lw-NN for emacs-orgmode@gnu.org; Sun, 30 Oct 2011 13:48:39 -0400 Received: from oproxy4-pub.bluehost.com ([69.89.21.11]:41163) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RKZUr-0001Lm-Em for emacs-orgmode@gnu.org; Sun, 30 Oct 2011 13:48:37 -0400 In-Reply-To: <11431.1319732898@alphaville.dokosmarshall.org> (Nick Dokos's message of "Thu, 27 Oct 2011 12:28:18 -0400") 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: Matt Lundin , Org Mode Mailing List , Carsten Dominik Nick Dokos writes: > [I hope you'll forgive me the off-topic ruminations] > > Jambunathan K wrote: > >> If you do a=20 >>=20 >> C-h C-\ RET tamil-itrans RET=20 >>=20 >> you will see a nicely aligned table which gives translation table for >> tamil characters - (OK, Tamil is the language I speak) - which look like >>=20 >> http://debbugs.gnu.org/cgi/bugreport.cgi?msg=3D56;filename=3Dtemp.png;at= t=3D1;bug=3D9336 >>=20 > > Jambunathan's mention of Tamil brought to mind a picture that > I had seen long ago and found mysterious, beautiful and fascinating. > It is Fig. 40, p. 168, in Hofstadter's "G=C3=B6del, Escher, Bach": I look= ed > for a copy on the web, but I only found the complete book. > > The picture is a collage of scripts, from the undeciphered (at least > in 1980, the time of publication) script of Easter Island to Tamil > to Assyrian cuneiform. > > I have no idea what each snippet says - yet there are people around > today (and in some cases, perhaps, there *were* people some time ago, > but no longer) who can (or could) extract meaning from each of these > snippets. Conversely, there are scripts that I can extract meaning from, > that other people find mysterious. I can't help the feeling that there > is something deep going on here, I just don't know *what*! > > Nick > > > Hi Nick, A book by David Bellos, Is That a Fish in Your Ear? Translation and the Meaning of Everything, got a good review in the NYT Book Review this week. I'm not sure from the review if it gets to the heart of your rumination, but the author's proposal that translation "provides for some community an acceptable match for an utterance made in a foreign language" made me think of your post. All the best, Tom =20 --=20 Thomas S. Dye http://www.tsdye.com From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sten Lindner Subject: Re: custom IDs not exported Date: Tue, 1 Nov 2011 18:01:54 +0100 Message-ID: <20111101170154.GC1993@aberdeen> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:45173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLHiq-0006Cc-4p for emacs-orgmode@gnu.org; Tue, 01 Nov 2011 13:02:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RLHio-00038F-5U for emacs-orgmode@gnu.org; Tue, 01 Nov 2011 13:02:00 -0400 Received: from smtprelay05.ispgateway.de ([80.67.31.99]:48100) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLHin-00037j-V5 for emacs-orgmode@gnu.org; Tue, 01 Nov 2011 13:01:58 -0400 Content-Disposition: inline In-Reply-To: <10721.1307848346@alphaville.dokosmarshall.org> 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: Nick Dokos Cc: org-mode Mailinglist On Sat, Jun 11, 2011 at 11:12:26PM -0400, Nick Dokos wrote: > > I have a minimal patch that I think fixes this problem, but there are > other underscores used in various places in org-html.el so there might > be additional problems. I'd appreciate it if you (and/or others) test it > and report not only on this problem but on any other problems you find. I'm having the same problem when exporting to Docbook, custom IDs are being ignored. For example, when I export some org-mode text using C-c C-e D: * heading1 :PROPERTIES: :CUSTOM_ID: h1 :END: ** heading2 :PROPERTIES: :CUSTOM_ID: h2 :END: some links: - see [[#h1][heading1]] - see [[#h2][heading2]] I' getting the following XML output:
            heading1
            heading2 some links: see heading1 see heading2
            I would expect to see my custom IDs "H1" and "H2" but instead get auto-generated IDs "sec-1" and "sec-1_1". I'm using the latest org-mode version 7.7. best regards, Sten -- Sten Lindner e-mail: s.lindner@stenlindner.de From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Wed, 02 Nov 2011 01:33:52 -0400 Message-ID: <9894.1320212032@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> Reply-To: nicholas.dokos@hp.com Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:41304) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLTSY-00040R-9r for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 01:33:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RLTSW-00039y-AV for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 01:33:58 -0400 Received: from g6t0185.atlanta.hp.com ([15.193.32.62]:30906) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLTSW-00039j-0v for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 01:33:56 -0400 In-Reply-To: Message from Sten Lindner of "Tue\, 01 Nov 2011 18\:01\:54 BST." <20111101170154.GC1993@aberdeen> 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: Sten Lindner Cc: nicholas.dokos@hp.com, org-mode Mailinglist Sten Lindner wrote: > On Sat, Jun 11, 2011 at 11:12:26PM -0400, Nick Dokos wrote: > > > > I have a minimal patch that I think fixes this problem, but there are > > other underscores used in various places in org-html.el so there might > > be additional problems. I'd appreciate it if you (and/or others) test it > > and report not only on this problem but on any other problems you find. > > I'm having the same problem when exporting to Docbook, custom IDs are > being ignored. > > For example, when I export some org-mode text using C-c C-e D: > > * heading1 > :PROPERTIES: > :CUSTOM_ID: h1 > :END: > > ** heading2 > :PROPERTIES: > :CUSTOM_ID: h2 > :END: > > some links: > - see [[#h1][heading1]] > - see [[#h2][heading2]] > > I' getting the following XML output: > >
            > heading1 >
            > heading2 > > some links: > > > > see heading1 > > > > see heading2 > > > >
            >
            > > > I would expect to see my custom IDs "H1" and "H2" but instead get > auto-generated IDs "sec-1" and "sec-1_1". > > I'm using the latest org-mode version 7.7. > > best regards, > Sten > > -- > Sten Lindner > > e-mail: s.lindner@stenlindner.de > This is because org-docbook.el does not implement custom ID handling at all. I don't know if Baoqiu Cui, the author of org-docbook.el, watches this list any longer (I haven't seen any mail from him for some time): if he is around, he would be the logical person to fix it. But if you are interested in fixing this problem, I'd be happy to provide guidance.[fn:1] The problem is the following code in the function org-export-docbook-level-start in lisp/org-docbook.el: ... (setq section-number (org-section-number level)) (insert (format "\n
            \n%s" org-export-docbook-section-id-prefix (replace-regexp-in-string "\\." "_" section-number) ... As you can see, the xml id is formed from org-export-docbook-section-id-prefix (which has the value "sec-") and the section-number (which is "1" for the top level heading and "1.1" for the second level heading). We replace periods with underscores in the section number and then construct the id as "sec-1_1". But there is no provision anywhere for translating to custom IDs. So one necessary change in order to conform to the changed convention is to replace periods with hyphens in the section number. But in addition to that, the xml id will have to be constructed differently if there is a custom ID around. Custom ids are passed to this function through a (dynamically scoped) variable called org-export-preferred-target-alist which in the case below has the value (("sec-1-1" . "h2") ("sec-1" . "h1")) This variable provides the translations from the standard to the custom IDs. org-html.el provides a template to follow in reorganizing the above code to do the translation. If you look at org-html-level-start [fn:2], you'll find the following code (setq href (cdr (assoc (concat "sec-" snu) org-export-preferred-target-alist))) ... (setq href (org-solidify-link-text (or href (concat "sec-" snu)))) (insert (format "\n
            \n%s%s\n
            \n" suffix level (if extra-class (concat " " extra-class) "") level href extra-targets title level level suffix)) In this case, snu is the section number (with periods already replaced by hyphens). The local variable href is used to construct the id: the conventional section number ("sec-1-1" e.g.) is looked up in the alist and it is either found, in which case href is set to the translation ("h2") or it is not found, in which case href is set to nil. Then the second setq sets it to either the translated value or, if that is nil, to the conventional value ("sec-1-1"). That is then used to fill in the id in the html code. With this information, do you think you could get a patch together? Let me know if you have questions. Nick Footnotes: [fn:1] For legal reasons, I cannot fix it myself. [fn:2] As an aside, note the inconsistency in the function names. Bastien, is this worth fixing? From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: custom IDs not exported Date: Thu, 03 Nov 2011 02:34:51 +0100 Message-ID: <87wrbic7k4.fsf@gnu.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38125) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLmBr-0006AN-TI for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 21:34:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RLmBq-0001MC-Uq for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 21:33:59 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:40446) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLmBq-0001M6-Mp for emacs-orgmode@gnu.org; Wed, 02 Nov 2011 21:33:58 -0400 Received: by wwe3 with SMTP id 3so898784wwe.30 for ; Wed, 02 Nov 2011 18:33:57 -0700 (PDT) In-Reply-To: <9894.1320212032@alphaville.dokosmarshall.org> (Nick Dokos's message of "Wed, 02 Nov 2011 01:33:52 -0400") 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: org-mode Mailinglist , Sten Lindner Hi Nick, Nick Dokos writes: > With this information, do you think you could get a patch together? I hope Sten will be able to provide a patch! > Let me know if you have questions. Thanks for the detailed analysis. > Footnotes: > > [fn:1] For legal reasons, I cannot fix it myself. Com'on Nick, you're not allowed to make patches longers than 20 lines, which makes it a nice challenge to fix these kind of issues in less than 20 lines :D > [fn:2] As an aside, note the inconsistency in the function names. Bastien, > is this worth fixing? It's always worth fixing such things. Depends on how much time it costs to the persons who undertake the fix... Patch welcome! Thanks, -- Bastien From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Thu, 03 Nov 2011 10:54:00 -0400 Message-ID: <4490.1320332040@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> <87wrbic7k4.fsf@gnu.org> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38758) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLygI-0002Uf-Pv for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 10:54:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RLygE-0006L2-Cf for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 10:54:14 -0400 Received: from g4t0016.houston.hp.com ([15.201.24.19]:44656) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLygE-00069Q-48 for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 10:54:10 -0400 In-Reply-To: Message from Bastien of "Thu, 03 Nov 2011 02:34:51 BST." <87wrbic7k4.fsf@gnu.org> 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: Bastien Cc: org-mode Mailinglist , nicholas.dokos@hp.com, Sten Lindner Bastien wrote: > Hi Nick, > > Nick Dokos writes: > > > With this information, do you think you could get a patch together? > > I hope Sten will be able to provide a patch! > > > Let me know if you have questions. > > Thanks for the detailed analysis. > > > Footnotes: > > > > [fn:1] For legal reasons, I cannot fix it myself. > > Com'on Nick, you're not allowed to make patches longers than 20 lines, > which makes it a nice challenge to fix these kind of issues in less than > 20 lines :D > Oh, I thought I had run out on my quota: I do have a patch that I can send in, I just don't want to cause headaches (particularly to you) down the line. I'll add a Changelog, mark it as a TINYCHANGE and send it in - is that OK? I > > [fn:2] As an aside, note the inconsistency in the function names. Bastien, > > is this worth fixing? > > It's always worth fixing such things. Depends on how much time it costs > to the persons who undertake the fix... Patch welcome! > OK, I'll take a look at all the exporters and go with the more popular format. Nick > Thanks, > > -- > Bastien > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: custom IDs not exported Date: Thu, 03 Nov 2011 22:38:54 +0530 Message-ID: <817h3hqgk9.fsf@gmail.com> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> <87wrbic7k4.fsf@gnu.org> <4490.1320332040@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:50438) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RM0n2-0007e9-1F for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 13:09:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RM0n0-0001CU-SJ for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 13:09:20 -0400 Received: from mail-qw0-f41.google.com ([209.85.216.41]:42915) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RM0n0-0001CF-Pw for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 13:09:18 -0400 Received: by qadc11 with SMTP id c11so1655121qad.0 for ; Thu, 03 Nov 2011 10:09:18 -0700 (PDT) In-Reply-To: <4490.1320332040@alphaville.dokosmarshall.org> (Nick Dokos's message of "Thu, 03 Nov 2011 10:54:00 -0400") 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: Bastien , org-mode Mailinglist , Sten Lindner > Oh, I thought I had run out on my quota: I do have a patch that I can > send in, I just don't want to cause headaches (particularly to you) > down the line. I'll add a Changelog, mark it as a TINYCHANGE and send it in - > is that OK? AFAIK, there is fair amount of audit of ChangeLogs that is done when anything - that includes Org - goes in to Emacs proper. Also considering FSF gives primacy to copyright assignment & disclaimer in *paper format* and the mere existence of support machinery around it - a copyright clerk etc etc - one needs to take good amount of care to make sure that the *sum total* (it is sum total right?) of TINYCHANGES don't add up to no more than palmful. If one cannot sum up the lines of changes one has submitted one should err on the conservative side and not submit a patch. I wouldn't record this dissent note if Org were a one-off project. It is part of a much greater project - a project which gives primacy not to *convenience* but to a certain *principle*. If Nick or someone else checks in some change, someone raises a red flag and questions the copyright (or whatver) the said code will be pulled out from Emacs inconveniencing a whole bunch of users. More importantly it will be shameful for Emacs project. We may not do great deeds ourselves but we can do our bit to lend a hand to someone that stands for something. Jambunathan K. -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Thu, 03 Nov 2011 14:18:09 -0400 Message-ID: <12929.1320344289@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> <87wrbic7k4.fsf@gnu.org> <4490.1320332040@alphaville.dokosmarshall.org> <817h3hqgk9.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:44491) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RM1rh-0002Ei-Jm for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:18:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RM1rg-0007gu-Ha for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:18:13 -0400 Received: from g4t0016.houston.hp.com ([15.201.24.19]:33440) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RM1rg-0007gd-Cg for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:18:12 -0400 In-Reply-To: Message from Jambunathan K of "Thu, 03 Nov 2011 22:38:54 +0530." <817h3hqgk9.fsf@gmail.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: Bastien , org-mode Mailinglist , Sten Lindner Cc: nicholas.dokos@hp.com Jambunathan K wrote: > > > Oh, I thought I had run out on my quota: I do have a patch that I can > > send in, I just don't want to cause headaches (particularly to you) > > down the line. I'll add a Changelog, mark it as a TINYCHANGE and send it in - > > is that OK? > > AFAIK, there is fair amount of audit of ChangeLogs that is done when > anything - that includes Org - goes in to Emacs proper. > > Also considering FSF gives primacy to copyright assignment & disclaimer > in *paper format* and the mere existence of support machinery around it > - a copyright clerk etc etc - one needs to take good amount of care to > make sure that the *sum total* (it is sum total right?) of TINYCHANGES > don't add up to no more than palmful. > That's what I vaguely remembered, and that's why I thought my quota has run out. I think I will *not* be sending the patch after all. Sten, are you up to doing the work? > If one cannot sum up the lines of changes one has submitted one should > err on the conservative side and not submit a patch. > > I wouldn't record this dissent note if Org were a one-off project. It is > part of a much greater project - a project which gives primacy not to > *convenience* but to a certain *principle*. > > If Nick or someone else checks in some change, someone raises a red flag > and questions the copyright (or whatver) the said code will be pulled > out from Emacs inconveniencing a whole bunch of users. More importantly > it will be shameful for Emacs project. > > We may not do great deeds ourselves but we can do our bit to lend a hand > to someone that stands for something. > Not sure I follow completely, but I will continue trying to cajole others to provide the actual patches and limit myself to providing guidance if necessary. Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jambunathan K Subject: Re: custom IDs not exported Date: Fri, 04 Nov 2011 00:10:46 +0530 Message-ID: <81lirx2gnl.fsf@gmail.com> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> <87wrbic7k4.fsf@gnu.org> <4490.1320332040@alphaville.dokosmarshall.org> <817h3hqgk9.fsf@gmail.com> <12929.1320344289@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52099) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RM2Du-0008Ph-Bx for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:41:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RM2Ds-0003qz-H0 for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:41:10 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:46351) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RM2Ds-0003qs-Ci for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:41:08 -0400 Received: by iaae16 with SMTP id e16so324115iaa.0 for ; Thu, 03 Nov 2011 11:41:07 -0700 (PDT) In-Reply-To: <12929.1320344289@alphaville.dokosmarshall.org> (Nick Dokos's message of "Thu, 03 Nov 2011 14:18:09 -0400") 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: Bastien , org-mode Mailinglist , Sten Lindner > Not sure I follow completely, but I will continue trying to cajole others > to provide the actual patches and limit myself to providing guidance if > necessary. Thanks for *not* submitting a patch. What I meant was - there is a process in place and Emacs project + FSF are quite earnest as far as sticking to their own guns. [Context Switch] An interesting read (Euphemism for *totally* OT) http://news.ycombinator.com/item?id=2820986 Also google - Emacs violates GPL. Jambunathan K. -- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Thu, 03 Nov 2011 14:44:45 -0400 Message-ID: <22611.1320345885@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> <87wrbic7k4.fsf@gnu.org> <4490.1320332040@alphaville.dokosmarshall.org> <817h3hqgk9.fsf@gmail.com> <12929.1320344289@alphaville.dokosmarshall.org> <81lirx2gnl.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:50752) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RM2HS-0001Ba-SD for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:44:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RM2HQ-0004cH-NW for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:44:50 -0400 Received: from g4t0017.houston.hp.com ([15.201.24.20]:32960) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RM2HQ-0004br-Hw for emacs-orgmode@gnu.org; Thu, 03 Nov 2011 14:44:48 -0400 In-Reply-To: Message from Jambunathan K of "Fri, 04 Nov 2011 00:10:46 +0530." <81lirx2gnl.fsf@gmail.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: Bastien , org-mode Mailinglist , Sten Lindner Cc: nicholas.dokos@hp.com Jambunathan K wrote: > > > Not sure I follow completely, but I will continue trying to cajole others > > to provide the actual patches and limit myself to providing guidance if > > necessary. > > Thanks for *not* submitting a patch. > > What I meant was - there is a process in place and Emacs project + FSF > are quite earnest as far as sticking to their own guns. > > [Context Switch] > An interesting read (Euphemism for *totally* OT) > > http://news.ycombinator.com/item?id=2820986 > Also google - Emacs violates GPL. > Is this the cedet/semantic parser flap-a-doodle? LWN covered it some time ago. AFAIK, it has been resolved. Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Reiner Steib Subject: [OT] FSF, GPL, cedit case (was: custom IDs not exported) Date: Fri, 04 Nov 2011 08:11:18 +0100 Message-ID: <87wrbgxsyx.fsf_-_@marauder.physik.uni-ulm.de> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> <87wrbic7k4.fsf@gnu.org> <4490.1320332040@alphaville.dokosmarshall.org> <817h3hqgk9.fsf@gmail.com> <12929.1320344289@alphaville.dokosmarshall.org> <81lirx2gnl.fsf@gmail.com> <22611.1320345885@alphaville.dokosmarshall.org> Reply-To: Reiner Steib Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52126) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RMDwK-0001vs-9J for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 03:11:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RMDwI-0007yq-SU for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 03:11:48 -0400 Received: from lo.gmane.org ([80.91.229.12]:60333) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RMDwI-0007ym-MG for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 03:11:46 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RMDwE-0005Qb-Nr for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 08:11:42 +0100 Received: from p579466c7.dip.t-dialin.net ([87.148.102.199]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 04 Nov 2011 08:11:42 +0100 Received: from Reiner.Steib by p579466c7.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 04 Nov 2011 08:11:42 +0100 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 On Thu, Nov 03 2011, Nick Dokos wrote: > Jambunathan K wrote: [...] >> [Context Switch] >> An interesting read (Euphemism for *totally* OT) >> >> http://news.ycombinator.com/item?id=2820986 >> Also google - Emacs violates GPL. >> > > Is this the cedet/semantic parser flap-a-doodle? Yes. > LWN covered it some time ago. AFAIK, it has been resolved. Yes. http://article.gmane.org/gmane.emacs.announce/25 Note that it is not accurate to write that "Emacs violates the GPL". The FSF didn't violate it, but "Anyone redistributing those versions is violating the GPL, through no fault of his own." (see http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg01155.html) Bye, Reiner. -- ,,, (o o) ---ooO-(_)-Ooo--- | PGP key available | http://rsteib.home.pages.de/ From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sten Lindner Subject: Re: custom IDs not exported Date: Fri, 4 Nov 2011 09:41:43 +0100 Message-ID: <20111104084143.GA1972@aberdeen> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> <87wrbic7k4.fsf@gnu.org> <4490.1320332040@alphaville.dokosmarshall.org> <817h3hqgk9.fsf@gmail.com> <12929.1320344289@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:43563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RMFLS-00066A-0h for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 04:41:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RMFLQ-0005S2-UH for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 04:41:49 -0400 Received: from smtprelay03.ispgateway.de ([80.67.31.37]:40226) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RMFLQ-0005RX-Om for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 04:41:48 -0400 Content-Disposition: inline In-Reply-To: <12929.1320344289@alphaville.dokosmarshall.org> 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: Nick Dokos Cc: Bastien , org-mode Mailinglist On Thu, Nov 03, 2011 at 02:18:09PM -0400, Nick Dokos wrote: > Jambunathan K wrote: > > > > > > Oh, I thought I had run out on my quota: I do have a patch that I can > > > send in, I just don't want to cause headaches (particularly to you) > > > down the line. I'll add a Changelog, mark it as a TINYCHANGE and send it in - > > > is that OK? > > > > AFAIK, there is fair amount of audit of ChangeLogs that is done when > > anything - that includes Org - goes in to Emacs proper. > > > > Also considering FSF gives primacy to copyright assignment & disclaimer > > in *paper format* and the mere existence of support machinery around it > > - a copyright clerk etc etc - one needs to take good amount of care to > > make sure that the *sum total* (it is sum total right?) of TINYCHANGES > > don't add up to no more than palmful. > > > > That's what I vaguely remembered, and that's why I thought my quota has > run out. I think I will *not* be sending the patch after all. Sten, > are you up to doing the work? Yes, I'll look into it over the weekend. Unfortunately, I know next to nothing about Lisp, so I might need some help getting this done. But with your previous explanations it should be doable. best regards, Sten -- Sten Lindner e-mail: s.lindner@stenlindner.de From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: custom IDs not exported Date: Fri, 04 Nov 2011 11:00:33 -0400 Message-ID: <21382.1320418833@alphaville.dokosmarshall.org> References: <87hb7wq9bc.wl%n142857@gmail.com> <10721.1307848346@alphaville.dokosmarshall.org> <20111101170154.GC1993@aberdeen> <9894.1320212032@alphaville.dokosmarshall.org> <87wrbic7k4.fsf@gnu.org> <4490.1320332040@alphaville.dokosmarshall.org> <817h3hqgk9.fsf@gmail.com> <12929.1320344289@alphaville.dokosmarshall.org> <20111104084143.GA1972@aberdeen> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([140.186.70.92]:40378) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RMLG5-0003JA-IY for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 11:00:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RMLG4-0004sK-7I for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 11:00:41 -0400 Received: from g4t0016.houston.hp.com ([15.201.24.19]:41010) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RMLG4-0004rl-2H for emacs-orgmode@gnu.org; Fri, 04 Nov 2011 11:00:40 -0400 In-Reply-To: Message from Sten Lindner of "Fri, 04 Nov 2011 09:41:43 BST." <20111104084143.GA1972@aberdeen> 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: Sten Lindner Cc: Bastien , nicholas.dokos@hp.com, org-mode Mailinglist Sten Lindner wrote: > On Thu, Nov 03, 2011 at 02:18:09PM -0400, Nick Dokos wrote: > > Jambunathan K wrote: > > > > > > > > > Oh, I thought I had run out on my quota: I do have a patch that I can > > > > send in, I just don't want to cause headaches (particularly to you) > > > > down the line. I'll add a Changelog, mark it as a TINYCHANGE and send it in - > > > > is that OK? > > > > > > AFAIK, there is fair amount of audit of ChangeLogs that is done when > > > anything - that includes Org - goes in to Emacs proper. > > > > > > Also considering FSF gives primacy to copyright assignment & disclaimer > > > in *paper format* and the mere existence of support machinery around it > > > - a copyright clerk etc etc - one needs to take good amount of care to > > > make sure that the *sum total* (it is sum total right?) of TINYCHANGES > > > don't add up to no more than palmful. > > > > > > > That's what I vaguely remembered, and that's why I thought my quota has > > run out. I think I will *not* be sending the patch after all. Sten, > > are you up to doing the work? > > Yes, I'll look into it over the weekend. Unfortunately, I know next to > nothing about Lisp, so I might need some help getting this > done. But with your previous explanations it should be doable. > OK, that's great: feel free to query the list (or contact me off list, if you prefer) for any questions. And I'd be happy to review the patch before you submit it. Thanks, Nick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Samuel Wales Subject: Re: How to include comments on export? org-exp-blocks.el? Date: Fri, 20 Jan 2012 22:53:49 -0700 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:49997) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RoTtm-0005PY-4F for emacs-orgmode@gnu.org; Sat, 21 Jan 2012 00:53:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RoTtf-0000HH-HT for emacs-orgmode@gnu.org; Sat, 21 Jan 2012 00:53:52 -0500 Received: from mail-iy0-f169.google.com ([209.85.210.169]:42606) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RoTtf-0000Gg-59 for emacs-orgmode@gnu.org; Sat, 21 Jan 2012 00:53:51 -0500 Received: by iadj38 with SMTP id j38so2313857iad.0 for ; Fri, 20 Jan 2012 21:53:50 -0800 (PST) In-Reply-To: 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: Herbert Sitz Cc: emacs-orgmode@gnu.org We had a wonderful discussion of it once, along with different possible uses for inline tasks, inclusion of paragraphs, non-exported headlines for easier structure editing, universal syntax, and returning text to higher level. On my blog I use a colored background, which could also serve as comment blocks: #+HTML:
            Some text. #+HTML:
            A bit rudimentary perhaps. Samuel On 2011-10-24, Herbert Sitz wrote: > I'm trying to see if there is a way to include comments on export, to show > up as > something like the comments boxes you see in MS Word. > > I see Eric Schulte did some work on this and that somehow it ended up (I > think) > as part of what you could do using the org-exp-blocks addon. But I'm not > sure > how you actually use it. > > Can someone give an example of how org-exp-blocks (or anything else) could > be > used to export comment blocks as graphic notes in the text? > > Thanks, > > Herb > > > > -- The Kafka Pandemic: http://thekafkapandemic.blogspot.com === Bigotry against people with serious diseases is still bigotry. From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: Re: How to include comments on export? org-exp-blocks.el? Date: Mon, 23 Jan 2012 11:01:31 -0700 Message-ID: <87ehuqs34f.fsf@gmx.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:59689) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpOK5-00018G-4u for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 13:08:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpOK3-00006T-Vh for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 13:08:53 -0500 Received: from mailout-us.gmx.com ([74.208.5.67]:45135 helo=mailout-us.mail.com) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RpOK3-00006I-LQ for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 13:08:51 -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: Samuel Wales Cc: emacs-orgmode@gnu.org, Herbert Sitz There are currently begin/end_comment blocks implemented as part of org-exp-blocks.el. See the `org-export-blocks-format-comment' function which is fairly simple and should not be difficult to customize. Best, Samuel Wales writes: > We had a wonderful discussion of it once, along with different > possible uses for inline tasks, inclusion of paragraphs, non-exported > headlines for easier structure editing, universal syntax, and > returning text to higher level. > > On my blog I use a colored background, which could also serve as comment blocks: > > #+HTML:
            > > Some text. > > #+HTML:
            > > A bit rudimentary perhaps. > > Samuel > > On 2011-10-24, Herbert Sitz wrote: >> I'm trying to see if there is a way to include comments on export, to show >> up as >> something like the comments boxes you see in MS Word. >> >> I see Eric Schulte did some work on this and that somehow it ended up (I >> think) >> as part of what you could do using the org-exp-blocks addon. But I'm not >> sure >> how you actually use it. >> >> Can someone give an example of how org-exp-blocks (or anything else) could >> be >> used to export comment blocks as graphic notes in the text? >> >> Thanks, >> >> Herb >> >> >> >> -- Eric Schulte http://cs.unm.edu/~eschulte/