summary refs log tree commit diff stats
path: root/includes
Commit message (Collapse)AuthorAgeFilesLines
* Created layout 7Starla Insigna2009-08-097-262/+281
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following changes were also made in this revision: * All HTML was changed to XHTML and a !DOCTYPE was included to reflect this * Rewrote quotes tracking system to be much less complicated and actually working * Changed quotes rendering to look more like Chirpy than Rash * Fixed comment textarea bug * Rewrote a ton of CSS so it's not as bloated * Added a JavaScript confirmation when deleting a comment * AJAXified voting on the POTW * AJAXified voting and flagging quotes * AJAXified commenting * AJAXified voting on posts * Added DateFinder back after it was accidentally deleted in Layout 4.5 The following database changes must be performed as soon as possible: * Fix title of NO <!DOCTYPE> post (the &lt; is missing the semicolon) * Restore post Frasty Tha Snaman from a backup * Reset "flag" field of all rows in "rash_quotes" to 0 * Remove the "vote" and "flag" columns of "rash_tracking" * Rename the "quote_id" column of "rash_tracking" to "vote" The following external code changes must also be performed as soon as possible: * Add the following line to the end of the // Four Island block in The Fourm's functions.php: require('/svr/www/hatkirby/fourisland/main/includes/specialdates.php');
* Allowed admin user to use site during maintenanceStarla Insigna2009-06-031-1/+1
|
* Fixed poll sidebar commentsStarla Insigna2009-05-181-1/+1
|
* Added poll comments to sidebarStarla Insigna2009-05-181-1/+14
|
* Tweaked Easter holidays againStarla Insigna2009-04-041-3/+2
| | | | It turned out that there actually was a problem with the algorithm.
* Improved rendering in IEStarla Insigna2009-03-281-3/+9
| | | | | Now, Four Island doesn't look downright disgusting in IE, even though there are still a couple more problems to be fixed. Also, a small amount of CSS housekeeping was done.
* Tweaked Easter holidaysStarla Insigna2009-02-251-5/+3
| | | | | | | | | | Easter holidays were coming a day late, so a day was ticked off of the Easter fourmula. It does concern me, however, that this issue wasn't discovered last year. Either there was another Easter bug last year (maybe during the time all Easter holidays were a month late?) or my fourmula's wrong. I also cleaned up some of the Special Dates code.
* Added comment editing and deletingStarla Insigna2009-02-212-0/+30
|
* Fixed [pre] tagStarla Insigna2009-01-181-1/+1
|
* Added [quote] bbcodeStarla Insigna2009-01-081-0/+1
|
* Changed comments' user indexStarla Insigna2009-01-053-9/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, the comments table referenced users by username. However, if user ever changed their username, everything would become messed up. To fix this, the index has been changed to the user ID. This change obviously requires maintenance: This SQL must be run: "ALTER TABLE `comments` ADD `user_id` INT( 11 ) NOT NULL AFTER `page_id`;" This PHP will generate some SQL that must be run: <?php $getusers = "SELECT DISTINCT username FROM comments WHERE is_anon = 0"; $getusers2 = mysql_query($getusers); while ($getusers3 = mysql_fetch_array($getusers2)) { $getuser = "SELECT * FROM phpbb_users WHERE username = \"" . $getusers3['username'] . "\""; $getuser2 = mysql_query($getuser); $getuser3 = mysql_fetch_array($getuser2); echo("UPDATE comments SET user_id = " . $getuser3['user_id'] . " WHERE username = \"" . $getuser3['username'] . "\" AND is_anon = 0;<BR>"); } $getusers = "SELECT * FROM anon_commenters"; $getusers2 = mysql_query($getusers); while ($getusers3 = mysql_fetch_array($getusers2)) { echo("UPDATE comments SET user_id = " . $getusers3['id'] . " WHERE username = \"" . $getusers3['username'] . "\" AND is_anon = 1;<BR>"); } ?> This SQL must be run: "ALTER TABLE `comments` DROP `username`;"
* Improved anonymous commentingStarla Insigna2009-01-052-45/+33
| | | | | There was a bug where, if an anonymous commenter used a username that was being used by an actual member, Four Island would think the anonymous commentor was actually the member.
* Restricted Admin panel to AdminsStarla Insigna2009-01-051-1/+1
| | | | | Previously, when phpBB3 was integrated, the user group 2 was mistaken as the Admin group when it was actually the Registered group, thus allowing anyone who could log in to access the admin panel.
* Added Admin link to navbarStarla Insigna2009-01-051-0/+5
|
* Integreated Fourm usersStarla Insigna2009-01-055-62/+91
|
* Modified some image ALTsStarla Insigna2009-01-031-3/+3
|
* Added :D smileyStarla Insigna2009-01-031-0/+1
|
* Added revision stampingStarla Insigna2008-12-301-0/+2
|
* Fixed some more HTML validation errorsStarla Insigna2008-12-261-4/+4
|
* Fixed many HTML validation errorsStarla Insigna2008-12-212-6/+6
|
* Relocated includes/functions_quotes.phpStarla Insigna2008-12-211-195/+0
| | | | | | As the functions defined in functions_quotes.php are only used in the quotes.php module, there is no reason to have them located in a seperate include file.
* Removed splash screenStarla Insigna2008-12-211-7/+0
|
* Added Maintenance switcher to AdminStarla Insigna2008-12-201-3/+3
| | | | | | Also fixed spelling of maintenance in places where it was incorrectly spelled. Maintenance Required: Rename "mantainenceMode" config to "maintenanceMode"
* Added HG Update to AdminStarla Insigna2008-12-201-0/+1
| | | | Now, changes can be remotely pushed to the central repository and updated using the Admin panel.
* Replaced addslashes()Starla Insigna2008-12-191-2/+2
| | | | | Many SQL queries were using the function addslashes() to escape their content. They have been replaced with the more secure mysql_real_escape_string() function.
* Added [thumb] BBCodeStarla Insigna2008-12-191-0/+1
| | | | | The [thumb] bbcode takes the content and creates a thumbnail of it. The thumbnail fits perfectly inside the post bubble and is wrapped with a link to the original image.
* Added Smiley-parsing to Quotes DBStarla Insigna2008-12-181-1/+1
|
* Added sad ":(" smileyStarla Insigna2008-12-171-0/+1
|
* Added an emoticon parsing systemStarla Insigna2008-12-175-3/+103
| | | | | I decided that, because I use the :) emoticon so often, I might as well replace it with an actual image. I've added a Smiley parsing system to complement the BBCode parsing one.
* Adjusted Rightbar for FouripediaStarla Insigna2008-12-141-1/+4
|
* Fixed NavBar for Fourm and FouripediaStarla Insigna2008-12-141-0/+5
|
* Major design and code overhaulStarla Insigna2008-12-145-29/+70
| | | | I don't know, a lot of stuffses happened that I don't quite remember anymore. Goodness, that's not good.
* Fixed BBCode parsing glitchStarla Insigna2008-12-131-4/+6
| | | | | | | | | | | | As previously seen in the 24 Ways post, there was a strange BBCode parsing glitch caused by a few circumstances. There had to be a BBCode tag that had a parametered definition and a non-parametered definition. Both had to appear in the same post and the parametered had to appear before the non-parametered. Because the Four Island BBCode parsing system parses non-parametered tags first, it finds the opening tag of the non-parametered tag first, but when it tries to find the closing tag, because it is searching from the beginning of the tag, it finds the closing tag of the parametered tag. This causes strange things to happen. This has been fixed by forcing the parsing system to start searching for the closing tag after the position where the starting tag is.
* Optimized postingStarla Insigna2008-12-131-5/+4
| | | | | Previously, Four Island posted a blog, and then searched through the table looking for it so it could retrieve its ID. Now, the "mysql_insert_id()" function is used instead.
* Fixed unique_id overridingStarla Insigna2008-12-121-20/+23
|
* Created own bbcode systemStarla Insigna2008-12-102-118/+104
| | | | | To be able to test for Internet Explorer troubles, the dependency on the bbcode PECL module had to be dropped, and so it has been. Hopefully this BBCode module works.
* Tweaked tag cloudStarla Insigna2008-12-091-1/+1
| | | | | Previously, the tag cloud excluded tags which weren't used for "published" posts, but when counting the ones that were, it also counted any instances of the tag in other types of posts. This has now been fixed.
* Fixed updatePending.php tag bugStarla Insigna2008-12-091-1/+1
| | | | It was incorrectly fixed last time, but this time should be right.
* Enhanced tag cloudStarla Insigna2008-12-091-6/+7
|
* Fixed pending update tag problemStarla Insigna2008-12-091-1/+2
| | | | | | The pending post automatic poster was accidentally not posting the tags that go along with the posts because it was not updated when the new tag system came out.
* Added a tag cloudStarla Insigna2008-12-071-0/+27
|
* Redid multiple tag systemStarla Insigna2008-12-072-4/+40
| | | | | | This new tag system has a seperate table for tags. This way, a tag cloud can be made much more easily than if using the previous system. This changeset requires manual maintinence.
* Changed failsafe Gravatar to WavatarStarla Insigna2008-12-071-1/+0
|
* Created a "Mantainence Mode"Starla Insigna2008-12-071-0/+39
| | | | | | A mantainence has been created in the config table so that when it is on, users other than the localhost only see a temporarily down message, while localhost can still access Four Island. This will be useful during times when changes in this repository do things that require the database schema to be changed or scripts to be run, such as the previous three changesets.
* Removed comment rating systemStarla Insigna2008-12-072-35/+1
|
* Moved pingbacks to a seperate tableStarla Insigna2008-12-072-8/+5
| | | | | Because pingbacks just aren't comments, they shouldn't be stored in the comments table. So, a new table has been created for them and the blog post view pages have been accomodated to show them at the bottom just like the related posts are shown.
* Added support for a variable amount of tagsStarla Insigna2008-12-072-3/+3
| | | | | | Previously, the blogging engine only allowed for three tags per post, and it also stored each in seperate fields. Now, all tags are stored in one field and there can be more than three. The only functionality that has been removed because of this is that now, on archive pages, tags are not shown next to the current month's posts as they used to be, because the Four Island templating system does not yet support sub-blocks of sub-blocks.
* Disabled pending queue on SaturdaysStarla Insigna2008-12-051-1/+1
| | | | Saturday is Four Island's weekly poll day, so normal articles should not be posted on that day.
* Re-enabled pending queueStarla Insigna2008-11-241-1/+1
|
* Created the 6th layoutStarla Insigna2008-11-224-16/+10
|