1

Topic: ochiba as a quick-n-dirty text-only discussion board

Based on a suggestion here: http://ochiba.x-maru.org/support/viewto … pid=81#p81

The idea is just get rid of the pictures, which turns out easier than I thought it'd be. This can be done in a variety of ways, but I prefer the CSS hackery method, so I don't have to change templates or code or anything. The core bit is to add the following in CSS:

<style type="text/css">
td.image, div.cimage span {
    display:none;
}
</style>

To avoid hacking the distribution files, I would tack this into site.tmpl, below all the stylesheet links.

The other thing to do is to get rid of file upload widgets in post.tmpl and set MAXIMUM_SIZE to 0 or something in conf.php.

I think that should do it.