X-Git-Url: https://wpitchoune.net/gitweb/?p=www.git;a=blobdiff_plain;f=www%2Fnews%2Ffeed.xml;h=992c7807d55be4df10baf46e58769d604bc67611;hp=c9358508bacf51632be349f2535277992f6c01ae;hb=HEAD;hpb=388192e2f7ecca47f4095717cdc5d02193e33150 diff --git a/www/news/feed.xml b/www/news/feed.xml index c935850..992c780 100644 --- a/www/news/feed.xml +++ b/www/news/feed.xml @@ -5,57 +5,19 @@ https://wpitchoune.net/news/feed.xml News of the wpitchoune.net website. - New website - https://wpitchoune.net/news/new_website.html - <div class="paragraph"> -<p>After being bored with Wordpress for years, the <a href="http://wpitchoune.net">wpitchoune.net</a> -website is changing. It is now based on <a href="http://asciidoctor.org">Asciidoctor</a> and -a simple shell script to generate it.</p> -</div> -<div class="paragraph"> -<p>With the help of <a href="http://atom.io">Atom</a> and a couple of addons dedicated to -Asciidoctor, it is easy and quick to write content. I am happy to no -more have to worry about the painful admistration of Wordpress, -upgrading it, taking care of security, spamming of comments and bot -account creation, and backup of databases.</p> -</div> -<div class="paragraph"> -<p>If you want to know how the website is built, everything is on -a GIT repository: <a href="http://git.wpitchoune.net/gitweb/?p=www.git" class="bare">http://git.wpitchoune.net/gitweb/?p=www.git</a>. -It is simple, really simple&#8230;&#8203; but enough for my needs.</p> -</div> - Mon, 13 Jun 2016 22:00:00 GMT - https://wpitchoune.net/news/new_website.html - 2016-06-13T22:00:00Z - - - RSS Feed - https://wpitchoune.net/news/added_rss_feed.html - <div class="paragraph"> -<p>It is now possible to follow news and announces of the -website with the following RSS feed: -<a href="https://wpitchoune.net/news/feed.xml" class="bare">https://wpitchoune.net/news/feed.xml</a></p> -</div> -<div class="paragraph"> -<p>Under the bridge it is automaticaly generated -with a very simple program from Asciidoctor -documents. You can get the sources -from the GIT repository: <a href="https://git.wpitchoune.net/asciidoctor_to_rss.git" class="bare">https://git.wpitchoune.net/asciidoctor_to_rss.git</a> .</p> -</div> - Sun, 03 Jul 2016 22:00:00 GMT - https://wpitchoune.net/news/added_rss_feed.html - 2016-07-03T22:00:00Z - - Asciidoctor to RSS https://wpitchoune.net/news/asciidoctor_to_rss.html <div id="preamble"> <div class="sectionbody"> <div class="paragraph"> -<p>In order to have a website based only on Asciidoctor -documents, I have written a small utility which -converts a set of Asciidoctor documents to HTML pages and -generates a RSS 2.0 feed.</p> +<p>In order to ease the edition of this website and +the management of the server, I want it to be purely +static and generated from <a href="http://asciidoctor.org">Asciidoctor</a> documents.</p> +</div> +<div class="paragraph"> +<p>The <em>news</em> part of the website is also written as Asciidoctor +documents, <code>asciidoctor_to_rss</code> is converting them into static +HTML pages and generates a RSS 2.0 file.</p> </div> </div> </div> @@ -68,10 +30,10 @@ generates a RSS 2.0 feed.</p> <div class="ulist"> <ul> <li> -<p>maven</p> +<p><a href="http://maven.apache.org/download.cgi">Apache Maven</a> (3.3.9)</p> </li> <li> -<p>java (&gt;1.7)</p> +<p><a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html">Java</a> (Sun JDK &gt;=1.8)</p> </li> </ul> </div> @@ -98,18 +60,47 @@ mvn clean install</pre> <h2 id="_howto_write_news">Howto write news</h2> <div class="sectionbody"> <div class="paragraph"> -<p>Each news has to be written in a separate Asciidoctor document +<p>Each <em>news</em> must be written in an <a href="http://asciidoctor.org">Asciidoctor</a> document and all documents must be dropped into a directory.</p> </div> <div class="paragraph"> <p>There is not any restriction concerning the syntax because -the utility is based on the java bridge of Asciidoctor. -I have added an attribute 'date' which allows the utility +the utility is based on the Java bridge of Asciidoctor. +I have added an attribute <code>date</code> which allows the utility to know the publication date of the news.</p> </div> <div class="paragraph"> -<p>You can see some examples at <a href="https://wpitchoune.net/gitweb/?p=www.git;a=tree;f=src/news;hb=HEAD" class="bare">https://wpitchoune.net/gitweb/?p=www.git;a=tree;f=src/news;hb=HEAD</a> . -The source document of this news is at <a href="https://wpitchoune.net/gitweb/?p=www.git;a=blob;f=src/news/asciidoctor_to_rss.adoc;hb=HEAD" class="bare">https://wpitchoune.net/gitweb/?p=www.git;a=blob;f=src/news/asciidoctor_to_rss.adoc;hb=HEAD</a></p> +<p>Here is an example of <em>news</em>:</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="highlight"><code class="language-asciidoc" data-lang="asciidoc">= Asciidoctor to RSS +Jean-Philippe Orsini &lt;jeanfi@gmail.com&gt; +:date: 2016-11-07 +:icons: font + +In order to ease the edition of this website and +the management of the server, I want it to be purely +static and generated from http://asciidoctor.org[Asciidoctor] documents. + +The _news_ part of the website is also written as Asciidoctor +documents, `asciidoctor_to_rss` is converting them into static +HTML pages and generates a RSS 2.0 file. + +== Installation of asciidoctor_to_rss + +It is required to install: + +* http://maven.apache.org/download.cgi[Apache Maven] (3.3.9) + +* http://www.oracle.com/technetwork/java/javase/downloads/index.html[Java] (Sun JDK &gt;=1.8)</code></pre> +</div> +</div> +<div class="paragraph"> +<p>You can see few examples at +<a href="https://wpitchoune.net/gitweb/?p=www.git;a=tree;f=src/news;hb=HEAD" class="bare">https://wpitchoune.net/gitweb/?p=www.git;a=tree;f=src/news;hb=HEAD</a>. +The source document of this <em>news</em> is at +<a href="https://wpitchoune.net/gitweb/?p=www.git;a=blob;f=src/news/asciidoctor_to_rss.adoc;hb=HEAD" class="bare">https://wpitchoune.net/gitweb/?p=www.git;a=blob;f=src/news/asciidoctor_to_rss.adoc;hb=HEAD</a>.</p> </div> </div> </div> @@ -117,10 +108,37 @@ The source document of this news is at <a href="https://wpitchoune.net/gitweb <h2 id="_configuration">Configuration</h2> <div class="sectionbody"> <div class="paragraph"> -<p>The configuration of the utility can be done in text file.</p> +<p>The configuration file of <code>asciidoctor_to_rss</code> is text file containing key/value pairs.</p> +</div> +<div class="paragraph"> +<p>See an example at +<a href="https://wpitchoune.net/gitweb/?p=www.git;a=blob;f=src/asciidoctorrss.props;hb=HEAD" class="bare">https://wpitchoune.net/gitweb/?p=www.git;a=blob;f=src/asciidoctorrss.props;hb=HEAD</a> .</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="highlight"><code class="language-text" data-lang="text">feed.title=News +feed.description=News of the wpitchoune.net website. +feed.link=https://wpitchoune.net/news/feed.xml +feed.baseurl=https://wpitchoune.net/news + +html.header.file=src/header.html</code></pre> +</div> +</div> +<div class="paragraph"> +<p><code>feed.title</code>: the title used for the feed, in the RSS 2.0 and <code>news.html</code> files.</p> +</div> +<div class="paragraph"> +<p><code>feed.description</code>: the description used in the RSS 2.0 file.</p> +</div> +<div class="paragraph"> +<p><code>feed.link</code>: URI of the RSS 2.0 file.</p> +</div> +<div class="paragraph"> +<p><code>feed.baseurl</code>: base URI where the HTML news files will be located.</p> </div> <div class="paragraph"> -<p>See an example at <a href="https://wpitchoune.net/gitweb/?p=www.git;a=blob;f=src/asciidoctorrss.props;hb=HEAD" class="bare">https://wpitchoune.net/gitweb/?p=www.git;a=blob;f=src/asciidoctorrss.props;hb=HEAD</a> .</p> +<p><code>html.header.file</code>: the content of the denoted file will be added in the <code>head</code> block of +the generated HTML documents.</p> </div> </div> </div> @@ -139,10 +157,10 @@ The source document of this news is at <a href="https://wpitchoune.net/gitweb <p><code>IN_DIR</code>: the directory containing the news as Asciidoctor documents.</p> </div> <div class="paragraph"> -<p><code>OUT_DIR</code>: the output directory which contains all generated files</p> +<p><code>OUT_DIR</code>: the output directory which contains all generated files.</p> </div> <div class="paragraph"> -<p><code>CFG_FILE</code>: the path to the configuration file</p> +<p><code>CFG_FILE</code>: the path to the configuration file.</p> </div> <div class="paragraph"> <p>The <code>OUT_DIR</code> will contain:</p> @@ -150,13 +168,14 @@ The source document of this news is at <a href="https://wpitchoune.net/gitweb <div class="ulist"> <ul> <li> -<p>one HTML file for each Asciidoctor document</p> +<p>one HTML file for each Asciidoctor document,</p> </li> <li> -<p>the <code>news.html</code> file</p> +<p>the <a href="https://wpitchoune.net/news/news.html"><code>news.html</code></a> file,</p> </li> <li> -<p>the <code>feed.xml</code> file which is a feed compatible with RSS v2.0.</p> +<p>and the <a href="https://wpitchoune.net/news/news.html"><code>feed.xml</code></a> file which is a feed +compatible with RSS v2.0.</p> </li> </ul> </div> @@ -167,6 +186,24 @@ The source document of this news is at <a href="https://wpitchoune.net/gitweb 2016-07-10T22:00:00Z + Psensor v1.2.1 + https://wpitchoune.net/news/psensor_v1_2_1.html + <div class="paragraph"> +<p>Psensor v1.2.1 has been released.</p> +</div> +<div class="paragraph"> +<p>The source tarball can be download at: +<a href="https://wpitchoune.net/psensor/files" class="bare">https://wpitchoune.net/psensor/files</a></p> +</div> +<div class="paragraph"> +<p>The information about the changes can be read at: +<a href="https://gitlab.com/jeanfi/psensor/-/raw/v1.2.1/NEWS" class="bare">https://gitlab.com/jeanfi/psensor/-/raw/v1.2.1/NEWS</a></p> +</div> + Sun, 28 Jun 2020 22:00:00 GMT + https://wpitchoune.net/news/psensor_v1_2_1.html + 2020-06-28T22:00:00Z + + Call for contributions for the translation of psensor https://wpitchoune.net/news/call_contribution.html <div class="paragraph"> @@ -180,5 +217,76 @@ it is now the good timeframe. See the https://wpitchoune.net/news/call_contribution.html 2016-06-13T22:00:00Z + + Psensor is moving to GitLab + https://wpitchoune.net/news/psensor_git_moved_gitlab.html + <div class="paragraph"> +<p>The source code of Psensor is moving to GitLab at: +<a href="https://gitlab.com/jeanfi/psensor" class="bare">https://gitlab.com/jeanfi/psensor</a></p> +</div> + Thu, 27 Sep 2018 22:00:00 GMT + https://wpitchoune.net/news/psensor_git_moved_gitlab.html + 2018-09-27T22:00:00Z + + + New website + https://wpitchoune.net/news/new_website.html + <div class="paragraph"> +<p>After being bored with Wordpress for years, the <a href="http://wpitchoune.net">wpitchoune.net</a> +website is changing. It is now based on <a href="http://asciidoctor.org">Asciidoctor</a> and +a simple shell script to generate it.</p> +</div> +<div class="paragraph"> +<p>With the help of <a href="http://atom.io">Atom</a> and a couple of addons dedicated to +Asciidoctor, it is easy and quick to write content. I am happy to no +more have to worry about the painful admistration of Wordpress, +upgrading it, taking care of security, spamming of comments and bot +account creation, and backup of databases.</p> +</div> +<div class="paragraph"> +<p>If you want to know how the website is built, everything is on +a GIT repository: <a href="http://git.wpitchoune.net/gitweb/?p=www.git" class="bare">http://git.wpitchoune.net/gitweb/?p=www.git</a>. +It is simple, really simple&#8230;&#8203; but enough for my needs.</p> +</div> + Mon, 13 Jun 2016 22:00:00 GMT + https://wpitchoune.net/news/new_website.html + 2016-06-13T22:00:00Z + + + Psensor v1.2.0 + https://wpitchoune.net/news/psensor_v1_2_0.html + <div class="paragraph"> +<p>Psensor v1.2.0 has been released.</p> +</div> +<div class="paragraph"> +<p>The source can be download at: +<a href="https://wpitchoune.net/psensor/files" class="bare">https://wpitchoune.net/psensor/files</a></p> +</div> +<div class="paragraph"> +<p>The news can be read at: +<a href="https://wpitchoune.net/gitweb/?p=psensor.git;a=blob_plain;f=NEWS.html" class="bare">https://wpitchoune.net/gitweb/?p=psensor.git;a=blob_plain;f=NEWS.html</a></p> +</div> + Fri, 03 Feb 2017 23:00:00 GMT + https://wpitchoune.net/news/psensor_v1_2_0.html + 2017-02-03T23:00:00Z + + + RSS Feed + https://wpitchoune.net/news/added_rss_feed.html + <div class="paragraph"> +<p>It is now possible to follow news and announces of the +website with the following RSS feed: +<a href="https://wpitchoune.net/news/feed.xml" class="bare">https://wpitchoune.net/news/feed.xml</a></p> +</div> +<div class="paragraph"> +<p>Under the bridge it is automaticaly generated +with a very simple program from Asciidoctor +documents. You can get the sources +from the GIT repository: <a href="https://git.wpitchoune.net/asciidoctor_to_rss.git" class="bare">https://git.wpitchoune.net/asciidoctor_to_rss.git</a> .</p> +</div> + Sun, 03 Jul 2016 22:00:00 GMT + https://wpitchoune.net/news/added_rss_feed.html + 2016-07-03T22:00:00Z +