From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Guerry Subject: [Accepted] * org-html.el (org-html-handle-links): add an alternate for inline images Date: Tue, 19 Apr 2011 11:22:30 +0200 (CEST) Message-ID: <20110419092230.56A2D63C9@myhost.localdomain> References: <1303202089-27231-1-git-send-email-manuel.giraud@univ-nantes.fr> 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]:47417) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QC78i-0004wO-4V for emacs-orgmode@gnu.org; Tue, 19 Apr 2011 05:22:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QC78g-00022u-Oh for emacs-orgmode@gnu.org; Tue, 19 Apr 2011 05:22:32 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:51137) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QC78g-00022g-KK for emacs-orgmode@gnu.org; Tue, 19 Apr 2011 05:22:30 -0400 Received: by wyf19 with SMTP id 19so5669244wyf.0 for ; Tue, 19 Apr 2011 02:22:29 -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: emacs-orgmode@gnu.org Patch 752 (http://patchwork.newartisans.com/patch/752/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C1303202089-27231-1-git-send-email-manuel.giraud%40univ-nantes.fr%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: [O] * org-html.el (org-html-handle-links): add an alternate for > inline images > Date: Tue, 19 Apr 2011 13:34:49 -0000 > From: Manuel Giraud > X-Patchwork-Id: 752 > Message-Id: <1303202089-27231-1-git-send-email-manuel.giraud@univ-nantes.fr> > To: emacs-orgmode@gnu.org > Cc: Manuel Giraud > > --- > lisp/org-html.el | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > > diff --git a/lisp/org-html.el b/lisp/org-html.el > index 5d53478..7a4564d 100644 > --- a/lisp/org-html.el > +++ b/lisp/org-html.el > @@ -888,7 +888,8 @@ OPT-PLIST is the export options list." > (if (string-match "^file:" desc) > (setq desc (substring desc (match-end 0))))) > (setq desc (org-add-props > - (concat "") > + (concat "\"" + (file-name-nondirectory desc) "\"/>") > '(org-protected t)))) > (cond > ((equal type "internal") >