├── DEPLOYING ├── README ├── TODO ├── apps ├── all │ ├── app.rc │ └── index.tpl ├── blagh │ ├── app.rc │ ├── atom.tpl │ ├── convert.rc │ ├── new_post.tpl │ └── rss20.tpl ├── bridge │ ├── app.rc │ ├── comments_list.tpl │ └── foot.tpl ├── dirdir │ ├── app.rc │ └── edit.tpl ├── hello │ └── app.rc ├── radio │ ├── app.rc │ └── form.tpl ├── search │ ├── app.rc │ └── search.tpl ├── togetherjs │ ├── app.rc │ └── togetherjs.tpl └── wman │ ├── app.rc │ ├── man_page.tpl │ ├── page_list.tpl │ ├── search.tpl │ └── section_list.tpl ├── bin ├── aux │ ├── addwuser.rc │ ├── bpst.rc │ ├── gensitemaptxt.rc │ └── runtsts.rc ├── cgilib.rc ├── contrib │ ├── hgweb.config │ ├── hgwebdir.cgi │ ├── markdown.pl │ ├── md2html.awk │ ├── urldecode.awk │ ├── urlencode.awk │ └── webserver.rc ├── corehandlers.rc ├── fltr_cache.rc ├── prune.rc ├── template.awk ├── werc.rc ├── werc_errlog_wrap.rc ├── wercconf.rc ├── werchan_fmt.rc ├── werchan_markdown ├── werchan_markdown.go └── werclib.rc ├── etc ├── initrc └── users │ ├── GROUP_AND_USER_ACCOUNTS │ ├── kotori │ └── password │ └── thedoctor │ └── password ├── lib ├── 404.tpl ├── default_master.tpl ├── footer.inc ├── headers.tpl └── top_bar.inc ├── pub ├── default_favicon.ico └── style │ ├── imgs │ └── sgl.png │ ├── mobile.css │ ├── sinorca-screen-alt.css │ ├── style.css │ └── style_old.css ├── sites └── guhnoo.org │ ├── TODO.txt │ ├── _janus │ ├── 1.mtl │ ├── 1.obj │ ├── 10.mtl │ ├── 10.obj │ ├── 11.mtl │ ├── 11.obj │ ├── 12.mtl │ ├── 12.obj │ ├── 2.mtl │ ├── 2.obj │ ├── 3.mtl │ ├── 3.obj │ ├── 4.mtl │ ├── 4.obj │ ├── 5.mtl │ ├── 5.obj │ ├── 6.mtl │ ├── 6.obj │ ├── 7.mtl │ ├── 7.obj │ ├── 8.mtl │ ├── 8.obj │ ├── 9.mtl │ ├── 9.obj │ ├── monkey.mtl │ └── monkey.obj │ ├── _janustest.html │ ├── _werc │ ├── config │ ├── lib │ │ ├── 404.tpl │ │ ├── ad.inc │ │ ├── default_master.tpl │ │ └── top_bar.inc │ └── pub │ │ ├── 1995.css │ │ ├── acme.css │ │ ├── alcatel.css │ │ ├── apple.css │ │ ├── burichan.css │ │ ├── cat-v.css │ │ ├── darkasmysoul.css │ │ ├── facebook.css │ │ ├── flesh.css │ │ ├── futaba.css │ │ ├── gmail.css │ │ ├── modern.css │ │ ├── tomorrow.css │ │ └── zenburn.css │ ├── banners │ ├── captcha.gif │ ├── index.txt │ ├── mothra.png │ ├── nasa.jpg │ ├── original.png │ └── snoop.png │ ├── donate.html │ ├── example │ ├── _werc │ │ └── config │ └── postnum │ ├── favicon.ico │ ├── formatting.html │ ├── fortunes.txt │ ├── fqa.html │ ├── img │ ├── applebg.jpg │ └── banner.svg │ ├── index.html │ ├── privacy.html │ ├── rules.html │ ├── settings.tpl │ ├── team │ ├── kotori │ └── thedoctor │ ├── userscripts.html │ └── werchan.ogg └── tpl ├── _debug.tpl ├── _users └── login.tpl └── sitemap.tpl /DEPLOYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/DEPLOYING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | Nothing! 2 | -------------------------------------------------------------------------------- /apps/all/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/all/app.rc -------------------------------------------------------------------------------- /apps/all/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/all/index.tpl -------------------------------------------------------------------------------- /apps/blagh/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/blagh/app.rc -------------------------------------------------------------------------------- /apps/blagh/atom.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/blagh/atom.tpl -------------------------------------------------------------------------------- /apps/blagh/convert.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/blagh/convert.rc -------------------------------------------------------------------------------- /apps/blagh/new_post.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/blagh/new_post.tpl -------------------------------------------------------------------------------- /apps/blagh/rss20.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/blagh/rss20.tpl -------------------------------------------------------------------------------- /apps/bridge/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/bridge/app.rc -------------------------------------------------------------------------------- /apps/bridge/comments_list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/bridge/comments_list.tpl -------------------------------------------------------------------------------- /apps/bridge/foot.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/bridge/foot.tpl -------------------------------------------------------------------------------- /apps/dirdir/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/dirdir/app.rc -------------------------------------------------------------------------------- /apps/dirdir/edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/dirdir/edit.tpl -------------------------------------------------------------------------------- /apps/hello/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/hello/app.rc -------------------------------------------------------------------------------- /apps/radio/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/radio/app.rc -------------------------------------------------------------------------------- /apps/radio/form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/radio/form.tpl -------------------------------------------------------------------------------- /apps/search/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/search/app.rc -------------------------------------------------------------------------------- /apps/search/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/search/search.tpl -------------------------------------------------------------------------------- /apps/togetherjs/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/togetherjs/app.rc -------------------------------------------------------------------------------- /apps/togetherjs/togetherjs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/togetherjs/togetherjs.tpl -------------------------------------------------------------------------------- /apps/wman/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/wman/app.rc -------------------------------------------------------------------------------- /apps/wman/man_page.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/wman/man_page.tpl -------------------------------------------------------------------------------- /apps/wman/page_list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/wman/page_list.tpl -------------------------------------------------------------------------------- /apps/wman/search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/wman/search.tpl -------------------------------------------------------------------------------- /apps/wman/section_list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/apps/wman/section_list.tpl -------------------------------------------------------------------------------- /bin/aux/addwuser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/aux/addwuser.rc -------------------------------------------------------------------------------- /bin/aux/bpst.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/aux/bpst.rc -------------------------------------------------------------------------------- /bin/aux/gensitemaptxt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/aux/gensitemaptxt.rc -------------------------------------------------------------------------------- /bin/aux/runtsts.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/aux/runtsts.rc -------------------------------------------------------------------------------- /bin/cgilib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/cgilib.rc -------------------------------------------------------------------------------- /bin/contrib/hgweb.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/contrib/hgweb.config -------------------------------------------------------------------------------- /bin/contrib/hgwebdir.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/contrib/hgwebdir.cgi -------------------------------------------------------------------------------- /bin/contrib/markdown.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/contrib/markdown.pl -------------------------------------------------------------------------------- /bin/contrib/md2html.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/contrib/md2html.awk -------------------------------------------------------------------------------- /bin/contrib/urldecode.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/contrib/urldecode.awk -------------------------------------------------------------------------------- /bin/contrib/urlencode.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/contrib/urlencode.awk -------------------------------------------------------------------------------- /bin/contrib/webserver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/contrib/webserver.rc -------------------------------------------------------------------------------- /bin/corehandlers.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/corehandlers.rc -------------------------------------------------------------------------------- /bin/fltr_cache.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/fltr_cache.rc -------------------------------------------------------------------------------- /bin/prune.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/prune.rc -------------------------------------------------------------------------------- /bin/template.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/template.awk -------------------------------------------------------------------------------- /bin/werc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/werc.rc -------------------------------------------------------------------------------- /bin/werc_errlog_wrap.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/werc_errlog_wrap.rc -------------------------------------------------------------------------------- /bin/wercconf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/wercconf.rc -------------------------------------------------------------------------------- /bin/werchan_fmt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/werchan_fmt.rc -------------------------------------------------------------------------------- /bin/werchan_markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/werchan_markdown -------------------------------------------------------------------------------- /bin/werchan_markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/werchan_markdown.go -------------------------------------------------------------------------------- /bin/werclib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/bin/werclib.rc -------------------------------------------------------------------------------- /etc/initrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/etc/initrc -------------------------------------------------------------------------------- /etc/users/GROUP_AND_USER_ACCOUNTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/etc/users/GROUP_AND_USER_ACCOUNTS -------------------------------------------------------------------------------- /etc/users/kotori/password: -------------------------------------------------------------------------------- 1 | k1m0ch1 2 | -------------------------------------------------------------------------------- /etc/users/thedoctor/password: -------------------------------------------------------------------------------- 1 | somerandomjunkonmydesktop 2 | -------------------------------------------------------------------------------- /lib/404.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/lib/404.tpl -------------------------------------------------------------------------------- /lib/default_master.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/lib/default_master.tpl -------------------------------------------------------------------------------- /lib/footer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/lib/footer.inc -------------------------------------------------------------------------------- /lib/headers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/lib/headers.tpl -------------------------------------------------------------------------------- /lib/top_bar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/lib/top_bar.inc -------------------------------------------------------------------------------- /pub/default_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/pub/default_favicon.ico -------------------------------------------------------------------------------- /pub/style/imgs/sgl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/pub/style/imgs/sgl.png -------------------------------------------------------------------------------- /pub/style/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/pub/style/mobile.css -------------------------------------------------------------------------------- /pub/style/sinorca-screen-alt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/pub/style/sinorca-screen-alt.css -------------------------------------------------------------------------------- /pub/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/pub/style/style.css -------------------------------------------------------------------------------- /pub/style/style_old.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/pub/style/style_old.css -------------------------------------------------------------------------------- /sites/guhnoo.org/TODO.txt: -------------------------------------------------------------------------------- 1 | Nothing! 2 | -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/1.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/1.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/1.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/10.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/10.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/10.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/10.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/11.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/11.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/11.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/11.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/12.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/12.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/12.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/12.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/2.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/2.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/2.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/3.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/3.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/3.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/4.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/4.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/4.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/4.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/5.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/5.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/5.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/5.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/6.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/6.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/6.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/6.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/7.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/7.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/7.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/7.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/8.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/8.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/8.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/8.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/9.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/9.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/9.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/9.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/monkey.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/monkey.mtl -------------------------------------------------------------------------------- /sites/guhnoo.org/_janus/monkey.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janus/monkey.obj -------------------------------------------------------------------------------- /sites/guhnoo.org/_janustest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_janustest.html -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/config -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/lib/404.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/lib/404.tpl -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/lib/ad.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/lib/ad.inc -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/lib/default_master.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/lib/default_master.tpl -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/lib/top_bar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/lib/top_bar.inc -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/1995.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/1995.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/acme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/acme.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/alcatel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/alcatel.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/apple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/apple.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/burichan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/burichan.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/cat-v.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/darkasmysoul.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/darkasmysoul.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/facebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/facebook.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/flesh.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/flesh.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/futaba.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/futaba.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/gmail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/gmail.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/modern.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/modern.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/tomorrow.css -------------------------------------------------------------------------------- /sites/guhnoo.org/_werc/pub/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/_werc/pub/zenburn.css -------------------------------------------------------------------------------- /sites/guhnoo.org/banners/captcha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/banners/captcha.gif -------------------------------------------------------------------------------- /sites/guhnoo.org/banners/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/banners/index.txt -------------------------------------------------------------------------------- /sites/guhnoo.org/banners/mothra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/banners/mothra.png -------------------------------------------------------------------------------- /sites/guhnoo.org/banners/nasa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/banners/nasa.jpg -------------------------------------------------------------------------------- /sites/guhnoo.org/banners/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/banners/original.png -------------------------------------------------------------------------------- /sites/guhnoo.org/banners/snoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/banners/snoop.png -------------------------------------------------------------------------------- /sites/guhnoo.org/donate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/donate.html -------------------------------------------------------------------------------- /sites/guhnoo.org/example/_werc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/example/_werc/config -------------------------------------------------------------------------------- /sites/guhnoo.org/example/postnum: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /sites/guhnoo.org/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/favicon.ico -------------------------------------------------------------------------------- /sites/guhnoo.org/formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/formatting.html -------------------------------------------------------------------------------- /sites/guhnoo.org/fortunes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/fortunes.txt -------------------------------------------------------------------------------- /sites/guhnoo.org/fqa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/fqa.html -------------------------------------------------------------------------------- /sites/guhnoo.org/img/applebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/img/applebg.jpg -------------------------------------------------------------------------------- /sites/guhnoo.org/img/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/img/banner.svg -------------------------------------------------------------------------------- /sites/guhnoo.org/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/index.html -------------------------------------------------------------------------------- /sites/guhnoo.org/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/privacy.html -------------------------------------------------------------------------------- /sites/guhnoo.org/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/rules.html -------------------------------------------------------------------------------- /sites/guhnoo.org/settings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/settings.tpl -------------------------------------------------------------------------------- /sites/guhnoo.org/team/kotori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/team/kotori -------------------------------------------------------------------------------- /sites/guhnoo.org/team/thedoctor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/team/thedoctor -------------------------------------------------------------------------------- /sites/guhnoo.org/userscripts.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/guhnoo.org/werchan.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/sites/guhnoo.org/werchan.ogg -------------------------------------------------------------------------------- /tpl/_debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/tpl/_debug.tpl -------------------------------------------------------------------------------- /tpl/_users/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/tpl/_users/login.tpl -------------------------------------------------------------------------------- /tpl/sitemap.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kfarwell/werchan/HEAD/tpl/sitemap.tpl --------------------------------------------------------------------------------