<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python/pelican.git/docs/quickstart.rst, branch drop_py2_docs</title>
<subtitle>github.com: getpelican/pelican.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/'/>
<entry>
<title>Add extra/optional Markdown dependency to setup.py</title>
<updated>2019-10-09T14:25:59+00:00</updated>
<author>
<name>David Alfonso</name>
<email>developer@davidalfonso.es</email>
</author>
<published>2019-10-09T09:08:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=bc450b3339d9eb4ce4649a5989836dcee496688f'/>
<id>bc450b3339d9eb4ce4649a5989836dcee496688f</id>
<content type='text'>
- Modify documentation to use the extra dependency in order to install
the recommended markdown package version.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Modify documentation to use the extra dependency in order to install
the recommended markdown package version.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix quick-start docs regarding `pelican --listen`</title>
<updated>2019-09-28T20:51:20+00:00</updated>
<author>
<name>Justin Mayer</name>
<email>entroP@gmail.com</email>
</author>
<published>2019-09-28T20:51:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=047d884323a67495a4358acee984b276d3456f07'/>
<id>047d884323a67495a4358acee984b276d3456f07</id>
<content type='text'>
Reverts 2ab91bbaaa565dcb89726b6cac0002c1e0644dc3 and resolves #2626
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reverts 2ab91bbaaa565dcb89726b6cac0002c1e0644dc3 and resolves #2626
</pre>
</div>
</content>
</entry>
<entry>
<title>Pushing Python compatibility to Python 3.5+</title>
<updated>2019-09-23T17:38:18+00:00</updated>
<author>
<name>Lucas Cimon</name>
<email>lucas.cimon@gmail.com</email>
</author>
<published>2019-09-23T17:38:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=589a31ddd0d447934b7cf09d8675bb0c73a92d90'/>
<id>589a31ddd0d447934b7cf09d8675bb0c73a92d90</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clarify that `pelican --listen` operates on output</title>
<updated>2019-06-16T16:51:10+00:00</updated>
<author>
<name>Justin Mayer</name>
<email>entroP@gmail.com</email>
</author>
<published>2019-06-16T16:51:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=2ab91bbaaa565dcb89726b6cac0002c1e0644dc3'/>
<id>2ab91bbaaa565dcb89726b6cac0002c1e0644dc3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Docs: Reflow to 79 char line limit</title>
<updated>2018-11-03T02:53:15+00:00</updated>
<author>
<name>MinchinWeb</name>
<email>w_minchin@hotmail.com</email>
</author>
<published>2018-11-03T02:53:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=f595741b8e7dfd1cf6a59618edae0a465e2ef025'/>
<id>f595741b8e7dfd1cf6a59618edae0a465e2ef025</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove develop_server.sh in favour of pelican serving static files itself</title>
<updated>2018-06-22T17:22:38+00:00</updated>
<author>
<name>Johannes 'josch' Schauer</name>
<email>josch@mister-muffin.de</email>
</author>
<published>2017-07-10T14:59:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=a5edbf8546b1f0b1ede6e782041d843df58860f9'/>
<id>a5edbf8546b1f0b1ede6e782041d843df58860f9</id>
<content type='text'>
Competing static site generators integrate the functionality of regenerating
content and serving it into their main executable. In pelican this
functionality used to be in an external script `develop_server.sh` which
resides in the blog base directory. This has the disadvantage that changes in
pelican can break the `develop_server.sh` scripts which will not automatically
be upgraded together with pelican by package managers. Thus, pelican should
integrate this functionality into its main executable.

To this end, this commit removes `develop_server.sh` and adds three command
line options to the pelican executable:

 * `-l/--listen` starts the HTTP server (`-s/--serve` was already taken)
 * `-p/--port` specifies the port to listen at
 * `-b/--bind` specifies the IP to bind to

`--listen` and `--autoreload` can be used together to achieve the same
effect that other static site generators offer: Serve files via HTTP
while at the same time auto-generating the content.

Since the `develop_server.sh` script was removed, pelican-quickstart looses the
`develop` option.

Since the `develop_server.sh` script was removed, the Makefile looses the
`stopserver` target and the `devserver` target is replaced by running `pelican
-l` in the foreground.

Since pelican now offers the `--listen` option, the fabfile uses that instead
of starting the socketserver itself.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Competing static site generators integrate the functionality of regenerating
content and serving it into their main executable. In pelican this
functionality used to be in an external script `develop_server.sh` which
resides in the blog base directory. This has the disadvantage that changes in
pelican can break the `develop_server.sh` scripts which will not automatically
be upgraded together with pelican by package managers. Thus, pelican should
integrate this functionality into its main executable.

To this end, this commit removes `develop_server.sh` and adds three command
line options to the pelican executable:

 * `-l/--listen` starts the HTTP server (`-s/--serve` was already taken)
 * `-p/--port` specifies the port to listen at
 * `-b/--bind` specifies the IP to bind to

`--listen` and `--autoreload` can be used together to achieve the same
effect that other static site generators offer: Serve files via HTTP
while at the same time auto-generating the content.

Since the `develop_server.sh` script was removed, pelican-quickstart looses the
`develop` option.

Since the `develop_server.sh` script was removed, the Makefile looses the
`stopserver` target and the `devserver` target is replaced by running `pelican
-l` in the foreground.

Since pelican now offers the `--listen` option, the fabfile uses that instead
of starting the socketserver itself.
</pre>
</div>
</content>
</entry>
<entry>
<title>Localize default lang and timezone in pelican-quickstart</title>
<updated>2016-10-02T17:22:26+00:00</updated>
<author>
<name>Nicolas Stinus</name>
<email>nicolas.stinus@gmail.com</email>
</author>
<published>2016-06-04T13:00:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=c1a5279da9863fdfacade8654437d9d7b73f6b13'/>
<id>c1a5279da9863fdfacade8654437d9d7b73f6b13</id>
<content type='text'>
Fixes #1971.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #1971.
</pre>
</div>
</content>
</entry>
<entry>
<title>make the quickstart work</title>
<updated>2015-04-13T15:12:52+00:00</updated>
<author>
<name>Daniel M. Drucker</name>
<email>dmd@3e.org</email>
</author>
<published>2015-04-13T15:12:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=f864418b9e1af0a980052dc4c7d51519c57e3649'/>
<id>f864418b9e1af0a980052dc4c7d51519c57e3649</id>
<content type='text'>
The quickstart was worded confusingly - it said "from your project directory", which implied doing a `cd ..` down to the `projects` dir, which would cause `pelican content` to fail. In fact, you need to be in the `yoursite` directory, which is the directory that has the `content` directory in it.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The quickstart was worded confusingly - it said "from your project directory", which implied doing a `cd ..` down to the `projects` dir, which would cause `pelican content` to fail. In fact, you need to be in the `yoursite` directory, which is the directory that has the `content` directory in it.</pre>
</div>
</content>
</entry>
<entry>
<title>Use pelican.server in Quickstart docs</title>
<updated>2015-04-04T19:17:59+00:00</updated>
<author>
<name>Deniz Turgut</name>
<email>dturgut@gmail.com</email>
</author>
<published>2015-04-04T19:17:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=946e95172fa85e7d5967226f3dbc723f099f94c9'/>
<id>946e95172fa85e7d5967226f3dbc723f099f94c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add comment to 'preview your site' section mentioning the http server module for python3 is different then python</title>
<updated>2015-01-05T10:50:48+00:00</updated>
<author>
<name>winlu</name>
<email>derwinlu+git@gmail.com</email>
</author>
<published>2015-01-05T10:50:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python/pelican.git/commit/?id=3763f96011b617f5b33dc375fe81d3344fb8d8c7'/>
<id>3763f96011b617f5b33dc375fe81d3344fb8d8c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
