source: products/adsenseproduct/trunk/skins/adsenseproduct/adsense_template.py @ 2111

Last change on this file since 2111 was 1, checked in by myroslav, 19 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 719 bytes
Line 
1## Script (Python) "getSynProp"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=customer_id='',adsense_width='',adsense_height='',adsense_format=''
8##title=
9##
10return """<script type="text/javascript"> <!--
11  google_ad_client="%s";
12  google_ad_width=%s;
13  google_ad_height=%s;
14  google_ad_format="%s";
15  google_color_border="FFFFFF";
16  google_color_bg="FFFFFF";
17  google_color_link="0000FF";
18  google_color_url="008000";
19  google_color_text="000000";
20  //--></script>
21<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>""" % (customer_id,adsense_width,adsense_height,adsense_format)
Note: See TracBrowser for help on using the repository browser.