Merge branch 'remove-var' into 'master'

Remove var from fixed fields

See merge request sjehuda/slixfeed!10
This commit is contained in:
Schimon Jehudah 2024-02-16 01:29:32 +00:00
commit abf955f929

View file

@ -736,23 +736,22 @@ class Slixfeed(slixmpp.ClientXMPP):
title = title[0] title = title[0]
form = self['xep_0004'].make_form('form', 'Subscription editor') form = self['xep_0004'].make_form('form', 'Subscription editor')
form['instructions'] = '📂️ Editing subscription #{}'.format(feed_id) form['instructions'] = '📂️ Editing subscription #{}'.format(feed_id)
form.add_field(var='properties', form.add_field(ftype='fixed',
ftype='fixed',
value='Properties') value='Properties')
form.add_field(var='name', form.add_field(var='name',
ftype='text-single', ftype='text-single',
label='Name', label='Name',
value=title) value=title)
# NOTE This does not look good in Gajim # NOTE This does not look good in Gajim
# options = form.add_field(var='url', #url = form.add_field(ftype='fixed',
# ftype='fixed', # value=url)
# value=url) #url['validate']['datatype'] = 'xs:anyURI'
form.add_field(var='url', form.add_field(var='url',
ftype='text-single', ftype='text-single',
label='URL', label='URL',
value=url) value=url)
form.add_field(var='options', form.add_field(ftype='fixed',
ftype='fixed',
value='Options') value='Options')
options = form.add_field(var='action', options = form.add_field(var='action',
ftype='list-single', ftype='list-single',
@ -779,8 +778,7 @@ class Slixfeed(slixmpp.ClientXMPP):
num = str(i) num = str(i)
options.addOption(num, num) options.addOption(num, num)
i += 1 i += 1
form.add_field(var='labels', form.add_field(ftype='fixed',
ftype='fixed',
value='Labels') value='Labels')
options = form.add_field(var='category', options = form.add_field(var='category',
ftype='list-single', ftype='list-single',