/usr/share/pyshared/MoinMoin/widget/dialog.py is in python-moinmoin 1.9.3-1ubuntu2.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- coding: iso-8859-1 -*-
"""
MoinMoin - dialog
@copyright: 2004 Nir Soffer <nirs@freeshell.org>
@license: GNU GPL, see COPYING for details.
"""
from MoinMoin.widget import base
class Dialog(base.Widget):
""" Dialog for user interaction.
Use a dialog when you want to present and get data to the user.
Currently this is little more than wrapper around a string.
"""
def __init__(self, request, **kw):
""" Initialize a dialog
@param request: current request
@keyword content: dialong content
"""
base.Widget.__init__(self, request, **kw)
self.content = kw.get('content', '')
def render(self):
return u'<div class="dialog">\n%s\n</div>\n' % unicode(self.content)
class Status(base.Widget):
""" Status widget
Use Status when you want to present to the user status information,
and no interaction needed.
A user might choose to turn of status display in his user pref (not
implemented yet).
Currently this is little more than wrapper around a string.
"""
def __init__(self, request, **kw):
""" Initialize a dialog
@param request: current request
@keyword content: status message content
"""
base.Widget.__init__(self, request, **kw)
self.content = kw.get('content', '')
def render(self):
return u'<p class="status">%s</p>\n' % unicode(self.content)
|