Nobody complained, so I moved the tv thread NAFDA links, too.
Willow ,'Bring On The Night'
Buffistas Building a Better Board ++
Do you have problems, concerns, or recommendations about the technical side of the Phoenix? Air them here. Compliments also welcome.
I've been tinkering with styling the site, so that it can be reasonably easily skinned.
Just to show you guys the sort of thing that's possible:
Now, I have no idea how this will be implemented -- me, I'm tweaking a personal style sheet by hand that's laid over the style sheet that gives you this. However, it lends itself to simple modifications like font change, image removal, and font size changing, all of which I've done in the above examples.
FYI.
I'm getting 404's on all those links, ita.
Check again, Sue. I forgot I was posting from the test site. URLs should be good now.
Oooh, it's even more work friendly. I like it.
So, the customization would be limited to certain things, like font and font size right? I couldn't have blood dripping from my B.org logo if I wanted.
No, no extra blood!
Actually, my modifications do require an extra graphic, so they're not something one can implement without web space.
The current requests are font and font size. Since my boss once walked up behind me at my desk and asked about "That Buffy show" gesturing to my screen, I thought a graphic free version might be useful too.
But giving a selection of pre-made stylesheets and allowing someone to set their own base font size/style/other small tweaks are two different mechanisms, and I'm not sure how they'd play together.
Heh: I'm imagining a "Stealth Buffistas" style where you could put in fake graphics and scatter text thoughout the page to make it look like A Study of Rhibosomes in the Human Genome or Apples in the Classroom: Juvenile Kickbacks and the Fairness of the Curved Grading System or CNN.
I'm taking a glance at the stylesheet and source code now, ita, (at least, the one i got from www.buffistas.org/html/buffista.css) and I'm not seeing how you got rid of the graphics in your personal sheet. A hint to get me started? Mostly just because I like playing with this stuff, not for any particular reason.
I didn't do it on this site, D. A bunch of PHP and HTML had to be changed too, so it's in a test environment.
Though -- getting rid of the graphics was easy enough: img {display:none}
I've noticed fairly frequent double postings. One fix to this problem is to lookup the text of the last post in a thread, take the SHA hash of it and compare it to the SHA hash of the pending post. If they are the same, then don't post the pending message.
SELECT posttext FROM threadtable ORDER BY id DESC LIMIT 1
if (sha1($posttext) === sha1($newposttext)) die();
Also, the SQL could be tightened up even more by limiting the query to only the user's posts.