from .tool.func import * def inter_wiki_2(conn, tools): curs = conn.cursor() div = '' div += '' div += '' div += '' div += '' 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 += '' if tools == 'inter_wiki': div += '' else: div += '' div += '' div += '' div += '
ABC
' div += data[0] if admin == 1: div += ' (' + load_lang('edit') + ')' div += ' (' + load_lang('delete') + ')' div += '' + data[1] + '' + data[1] + '' + data[2] + '
' if admin == 1: div += '
' div += '(' + load_lang('add') + ')' return easy_minify(flask.render_template(skin_check(), imp = [title, wiki_set(), wiki_custom(), wiki_css([0, 0])], data = div, menu = [['manager/1', load_lang('return')]] ))