Mercurial > piecrust2
comparison piecrust/plugins/builtin.py @ 197:57eec8a67095
builtin: Remove `plugins` command, it's not ready yet.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 12 Jan 2015 00:48:47 -0800 |
parents | 154b8df04829 |
children | cba781477bd0 |
comparison
equal
deleted
inserted
replaced
196:154b8df04829 | 197:57eec8a67095 |
---|---|
2 from piecrust.commands.builtin.baking import ( | 2 from piecrust.commands.builtin.baking import ( |
3 BakeCommand, ShowRecordCommand) | 3 BakeCommand, ShowRecordCommand) |
4 from piecrust.commands.builtin.info import ( | 4 from piecrust.commands.builtin.info import ( |
5 RootCommand, ShowConfigCommand, | 5 RootCommand, ShowConfigCommand, |
6 FindCommand, ShowSourcesCommand, ShowRoutesCommand, ShowPathsCommand) | 6 FindCommand, ShowSourcesCommand, ShowRoutesCommand, ShowPathsCommand) |
7 from piecrust.commands.builtin.plugins import ( | |
8 PluginsCommand) | |
9 from piecrust.commands.builtin.scaffolding import ( | 7 from piecrust.commands.builtin.scaffolding import ( |
10 PrepareCommand, | 8 PrepareCommand, |
11 DefaultPrepareTemplatesCommandExtension, | 9 DefaultPrepareTemplatesCommandExtension, |
12 UserDefinedPrepareTemplatesCommandExtension, | 10 UserDefinedPrepareTemplatesCommandExtension, |
13 DefaultPrepareTemplatesHelpTopic) | 11 DefaultPrepareTemplatesHelpTopic) |
54 ShowSourcesCommand(), | 52 ShowSourcesCommand(), |
55 ShowRoutesCommand(), | 53 ShowRoutesCommand(), |
56 ShowPathsCommand(), | 54 ShowPathsCommand(), |
57 BakeCommand(), | 55 BakeCommand(), |
58 ShowRecordCommand(), | 56 ShowRecordCommand(), |
59 ServeCommand(), | 57 ServeCommand()] |
60 PluginsCommand()] | |
61 | 58 |
62 def getCommandExtensions(self): | 59 def getCommandExtensions(self): |
63 return [ | 60 return [ |
64 DefaultPrepareTemplatesCommandExtension(), | 61 DefaultPrepareTemplatesCommandExtension(), |
65 UserDefinedPrepareTemplatesCommandExtension(), | 62 UserDefinedPrepareTemplatesCommandExtension(), |