comparison piecrust/sources/interfaces.py @ 989:8adc27285d93

bake: Big pass on bake performance. - Reduce the amount of data passed between processes. - Make inter-process data simple objects to make it easier to test with alternatives to pickle. - Make sources have the basic requirement to be able to find a content item from an item spec (path). - Make Hoedown the default Markdown formatter.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 19 Nov 2017 14:29:17 -0800
parents 86b684cc0551
children
comparison
equal deleted inserted replaced
988:f83ae0a5d793 989:8adc27285d93
26 """ A content source that a user can interact with in the administration 26 """ A content source that a user can interact with in the administration
27 web UI. 27 web UI.
28 """ 28 """
29 def getInteractiveFields(self): 29 def getInteractiveFields(self):
30 raise NotImplementedError() 30 raise NotImplementedError()
31
32 def findContentFromPath(self, path):
33 raise NotImplementedError()