l = [ ["/r/", "r", [ ["/inbox", "i", "https://reddit.com/message/inbox"] , ["/modmail", "m", "https://mod.reddit.com/mail/all"] , ["/all", "a", "https://reddit.com/r/all"] , ["/top", "t", "https://www.reddit.com/r/all/top?sort=top&t=hour"] , ["/shithole/","s", [ ["/default", "d", "https://reddit.com/r/freegamesonsteam"] , ["/spam", "s", "https://www.reddit.com/r/FreeGamesOnSteam/about/spam/"] , ["/reports", "r", "https://www.reddit.com/r/FreeGamesOnSteam/about/reports/"] , ["/new", "n", "https://reddit.com/r/FreeGamesOnSteam/new"] ]] , ["/common/", "c", [ ["/seatte", "e","https://reddit.com/r/seattle" ] , ["/sysadmin", "s","https://reddit.com/r/sysadmin" ] , ["/programmerhumor", "p","https://reddit.com/r/programmerhumor" ] , ["/4chan", "4","https://reddit.com/r/4chan" ] , ["/dccomics", "d","https://reddit.com/r/dccomics" ] , ["/dumb memes", "a","https://reddit.com/r/anime_irl" ] , ["/globaloffensive", "g","https://reddit.com/r/globaloffensive" ] , ["/osu", "o","https://reddit.com/r/osugame" ] , ["/tf2", "t","https://reddit.com/r/tf2" ] ]] ]] , ["/chan/", "c", [ ["/ck", "k", "https://4chan.org/ck"] , ["/gd", "g", "https://4chan.org/gd"] , ["/pro", "p", "https://desuchan.moe/pro/"] , ["/tech/", "t", [ ["/laintech", "l" , "https://lainchan.org/tech/catalog.html"] , ["/desutech", "d", "https://desuchan.moe/tech/"] , ["/g", "g", "https://4chan.org/g"] , ["/8", "8", "https://8ch.net/tech/catalog.html"] , ["/silicon", "s", "https://sushigirl.us/silicon/catalog.html"] , ["/endtech", "e", "https://endchan.xyz/tech/catalog.html"] , ["/λ", "p", "https://lainchan.org/%CE%BB/catalog.html"] , ["/finaltech", "f", "https://finalchan.net/t/catalog.html"] ]] , ["/music/", "m", [ ["/mu", "m", "https://aurorachan.net/mu/"] , ["/tunes", "t", "https://sushigirl.us/tunes/catalog.html"] , ["/media", "e", "https://uboachan.net/media/catalog.html"] ]] , ["/transport", "n", "https://boards.4chan.org/n"] , ["/news", "z", "https://boards.4chan.org/news"] , ["/off_topic/", "o", [ ["/ot", "o", "https://uboachan.net/ot/catalog.html"] , ["/lounge", "l", "https://sushigirl.us/lounge/catalog.html"] ]] , ["/lain", "l" , "https://lainchan.org/mega/catalog.html"] , ["/cyb/", "c", [ ["/htll", "h", "https://hightechlowlife.eu/board/"] , ["/chiruno", "c", "https://chiru.no/cyber/catalog"] , ["/8", "8", "https://8ch.net/cyber/catalog.html"] , ["/final", "f", "https://finalchan.net/1984/"] , ["/master", "m", "https://masterchan.org/cyb"] , ["/end", "e", "https://endchan.xyz/overboard/"] , ["/penumbranet", "p", "https://penumbra.network/overboard/"] , ["/unsafe", "u", "https://jinteki.industries/"] # formerly cyberlife.unsafe.space ]] ]] , ["/tube/", "t", [ ["/zero", "0", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KR4Q-pC-7MLb_DoRmzYOCUw"] , ["/one", "1", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KRZ43r5UVGNraUgvyPaUMBU"] , ["/two", "2", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KQO4aHOqypivLefSFKq2vp1"] , ["/three", "3", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KSeW6AmMmg3D4etDs5YeX8q"] , ["/four", "4", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KTkhLF_MECKCA8DFWQIsGq7"] , ["/favorites", "f", "https://www.youtube.com/playlist?list=FLRkKd3ko9mg_WdWoilM654A"] , ["/watchlist", "w", "https://www.youtube.com/playlist?list=WL"] ]] , ["/other/", "o", [ ["/mebious/", "m", [ ["/co_uk", "c", "https://mebious.co.uk/"] , ["/us", "u", "https://mebio.us/"] , ["/neocities", "n", "https://mebious.neocities.org/"] ]] , ["/vola", "v", "https://volafile.io/r/kUFzLJ"] , ["/Шрифты", "w", "https://vk.com/topic-50911295_28400542"] , ["/scaneye", "s", "https://scaneye.net/"] , ["/codewars", "c", "https://codewars.com/dashboard"] , ["/filechef", "f", "https://filechef.com"] , ["/personal/", "p", [ ["/shmibs", "s", "https://shmibbles.me"] , ["/fauux", "f", "https://fauux.neocities.org"] , ["/m0nst3rs", "m", "https://m0nst3r.neocities.org/"] , ["/ijk", "i", "https://ijk.neocities.org"] ]] , ["/nntp", "n", "https://2hu-ch.org/catalog-overchan.technology.html"] ]] ] special = "https://niles.xyz" def rjs(f, z): result = [] result.append("if (" + str(ord(f[1].upper())) + " == x && z == '"+z+"') {") result.append("document.getElementById(z+'" + f[1] + "').style.color = '#CC0000';") if type(f[2]) == str: result.append("window.location = '" + f[2] + "';") else: result.append("z = z + '"+f[1]+"';") result.append("var x = document.getElementsByClassName(z);") result.append("for (var i = 0; i < x.length; i++) { x[i].style.display = 'inline-block'; }") result.append("var x = document.getElementById(z);") result.append("x.onclick = function() { collapse('" + str(z) + "');}") result.append("}") if type(f[2]) != str: for l in f[2]: result.append(rjs(l, z + f[1])) return "\n".join(result) def rjs2(f, z): result = [] if type(f[2]) != str: result.append("if (z == '"+z+"') {") result.append("document.getElementById(z+'" + f[1] + "').onclick = function() { if (z != \""+z+"\") { collapse(\""+z+"\") } key({keyCode:" + str(ord(f[1].upper())) + " }) };") result.append("}") for l in f[2]: result.append(rjs2(l, z + f[1])) return "\n".join(result) def rhtml(f, z): result = [] href = "" # no longer needed because the onclick handler redirects the page # if type(f[2]) == str: # href = "href='"+f[2]+"'" if len(z) > 0: href = "style='display: none;'" result.append(''.join(["", f[0], ""])) if type(f[2]) != str: result.append("") for l in f[2]: result.append(rhtml(l, z + f[1])) result.append("") result.append("
") return "\n".join(result) master = [""" """) master.append("""
""") for f in l: master.append(rhtml(f, "")) master.append("""
π
""") master = "\n".join(master) print(master)