From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Guerry Subject: [Accepted] Re: html-export mangels mailto: links Date: Thu, 2 Sep 2010 17:33:21 +0200 (CEST) Message-ID: <20100902153321.B350445BB3@myhost.localdomain> References: <87iq2o3b5s.fsf@noorul.maa.corp.collab.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=34116 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OrBn1-0001Vg-Mj for emacs-orgmode@gnu.org; Thu, 02 Sep 2010 11:33:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OrBmz-000892-J2 for emacs-orgmode@gnu.org; Thu, 02 Sep 2010 11:33:23 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:49369) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OrBmz-00088h-Eu for emacs-orgmode@gnu.org; Thu, 02 Sep 2010 11:33:21 -0400 Received: by wyb36 with SMTP id 36so478029wyb.0 for ; Thu, 02 Sep 2010 08:33:20 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Patch 251 (http://patchwork.newartisans.com/patch/251/) is now "Accepted". Maintainer comment: Applied a slightly modified version: better handling of absolute filenames. This relates to the following submission: http://mid.gmane.org/%3C87iq2o3b5s.fsf%40noorul.maa.corp.collab.net%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [Orgmode] Re: html-export mangels mailto: links > Date: Thu, 02 Sep 2010 11:35:43 -0000 > From: Noorul Islam > X-Patchwork-Id: 251 > Message-Id: <87iq2o3b5s.fsf@noorul.maa.corp.collab.net> > To: Achim Gratz > Cc: emacs-orgmode@gnu.org > > Achim Gratz writes: > > > HTML export removes the "mailto:" from a link, which will then be > > interpreted as a local link by the browser. > > > > For an example, see the link to this mailing list in > > ORGWEBPAGE/index.org and the corresponding HTML export on orgmode-org > > (or just the local file). > > > > org-html.el : Fix exporting file, mailto, news and ftp protocols. > > * lisp/org-html.el (org-html-make-link): (expand-file-name > ) removes one "/" from "///path-to-file", so add one. Anything other > than 'file' type should be exported along with the type. > > TINYCHANGE > > Thanks and Regards > Noorul > > > diff --git a/lisp/org-html.el b/lisp/org-html.el > index 099b2e3..4430768 100644 > --- a/lisp/org-html.el > +++ b/lisp/org-html.el > @@ -720,7 +720,7 @@ MAY-INLINE-P allows inlining it as an image." > ;;Substitute just if original path was absolute. > ;;(Otherwise path must remain relative) > (if (file-name-absolute-p path) > - (expand-file-name path) > + (concat "/" (expand-file-name path)) > path))) > ((string= type "") > (list nil path)) > @@ -756,8 +756,7 @@ MAY-INLINE-P allows inlining it as an image." > (setq thefile > (let > ((str (org-export-html-format-href thefile))) > - (if (and type (not (string= "file" type)) > - (org-string-match-p "^//" str)) > + (if (and type (not (string= "file" type))) > (concat type ":" str) > str))) > >