This commit is contained in:
yumoqing 2023-03-13 10:45:32 +08:00
parent f0c2d6f786
commit 2d83b8ff25
24 changed files with 0 additions and 3 deletions

0
ahserver/__init__.py Normal file → Executable file
View File

0
ahserver/auth_api.py Normal file → Executable file
View File

3
ahserver/baseProcessor.py Normal file → Executable file
View File

@ -86,9 +86,6 @@ class BaseProcessor(AppLogger):
elif type(self.content) == type({}) : elif type(self.content) == type({}) :
self.content = json.dumps(self.content, self.content = json.dumps(self.content,
indent=4) indent=4)
elif isinstance(self.content,DictObject):
mydict = self.content.to_dict()
self.content = json.dumps(mydict, indent=4)
elif type(self.content) == type([]): elif type(self.content) == type([]):
self.content = json.dumps(self.content, self.content = json.dumps(self.content,
indent=4) indent=4)

0
ahserver/configuredServer.py Normal file → Executable file
View File

0
ahserver/dbadmin.py Normal file → Executable file
View File

0
ahserver/dsProcessor.py Normal file → Executable file
View File

0
ahserver/error.py Normal file → Executable file
View File

0
ahserver/filedownload.py Normal file → Executable file
View File

0
ahserver/filestorage.py Normal file → Executable file
View File

0
ahserver/functionProcessor.py Normal file → Executable file
View File

0
ahserver/globalEnv.py Normal file → Executable file
View File

0
ahserver/myTE.py Normal file → Executable file
View File

0
ahserver/p2p_middleware.py Normal file → Executable file
View File

0
ahserver/processorResource.py Normal file → Executable file
View File

0
ahserver/proxyProcessor.py Normal file → Executable file
View File

0
ahserver/restful.py Normal file → Executable file
View File

0
ahserver/serverenv.py Normal file → Executable file
View File

0
ahserver/sqldsProcessor.py Normal file → Executable file
View File

0
ahserver/uriop.py Normal file → Executable file
View File

0
ahserver/url2file.py Normal file → Executable file
View File

0
ahserver/utils.py Normal file → Executable file
View File

0
ahserver/version.py Normal file → Executable file
View File

0
ahserver/xlsxData.py Normal file → Executable file
View File

0
ahserver/xlsxdsProcessor.py Normal file → Executable file
View File