comparison piecrust/plugins/builtin.py @ 1134:986ecdaa2a36

url: New `url` command to get the URL of a page from its path.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 23 Apr 2018 21:37:27 -0700
parents 8af2ea1f5c34
children 74c0c7483986
comparison
equal deleted inserted replaced
1133:fe0af94ca757 1134:986ecdaa2a36
10 from piecrust.commands.builtin.baking import ( 10 from piecrust.commands.builtin.baking import (
11 BakeCommand, ShowRecordCommand) 11 BakeCommand, ShowRecordCommand)
12 from piecrust.commands.builtin.info import ( 12 from piecrust.commands.builtin.info import (
13 RootCommand, ShowConfigCommand, 13 RootCommand, ShowConfigCommand,
14 FindCommand, ShowSourcesCommand, ShowRoutesCommand, 14 FindCommand, ShowSourcesCommand, ShowRoutesCommand,
15 ShowPathsCommand) 15 ShowPathsCommand, UrlCommand)
16 from piecrust.commands.builtin.plugins import PluginsCommand 16 from piecrust.commands.builtin.plugins import PluginsCommand
17 from piecrust.commands.builtin.publishing import PublishCommand 17 from piecrust.commands.builtin.publishing import PublishCommand
18 from piecrust.commands.builtin.scaffolding import PrepareCommand 18 from piecrust.commands.builtin.scaffolding import PrepareCommand
19 from piecrust.commands.builtin.serving import ServeCommand 19 from piecrust.commands.builtin.serving import ServeCommand
20 from piecrust.commands.builtin.tasks import TasksCommand 20 from piecrust.commands.builtin.tasks import TasksCommand
32 FindCommand(), 32 FindCommand(),
33 PrepareCommand(), 33 PrepareCommand(),
34 ShowSourcesCommand(), 34 ShowSourcesCommand(),
35 ShowRoutesCommand(), 35 ShowRoutesCommand(),
36 ShowPathsCommand(), 36 ShowPathsCommand(),
37 UrlCommand(),
37 ThemesCommand(), 38 ThemesCommand(),
38 PluginsCommand(), 39 PluginsCommand(),
39 BakeCommand(), 40 BakeCommand(),
40 ShowRecordCommand(), 41 ShowRecordCommand(),
41 ServeCommand(), 42 ServeCommand(),