# -*- coding: iso-8859-1 -*-
"""
    MoinMoin - YouTube Macro
        <<YouTube(V8tSRJ8e3b0)>>  or
        <<YouTube(http://www.youtube.com/v/V8tSRJ8e3b0)>>

"""

def execute(macro, text):
    html = '''
    <table border=0 style="padding: 5px;" cellspacing=0>
    <tr><td style="padding-left: 5px;border:0;">
    <b>Subscribe to %(group)s</b>
    </td></tr>
    <form action="http://groups.google.com/group/%(group)s/boxsubscribe">
    <tr><td style="padding-left: 5px;border:0;">
    Email: <input type=text name=email>
    <input type=submit name="sub" value="Subscribe">
    </td></tr>
    </form>
    <tr><td align=right style="border:0;">
      <a href="http://groups.google.com/group/%(group)s">Visit this group</a>
    </td></tr>
      </table>
    ''' % {"group": text}
    return html
