Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
b71f29bc
Commit
b71f29bc
authored
Nov 30, 2003
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added
parent
45ee24d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
lib/python/reStructuredText/html4zope.py
lib/python/reStructuredText/html4zope.py
+59
-0
No files found.
lib/python/reStructuredText/html4zope.py
0 → 100644
View file @
b71f29bc
# Author: Andreas Jung
# Contact: andreas@andreas-jung.com
# Revision: $Revision: 1.1 $
# Date: $Date: 2003/11/30 16:16:06 $
# Copyright: This module has been placed in the public domain.
"""
Writer module to integrate reST into Zope. This writer subclasses the standard
html4css1 writer and changes the starting level for <H> elements from 1 to 3
(default behaviour inside Zope.
"""
__docformat__
=
'reStructuredText'
from
docutils
import
nodes
from
docutils.writers.html4css1
import
Writer
as
CSS1Writer
,
HTMLTranslator
as
CSS1HTMLTranslator
import
os
default_level
=
int
(
os
.
environ
.
get
(
'STX_DEFAULT_LEVEL'
,
3
))
class
Writer
(
CSS1Writer
):
def
__init__
(
self
):
CSS1Writer
.
__init__
(
self
)
self
.
translator_class
=
HTMLTranslator
class
HTMLTranslator
(
CSS1HTMLTranslator
):
def
astext
(
self
):
return
''
.
join
(
self
.
body
)
def
visit_title
(
self
,
node
):
"""Only 6 section levels are supported by HTML."""
if
isinstance
(
node
.
parent
,
nodes
.
topic
):
self
.
body
.
append
(
self
.
starttag
(
node
,
'p'
,
''
,
CLASS
=
'topic-title'
))
if
node
.
parent
.
hasattr
(
'id'
):
self
.
body
.
append
(
self
.
starttag
({},
'a'
,
''
,
name
=
node
.
parent
[
'id'
]))
self
.
context
.
append
(
'</a></p>
\
n
'
)
else
:
self
.
context
.
append
(
'</p>
\
n
'
)
elif
self
.
section_level
==
0
:
# document title
self
.
head
.
append
(
'<title>%s</title>
\
n
'
%
self
.
encode
(
node
.
astext
()))
self
.
body
.
append
(
self
.
starttag
(
node
,
'h%d'
%
default_level
,
''
,
CLASS
=
'title'
))
self
.
context
.
append
(
'</h%d>
\
n
'
%
default_level
)
else
:
self
.
body
.
append
(
self
.
starttag
(
node
,
'h%s'
%
(
default_level
+
self
.
section_level
-
1
),
''
))
atts
=
{}
if
node
.
parent
.
hasattr
(
'id'
):
atts
[
'name'
]
=
node
.
parent
[
'id'
]
if
node
.
hasattr
(
'refid'
):
atts
[
'class'
]
=
'toc-backref'
atts
[
'href'
]
=
'#'
+
node
[
'refid'
]
self
.
body
.
append
(
self
.
starttag
({},
'a'
,
''
,
**
atts
))
self
.
context
.
append
(
'</a></h%s>
\
n
'
%
((
default_level
+
self
.
section_level
-
1
)))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment