1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-21 18:03:54 +03:00

Fixing up rdp transport (tunneled)

This commit is contained in:
Adolfo Gómez García 2015-02-25 10:28:18 +01:00
parent 6895f602ab
commit 90e34029f3
3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jardesc>
<jar path="rdptransport/jar/rdp.jar"/>
<options buildIfNeeded="true" compress="true" descriptionLocation="/rdptransport/descrdp.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="false" overwrite="true" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
<options buildIfNeeded="true" compress="true" descriptionLocation="/rdptransport/descrdp.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="true" overwrite="true" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
<storedRefactorings deprecationInfo="true" structuralOnly="false"/>
<selectedProjects/>
<manifest generateManifest="false" manifestLocation="/rdptransport/src/manifest" manifestVersion="1.0" reuseManifest="true" saveManifest="true" usesManifest="true">

View File

@ -118,7 +118,10 @@ class BaseRDPTransport(Transport):
return {'protocol': self.protocol, 'username': username, 'password': password, 'domain': domain}
def getConnectionInfo(self, service, user, password):
return self.processUserPassword(service, user, password)
def getHtmlComponent(self, _id, _os, componentId):
logger.debug('Component: ID={}'.format(id))
logger.debug('Component: ID={}'.format(_id))
# We use helper to keep this clean
return getHtmlComponent(self.__module__, componentId)

View File

@ -67,9 +67,6 @@ class RDPTransport(BaseRDPTransport):
allowSerials = BaseRDPTransport.allowSerials
wallpaper = BaseRDPTransport.wallpaper
def getConnectionInfo(self, service, user, password):
return self.processUserPassword(service, user, password)
def renderForHtml(self, userService, transport, ip, os, user, password):
# We use helper to keep this clean
prefs = user.prefs('rdp')