from .tool.func import *
def inter_wiki_2(conn, tools):
curs = conn.cursor()
div = '
'
div += ''
div += '| A | '
div += 'B | '
div += 'C | '
div += '
'
admin = admin_check()
if tools == 'inter_wiki':
plus_link = 'plus_inter_wiki'
title = load_lang('interwiki_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'inter_wiki'"))
elif tools == 'email_filter':
plus_link = 'plus_email_filter'
title = load_lang('email_filter_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'email'"))
elif tools == 'name_filter':
plus_link = 'plus_name_filter'
title = load_lang('id_filter_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'name'"))
elif tools == 'edit_filter':
plus_link = 'plus_edit_filter'
title = load_lang('edit_filter_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'regex_filter'"))
elif tools == 'file_filter':
plus_link = 'plus_file_filter'
title = load_lang('file_filter_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'file'"))
elif tools == 'file_filter':
plus_link = 'plus_file_filter'
title = load_lang('file_filter_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'file'"))
elif tools == 'image_license':
plus_link = 'plus_image_license'
title = load_lang('image_license_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'image_license'"))
elif tools == 'extension_filter':
plus_link = 'plus_extension_filter'
title = load_lang('extension_filter_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'extension'"))
else:
plus_link = 'plus_edit_top'
title = load_lang('edit_tool_list')
curs.execute(db_change("select html, plus, plus_t from html_filter where kind = 'edit_top'"))
db_data = curs.fetchall()
for data in db_data:
div += ''
div += '| '
div += data[0]
if admin == 1:
div += ' (' + load_lang('edit') + ')'
div += ' (' + load_lang('delete') + ')'
div += ' | '
if tools == 'inter_wiki':
div += '' + data[1] + ' | '
else:
div += '' + data[1] + ' | '
div += '' + data[2] + ' | '
div += '
'
div += '
'
if admin == 1:
div += '