%s
%s
from scaffold.web import www
class control(www.default.html_ui):
"""Image cycle widgets"""
view=[]
buttons=[]
content=[]
count=0
offset=60
height=300
width=400
def javascript(self):
js=("",)
return "\n".join(js)
def create(self):
self.reset()
def reset(self):
self.view=[]
self.buttons=[]
self.content=[]
def append(self,image,link,title,intro=''):
htm='%s'%(link,image,title,intro)
self.content.append(htm)
def render(self):
self.count+=1
htm='
%s