Changed the double quotes to single quotes to match the rest of the project.

This commit is contained in:
Daniel Neuhäuser 2010-03-30 22:29:50 +00:00
parent 5831add5bb
commit 2331552a85

View File

@ -84,20 +84,20 @@ class JSCallable(JSObject):
class JavaScriptDomain(Domain): class JavaScriptDomain(Domain):
"""JavaScript language domain.""" """JavaScript language domain."""
name = "js" name = 'js'
label= "JavaScript" label= 'JavaScript'
object_types = { object_types = {
"function" : ObjType(l_("js function"), "func"), 'function' : ObjType(l_('js function'), 'func'),
"data" : ObjType(l_("js data"), "data"), 'data' : ObjType(l_('js data'), 'data'),
"attribute" : ObjType(l_("js attribute"), "attr"), 'attribute' : ObjType(l_('js attribute'), 'attr'),
} }
directives = { directives = {
"function" : JSCallable, 'function' : JSCallable,
"data" : JSObject, 'data' : JSObject,
"attribute" : JSObject, 'attribute' : JSObject,
} }
roles = { roles = {
"func": XRefRole(fix_parens=True), 'func': XRefRole(fix_parens=True),
"data": XRefRole(), 'data': XRefRole(),
"attr": XRefRole() 'attr': XRefRole()
} }