While I fundamentally believe that all information should be in the public record, what I was arguing for was just to ensure that warnings not be eradicated from a specific user's record. However, even though the warnings wouldn't disappear, still having old warnings "not count" for the purposes of present moderation.
I'm a very firm believer in honoring member privacy. That means I don't disclose your IP address or email address (if it's hidden), but that also means that I'm not going to disclose what happens between you and I regarding your discipline. If you wish to disclose that information, of course, by all means you can do so.
So we agree on a lot of what you've said in this paragraph, just not the "all information" part.
Quote:
Laws aren't there to prohibit behavior, they are there to provide restitution to the community when the behavior inevitably occurs.
(I'm simplifying your quote, which maybe isn't fair. You said a lot of great things here that I've removed.)
Maybe this makes an interesting OTR discussion and I have to split it off. But I disagree. Sure, some things - most things - are as you describe. Some laws are very much designed to curtail - though probably not completely eliminate - behavior. Motorcycle riders being required to wear a helmet, the municipal park being off-limits to skateboard riders, and so forth. Those sorts of laws are very much meant to severely curtail specific behaviors, because doing so is (theoretically) in society's best interests. Society pays a high cost in increased insurance and medical bills, for example, from accidents involving helmetless riders (or so the story went). The municipality that bans skateboards in the park either sees them as a nuisance to others, is looking to curtail the costs associated with damage, or both.
Quote:
I get that authority wants to be prosecuting fewer infractions, and in order to achieve that goal they will do things like increase punishment, create faster escalations, and make more rules.
Yep. My ideal job here is that I ban spambots, sticky / unsticky threads, and other simple and boring tasks. Ideal won't happen, of course.
Quote:
On this forum there is not an effective or transparent separation between legislative and executive powers (nor judiciary, for that matter).
Is there a popular forum that does have such separation? We took our best shot at it by having moderators who report to leads, and then leads who report to the site admin. So at least there is a functional - and documented - appeal process. While I'm not at all saying we'll change how we are set up, I would be curious to see what other options would've been worth considering.
Quote:
While I would also be a strong advocate for publicizing the methods by which you take moderator actions (e.g. warnings last for 1 month, day-bans for 1 year, etc, etc), I was actually only arguing for each user being able to see both the total actions they have received and the total number of actions they've received that still count towards escalation.
This is possible, but requires coding changes to add a new field to the user's page. It's based around, essentially, a software limitation.
The software tracks warnings for us, both by maintaining the user's count as part of their account (bad design, actually), we well as an actual screen we can go look at that not only shows us the count but the text that was sent, who sent it, what time, etc. That screen is a pretty nice summary page for us, actually.
The software also allows us to set warnings to expire. When a warning expires, two things happen. First, the count that appears in the user table is decreased by one. Second, all the records that we can see on that summary page are wiped out. Bang, all gone.
And so that is the reason we went with "no technical expiration but we'll disregard after X amount of time."
To fix this (well, to hack this fix in - actual fixing would require a re-design) we'd need to alter the user page and add two fields. One would be a static text field that said, "Active Warnings" or some such. Easy part. The second field would display the results of a database query which essentially fetched the number of warnings in that summary page created in the last X days. Not
hard, but not quite as easy as the plain text field.
we can certainly look at it, though.