├── DB ├── category_info.csv └── forums.csv ├── DOCS ├── IIS_Win10.docx └── readme.txt ├── IMG ├── back.png ├── back_bw.png ├── close.png ├── close_bw.png ├── download15.png ├── download40.png ├── i.png ├── i_bw.png └── loader.gif ├── README.md ├── UPDATE └── replace_tag.py ├── cgi-bin ├── __pycache__ │ ├── loadxml.cpython-35.pyc │ ├── modbbcode.cpython-35.pyc │ └── myutils.cpython-35.pyc ├── info.py ├── load.py ├── load1.py ├── loadxml.py ├── main.py ├── modbbcode.py └── myutils.py ├── favicon.ico ├── index.html ├── infotor.css └── start.py /DB/category_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/DB/category_info.csv -------------------------------------------------------------------------------- /DB/forums.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/DB/forums.csv -------------------------------------------------------------------------------- /DOCS/IIS_Win10.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/DOCS/IIS_Win10.docx -------------------------------------------------------------------------------- /DOCS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/DOCS/readme.txt -------------------------------------------------------------------------------- /IMG/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/back.png -------------------------------------------------------------------------------- /IMG/back_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/back_bw.png -------------------------------------------------------------------------------- /IMG/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/close.png -------------------------------------------------------------------------------- /IMG/close_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/close_bw.png -------------------------------------------------------------------------------- /IMG/download15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/download15.png -------------------------------------------------------------------------------- /IMG/download40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/download40.png -------------------------------------------------------------------------------- /IMG/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/i.png -------------------------------------------------------------------------------- /IMG/i_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/i_bw.png -------------------------------------------------------------------------------- /IMG/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/IMG/loader.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/README.md -------------------------------------------------------------------------------- /UPDATE/replace_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/UPDATE/replace_tag.py -------------------------------------------------------------------------------- /cgi-bin/__pycache__/loadxml.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/__pycache__/loadxml.cpython-35.pyc -------------------------------------------------------------------------------- /cgi-bin/__pycache__/modbbcode.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/__pycache__/modbbcode.cpython-35.pyc -------------------------------------------------------------------------------- /cgi-bin/__pycache__/myutils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/__pycache__/myutils.cpython-35.pyc -------------------------------------------------------------------------------- /cgi-bin/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/info.py -------------------------------------------------------------------------------- /cgi-bin/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/load.py -------------------------------------------------------------------------------- /cgi-bin/load1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/load1.py -------------------------------------------------------------------------------- /cgi-bin/loadxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/loadxml.py -------------------------------------------------------------------------------- /cgi-bin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/main.py -------------------------------------------------------------------------------- /cgi-bin/modbbcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/modbbcode.py -------------------------------------------------------------------------------- /cgi-bin/myutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/cgi-bin/myutils.py -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/index.html -------------------------------------------------------------------------------- /infotor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/infotor.css -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y3401/InfoTor/HEAD/start.py --------------------------------------------------------------------------------