summaryrefslogtreecommitdiff
path: root/includes
Commit message (Collapse)AuthorAge
* - Patch #19442 by chx: cache_set sometimes failed.Dries Buytaert2005-05-12
| | | | | TODO: this patch lets us clean up more code in code! Let's have a look at this ...
* - 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.
* - Patch #22307 by Robert: added missing ')'Dries Buytaert2005-05-10
|
* - User module improvements: added an 'access' column to the users-table toDries Buytaert2005-05-07
| | | | | | | | | | | | | keep track of the user's last access. In turn, this allowed me to: 1. Optimize the "Who's online" block. On drupal.org, the "Who's online" block requires 32 SQL queries. With this patch, only 2 queries are left (eliminated 30 SQL queries), and one of the two remaining queries became appr. 20 times faster. 2. Correct the "Last access" column in the user administration overview table. The presented data was not accurate, which led to the column being removed. You can now sort users by 'last access'.
* - #19621: More sensible status messages for forum admin ("created forum" ↵Steven Wittens2005-05-07
| | | | instead of "created term").
* - Patch #22118 by Robin Monks: made file_transfer() more robust.Dries Buytaert2005-05-06
|
* - Patch #21397 by jjeff: fixed behavior of theme_image with regard to ↵Dries Buytaert2005-05-06
| | | | attributes.
* - Patch #15595 by Stefan and Djun: improved status messages.Dries Buytaert2005-05-05
| | | | | TODO: we should write down a couple guidelines for these document them in the PHPDoc code of drupal_set_message()! .
* - Modified patch #21980 by willmoy: made form_group() accept HTML attributes.Dries Buytaert2005-05-05
|
* - Patch #21855 by TDobes: the recent commit of phptemplate caused a number ↵Dries Buytaert2005-05-05
| | | | | | | | | | | of problems for non-phptemplate themes. A patch is attached to address these issues. Changes include: * parsing of the primary/secondary links has been moved out of phptemplate and into theme_get_setting. * unnecessary and XHTML-invalidating duplicate div#help removed from themes/bluemarine/page.tpl.php (this is already generated by theme_help) * weird generation of the "edit primary/secondary links" messages removed from bluemarine and placed in theme.inc * unnecessary changes to themes/bluemarine/style.css rolled back (the phptemplate bluemarine had an older version of style.css than the one in core) * chameleon updated to work with new link scheme (passes links through theme_links)
* - Removed the Xtemplate engine and added the PHPTemplate engine.Dries Buytaert2005-05-04
| | | | | - Converted the Bluemarine theme from XTemplate to PHPTemplate. - Moved the the Pushbutton theme and the Xtemplate engine to the contributions repository.
* - Patch #21517 by Stefan and TDobes: theme system improvements.Dries Buytaert2005-04-30
|
* - #20910: Centralize print theme page fixesSteven Wittens2005-04-28
|
* - Patch #21249 by patryk: made SQL query work with PostgreSQL by correcting ↵Dries Buytaert2005-04-25
| | | | a 'GROUP BY'-clause.
* - Patch 20910 by chx: centralize print theme page.Dries Buytaert2005-04-24
|
* - Usability improvement: made the markers easier to understand.Dries Buytaert2005-04-24
|
* - Patch #20235 by chx: fixed problem with db_set_active().Dries Buytaert2005-04-14
|
* - Patch #12794 by assimonds: make sure the node module is optional.Dries Buytaert2005-04-13
|
* - Removed some dead code.Dries Buytaert2005-04-12
|
* - #4166: Respect 'access userlist' permission for profile data.Steven Wittens2005-04-11
|
* - 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.)
* - Missing check_url() in form().Steven Wittens2005-04-10
|
* - Patch #19609 by Daniel: fix problem with database prefixingDries Buytaert2005-04-08
|
* - Fixed bug #19868: undefined variable.Dries Buytaert2005-04-08
|
* - #19874: Fix aggregator escaping after check_plain bugSteven Wittens2005-04-07
| | | | - Fix bug in decode_entities() with double-escaped entities.
* - Patch #13503 by chx: made the menu cache locale aware.Dries Buytaert2005-04-07
|
* - Patch #18828 by me, jbond and TDobes: moves the textarea hook for 'pre' ↵Dries Buytaert2005-04-06
| | | | between the title and the textarea. This makes it easier for simply textarea enhancements like quicktags to add a toolbar just above the textarea.
* - Patch #19933 by willmoy: stop output buffering once the page has been ↵Dries Buytaert2005-04-05
| | | | rendered.
* - Patch #19895 by Moshe: currently modules can inadvertently load all other ↵Dries Buytaert2005-04-03
| | | | modules during the bootstrap. this is easy to do by calling a node_load() or module_invoke_all(). this degrades performance for anonymous users when caching is enabled. With this patch, the module writer will see an php error like "Call to undefined function: drupal_set_html_head()" if this is attempted. basically, unavailable functions are actually reported as unavailable.
* - #19873: drupal_specialchars -> check_plainSteven Wittens2005-04-02
|
* - 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
|
* - Patch #19590 by Moshe: lazy initialization of the theme system. ImprovesDries Buytaert2005-03-29
| | | | | performance of pages that don't need the theme system (such as RSS feeds) and makes it easier to set a custom theme.
* - #19517: Fix GD2 toolkit error.Steven Wittens2005-03-29
| | | | - Tweak code style.
* - Patch #18700 by Stefan and James: removed GD1 calls, improved error/status ↵Dries Buytaert2005-03-23
| | | | reporting, etc.
* - Patch #19212 by chx: removed unused variables, and fixed the error reportingDries Buytaert2005-03-21
| | | | in form_file().
* - #19130: Handle trailing dot in hostname when scanning for config.Steven Wittens2005-03-19
|
* - #5900: Fix browser caching issues.Steven Wittens2005-03-18
|
* - #18597: Resolve conflict in column name between queue.module and poll.module.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.)
* - Removed . We'll reintroduce it when really necessary.Dries Buytaert2005-03-08
|
* - Patch #16914 by chx: avoid that putting a .theme file directly in './themes'Dries Buytaert2005-03-08
| | | | breaks your Drupal. Only themes in './themes/subdir' are picked up now.
* - Patch #18437 by Mathias: Drupal doesn't allow URL aliases that map to ↵Dries Buytaert2005-03-06
| | | | Userland Manila posts since they usually contain the '$' and are considered an invalid URL. This patch allows '$' in an URL and thus an alias. It also resolves a disparity between the 'allowable characters' of absolute and relative URLs. As far as I can tell, those parts of the regexp should be the same.
* #18329: Unify confirmation messages (and make them themable)Steven Wittens2005-03-03
|
* - Ignore PHP5's strict warnings for now. The real solution is to rewrite ↵Dries Buytaert2005-03-03
| | | | both xmlrpc.inc and xtemplate.inc.
* - Moving commentSteven Wittens2005-03-03
|
* - #18319: Move encoding conversion out of drupal_xml_parser_create() so it ↵Steven Wittens2005-03-03
| | | | can be used by modules.
* - Patch #17770 by chx: fixed module_invoke() and module_invoke_all() not to ↵Dries Buytaert2005-03-01
| | | | use NULL defaults (bugfix) + removed the limitation on the number of paramaters that can be used.
* - Simplified the session code (PostgreSQL update).Dries Buytaert2005-03-01
|
* - Missing '>' (reported by Goba)Steven Wittens2005-03-01
|