Skip to content

Tags: nekocoder/complexity

Tags

0.9.1

Toggle 0.9.1's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Change Jinja2 dependency to >= 2.4 (was == 2.7).

0.9.0

Toggle 0.9.0's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Yaml config, support for unexpanded_templates, support non-HTML text-…

…based templates.

0.8.0

Toggle 0.8.0's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Implement complexity.json. Get rid of output_dir arg.

0.7

Toggle 0.7's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Rename json/ to context/ and json_dir to context_dir.

0.6

Toggle 0.6's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
* Support for multi-level template directories.

* Skip non-HTML files in `templates/` rather than raising `NonHTMLFileException`.

0.5

Toggle 0.5's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
* Improved static site generation API - better parameters are used.

* Files in the root of `assets/` (or the asset directory) now get copied over to the output.
* Much more documentation.

0.4.2

Toggle 0.4.2's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Make reading of JSON files from `json/` optional.

0.4.1

Toggle 0.4.1's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Fix reading of JSON files from `json/`.

0.4

Toggle 0.4's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Project layout and assets follow a standard structure.

* Project layout is now::

    my_repo/
    ├── project/       <--------- input
    │   ├── assets/
    │   │   ├── css/
    │   │   ├── js/
    │   │   └── img/
    │   └── templates/
    │       ├── base.html
    │       ├── index.html
    │       └── about.html
    └── www/          <---------- output (generated)
        ├── index.html
        ├── about/
        │   └── index.html
        ├── css/
        ├── js/
        └── img/

* Assets are copied over to `www/` during site generation.
* If the `www/` directory was previously created, it prompts the user and then
  deletes it before site regeneration.
* Templates starting with `base` are not generated as individual pages. They
  are meant to be extended in other templates.

0.3

Toggle 0.3's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
* Graceful shutdown/restart of dev server.

* Required input and output dir arguments.
* Optional port argument.
* Improved server start/stop messages.
* Major internal refactor.