Selaa lähdekoodia

Merge branch 'maint'

Bastien Guerry 11 vuotta sitten
vanhempi
commit
f00d759765
1 muutettua tiedostoa jossa 5 lisäystä ja 5 poistoa
  1. 5 5
      contrib/lisp/ox-rss.el

+ 5 - 5
contrib/lisp/ox-rss.el

@@ -243,6 +243,7 @@ communication channel."
 	   (hl-number (org-export-get-headline-number headline info))
 	   (hl-home (file-name-as-directory (plist-get info :html-link-home)))
 	   (hl-pdir (plist-get info :publishing-directory))
+	   (hl-perm (org-element-property :RSS_PERMALINK headline))
 	   (anchor
 	    (org-export-solidify-link-text
 	     (or (org-element-property :CUSTOM_ID headline)
@@ -258,14 +259,12 @@ communication channel."
 		    (error "Missing PUBDATE property"))))))
 	   (title (org-element-property :raw-value headline))
 	   (publink
-	    (or (concat
-		 (or hl-home hl-pdir)
-		 (org-element-property :RSS_PERMALINK headline))
+	    (or (and hl-perm (concat (or hl-home hl-pdir) hl-perm))
 		(concat
 		 (or hl-home hl-pdir)
 		 (file-name-nondirectory
 		  (file-name-sans-extension
-		   (buffer-file-name))) "." htmlext "#" anchor)))
+		   (plist-get info :input-file))) "." htmlext "#" anchor)))
 	   (guid (if org-rss-use-entry-url-as-guid
 		     publink
 		   (org-rss-plain-text
@@ -334,10 +333,11 @@ as a communication channel."
 	 (blogurl (or (plist-get info :html-link-home)
 		      (plist-get info :publishing-directory)))
 	 (image (url-encode-url (plist-get info :rss-image-url)))
+	 (ifile (plist-get info :input-file))
 	 (publink
 	  (concat (file-name-as-directory blogurl)
 		   (file-name-nondirectory
-		    (file-name-sans-extension (buffer-file-name)))
+		    (file-name-sans-extension ifile))
 		  "." rssext)))
     (format
      "\n<title>%s</title>