예제 #1
0
파일: comic.py 프로젝트: joeykblack/Appspot
def newComic(handler):
    nextc=ComicForm(handler.request.POST).save(commit=False)
    
    nextc.text=nextc.text.replace('\n', '<br />')
    
    lastc=comic.Comic.get(handler.request.get('comickey'))
    
    nextc.last=lastc
    nextc.put()
    
    return nextc