Modifs for upload

bzr revid: fp@tinyerp.com-56e5c54c10e8b1f900e7b2bfcd19c8320ea69e9a
This commit is contained in:
Fabien Pinckaers 2007-04-24 20:00:38 +00:00
parent c6fe2aa620
commit 2bae280090
1 changed files with 7 additions and 1 deletions

View File

@ -87,11 +87,17 @@ upload_info_form = '''<?xml version="1.0"?>
<label align="0.0" colspan="2" string="(Keep empty for an auto upload of the module)"/>
</form>'''
def _get_selection(*Args):
import urllib
a = urllib.urlopen('http://www.tinyerp.com/mtree_interface.php')
res = filter(None, a.read().split('\n'))
return map(lambda x:x.split('='), res)
upload_info_fields = {
'login': {'string':'Login', 'type':'char', 'size':32, 'required':True},
'password': {'string':'Password', 'type':'char', 'size':32, 'required':True},
'category': {'string':'Category', 'type':'selection', 'size':64, 'required':True,
'selection': [(0, 'Selection 1'), (1,'Selcetion 2')]
'selection': _get_selection
},
'licence': {
'string':'Licence', 'type':'selection', 'size':64, 'required':True,