* A tutorial on using ox-rss.el to publish an Emacs-made blog
@ 2013-09-25 14:31 Bastien
2013-09-25 15:29 ` Scott Randby
0 siblings, 1 reply; 9+ messages in thread
From: Bastien @ 2013-09-25 14:31 UTC (permalink / raw)
To: emacs-orgmode
Hi all,
reading Sacha's post on blogging with Emacs* pushed me to write this
small tutorial on how to use ox-rss.el to write/publish a blog with
Emacs and Org:
http://bzg.fr/blogging-from-emacs.html
Enjoy!
* http://sachachua.com/blog/2013/09/when-i-blog-with-emacs-and-when-i-blog-with-something-else/
--
Bastien
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: A tutorial on using ox-rss.el to publish an Emacs-made blog
2013-09-25 14:31 A tutorial on using ox-rss.el to publish an Emacs-made blog Bastien
@ 2013-09-25 15:29 ` Scott Randby
2013-09-25 15:58 ` Carsten Dominik
0 siblings, 1 reply; 9+ messages in thread
From: Scott Randby @ 2013-09-25 15:29 UTC (permalink / raw)
To: Bastien; +Cc: emacs-orgmode
On Wed, Sep 25, 2013 at 10:31 AM, Bastien <bzg@gnu.org> wrote:
> Hi all,
>
> reading Sacha's post on blogging with Emacs* pushed me to write this
> small tutorial on how to use ox-rss.el to write/publish a blog with
> Emacs and Org:
>
> http://bzg.fr/blogging-from-emacs.html
>
> Enjoy!
>
> * http://sachachua.com/blog/2013/09/when-i-blog-with-emacs-and-when-i-blog-with-something-else/
>
> --
> Bastien
>
>
Thank you very much for this wonderful post.
Scott Randby
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: A tutorial on using ox-rss.el to publish an Emacs-made blog
2013-09-25 15:29 ` Scott Randby
@ 2013-09-25 15:58 ` Carsten Dominik
2013-09-26 7:53 ` Detlef Steuer
0 siblings, 1 reply; 9+ messages in thread
From: Carsten Dominik @ 2013-09-25 15:58 UTC (permalink / raw)
To: Scott Randby; +Cc: Bastien, emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 680 bytes --]
On 25.9.2013, at 17:29, Scott Randby <srandby@gmail.com> wrote:
> On Wed, Sep 25, 2013 at 10:31 AM, Bastien <bzg@gnu.org> wrote:
>> Hi all,
>>
>> reading Sacha's post on blogging with Emacs* pushed me to write this
>> small tutorial on how to use ox-rss.el to write/publish a blog with
>> Emacs and Org:
>>
>> http://bzg.fr/blogging-from-emacs.html
>>
>> Enjoy!
>>
>> * http://sachachua.com/blog/2013/09/when-i-blog-with-emacs-and-when-i-blog-with-something-else/
>>
>> --
>> Bastien
>>
>>
>
> Thank you very much for this wonderful post.
+1. Tis is the post that might put me over the edge and try it.
- Carsten
>
> Scott Randby
>
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: A tutorial on using ox-rss.el to publish an Emacs-made blog
2013-09-25 15:58 ` Carsten Dominik
@ 2013-09-26 7:53 ` Detlef Steuer
2013-09-26 10:09 ` flammable project
0 siblings, 1 reply; 9+ messages in thread
From: Detlef Steuer @ 2013-09-26 7:53 UTC (permalink / raw)
To: emacs-orgmode
On Wed, 25 Sep 2013 17:58:51 +0200
Carsten Dominik <carsten.dominik@gmail.com> wrote:
> +1. Tis is the post that might put me over the edge and try it.
+1. Same status here.
Detlef
>
> - Carsten
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: A tutorial on using ox-rss.el to publish an Emacs-made blog
2013-09-26 7:53 ` Detlef Steuer
@ 2013-09-26 10:09 ` flammable project
2013-09-27 13:38 ` Bastien
0 siblings, 1 reply; 9+ messages in thread
From: flammable project @ 2013-09-26 10:09 UTC (permalink / raw)
To: emacs-org list
[-- Attachment #1: Type: text/plain, Size: 1360 bytes --]
Hi all,
Since I use ox-rss to generate my rss feed, I would like to make some
clarification:
* EMACS
You need to have an Emacs version greater than 24.2.1. The function
'url-encode-url' must be present to generate successfully the RSS feed. Since
I'm using Xubuntu 13.4. I had to add the PAA of Damien CASSOU to my apt
config. Then I installed Emacs 24.3.1. The command 'url-encode-url' was
listed in.
* ORG Files
You should take care about the PROPERTIES section you use in your org_files
or section used to generate the RSS feeed.
the CATEGORY might be usefull to manage multiple feeds. Personnaly I don't
try it but with Liferea RSS reader this option is visible.
Personnaly, I put the same date for the DATE and PUBDATE options. The date
are correctly displayed in my RSS reader.
E.G:
----------------------------------------8X-----cut here--------------
* HEADER ON
:PROPERTIES:
:DATE: <2012-10-12 Fri>
:PUBDATE: <2012-10-12 Fri>
:CATEGORY: Blog
:END:
BLABLABLA
BLABLABLA
BLABLABLA
----------------------------------------8X-----cut here--------------
Regards,
Basile
2013/9/26 Detlef Steuer <detlef.steuer@gmx.de>
> On Wed, 25 Sep 2013 17:58:51 +0200
> Carsten Dominik <carsten.dominik@gmail.com> wrote:
>
> > +1. Tis is the post that might put me over the edge and try it.
>
>
> +1. Same status here.
>
> Detlef
>
> >
> > - Carsten
>
>
>
[-- Attachment #2: Type: text/html, Size: 3840 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: A tutorial on using ox-rss.el to publish an Emacs-made blog
2013-09-26 10:09 ` flammable project
@ 2013-09-27 13:38 ` Bastien
2013-09-27 13:43 ` Suvayu Ali
0 siblings, 1 reply; 9+ messages in thread
From: Bastien @ 2013-09-27 13:38 UTC (permalink / raw)
To: flammable project; +Cc: emacs-org list
Hi flammable (?),
flammable project <flammable.project@gmail.com> writes:
> * EMACS
> You need to have an Emacs version greater than 24.2.1. The function
> 'url-encode-url' must be present to generate successfully the RSS
> feed. Since I'm using Xubuntu 13.4. I had to add the PAA of Damien
> CASSOU to my apt config. Then I installed Emacs 24.3.1. The command
> 'url-encode-url' was listed in.
Thanks -- I updated the blog post to mention this constraint.
> * ORG Files
> You should take care about the PROPERTIES section you use in your
> org_files or section used to generate the RSS feeed.
>
> the CATEGORY might be usefull to manage multiple feeds. Personnaly I
> don't try it but with Liferea RSS reader this option is visible.
(I don't use the CATEGORY property myself but maybe will.)
> Personnaly, I put the same date for the DATE and PUBDATE options. The
> date are correctly displayed in my RSS reader.
Why do you need the :DATE: ? :PUBDATE: is automatically added if not
already present, and should be enough for the feed to know about the
publication date.
Thanks for testing!
--
Bastien
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2013-09-28 7:40 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-25 14:31 A tutorial on using ox-rss.el to publish an Emacs-made blog Bastien
2013-09-25 15:29 ` Scott Randby
2013-09-25 15:58 ` Carsten Dominik
2013-09-26 7:53 ` Detlef Steuer
2013-09-26 10:09 ` flammable project
2013-09-27 13:38 ` Bastien
2013-09-27 13:43 ` Suvayu Ali
2013-09-27 13:46 ` Bastien
2013-09-28 7:40 ` flammable project
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.