diff options
author | 2012-12-17 21:28:10 +0100 | |
---|---|---|
committer | 2012-12-17 21:28:10 +0100 | |
commit | c19a05c355760e1e0782ccb434eae4459baaf4cd (patch) | |
tree | 0e166b6917261101bb38fe35cb3bb072ee9923fb /module/remote/ttypes.py | |
parent | updated lots of libraries (diff) | |
download | pyload-c19a05c355760e1e0782ccb434eae4459baaf4cd.tar.xz |
small api changes
Diffstat (limited to 'module/remote/ttypes.py')
-rw-r--r-- | module/remote/ttypes.py | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/module/remote/ttypes.py b/module/remote/ttypes.py index 0412c3709..36b56d961 100644 --- a/module/remote/ttypes.py +++ b/module/remote/ttypes.py @@ -40,14 +40,17 @@ class FileStatus: class Input: NA = 0 Text = 1 - Textbox = 2 - Password = 3 - Bool = 4 - Click = 5 - Select = 6 - Multiple = 7 - List = 8 - Table = 9 + Int = 2 + File = 3 + Folder = 4 + Textbox = 5 + Password = 6 + Bool = 7 + Click = 8 + Select = 9 + Multiple = 10 + List = 11 + Table = 12 class MediaType: All = 0 @@ -438,6 +441,8 @@ class Iface(object): pass def getUserPlugins(self): pass + def getWSAddress(self): + pass def hasAddonHandler(self, plugin, func): pass def isInteractionWaiting(self, mode): |