コード例 #1
0
 def __init__(self, request, response):
     FablePage.__init__(self,
                        request,
                        response,
                        "signin.html",
                        request_authentication=False)
     self.template_values['google_login'] = users.create_login_url()
コード例 #2
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, 'review.html', request_authentication=True)
     self._template_id = ""
     self._title = ""
     self._description = ""
     self._rating = ""
     self._author = ""
コード例 #3
0
 def __init__(self, request, response):
     FablePage.__init__(self,
                        request,
                        response,
                        'review.html',
                        request_authentication=True)
     self._template_id = ""
     self._title = ""
     self._description = ""
     self._rating = ""
     self._author = ""
コード例 #4
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, 'howepub.html')
コード例 #5
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, None)
コード例 #6
0
 def __init__(self, request, response):
     FablePage.__init__(self,
                        request,
                        response,
                        None,
                        request_authentication=True)
コード例 #7
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "contacts.html")
     self._x = 0
     self._y = 0
コード例 #8
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "signin.html", request_authentication=False)
     self.template_values['google_login'] = users.create_login_url()
コード例 #9
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "allfables.html", request_authentication=False)
コード例 #10
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "contacts.html")
     self._x = 0
     self._y = 0
コード例 #11
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     self.email_address = ""
     FablePage.__init__(self, request, response, "forgotpassword.html")
コード例 #12
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "changepassword.html")
コード例 #13
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "howitworks.html")
コード例 #14
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "account.html")
コード例 #15
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "index.html")
コード例 #16
0
 def __init__(self, request, response):
     FablePage.__init__(self,
                        request,
                        response,
                        "allfables.html",
                        request_authentication=False)
コード例 #17
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "editfable.html")
コード例 #18
0
 def __init__(self, request, response):
     FablePage.__init__(self,
                        request,
                        response,
                        'create.html',
                        request_authentication=True)
コード例 #19
0
 def __init__(self, request, response):
     self.email_address = ""
     FablePage.__init__(self, request, response, "forgotpassword.html")
コード例 #20
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, 'book.html')
コード例 #21
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "signup.html")
     self.template_values['google_login'] = users.create_login_url()
コード例 #22
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "index.html")
コード例 #23
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, None, request_authentication=True)
コード例 #24
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "howitworks.html")
コード例 #25
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "account.html")
コード例 #26
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "signup.html")
     self.template_values['google_login'] = users.create_login_url()
コード例 #27
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "changepassword.html")
コード例 #28
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, 'howepub.html')
コード例 #29
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, 'create.html', request_authentication=True)
コード例 #30
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, None)
コード例 #31
0
 def __init__(self, request, response):
     self._errormsg1 = ''
     self._errormsg2 = ''
     FablePage.__init__(self, request, response, 'orderplaced.html')
コード例 #32
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "editfable.html")
コード例 #33
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, 'buy.html')
コード例 #34
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, 'print.html')
コード例 #35
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     self._errormsg1 = ''
     self._errormsg2 = ''
     FablePage.__init__(self, request, response, 'orderplaced.html')
コード例 #36
0
ファイル: pages.py プロジェクト: guildenstern70/pyfab
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "thankyouregistered.html")
コード例 #37
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "admin_fables.html")
コード例 #38
0
 def __init__(self, request, response):
     FablePage.__init__(self, request, response, "thankyouregistered.html")