summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
Commit message (Collapse)AuthorAge
* - #9287: More doxygen/documentation fixes by JonBobSteven Wittens2004-07-22
|
* - Patch #9238 by JonBob: added code and Doxygen comments to common.inc andDries Buytaert2004-07-13
| | | | bootstrap.inc.
* - Patch #8509 by Killes and Steven: added support for sending compressedDries Buytaert2004-07-08
| | | | pages. Useful to reduce your site's bandwidth.
* - Changed the way status messages are printed as per Kristjan's suggestion:Dries Buytaert2004-07-08
| | | | | | | | | | http://drupal.org/files/issues/error_messages_list.png (issue #9138). drupal_set_message() has been changed to group message by type and a helper function, theme_status_message(), is added to display the messages. Chameleon and Xtemplate have been updated to use this new function. - Updated CHANGELOG.txt.
* - Patch #8973 by JonBob: Drupal contains many undefined variables and array ↵Dries Buytaert2004-07-02
| | | | indices, which makes PHP throw a lot of warnings when the reporting level is set to E_ALL. Things run fine with these warnings, but as a matter of code style if nothing else we should probably strive to avoid them. The attached fixes most of the more egregious offenders (about 95% of the warnings when I load /node on my test site).
* - Patch #8585 by Junyor: sort blog items by creation date. Added some ↵Dries Buytaert2004-06-30
| | | | database indices.
* - Preventing caching of page when status messages are present (needed for ↵Steven Wittens2004-06-28
| | | | | | redirects after form submission to work properly) - Double-quotes to Single-quotes
* - Removing early experimental tab code that slipped in.Kjartan Mannes2004-06-02
| | | | | - Fixing a copy paste error in file.inc. - Some double => single quote changes.
* - Fixed bug #5977: Date translation screwed.Kjartan Mannes2004-02-21
| | | | - Fixed '\n' => "\n".
* - Bug #5684: filter duplicate headers.Dries Buytaert2004-02-15
|
* - Patch 5140 by Moshe: removed the theme("header") and theme("footer") ↵Dries Buytaert2004-01-26
| | | | functions.
* Patch 5114 by Kjartan:Dries Buytaert2004-01-14
| | | | | | | - Adds drupal_set_header() and drupal_get_headers(). - Cache now stores custom headers. - Replace theme_head() with drupal_get_html_head(), added drupal_set_html_head(). - Added RSS autodiscover links to node, blog and taxonomy pages.
* - Patch 4859: new drupal_unpack() consolidates duplicate code and makes itDries Buytaert2004-01-13
| | | | | easy to show avatars next to nodes and comments. Patch by Moshe. As a showcase, maybe Xtemplate should have an option to enable/disable avatars?
* - Fixing wrong superglobal usage.Kjartan Mannes2003-12-18
|
* - Reworked 404 (page not found) handling. Patch by walkah. You can specify aDries Buytaert2003-12-16
| | | | | custom 404 page in the administration page. As a result, error.php could be removed.
* - Patch by Kjartan:Dries Buytaert2003-12-13
| | | | | | | | + Changed drupal_page_header(): converts the If-Modified-Since header into a timestamp and compares against the cache data. Ignore If-Modified-Since and ETag headers if they are present but empty. + Few minor other code cleanups.
* - Small improvement to make request_uri() work on multiple platforms.Dries Buytaert2003-12-11
|
* - Moved the watchdog() function to the bootsrap file. Patch by Moshe.Dries Buytaert2003-12-10
|
* - Improved module loading when serving cached pages. Moshe's bootstrap patch.Dries Buytaert2003-11-18
- Used legend and fieldset tags for the configuration page.