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

Unified Diff: remoting/tools/runclient.py

Issue 8665013: Fix many* python scripts in src/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed chrome_frame/tools/test/page_cycler/cf_cycler.py Created 9 years, 1 month 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
« no previous file with comments | « remoting/tools/register_host.py ('k') | remoting/webapp/build-webapp.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/tools/runclient.py
diff --git a/remoting/tools/runclient.py b/remoting/tools/runclient.py
index 12a4c5f67188d72e8e1c02d94cb8b4e9096846be..76e1af29dc39f11cf7a9a402d7b43d2965e2d821 100755
--- a/remoting/tools/runclient.py
+++ b/remoting/tools/runclient.py
@@ -1,49 +1,56 @@
#!/usr/bin/env python
-#
-# Copyright (c) 2010 The Chromium Authors. All rights reserved.
+# Copyright (c) 2011 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.
-#
-# runclient.py gets the chromoting host info from an input arg and then
-# tries to find the authentication info in the .chromotingAuthToken file
-# so that the host authentication arguments can be automatically set.
+
+"""Gets the chromoting host info from an input arg and then
+tries to find the authentication info in the .chromotingAuthToken file
+so that the host authentication arguments can be automatically set.
+"""
import os
import platform
-
-auth_filepath = os.path.join(os.path.expanduser('~'), '.chromotingAuthToken')
-script_path = os.path.dirname(__file__)
-
-if platform.system() == "Windows":
- # TODO(garykac): Make this work on Windows.
- print 'Not yet supported on Windows.'
- exit(1)
-elif platform.system() == "Darwin": # Darwin == MacOSX
- client_path = '../../xcodebuild/Debug/chromoting_simple_client'
-else:
- client_path = '../../out/Debug/chromoting_x11_client'
-
-client_path = os.path.join(script_path, client_path)
-
-# Read username and auth token from token file.
-auth = open(auth_filepath)
-authinfo = auth.readlines()
-
-username = authinfo[0].rstrip()
-authtoken = authinfo[1].rstrip()
-
-# Request final 8 characters of Host JID from user.
-# This assumes that the host is published under the same username as the
-# client attempting to connect.
-print 'Host JID:', username + '/chromoting',
-hostjid_suffix = raw_input()
-hostjid = username + '/chromoting' + hostjid_suffix.upper()
-
-command = []
-command.append(client_path)
-command.append('--host_jid ' + hostjid)
-command.append('--jid ' + username)
-command.append('--token ' + authtoken)
-
-# Launch the client
-os.system(' '.join(command))
+import sys
+
+def main():
+ auth_filepath = os.path.join(os.path.expanduser('~'), '.chromotingAuthToken')
+ script_path = os.path.dirname(__file__)
+
+ if platform.system() == "Windows":
+ # TODO(garykac): Make this work on Windows.
+ print 'Not yet supported on Windows.'
+ return 1
+ elif platform.system() == "Darwin": # Darwin == MacOSX
+ client_path = '../../xcodebuild/Debug/chromoting_simple_client'
+ else:
+ client_path = '../../out/Debug/chromoting_x11_client'
+
+ client_path = os.path.join(script_path, client_path)
+
+ # Read username and auth token from token file.
+ auth = open(auth_filepath)
+ authinfo = auth.readlines()
+
+ username = authinfo[0].rstrip()
+ authtoken = authinfo[1].rstrip()
+
+ # Request final 8 characters of Host JID from user.
+ # This assumes that the host is published under the same username as the
+ # client attempting to connect.
+ print 'Host JID:', username + '/chromoting',
+ hostjid_suffix = raw_input()
+ hostjid = username + '/chromoting' + hostjid_suffix.upper()
+
+ command = []
+ command.append(client_path)
+ command.append('--host_jid ' + hostjid)
+ command.append('--jid ' + username)
+ command.append('--token ' + authtoken)
+
+ # Launch the client
+ os.system(' '.join(command))
+ return 0
+
+
+if __name__ == '__main__':
+ sys.exit(main())
« no previous file with comments | « remoting/tools/register_host.py ('k') | remoting/webapp/build-webapp.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698