from .tool.func import *
def list_long_page(tool = 'long_page', arg_num = 1):
with get_db_connect() as conn:
curs = conn.cursor()
sql_num = (arg_num * 50 - 50) if arg_num * 50 > 0 else 0
curs.execute(db_change('select data from other where name = "count_all_title"'))
if int(curs.fetchall()[0][0]) > 30000:
return re_error('/error/25')
div = '
'
select_data = 'desc' if tool == 'long_page' else 'asc'
title = 'long_page' if tool == 'long_page' else 'short_page'
curs.execute(db_change("select title, length(data) from data order by length(data) " + select_data + " limit ?, 50"), [sql_num])
db_data = curs.fetchall()
for data in db_data:
div += '- ' + str(data[1]) + ' | ' + html.escape(data[0]) + '
'
div += '
' + next_fix('/list/document/' + ('long' if title == 'long_page' else 'short') + '/', arg_num, db_data)
return easy_minify(flask.render_template(skin_check(),
imp = [load_lang(title), wiki_set(), wiki_custom(), wiki_css([0, 0])],
data = div,
menu = [['other', load_lang('return')]]
))