示例#1
0
 def get(self):
   cronstatus = Cron_Status.query().get()
   #if the status entity is false or nonexistant, don't send the email
   if not cronstatus or not cronstatus.status:
     return false
   #otherwise send it
   mail.send_mail('*****@*****.**', '*****@*****.**', 'hello Tim!', 'This email is sent (via cron) from the webpage at http://kerestan1520.appspot.com!')
   return True
示例#2
0
  def get(self):
    logging.info("starting cron toggle")

    cronstatus = Cron_Status.query().get()

    logging.info("status was {!s}".format(cronstatus.status))
    cronstatus.status = not cronstatus.status

    cronstatus.put()
    logging.info("status is {!s}".format(cronstatus.status))


    if cronstatus.status:
      self.response.out.write("true")
    else:
      self.response.out.write("false")