diff piecrust/pipelines/_procrecords.py @ 855:448710d84121

refactor: Get the taxonomy support back to a functional state. There's now a taxonomy content source that wraps another normal content source like a blog posts' source. It works in tandem with a taxonomy content pipeline that will do the heavy lifting of figuring out what kind of terms exist and need to be baked.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 06 Jun 2017 00:26:21 -0700
parents 08e02c2a2a1a
children 8adc27285d93
line wrap: on
line diff
--- a/piecrust/pipelines/_procrecords.py	Sun Jun 04 23:34:28 2017 -0700
+++ b/piecrust/pipelines/_procrecords.py	Tue Jun 06 00:26:21 2017 -0700
@@ -37,9 +37,11 @@
         d = super().describe()
         d['Flags'] = get_flag_descriptions(self.flags, flag_descriptions)
         d['Processing Tree'] = _format_proc_tree(self.proc_tree, 20 * ' ')
-        d['Outputs'] = list(self.out_paths)
         return d
 
+    def getAllOutputPaths(self):
+        return self.out_paths
+
 
 flag_descriptions = {
     AssetPipelineRecordEntry.FLAG_PREPARED: 'prepared',