<feed xmlns='http://www.w3.org/2005/Atom'>
<title>blogc/man, branch feature/runserver-lighttpd</title>
<subtitle>A blog compiler
</subtitle>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/'/>
<entry>
<title>content-parser: source-parser: rename TITLE to FIRST_HEADER</title>
<updated>2017-02-15T22:27:00+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2017-02-15T22:27:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=1d790b8c78a2925a788e7167ed8d9d52d8e23906'/>
<id>1d790b8c78a2925a788e7167ed8d9d52d8e23906</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>content-parser: html-encode pre-defined title. updated man pages</title>
<updated>2017-02-14T23:07:28+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2017-02-14T23:07:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=bc23293bb178b6abcafa0f67d432cbff6ac3c861'/>
<id>bc23293bb178b6abcafa0f67d432cbff6ac3c861</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make: added initial man page</title>
<updated>2017-01-03T02:43:58+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2017-01-03T02:43:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=f1497810051ffe86741fa7e0dc7a2b4db94d2c19'/>
<id>f1497810051ffe86741fa7e0dc7a2b4db94d2c19</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>git-receiver: allow to push to mirror manually</title>
<updated>2016-11-18T23:32:07+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2016-11-18T23:32:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=53ecd048919835a116fce1089b78a46a69ecb374'/>
<id>53ecd048919835a116fce1089b78a46a69ecb374</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>git-receiver: few man-page fixes</title>
<updated>2016-11-17T23:46:21+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2016-11-17T23:46:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=1195c0d970898d9dbda754607f3b80ef220b12fe'/>
<id>1195c0d970898d9dbda754607f3b80ef220b12fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>git-receiver: allow users to re-run the last successful build</title>
<updated>2016-11-17T22:18:40+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2016-11-17T22:18:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=fc52952914747dc937c805baa211a251a795b847'/>
<id>fc52952914747dc937c805baa211a251a795b847</id>
<content type='text'>
running the pre-receive hook manually on the server will re-run the last
successful build.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
running the pre-receive hook manually on the server will re-run the last
successful build.
</pre>
</div>
</content>
</entry>
<entry>
<title>blogc: add cli option to read list of source files from stdin</title>
<updated>2016-10-15T00:53:24+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2016-10-15T00:53:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=58cd8d022f045bcf19d40253c20fc4439f60d5d8'/>
<id>58cd8d022f045bcf19d40253c20fc4439f60d5d8</id>
<content type='text'>
this patch adds `-i` option to command line. it will instruct blogc to
read stdin and parse it as a file where each source file is a line and
empty lines and lines starting with `#` are ignored.

this patch makes it possible to use blogc to build big blogs with lots
of pages, that would hit the operating system max command line length
when calling blogc to build pages.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this patch adds `-i` option to command line. it will instruct blogc to
read stdin and parse it as a file where each source file is a line and
empty lines and lines starting with `#` are ignored.

this patch makes it possible to use blogc to build big blogs with lots
of pages, that would hit the operating system max command line length
when calling blogc to build pages.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: man: tests: do not use bash</title>
<updated>2016-10-11T23:40:57+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2016-10-11T23:35:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=bc7d2545d47bf54acebb38ab3d1e2dd7251ddb99'/>
<id>bc7d2545d47bf54acebb38ab3d1e2dd7251ddb99</id>
<content type='text'>
tested with busybox' ash, that is not exactly posix.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tested with busybox' ash, that is not exactly posix.
</pre>
</div>
</content>
</entry>
<entry>
<title>git-receiver: added support to get mirror url from config file</title>
<updated>2016-10-10T00:13:47+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2016-10-10T00:13:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=3cd3dcb5bb3b0481812ddd3ff8dc182bdb20be23'/>
<id>3cd3dcb5bb3b0481812ddd3ff8dc182bdb20be23</id>
<content type='text'>
this commit also includes some "integration test" in shell script
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this commit also includes some "integration test" in shell script
</pre>
</div>
</content>
</entry>
<entry>
<title>man: templates and sources must be valid utf-8</title>
<updated>2016-07-05T01:25:56+00:00</updated>
<author>
<name>Rafael G. Martins</name>
<email>rafael@rafaelmartins.eng.br</email>
</author>
<published>2016-07-05T01:25:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.joursoir.net/blogc/commit/?id=8fb67f6c89490e2bbce5d5650f930780e77b57c2'/>
<id>8fb67f6c89490e2bbce5d5650f930780e77b57c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
