forked from shaba/openuds
Added UDSActor as downloadable, and removed from /static/...
This commit is contained in:
parent
944d9957d6
commit
b64928f1e6
@ -39,4 +39,4 @@ import transports # To make sure that packages are initialized at this point
|
||||
import dispatchers
|
||||
import models
|
||||
|
||||
|
||||
import xmlrpc
|
||||
|
@ -15,7 +15,8 @@ from uds.core.managers.DownloadsManager import DownloadsManager
|
||||
from WindowsOsManager import WindowsOsManager
|
||||
from WinDomainOsManager import WinDomainOsManager
|
||||
from WinRandomPassOsManager import WinRandomPassManager
|
||||
import os.path, sys
|
||||
import os.path
|
||||
import sys
|
||||
|
||||
OSManagersFactory.factory().insert(WindowsOsManager)
|
||||
OSManagersFactory.factory().insert(WinDomainOsManager)
|
||||
|
@ -32,3 +32,15 @@ XMLRCP processing part
|
||||
This package contains all xmlrpc related stuff
|
||||
@author: Adolfo Gómez, dkmaster at dkmon dot com
|
||||
'''
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.utils.translation import ugettext_noop as _
|
||||
|
||||
from uds.core.managers.DownloadsManager import DownloadsManager
|
||||
import os.path
|
||||
import sys
|
||||
|
||||
DownloadsManager.manager().registerDownloadable('UDSAdminSetup.exe',
|
||||
_('UDS Client Administration Interface <b>(Important!! Requires .net framework 3.5 sp1)</b>'),
|
||||
os.path.dirname(sys.modules[__package__].__file__) + '/files/UDSAdminSetup.exe',
|
||||
'application/x-msdownload')
|
||||
|
Loading…
x
Reference in New Issue
Block a user