Files
sigal/docs/index.rst

230 lines
5.6 KiB
ReStructuredText
Raw Normal View History

2013-05-06 23:33:09 +02:00
=======================================
Sigal - Simple Static Gallery Generator
=======================================
2012-11-09 00:42:16 +01:00
Sigal is yet another simple static gallery generator. It's written in Python
and it allows to build a static gallery of images with the following features:
2013-05-06 23:33:09 +02:00
* Process directories recursively.
* Generate HTML pages using jinja2 templates.
* Relative links for a portable output.
* Themes support.
2012-11-09 00:42:16 +01:00
* MIT licensed.
2013-02-24 23:08:14 +01:00
The idea behind Sigal is to ease the use of the javascript librairies like
`galleria`_. These librairies do a great job to display the images, Sigal does
what is missing: resize images, create thumbnails, generate html pages.
2013-05-06 23:33:09 +02:00
Sigal is currently compatible only with python 2.
2013-03-11 22:40:55 +01:00
2012-11-14 00:47:36 +01:00
Links :
2012-11-09 00:42:16 +01:00
2012-11-14 00:47:36 +01:00
* Latest documentation on the `website`_
2012-11-09 00:42:16 +01:00
* Source, issues and pull requests on `Github`_
* Releases on `PyPI`_
2012-11-14 00:47:36 +01:00
.. _website: http://sigal.saimon.org/
2012-11-09 00:42:16 +01:00
.. _Github: https://github.com/saimn/sigal/
.. _PyPI: http://pypi.python.org/pypi/sigal
2012-11-14 00:47:36 +01:00
Themes & Demo
-------------
Sigal comes with two themes, based on the `colorbox`_ and `galleria`_
Javascript libraries:
- `colorbox demo`_
- `galleria demo`_
.. _galleria: http://galleria.io/
.. _colorbox: http://www.jacklmoore.com/colorbox
.. _galleria demo: http://saimon.org/sigal-demo/galleria/
.. _colorbox demo: http://saimon.org/sigal-demo/colorbox/
2013-01-03 00:59:37 +01:00
2012-11-09 00:42:16 +01:00
Installation
------------
Install the extension with one of the following commands::
$ easy_install sigal
or alternatively if you have pip installed::
$ pip install sigal
Dependencies
~~~~~~~~~~~~
2013-02-24 23:08:14 +01:00
- Argh
2013-05-06 23:33:09 +02:00
- Clint
2012-11-09 00:42:16 +01:00
- Jinja2
2013-05-06 23:33:09 +02:00
- Pilkit
2013-02-24 23:08:14 +01:00
- Python Imaging Library (PIL / Pillow)
2012-11-09 00:42:16 +01:00
- Python Markdown
2013-01-03 00:59:37 +01:00
2012-11-09 00:42:16 +01:00
How to Use
----------
2013-05-06 23:33:09 +02:00
Init
To get started, just run ``sigal init`` which will copy an example
configuration file in the current directory. All configuration values have a
default; values that are commented out serve to show the default. Default
values are specified when modified in this example config file.
2013-02-20 23:45:41 +01:00
2013-05-06 23:33:09 +02:00
Build
After adapting the configuration to your needs, put your images in a
sub-directory and run ``sigal build <your images directory>``. The next time
you run ``sigal build``, only the new images will be processed. Use the
``-f`` flag to force the reprocessing of all the images.
2013-02-20 23:45:41 +01:00
2013-05-06 23:33:09 +02:00
Serve
To visualize your gallery, you can use ``sigal serve`` which runs a basic
web server. This server should only be used for local browsing, not in
production. Another option is to use the ``index_in_url = True`` setting,
which will add ``index.html`` to the urls to allow browsing without a
server.
2013-02-20 23:45:41 +01:00
Help of the ``sigal build`` command
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2012-11-09 00:42:16 +01:00
::
2013-02-20 23:45:41 +01:00
$ sigal build [-h] [-d] [-v] [-f] [-c CONFIG] [-t THEME]
[source] [destination]
2012-11-09 00:42:16 +01:00
Required arguments:
``source``
2013-02-20 23:45:41 +01:00
Input directory
2012-11-09 00:42:16 +01:00
``destination``
2013-02-20 23:45:41 +01:00
Output directory (default: ``_build/``)
2012-12-18 00:34:14 +01:00
Optional arguments:
2013-02-24 23:08:14 +01:00
``-h, --help``
2013-02-20 23:45:41 +01:00
Show this help message and exit
2012-11-09 00:42:16 +01:00
2013-02-24 23:08:14 +01:00
``-f, --force``
2013-02-20 23:45:41 +01:00
Force the reprocessing of existing images and thumbnails
2012-11-09 00:42:16 +01:00
``-v, --verbose``
2013-02-20 23:45:41 +01:00
Show all messages
2012-11-09 00:42:16 +01:00
``-d, --debug``
2013-02-20 23:45:41 +01:00
Show all message, including debug messages
2012-12-18 00:34:14 +01:00
``-c CONFIG, --config CONFIG``
Configuration file (default: ``sigal.conf.py`` in the current working
directory)
2012-12-18 00:34:14 +01:00
``-t THEME, --theme THEME``
2013-02-20 23:45:41 +01:00
Specify a theme directory, or a theme name for the themes included with Sigal
2012-11-09 00:42:16 +01:00
2012-11-09 00:42:16 +01:00
Configuration
-------------
2013-02-24 23:08:14 +01:00
The configuration must be set in a ``sigal.conf.py`` file in the current
directory. It can also be specified with the ``-c`` flag. An example file with
explanations on the settings is available in ``sigal/templates/sigal.conf.py``
and is shown below. This file is copied to the current directory with the
``sigal init`` commmand.
2012-11-09 00:42:16 +01:00
.. literalinclude:: ../sigal/templates/sigal.conf.py
:language: python
2012-11-09 00:42:16 +01:00
Album information
-----------------
Information on an album can be given in a file using the `markdown`_ syntax,
2013-02-08 10:51:37 +01:00
named ``index.md`` :
2012-12-18 00:34:14 +01:00
::
2012-11-09 00:42:16 +01:00
Title: Another example gallery
Thumbnail: test2.jpg
2012-11-09 00:42:16 +01:00
And a *cool* description.
If this file does not exist the directory's name is used for the title, and
the first image of the directory is used as thumbnail.
2012-11-09 00:42:16 +01:00
.. _markdown: http://daringfireball.net/projects/markdown/
2013-01-03 00:59:37 +01:00
2013-03-11 22:40:55 +01:00
2012-11-09 00:42:16 +01:00
Changelog
---------
2013-05-06 23:33:09 +02:00
Version 0.4.0-dev
~~~~~~~~~~~~~~~~~
Released on 2013-xx-xx.
- Add a setting to disable the writing of HTML files.
- Use Pilkit.
- Remove multiprocessing.
- Add new settings for the source and destination directories.
2013-05-06 23:33:09 +02:00
2013-03-20 00:16:26 +01:00
Version 0.3.3
~~~~~~~~~~~~~
Released on 2013-03-20.
- Catch exception when PIL fails to read the exif metadata.
2013-03-14 22:52:15 +01:00
Version 0.3.2
~~~~~~~~~~~~~
Released on 2013-03-14.
- Bugfix for PNG files which don't have exif metadata.
- Move unit tests to py.test.
- Fix images path in colorbox theme.
- Group package meta in a module.
2013-03-11 22:40:55 +01:00
Version 0.3.1
~~~~~~~~~~~~~
Released on 2013-03-11.
- Fix the path of the sample config file (which was not included in the
previous release).
2013-01-03 00:59:37 +01:00
Version 0.3
~~~~~~~~~~~
2013-03-11 22:40:55 +01:00
Released on 2013-03-04.
2013-01-03 00:59:37 +01:00
- Fix packaging issues.
- New setting ``index_in_url`` to optionally add `index.html` to the URLs.
- New setting ``links`` to specify a list of links.
2013-02-08 10:51:37 +01:00
- Use EXIF info to fix orientation.
2013-02-20 23:45:41 +01:00
- Replace the ``jpg_quality`` setting with a dict of options.
- Manage directories with only sub-directories and add some checks.
- Change the command-line interface to use sub-commands: ``init``, ``build``
and ``serve``.
2013-02-24 23:08:14 +01:00
- Parallel processing.
2012-12-20 00:29:07 +01:00
Version 0.2
~~~~~~~~~~~
2012-12-20 00:31:55 +01:00
Released on 2012-12-20.
2012-12-20 00:29:07 +01:00
- Improve the bundled themes (update galleria, new colorbox theme).
- Improve the CLI (new arguments, nicer output).
- Change the licence to MIT.
- Change the description file to a markdown syntax file.
- Change the settings file to a python file, and add more settings.
2012-11-09 00:42:16 +01:00
Version 0.1
~~~~~~~~~~~
Released on 2012-05-13.
First public release.