Mercurial > libervia-backend
comparison src/memory/memory.py @ 1586:42285d993e68
bridge, core(params): removed obsolete methods:
- getParams and getParamsForCategory are removed from bridge: XMLUI is now used in place of the old params XML
- getParamsForCategory has also been removed internaly, as it is now unused, getParams is still used to construct the XMLUI
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 14 Nov 2015 19:18:07 +0100 |
parents | a5e0393a06cd |
children | 698d6755d62a |
comparison
equal
deleted
inserted
replaced
1585:846a39900fa6 | 1586:42285d993e68 |
---|---|
862 return self.params.asyncGetStringParamA(name, category, attr, security_limit, profile_key) | 862 return self.params.asyncGetStringParamA(name, category, attr, security_limit, profile_key) |
863 | 863 |
864 def getParamsUI(self, security_limit=C.NO_SECURITY_LIMIT, app='', profile_key=C.PROF_KEY_NONE): | 864 def getParamsUI(self, security_limit=C.NO_SECURITY_LIMIT, app='', profile_key=C.PROF_KEY_NONE): |
865 return self.params.getParamsUI(security_limit, app, profile_key) | 865 return self.params.getParamsUI(security_limit, app, profile_key) |
866 | 866 |
867 def getParams(self, security_limit=C.NO_SECURITY_LIMIT, app='', profile_key=C.PROF_KEY_NONE): | |
868 return self.params.getParams(security_limit, app, profile_key) | |
869 | |
870 def getParamsForCategory(self, category, security_limit=C.NO_SECURITY_LIMIT, app='', profile_key=C.PROF_KEY_NONE): | |
871 return self.params.getParamsForCategory(category, security_limit, app, profile_key) | |
872 | |
873 def getParamsCategories(self): | 867 def getParamsCategories(self): |
874 return self.params.getParamsCategories() | 868 return self.params.getParamsCategories() |
875 | 869 |
876 def setParam(self, name, value, category, security_limit=C.NO_SECURITY_LIMIT, profile_key=C.PROF_KEY_NONE): | 870 def setParam(self, name, value, category, security_limit=C.NO_SECURITY_LIMIT, profile_key=C.PROF_KEY_NONE): |
877 return self.params.setParam(name, value, category, security_limit, profile_key) | 871 return self.params.setParam(name, value, category, security_limit, profile_key) |