Mercurial > wikked
annotate tasks.py @ 474:db73b12ad212
web: Give special pages a linkable URL.
All special pages are now in the built-in `special` endpoint, at URLs like
`special:/Broken Links`. This makes it possible to link to them from other
pages, especially help pages.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 08 Oct 2018 23:49:09 -0700 |
parents | 41cdccd71717 |
children |
rev | line source |
---|---|
432
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
1 from invoke import Collection |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
2 from monkeys.release import makerelease |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
3 |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
4 |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
5 ns = Collection() |
41cdccd71717
cm: Add script for making a release.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
6 ns.add_task(makerelease, name='release') |