# -*- coding: iso-8859-1 -*-
"""
MoinMoin - StreetView Macro
Jason McArthur <jason@personaltelco.net>
"""
def execute(macro, text):
if text.find('http://')> -1:
url = text
else:
url = 'http://maps.google.com/maps/%s' % text
html = '''
<iframe width="425" height="240" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="%(streetviewlink)s"></iframe>
''' % {"streetviewlink": url}
return html