Quote:
Originally Posted by BeckyEbook
I noticed that you mention validation plugins, but both features have not been added to the validationcontainer.py file.
bk.get_epub_is_modified()
bk.get_epub_filepath()
|
If I remember correctly, the ValidationContainer plugin class inherits from BookContainer. Meaning they'll be available even if you don't "see" them.
EDIT: Actually after looking, I see that ValidationContainer inherits from OutputContainer, which amounts to the same thing: both new methods being available to validation plugins.
From validationcontainer.py:
Code:
from outputcontainer import OutputContainer
class ValidationContainer(OutputContainer):