def getSourcesForCMDB():
#    return ["name1", "name2", "name3"]
    cmdb=SoftwareCMDB(hostname=ComoonicsGlobals.mysqlserver, user=ComoonicsGlobals.mysqluser, password=ComoonicsGlobals.mysqlpassword, database=ComoonicsGlobals.mysqldatabase)
    clusters=cmdb.getClusters()
    cmdb.db.close()
    del cmdb
    return clusters
# Import a standard function, and get the HTML request and response objects.
from Products.PythonScripts.standard import html_quote
request = container.REQUEST
RESPONSE =  request.RESPONSE

from comoonics.cmdb.ComSoftwareCMDB import SoftwareCMDB

cmdb=SoftwareCMDB(hostname="mysql-server.gallien.atix", user="******", password="******", database="atix_cmdb")

return cmdb.getClusters()