Lines Matching refs:steps
8 conversion involves several steps (e.g. piping it through compress or
9 uuencode). Some of the conversion steps may require that their input
15 more conversion steps together. It will take care of creating and
22 different conversion steps and store them in a dictionary, for
95 return '<Template instance, steps=%r>' % (self.steps,)
99 self.steps = []
105 t.steps = self.steps[:]
121 if self.steps and self.steps[-1][1] == SINK:
127 self.steps.append((cmd, kind))
137 if self.steps and self.steps[0][1] == SOURCE:
143 self.steps.insert(0, (cmd, kind))
158 if not self.steps:
160 if self.steps[-1][1] == SINK:
166 if not self.steps:
168 if self.steps[0][1] == SOURCE:
177 cmd = makepipeline(infile, self.steps, outfile)
184 def makepipeline(infile, steps, outfile):
189 for cmd, kind in steps: