summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
Commit message (Collapse)AuthorAge
* Patch #19934 by Morbus, chx: conf_init() should strip out port numbers in ↵Dries Buytaert2005-09-19
| | | | bootstrap.inc.
* - Patch #29030 by Goba, chx, Jose, et al: reworked the URL rewrite hook so ↵Dries Buytaert2005-09-18
| | | | URLs can be rewritten dynamically.
* - Patch #30122 by m3verick: changed include_once()'s to include "./$file"Dries Buytaert2005-09-08
| | | | for performance's sake.
* - Patch #22911 by Cvgbe: fixed table locking in PostgreSQL. You'll have toDries Buytaert2005-08-29
| | | | use db_lock_table() and db_unlock_tables() for your code to be compatible.
* - Patch #29385 by chx: no ?> add end of files.Dries Buytaert2005-08-25
|
* - Bug #22911: PostgreSQL doesn't like "LOCK TABLES", but does like "LOCK ↵Dries Buytaert2005-08-25
| | | | TABLE". MySQL likes both.
* - Removed some debug code.Dries Buytaert2005-08-25
|
* - Patch #29274 by Jeremy: the "fuzzy cache" mechanism is supposed to enforce ↵Dries Buytaert2005-08-22
| | | | a minimum time before the cache table is flushed. Logical errors in the fuzzy cache implementation are leading to the cache table being flushed more frequently. Configuration is simplified by removing all references to "strict" and "loose" caches. Instead, the cache is either "disabled" or "enabled". Additionally, the site administrator can now configure the "minimum cache lifetime", the minimum amount of time cached data will remain cached.
* - #27853: PHP notices.Steven Wittens2005-08-05
|
* - #27624, #27614, #27627: dead codeSteven Wittens2005-07-29
|
* - #23651: Display referrer info with watchdog messages.Steven Wittens2005-07-29
|
* - #27231: Friendly DB error screens.Steven Wittens2005-07-27
|
* - Patch #27003 by Neil: use named constants instead of stringsDries Buytaert2005-07-23
|
* - Patch by Bart: fixed update.php after bootstrap patch.Dries Buytaert2005-07-03
|
* - Patch #25816 by Robert Douglass: removed extra load of boostrap.inc.Dries Buytaert2005-06-27
|
* - Patch #18213 by chx: boostrap system. Modified to work with HEAD, tidiedDries Buytaert2005-06-22
| | | | | | | up the documentation a little. chx: can you double-check whether the global $conf variable is secure? (That is, make sure it can't be send using the URL or something.)
* - Patch #3962 by deekayen: improved error message when a blocked user ↵Dries Buytaert2005-06-21
| | | | attempts to login.
* - Patch #24135 by Moshe: made it possible to ban visitors based on ↵Dries Buytaert2005-06-07
| | | | hostname/IP. Banning visitors can either be done from the 'access control' pages, or directly from the statistics pages. This feature is very convenient to block badly behaving crawlers.
* - Patch #16303 by Gerhard: fixed some warnings.Dries Buytaert2005-05-21
|
* - Patch #22652 by Stefan: improved PHPdoc of drupal_set_message().Dries Buytaert2005-05-14
|
* - Patch #22035 by mathias/mikeryan: improved performance of path aliases.Dries Buytaert2005-05-14
|
* - Added the ability to track page generation times in the statistics module.Dries Buytaert2005-05-12
| | | | | | (Made some improvements as per the suggestions in the issue.) - Added extended timer implementation.
* - Removed some dead code.Dries Buytaert2005-04-12
|
* - Patch #19298 by Jeremy: loose caching!Dries Buytaert2005-04-11
| | | | | | Drupal's existing caching mechanism doesn't perform well on highly dynamic websites in which the cache is flushed frequently. One example is a site that is under attack by a spambot that is posting spam comments every few seconds, causing all cached pages to be flushed every few seconds. Loose caching immediately flushes the cache only for specific users who have modified cached data (whether or not they are logged in), delaying the flushing of data for other users by several minutes. (I rewrote the help text a bit and made minor changes to the code comments.)
* - Patch #19933 by willmoy: stop output buffering once the page has been ↵Dries Buytaert2005-04-05
| | | | rendered.
* - Patch #19739 by Uwe: corrected many typo's in the documentation and code ↵Dries Buytaert2005-03-31
| | | | comments
* - #18817: Clean up plain-text checking (see drupal-devel!)Steven Wittens2005-03-31
|
* - #19130: Handle trailing dot in hostname when scanning for config.Steven Wittens2005-03-19
|
* - #5900: Fix browser caching issues.Steven Wittens2005-03-18
|
* - Patch #13738 by TDobes: theme system fixes:Dries Buytaert2005-03-16
| | | | | | | | | | * Fix a bug which would cause the "configure" link for styles to be broken. * Fix a bug with using drupal_get_filename for theme engines. Although this is not called anywhere in core, we should still fix it for contrib. (i.e. themes that may want to manually invoke a theme engine to create a hybrid theme) * Correct an inaccurate comment in theme.inc * Populate the default primary links with an "edit primary links" link for consistency with the secondary links * remove some unnecessary variables in the theme administration which had misleading and confusing names * replace time-consuming foreach when rendering theme admin page with a more efficient array_key_exists * usability: rather than completely removing the search box checkbox when search.module is disabled, simply disable it. (UI elements shouldn't appear/disappear.)
* - Patch #13260 by UnConeD: watchdog module improvements.Dries Buytaert2005-01-09
| | | | | | | | | | We added a 'severity' column to watchdog(): watchdog($type, $message, $link) --> watchdog($type, $message, $severity, $link); * Specify a severity in case you are reporting a warning or error. * The $link-parameter is now the fourth parameter instead of the third. TODO: document this in the upgrade guide.
* - Patch #14890: corrected the documentation of conf_init().Dries Buytaert2004-12-29
|
* - Patch #13405 by Moshe: make you actually do something useful with the init ↵Dries Buytaert2004-12-01
| | | | hook. A recent patch to 4.5 and HEAD made this patch run too early in the request (for non-cached pages).
* - Patch #13405 by Moshe:Dries Buytaert2004-11-25
| | | | | + Make bootstrap functionality work with HEAD. + Move functions into bootstrap.inc so that statistics_exit() works for cached pages. (Does this close any issues?)
* - Patch #5942 by jhriggs and Adrian:Dries Buytaert2004-11-24
| | | | | + added support for multi-site configurations. + tidied up some old cruft and added code comments.
* - Patch 13180 by chx: renamed check_query() to db_escape_string() and ↵Dries Buytaert2004-11-21
| | | | | | implemtented it properly per database backend. Read the manual for pg_escape_string: "Use of this function is recommended instead of addslashes()." Or read sqlite_escape_string: "addslashes() should NOT be used to quote your strings for SQLite queries; it will lead to strange results when retrieving your data."
* - Modified patch #11689 by Adrian: made the locale module work with PostgreSQL.Dries Buytaert2004-10-18
|
* - Patch #11434: made request_uri() (and thus forms) work on IIS.Dries Buytaert2004-10-12
|
* - Simplified/reorganized version of patch #9620 by Jeremy: fixed errors when ↵Dries Buytaert2004-10-04
| | | | writing to cache.
* - Patch #10945 by Adrian: more PostgreSQL fixes/updates.Dries Buytaert2004-09-20
|
* - Patch #8179 by JonBob: reintroduced menu caching.Dries Buytaert2004-09-16
|
* #10862: Smarter filter cache wiping.Steven Wittens2004-09-15
|
* - Patch #10663 by JonBob: documentation improvements: fixed some typos and ↵Dries Buytaert2004-09-09
| | | | improved consistency to the use of Doxygen/api.module commands in the comments.
* - Patch #10373 by jabart/killed: performance improvement: caching the ↵Dries Buytaert2004-09-08
| | | | variable table improves performance with 20% when serving cached pages.
* - Fixed cache problem introduced by Adrian's PostgreSQL patch.Dries Buytaert2004-09-08
|
* - Patch #10622 by Adrian: fixes various PostgreSQL related problems.Dries Buytaert2004-09-08
| | | | | | | | | | | | | 1) Menu problems with Postgres (this is a highly critical 1 line fix) 2) Archive module fails with Postgres 3) Postgres setup problems - changes to database.pgsql (although i made these changes myself before finding this patch) 4) Book module fails with Postgres 5) Postgres problems following creation of a new type of user - which is actually about a taxonomy.module bug. 6) Creating accregator_item_table in PostgreSQL 7) Postgres - Polls not displayed on Poll Page 8) Blog module has sql errors with postgres This should not affect MySQL users (hopefully).
* Fixing a faulty check in cache_get() which prevented empty data from being ↵Steven Wittens2004-08-16
| | | | returned. This was required for filtercache, where a cache entry with empty data can have meaning (e.g. as the output for the input '<script></script>' when script is not allowed).
* The Input formats - filter patch has landed. I still need to make update ↵Steven Wittens2004-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instructions for modules and update the hook docs. Here's an overview of the changes: 1) Multiple Input formats: they are complete filter configurations (what filters to use, in what order and with which settings). Input formats are admin-definable, and usage of them is role-dependant. For example, you can set it up so that regular users can only use limited HTML, while admins can free HTML without any tag limitations. The input format can be chosen per content item (nodes, comments, blocks, ...) when you add/edit them. If only a single format is available, there is no choice, and nothing changes with before. The default install (and the upgrade) contains a basic set of formats which should satisfy the average user's needs. 2) Filters have toggles Because now you might want to enable a filter only on some input formats, an explicit toggle is provided by the filter system. Modules do not need to worry about it and filters that still have their own on/off switch should get rid of it. 3) Multiple filters per module This was necessary to accomodate the next change, and it's also a logical extension of the filter system. 4) Embedded PHP is now a filter Thanks to the multiple input formats, I was able to move the 'embedded PHP' feature from block.module, page.module and book.module into a simple filter which executes PHP code. This filter is part of filter.module, and by default there is an input format 'PHP', restricted to the administrator only, which contains this filter. This change means that block.module now passes custom block contents through the filter system. As well as from reducing code duplication and avoiding two type selectors for page/book nodes, you can now combine PHP code with other filters. 5) User-supplied PHP code now requires <?php ?> tags. This is required for teasers to work with PHP code. Because PHP evaluation is now just another step in the filter process, we can't do this. Also, because teasers are generated before filtering, this would result in errors when the teaser generation would cut off a piece of PHP code. Also, regular PHP syntax explicitly includes the <?php ?> tags for PHP files, so it makes sense to use the same convention for embedded PHP in Drupal. 6) Filter caching was added. Benchmarking shows that even for a simple setup (basic html filtering + legacy URL rewriting), filtercache can offer speedups. Unlike the old filtercache, this uses the normal cache table. 7) Filtertips were moved from help into a hook_filter_tips(). This was required to accomodate the fact that there are multiple filters per module, and that filter settings are format dependant. Shoehorning filter tips into _help was ugly and silly. The display of the filter tips is done through the input format selector, so filter_tips_short() no longer exists. 8) A more intelligent linebreak convertor was added, which doesn't stop working if you use block-level tags and which adds <p> tags.
* - Patch #7968 by Adrian: use the complete URL as the cache ID to make Drupal'sDries Buytaert2004-08-06
| | | | caching work on virtual hosts.
* - #9287: More doxygen/documentation fixes by JonBobSteven Wittens2004-07-22
|