Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2791)

Unified Diff: appengine_apps/chromium_status/appengine_module/chromium_status/xmpp.py

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine_apps/chromium_status/appengine_module/chromium_status/xmpp.py
diff --git a/appengine_apps/chromium_status/appengine_module/chromium_status/xmpp.py b/appengine_apps/chromium_status/appengine_module/chromium_status/xmpp.py
deleted file mode 100644
index d4d1ed01074f9d2acc0b695bcad561569777c681..0000000000000000000000000000000000000000
--- a/appengine_apps/chromium_status/appengine_module/chromium_status/xmpp.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright (c) 2009 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Google Talk (XMPP) support."""
-
-from google.appengine.api import xmpp
-from google.appengine.ext import webapp
-
-
-class XMPPHandler(webapp.RequestHandler):
- def post(self):
- message = xmpp.Message(self.request.POST)
- if message.body[0:5].lower() == 'hello':
- message.reply("Greetings!")
« no previous file with comments | « appengine_apps/chromium_status/appengine_module/chromium_status/utils.py ('k') | appengine_apps/chromium_status/cron.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698