From jo2y at midnightlinux.com Sat Dec 1 01:30:47 2001 From: jo2y at midnightlinux.com (James O'Kane) Date: Sat, 1 Dec 2001 01:30:47 -0500 (EST) Subject: [Wplug-web] bugs.wplug.org Message-ID: I commented out the bugs.wplug.org virtual host in apache because it doesn't seem to be in DNS anymore. If that wasn't the right thing to do, let me know. -james From jeremy at wplug.org Sun Dec 9 23:46:53 2001 From: jeremy at wplug.org (Jeremy Dinsel) Date: Sun, 9 Dec 2001 20:46:53 -0800 (PST) Subject: [Wplug-web] Screenshot of the Week Message-ID: The screenshot of the week has been updated so that it saves old screenshots and includes a date added field. The date is now displayed in the header. Only the most recently added (based on serial number) will be displayed. If anyone wants to write a page to show the old SOTWs; the following SQL will get you an ordered list: SELECT * FROM sotw ORDER BY serial ASC; -j -- - Jeremy Dinsel - somewhere in the monkey house From jeremy at wplug.org Mon Dec 10 22:14:02 2001 From: jeremy at wplug.org (Jeremy Dinsel) Date: Mon, 10 Dec 2001 19:14:02 -0800 (PST) Subject: [Wplug-web] Announcements table(s) Message-ID: I modified things so that we could do historical tracking on announcements (similar to screenshots). A delete was removed from the announcements page and the front page will now grab only the most recent announcements (in the past, it had grabbed the only entry in the db). mysql> describe announcements; +----------------+---------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +----------------+---------+------+-----+---------+----------------+ | serial | int(11) | | PRI | 0 | auto_increment | | nextmeeting | date | YES | | NULL | | | nextfest | date | YES | | NULL | | | nextmeetingloc | blob | YES | | NULL | | | nextfestloc | blob | YES | | NULL | | | comments | blob | YES | | NULL | | | meetingdetails | blob | YES | | NULL | | | festdetails | blob | YES | | NULL | | +----------------+---------+------+-----+---------+----------------+ 8 rows in set (0.00 sec) mysql> describe sotw; +-----------+------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-----------+------------+------+-----+---------+----------------+ | serial | int(11) | | PRI | 0 | auto_increment | | file | tinyblob | YES | | NULL | | | comment | mediumblob | YES | | NULL | | | thumb | tinyblob | YES | | NULL | | | datestamp | int(11) | | | 0 | | +-----------+------------+------+-----+---------+----------------+ 5 rows in set (0.00 sec) -j -- - Jeremy Dinsel - somewhere in the monkey house From zman at wplug.org Thu Dec 27 15:42:25 2001 From: zman at wplug.org (Zach Paine) Date: Thu, 27 Dec 2001 15:42:25 -0500 Subject: [Wplug-web] Board Interface Message-ID: <3C06F34C-FB0A-11D5-B5BE-000393583930@wplug.org> Hey Evan, I've been thinking about the board interface recently. I think that viewed option on the website may be redundant. If a board member has to go to the site to acknowledge that they've seen the proposal, they might as well vote. It may be a better option to create some functionality, where a member can simply reply with the original message to board-bot at wplug.org when they get the notification email in order to verify that they've seen the proposal. In light of the fact that my most recent proposal failed because not everyone even acknowledged that they viewed it, I think that this functionality would be valuable because it makes it very easy to acknowledge that you've seen a proposal and are not going to vote. What do you think? Zach From jeremy at wplug.org Fri Dec 28 18:25:28 2001 From: jeremy at wplug.org (Jeremy Dinsel) Date: Fri, 28 Dec 2001 15:25:28 -0800 (PST) Subject: [Wplug-web] Board Interface In-Reply-To: <200112281701.MAA21706@wplug.org> Message-ID: There's something to be said for "abstain" ... -j : Message: 1 : Date: Thu, 27 Dec 2001 15:42:25 -0500 : Cc: wplug-web at wplug.org : To: Evan DiBiase : From: Zach Paine : Subject: [Wplug-web] Board Interface : Reply-To: wplug-web at wplug.org : : Hey Evan, : I've been thinking about the board interface recently. I think : that viewed option on the website may be redundant. If a board member : has to go to the site to acknowledge that they've seen the proposal, : they might as well vote. It may be a better option to create some : functionality, where a member can simply reply with the original message : to board-bot at wplug.org when they get the notification email in order to : verify that they've seen the proposal. In light of the fact that my : most recent proposal failed because not everyone even acknowledged that : they viewed it, I think that this functionality would be valuable : because it makes it very easy to acknowledge that you've seen a proposal : and are not going to vote. : : What do you think? : : Zach : : -- - Jeremy Dinsel - somewhere in the monkey house From zman at wplug.org Mon Dec 31 01:54:20 2001 From: zman at wplug.org (Zach Paine) Date: Mon, 31 Dec 2001 01:54:20 -0500 Subject: [Wplug-web] New Features Message-ID: <37355F68-FDBB-11D5-80E7-000393583930@wplug.org> Well, I've been a busy php coder over my break. I've implemented two new features on the website. Firstly, all of the minutes are now in the announcements DB. They can be added, deleted, modified via wplug.org/edit_minuteinfo.php (with admin access of course). wplug.org/minutes.php will display a list of all minutes and wplug.org/minutes.php?id=# will display a certain event's minutes. Second, I've implemented a past screenshots feature. I've created a function called sotw(), that takes an array as created by mysql_fetch_array() as an argument and draws a screen shot of the moment box. The front page's box has a link to the past screenshots, wplug.org/sotw.php. The listing of past screenshots isn't too pretty, but that can be improved. wplug.org/sotw.php?serial=# will display a specific thumb w/ it's comments. Gerr also implemented a new feature on the front page that automatically links to minutes if they have been submitted in the past 30 days. Wee! -Zach