aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2010-12-07 11:33:55 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2011-02-24 14:32:01 +0000
commitfebb7f263289a8137bbf2f9cd2d47c30cb75cbb8 (patch)
tree47472d87b13137f7f797be5e563e45299de5253a /bitbake
parentc6406a0fb3b34b9271cd0cf759a70b3b1c864314 (diff)
downloadopenembedded-core-contrib-febb7f263289a8137bbf2f9cd2d47c30cb75cbb8.tar.gz
bitbake/server/none: remove leftover XMLRPC bits from none server
Remove some comments, imports etc. to do with XMLRPC (inherited from xmlrpc.py which this file was based upon.) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/server/none.py14
1 files changed, 3 insertions, 11 deletions
diff --git a/bitbake/lib/bb/server/none.py b/bitbake/lib/bb/server/none.py
index be0fb8f776..356eea3011 100644
--- a/bitbake/lib/bb/server/none.py
+++ b/bitbake/lib/bb/server/none.py
@@ -18,29 +18,21 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
- This module implements an xmlrpc server for BitBake.
+ This module implements a passthrough server for BitBake.
- Use this by deriving a class from BitBakeXMLRPCServer and then adding
- methods which you want to "export" via XMLRPC. If the methods have the
- prefix xmlrpc_, then registering those function will happen automatically,
- if not, you need to call register_function.
-
- Use register_idle_function() to add a function which the xmlrpc server
- calls from within server_forever when no requests are pending. Make sure
+ Use register_idle_function() to add a function which the server
+ calls from within idle_commands when no requests are pending. Make sure
that those functions are non-blocking or else you will introduce latency
in the server's main loop.
"""
import time
import bb
-from bb.ui import uievent
-import xmlrpclib
import pickle
import signal
DEBUG = False
-from SimpleXMLRPCServer import SimpleXMLRPCServer, SimpleXMLRPCRequestHandler
import inspect, select
class BitBakeServerCommands():