summary refs log tree commit diff stats
path: root/theme
Commit message (Collapse)AuthorAgeFilesLines
* 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-249-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-227-0/+51
|
* 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-174-1/+1581
|
* Added April Fools Day jokeStarla Insigna2010-03-284-2/+15
|
* Added Google Analytics back to layouts 4.5 and 7Starla Insigna2010-03-182-0/+24
|
* Fixed & admin panel bugStarla Insigna2010-03-128-20/+20
| | | | | In the admin panel, many (if not all) dynamic links use AJAX to POST a page. These all contained & in the URL, which didn't resolve to & as it should. These have all been replaced.
* Merged unforgiving headsStarla Insigna2010-03-125-48/+48
|\
| * Changed most absolute URLs to relative URLsStarla Insigna2010-03-015-48/+48
| | | | | | | | | | 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.
* | Added working CAPTCHAStarla Insigna2010-03-121-3/+4
|/ | | | | After a little digging, it turned out that the reason that reCAPTCHA always failed was because the reCAPTCHA server was blocked to the server. This should've been obvious as the reCAPTCHA always worked on the development server.
* Removed XHTMLStarla Insigna2010-01-1564-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.
* Removed <[!CDATA]>s from admin panelStarla Insigna2009-11-283-3/+3
| | | | | When Fouripedia compatibility was added, the admin panel was changed from HTML to XHTML, and so all CDATAs appeared in textboxes instead of doing their job. They have been removed, but this is only a temporary fix as the proper solution would be to re-enable XHTML on the admin panel.
* Added Fouripedia compatibilityStarla Insigna2009-11-267-6/+26
| | | | Made many strutural changes to Four Island allowing for the reinclusion of Fouripedia.
* Added :P emoticonStarla Insigna2009-11-151-0/+0
|
* Fixed default background on layout 4.5Starla Insigna2009-11-151-0/+2
|
* Added holidays to Layouts 4.5 and 6.2Starla Insigna2009-11-158-7/+165
|
* Fixed voting issueStarla Insigna2009-10-037-9/+28
| | | | | | | | 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-0369-482/+2009
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Added new files from previous commitStarla Insigna2009-08-172-0/+147
|
* Databasified Affiliates and Website ProjectsStarla Insigna2009-08-172-50/+20
| | | | | | | | The following database changes must be made ASAP: * Import the links.sql script into the database Closes #114
* Rewrote Admin panelStarla Insigna2009-08-1363-301/+1744
| | | | | | | | | | The following database changes must be made: * A TEXT column called "text" must be added to the end of "polloftheweek" * The transferPollRss.php script must be run * The "pollrss" table must be dropped Closes #113
* Added IE supportStarla Insigna2009-08-092-198/+211
| | | | Because IE doesn't support XHTML, Four Island checks to see if the browser is IE and if it is, changes the Content Type to HTML. It also displays a warning at the top of the screen telling the user that their browsing experience will be much better with a better browser.
* Fixed resizing bugStarla Insigna2009-08-092-3/+3
| | | | Previously, when the browser was made smaller, the sidebar and the content would overlap and look terrible.
* Created layout 7Starla Insigna2009-08-0964-1222/+1396
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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');
* Added Endlenge to Website ProjectsStarla Insigna2009-05-291-0/+5
|
* Improved rendering in IEStarla Insigna2009-03-284-73/+95
| | | | | 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.
* Merged unforgiving headsStarla Insigna2009-03-101-0/+5
|\
| * Added "Bubble Blog" to affiliates sectionStarla Insigna2009-02-281-0/+5
| |
* | Fixed IE centering bugStarla Insigna2009-03-102-2/+8
|/ | | | See http://bluerobot.com/web/css/center1.html for more details.
* Added comment editing and deletingStarla Insigna2009-02-214-22/+93
|
* Added Pillowcase link to rightbarStarla Insigna2009-02-191-0/+5
|
* Changed nighttime fontStarla Insigna2009-02-141-0/+7
|
* Created layout 6.2Starla Insigna2009-02-044-9/+22
|
* Added "Website Projects" link sectionStarla Insigna2009-01-311-257/+281
|
* Fixed FeedBurner linksStarla Insigna2009-01-291-1/+1
| | | | Because of FeedBurner's recent move to Google, the links to it had to be fixed.
* Added Admin link to navbarStarla Insigna2009-01-051-0/+7
|
* Integreated Fourm usersStarla Insigna2009-01-051-1/+1
|
* Fixed POTW form linebreak errorStarla Insigna2009-01-041-0/+2
|
* Merged unforgiving headsStarla Insigna2009-01-041-0/+2
|\
| * Added fuhsdiufgsadiufgaisfioasStarla Insigna2009-01-041-0/+2
| |
* | Modified some image ALTsStarla Insigna2009-01-031-1/+1
| |
* | Added :D smileyStarla Insigna2009-01-031-0/+0
| |
* | Removed some unnecessary theme imagesStarla Insigna2009-01-028-0/+0
| |
* | Fixed some night bugs in Layout 6.1Starla Insigna2009-01-023-18/+0
| |
* | Created layout 6.1Starla Insigna2009-01-014-64/+47
| |
* | Added revision stampingStarla Insigna2008-12-301-1/+2
|/