From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: html export question Date: Wed, 13 Apr 2011 02:58:08 -0400 Message-ID: <8375.1302677888@alphaville.dokosmarshall.org> References: <87tye2sv1t.fsf@norang.ca> 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]:54308) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9u20-0005vu-M4 for emacs-orgmode@gnu.org; Wed, 13 Apr 2011 02:58:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q9u1z-0004Yv-5d for emacs-orgmode@gnu.org; Wed, 13 Apr 2011 02:58:28 -0400 Received: from vms173009pub.verizon.net ([206.46.173.9]:51559) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9u1z-0004X4-1l for emacs-orgmode@gnu.org; Wed, 13 Apr 2011 02:58:27 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173009.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LJK00F25WOWTI10@vms173009.mailsrvcs.net> for emacs-orgmode@gnu.org; Wed, 13 Apr 2011 01:58:14 -0500 (CDT) In-reply-to: Message from Rustom Mody of "Wed\, 13 Apr 2011 11\:12\: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: Rustom Mody Cc: Bernt Hansen , nicholas.dokos@hp.com, emacs-orgmode Rustom Mody wrote: > On Wed, Apr 13, 2011 at 8:43 AM, Bernt Hansen wrote: > > Rustom Mody writes: > > > >> If the > >> $+EMAIL: rusi@somewhere.com > >> option is set it used to appear at the bottom of the html-export. > >> > >> Does not seem to appear now. > >> > >> Is this a regression or am I missing some option? > >> > >> IOW with > >> > >> #+AUTHOR: Rusi > >> #+EMAIL: myname@somewhere.com > >> > >> Rusi appears in the html output but not myname@somewhere.com > >> > >> org-version 7.5 > >> emacs 23.1 and 24.0 > >> > >> Thanks > >> Rusi > > > > Hi Rusi, > > > > This has been fixed after the 7.5 release. =C2=A0The development versio= n of > > git exports the email address. > > > > Regards, > > Bernt > > >=20 > Did a git pull just now and still its the same. > How do I check that we are on the same git commit? >=20 You have to add an option to include the email address in the postamble: ,---- | #+AUTHOR: foo | #+EMAIL: bar@baz | #+OPTIONS: email:t `---- That will produce ,---- |
|

Date: 2011-04-13 02:46:10 EDT

|

Author: foo

|

bar@baz

|

Org version 7.5 with Emacs version 24

| Validate XHTML 1.= 0 |
`---- Alternatively, set org-export-html-postamble to t (by default, it's auto). The format will be different but the address will be included. The actual postamble produced is: ,---- |
|

Author: foo (bar@baz)<= /p> |

Date: 2011-04-13 02:50:46 EDT

|

Generated by Org version 7.5 with Emacs version 24 |

Validate XHTML 1.0

|
`---- Re: git - you can check the commit with ``git describe'': --8<---------------cut here---------------start------------->8--- $ git describe release_7.5-176-g2c8e964 --8<---------------cut here---------------end--------------->8--- The last component (leaving out the initial `g') is the (abbreviated) commit at the head of the branch: --8<---------------cut here---------------start------------->8--- $ git log 2c8e964 commit 2c8e964b70bf22ae70ef824b422fb12e1783f8a2 Author: Eric Schulte Date: Sun Apr 10 16:29:14 2011 -0600 ob-emacs-lisp: now supports :results output =20=20=20=20 * lisp/ob-emacs-lisp.el (org-babel-execute:emacs-lisp): Now supports ":results output". --8<---------------cut here---------------end--------------->8--- Nick