diff piecrust/sources/prose.py @ 242:f130365568ff

internal: Code reorganization to put less stuff in `sources.base`. Interfaces that sources can implement are in `sources.interfaces`. The default page source is in `sources.default`. The `SimplePageSource` is gone since most subclasses only wanted to do *some* stuff the same, but *lots* of stuff slightly different. I may have to revisit the code to extract exactly the code that's in common.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 18 Feb 2015 18:35:03 -0800
parents e61fbae61402
children 4b1019bb2533
line wrap: on
line diff
--- a/piecrust/sources/prose.py	Mon Feb 16 08:25:08 2015 -0800
+++ b/piecrust/sources/prose.py	Wed Feb 18 18:35:03 2015 -0800
@@ -1,16 +1,14 @@
 import os
 import os.path
 import logging
-from piecrust.sources.base import (
-        SimplePageSource, SimplePaginationSourceMixin,
-        MODE_CREATING)
+from piecrust.sources.base import MODE_CREATING
+from piecrust.sources.default import DefaultPageSource
 
 
 logger = logging.getLogger(__name__)
 
 
-class ProseSource(SimplePageSource,
-                  SimplePaginationSourceMixin):
+class ProseSource(DefaultPageSource):
     SOURCE_NAME = 'prose'
 
     def __init__(self, app, name, config):