summary refs log tree commit diff stats
path: root/theme/layouts
Commit message (Collapse)AuthorAgeFilesLines
* Removed the Ash Wednesday and Good Friday backgrounds HEAD masterStarla Insigna2011-04-223-18/+0
| | | | Also changed some of the Datefinder strings.
* Added April Fools Day 2011 jokeStarla Insigna2011-03-311-1/+1
| | | | Also adjusted the date for the Day of Silence to reflect the 2011 date.
* Made Four Island 2 a little more saneStarla Insigna2010-12-117-36/+1
| | | | | | | | | I spent the last few hours sanitizing the database and fixing huge bugs in the code. Among the changes made were: - "Theoretically related posts" have been removed due to the lack of FULLTEXT index support in InnoDB tables - Removed tons of stripslashes() calls that were used to remove slashes from records before I realized (while doing all of this work) that magic_quotes_gpc was on for some reason. I mean, like, come on! - Replaced all non-library uses of htmlentities() with htmlspecialchars(), which basically does the same thing except it doesn't mangle Unicode. - Completely eradicated polls. Note that this does mean that all database backups prior to December 11th 2010 are now incompatible with Four Island.
* Removed POTW from sidebarStarla Insigna2010-09-224-24/+0
|
* Added DeliciousItalic to Layout 7Starla Insigna2010-08-102-0/+13
|
* Fixed reference to webfontStarla Insigna2010-08-061-1/+1
|
* Fixed serif fonts and increased content text sizeStarla Insigna2010-08-061-3/+4
|
* Refined Layout 7 font change to only apply to post contentStarla Insigna2010-08-061-1/+5
|
* Added "DeliciousRoman" as font for Layout 7Starla Insigna2010-08-062-1/+8
|
* Installed TweetboardStarla Insigna2010-07-083-0/+27
|
* Fixed AudioPlayer bugStarla Insigna2010-05-254-4/+4
|
* Fixed some stylistic problemsStarla Insigna2010-05-245-0/+118
| | | | Including padding around posts on layouts 4.5 and 6.2, corner rounding on The Fourm and duplicate profile links on The Fourm on layout 6.2.
* Added [audio]Starla Insigna2010-05-224-0/+28
|
* Added some fixes to Subtle Mode's The FourmStarla Insigna2010-05-221-0/+23
|
* Probably fixed some problems with Subtle Mode in IEStarla Insigna2010-05-171-40/+50
|
* Created Subtle Mode (SEVERE BETA, LOL IT LOOKS GROSS)Starla Insigna2010-05-173-0/+1580
|
* Added April Fools Day jokeStarla Insigna2010-03-283-2/+15
|
* Added Google Analytics back to layouts 4.5 and 7Starla Insigna2010-03-182-0/+24
|
* Changed most absolute URLs to relative URLsStarla Insigna2010-03-014-26/+26
| | | | | Because Four Island is often viewed using a subdomain or an IP address in lieu of the actual domain name, relative URLs are needed to render the page correctly in most circumstances.
* Removed XHTMLStarla Insigna2010-01-1512-0/+0
| | | | | | | XHTML was causing so many problems that it was simply unbearable. Four Island 3.0 will be sure to have no traces left of this annoyance. Also, a lot of files are showing up as being changed because this commit was on the server and I had to modifiy permissions for files (all of the files that were new since my last server commit) so I could commit.
* Added Fouripedia compatibilityStarla Insigna2009-11-265-3/+25
| | | | Made many strutural changes to Four Island allowing for the reinclusion of Fouripedia.
* Fixed default background on layout 4.5Starla Insigna2009-11-151-0/+2
|
* Added holidays to Layouts 4.5 and 6.2Starla Insigna2009-11-155-2/+292
|
* Fixed voting issueStarla Insigna2009-10-033-0/+23
| | | | | | | | Because XHTML was accidentally disabled in the previous changeset, a new error was found that, when in HTML mode (required for IE and layouts prior to 7), voting did not work due to the encoded ampherstand in the query string. This is odd because what works in XHTML should also work in HTML. So, to fix this, XHTML was re-enabled and now the ampherstand is only encoded when XHTML mode is on. Also fixed some positioning errors with the tails of bubbles.
* Created Theme SwitcherStarla Insigna2009-10-0315-0/+2000
Also rewrote the way layouts work. Now, each layout requires a "layout.tpl" file (which contains the header and footer for the layout) and a "style.php" file (which contains and can include other files that contain the CSS for the layout). Each layout has it's own folder in theme/layouts and you can switch between them using a combo box in the Hatbar. Layouts 6.2 and 4.5 have been modified to work with new Layout 7 features such as AJAX, and they should be relatively free of bugs. Layout 3 has not yet been transferred because since it is pre-The New Four Island, it will be very difficult to do so. This changeset requires manual external code changes: * The line below must be added above the functions.php include in The Fourm's funnctions.php require('/svr/www/hatkirby/fourisland/main/includes/session.php'); * The block of Four Island code in The Fourm's page_header() function should be replaced with: global $fi_pagetitle; $fi_pagetitle = $page_title; ob_start(); * The block of Four Island code in The Fourm's page_footer() function should be replaced with: global $fi_pagetitle; $content = ob_get_contents(); ob_end_clean(); $noRightbar = 1; $onFourm = 1; $pageCategory = 'fourm'; if ($fi_pagetitle == 'Index page') { $title = 'The Fourm'; } else if (strpos($fi_pagetitle, 'View topic') !== FALSE) { $title = str_replace('View topic - ', 'Topic: ', $fi_pagetitle) . ' - The Fourm'; } else if (strpos($fi_pagetitle, 'View forum') !== FALSE) { $title = str_replace('View forum - ', 'Fourm: ', $fi_pagetitle) . ' - The Fourm'; } else if (strpos($fi_pagetitle, 'Viewing profile') !== FALSE) { $title = str_replace('Viewing profile - ', 'Member: ', $fi_pagetitle) . ' - The Fourm'; } else { $title = $fi_pagetitle . ' - The Fourm'; } if ($_GET['view'] != 'print') { include('/svr/www/hatkirby/fourisland/main/includes/layout.php'); } else { echo $content; } Closes #117