From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Barton Subject: Re: Help with migrating blog to org-mode format Date: Mon, 10 Jan 2011 14:03:51 +0000 Message-ID: <4D2B11C7.20403@manor-farm.org> References: <87lj2telk0.fsf@playground.homesweet.home> Reply-To: lists@manor-farm.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=59982 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PcIM7-0003GY-Is for emacs-orgmode@gnu.org; Mon, 10 Jan 2011 09:04:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PcIM6-0001bZ-7b for emacs-orgmode@gnu.org; Mon, 10 Jan 2011 09:04:19 -0500 Received: from mail.ian-barton.com ([109.74.196.44]:48912 helo=li40-130.members.linode.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PcIM6-0001Sx-3M for emacs-orgmode@gnu.org; Mon, 10 Jan 2011 09:04:18 -0500 Received: from localhost (mail.wilkesley.org [127.0.0.1]) by li40-130.members.linode.com (Postfix) with ESMTP id B2AE9A06F for ; Mon, 10 Jan 2011 14:03:52 +0000 (UTC) Received: from li40-130.members.linode.com ([127.0.0.1]) by localhost (mail.manor-farm.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8RX2b2-ZFh6K for ; Mon, 10 Jan 2011 14:03:52 +0000 (UTC) Received: from [192.168.0.133] (unknown [217.146.125.41]) (Authenticated sender: ian@manor-farm.org) by li40-130.members.linode.com (Postfix) with ESMTPSA id 7F39BA06D for ; Mon, 10 Jan 2011 14:03:52 +0000 (UTC) In-Reply-To: <87lj2telk0.fsf@playground.homesweet.home> 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 On 09/01/11 22:53, Myriam Abramson wrote: > > Hello, > > After Google dropped the ftp option to blogger, I dumped my blog to an > xml file with the hope of ressucitate it to a more friendly > environment for me. I've found this environment with a combination of > org-mode, blorg, and ... dropbox. Dropbox just provides me a link to > publish my blog wherever I want to. Blorg isn't being maintained I > believe and it has lots of error but it works in converting org-mode > to blog formatting for now and I can work on it later. > > Each topic in a blog is a TODO task and the date is inserted when the > task is DONE. I'm planning to read from my xml blog and write topics > simply as "* DONE mytopic ... " but how can I get the publication date > in org to get "CLOSED:" on the next line? > > The xml of my blog is something like that: > > my title > my content > 2003-10-22T18:27:00.000-04:00 > > TIA, > > myriam I use org in combination with Jekyll and jekyll.el. The process goes like this: Create draft post using jekyll.el. This goes in the _drafts directory and isn't published. When it's finished use jekyll.el which modified the filename and moves it to the _posts directory. Export my org files to html. Run jekyll to create the web site and rsync it to my server. My tutorial is on worg: http://orgmode.org/worg/org-tutorials/org-jekyll.html There are other ways to use org with jekyll, but this should give you some ideas. Ian.