summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-11-12 18:08:00 +0000
committergoodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2006-11-12 18:08:00 +0000
commit12860f66d2cec70d2f0c839544de8b785b15c79d (patch)
treeb76e035e63160b79b4cc8ea85ac37326b87132d4
parent13483131bbe0108b5e4e1cbde8bd3d9f1de02356 (diff)
downloaddocutils-12860f66d2cec70d2f0c839544de8b785b15c79d.tar.gz
fixed omission from r4802
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4805 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
-rw-r--r--docutils/writers/s5_html/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/docutils/writers/s5_html/__init__.py b/docutils/writers/s5_html/__init__.py
index a4679d339..96a8df544 100644
--- a/docutils/writers/s5_html/__init__.py
+++ b/docutils/writers/s5_html/__init__.py
@@ -54,7 +54,7 @@ class Writer(html4css1.Writer):
('Allow existing theme files in the ``ui/<theme>`` directory to be '
'overwritten. The default is not to overwrite theme files.',
['--overwrite-theme-files'],
- {'action': 'store_true', 'validator': validate_boolean}),
+ {'action': 'store_true', 'validator': frontend.validate_boolean}),
('Keep existing theme files in the ``ui/<theme>`` directory; do not '
'overwrite any. This is the default.',
['--keep-theme-files'],
@@ -67,7 +67,7 @@ class Writer(html4css1.Writer):
'This is the default.',
['--hidden-controls'],
{'action': 'store_true', 'default': True,
- 'validator': validate_boolean}),
+ 'validator': frontend.validate_boolean}),
('Always show the presentation controls in slideshow mode. '
'The default is to hide the controls.',
['--visible-controls'],
@@ -75,7 +75,7 @@ class Writer(html4css1.Writer):
('Enable the current slide indicator ("1 / 15"). '
'The default is to disable it.',
['--current-slide'],
- {'action': 'store_true', 'validator': validate_boolean}),
+ {'action': 'store_true', 'validator': frontend.validate_boolean}),
('Disable the current slide indicator. This is the default.',
['--no-current-slide'],
{'dest': 'current_slide', 'action': 'store_false'}),))