From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikas Rawal Subject: =?UTF-8?B?UmU6IEdlbmVyYXRpbmcgc2l0ZW1hcDog4oCYb3JnLXB1Ymxpc2gt?= =?UTF-8?B?Y2FjaGUtZ2V04oCZIGNhbGxlZCwgYnV0IG5vIGNhY2hlIHByZXNlbnQ=?= Date: Thu, 18 Jan 2018 17:34:21 +0530 Message-ID: References: <4692B909-86A5-4209-8EBE-3EDCCEC5E5A6@agrarianresearch.org> <87shb79re3.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 (Mac OS X Mail 11.1 \(3445.4.7\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57964) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ec8w3-0000uI-JN for emacs-orgmode@gnu.org; Thu, 18 Jan 2018 07:04:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ec8w0-0000o3-GD for emacs-orgmode@gnu.org; Thu, 18 Jan 2018 07:04:45 -0500 Received: from mail-pf0-x22a.google.com ([2607:f8b0:400e:c00::22a]:33999) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ec8w0-0000n0-24 for emacs-orgmode@gnu.org; Thu, 18 Jan 2018 07:04:44 -0500 Received: by mail-pf0-x22a.google.com with SMTP id e76so14358412pfk.1 for ; Thu, 18 Jan 2018 04:04:43 -0800 (PST) In-Reply-To: <87shb79re3.fsf@nicolasgoaziou.fr> 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" To: Nicolas Goaziou Cc: org-mode mailing list >=20 >> I have been using the following code block to generate a sitemap for = my org-jkyll based blog. >>=20 >> #+begin_src emacs-lisp :results output silent :exports none :cache = yes >> (org-publish-sitemap >> (assoc "indblog" org-publish-project-alist) >> "sitemap.org") >> #+end_src >>=20 >> I had not generated the sitemap for a while, and now I find that it >> ends with the following message, and sitemap.org = >> is not recreated. >=20 > `org-publish-sitemap' is not meant to be called directly. It assumes > project is properly set-up, which is done in its caller, > `org-publish-projects'. >=20 > So, why don't you simply publish "indblog" project? I use this to avoid having to publish the whole project each time I add = a post. I would like to just publish the current file, and update the = sitemap by running the above code block. Is that not okay? Vikas