##// END OF EJS Templates
remove method calling only super
remove method calling only super

File last commit:

r10963:24b136a9
r10967:449f928e
Show More
reveal.py
56 lines | 1.8 KiB | text/x-python | PythonLexer
Jonathan Frederic
Finished a rough draft of the exporters.
r10588 """
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 Reveal slide show exporter.
"""
Jonathan Frederic
Finished a rough draft of the exporters.
r10588 #-----------------------------------------------------------------------------
# Copyright (c) 2013, the IPython Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 from IPython.utils.traitlets import Unicode
Jonathan Frederic
Finished a rough draft of the exporters.
r10588 # local import
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 import basichtml
Jonathan Frederic
Got RST exporting to work... Sort of.
r10626 import nbconvert.transformers.revealhelp
Matthias BUSSONNIER
fix config inheriting
r10963 from IPython.config import Config
Jonathan Frederic
Finished a rough draft of the exporters.
r10588
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
Jonathan Frederic
Cleanup and refactor of API, almost complete....
r10677 class RevealExporter(basichtml.BasicHtmlExporter):
"""
Exports a Reveal slide show (.HTML) which may be rendered in a web browser.
"""
Jonathan Frederic
Fixed all broken references, refactored some stuff here and there,...
r10624 file_extension = Unicode(
'reveal.html', config=True,
help="Extension of the file that should be written to disk")
Jonathan Frederic
Finished a rough draft of the exporters.
r10588
Jonathan Frederic
Fixed all broken references, refactored some stuff here and there,...
r10624 template_file = Unicode(
'reveal', config=True,
help="Name of the template file to use")
Jonathan Frederic
Finished a rough draft of the exporters.
r10588 def _register_transformers(self):
Jonathan Frederic
Finished rename/refact on API namespace
r10690 """
Register all of the transformers needed for this exporter.
"""
Jonathan Frederic
Finished a rough draft of the exporters.
r10588
#Register the transformers of the base class.
Jonathan Frederic
Almost have nbconvert working again...
r10630 super(RevealExporter, self)._register_transformers()
Jonathan Frederic
Finished a rough draft of the exporters.
r10588
#Register reveal help transformer
Jonathan Frederic
Almost have nbconvert working again...
r10630 self.register_transformer(nbconvert.transformers.revealhelp.RevealHelpTransformer)
Matthias BUSSONNIER
fix config inheriting
r10963
@property
def default_config(self):
c = Config({'CSSHtmlHeaderTransformer':{'enabled':True}})
c.merge(super(RevealExporter,self).default_config)
return c