-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocpadDocument.py
147 lines (111 loc) · 4.48 KB
/
docpadDocument.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#
# docpadDocument.py
# docpad
#
# Created by Manuel Astudillo on 8/1/09.
# Copyright CodeTonic 2009. All rights reserved.
#
from Foundation import *
from AppKit import *
from Cocoa import NSOKButton, NSASCIIStringEncoding, NSUTF8StringEncoding
# DocUtils
from docutils.core import publish_parts
from docutils.writers import html4css1
from docutils import nodes
from docutils.parsers.rst import directives
# Pygments
from pygments.formatters import HtmlFormatter
from pygments import highlight
from pygments.lexers import get_lexer_by_name, TextLexer
# Set to True if you want inline CSS styles instead of classes
INLINESTYLES = True
# The default formatter
DEFAULT = HtmlFormatter(noclasses=INLINESTYLES)
# Add name -> formatter pairs for every variant you want to use
VARIANTS = {
'linenos': HtmlFormatter(noclasses=INLINESTYLES, linenos=True),
}
def pygments_directive(name, arguments, options, content, lineno,
content_offset, block_text, state, state_machine):
try:
lexer = get_lexer_by_name(arguments[0])
except ValueError:
# no lexer found - use the text one instead of an exception
lexer = TextLexer()
# take an arbitrary option if more than one is given
formatter = options and VARIANTS[options.keys()[0]] or DEFAULT
parsed = highlight(u'\n'.join(content), lexer, formatter)
return [nodes.raw('', parsed, format='html')]
pygments_directive.arguments = (1, 0, 1)
pygments_directive.content = 1
pygments_directive.options = dict([(key, directives.flag) for key in VARIANTS])
directives.register_directive('sourcecode', pygments_directive)
class TextutilsHTMLWriter(html4css1.Writer):
def __init__(self):
html4css1.Writer.__init__(self)
self.translator_class = TextutilsHTMLTranslator
class TextutilsHTMLTranslator(html4css1.HTMLTranslator):
def __init__(self, document):
html4css1.HTMLTranslator.__init__(self, document)
def restify( text, initial_header_level=1, language_code='en', settings_overrides=None, writer_overrides=TextutilsHTMLWriter):
settings = {
'initial_header_level': initial_header_level,
'doctitle_xform': False,
'language_code': language_code,
'footnote_references': 'superscript',
'trim_footnote_reference_space': True,
'default_reference_context': 'view',
'link_base': '',
}
# Import user settings and overwrite default ones
# user_settings = getattr(settings, "RESTRUCTUREDTEXT_FILTER_SETTINGS", {})
# settings.update(user_settings)
parts = publish_parts( source=text, writer=writer_overrides(), settings_overrides=settings )
return parts['body']
class docpadDocument(NSDocument):
textView = objc.IBOutlet()
scrollView = objc.IBOutlet()
webView = objc.IBOutlet()
def init(self):
self = super(docpadDocument, self).init()
# initialization code
NSLog("Initializing...")
self.textContents = NSString.stringWithString_(u'')
return self
def initTextView(self, string ):
font = NSFont.fontWithName_size_("Courier", 12)
self.textView.setFont_(font)
self.textView.setString_(string)
self.textView.setDelegate_(self)
def rest2html(self):
text = self.textView.string()
self.webView.mainFrame().loadHTMLString_baseURL_(restify(text), None)
def windowNibName(self):
return u"docpadDocument"
def windowControllerDidLoadNib_(self, aController):
super(docpadDocument, self).windowControllerDidLoadNib_(aController)
NSLog("Nib Loaded")
lineNumberView = MarkerLineNumberView.alloc().initWithScrollView_(self.scrollView)
self.scrollView.setVerticalRulerView_(lineNumberView)
self.scrollView.setHasHorizontalRuler_(False)
self.scrollView.setHasVerticalRuler_(True)
self.scrollView.setRulersVisible_(True)
self.initTextView( self.textContents )
self.rest2html()
def dataOfType_error_(self, typeName, outError):
NSLog("Data Of Type %s" % typeName )
tmp = NSString.stringWithString_(self.textView.string())
data = tmp.dataUsingEncoding_(NSUTF8StringEncoding)
return (data, None)
def readFromData_ofType_error_(self, data, typeName, outError):
NSLog("Data Of Type %s" % typeName )
self.textContents = NSString.alloc().initWithData_encoding_(data, NSUTF8StringEncoding)
if self.textContents != None:
readSuccess = True
else:
readSuccess = False
return (readSuccess, None)
def textView_doCommandBySelector_(self, textView, commandSelector):
NSLog(u"Command Selector: %s" % commandSelector)
self.rest2html()
#if commandSelector == u"insertNewline:":