summaryrefslogtreecommitdiff
path: root/includes
Commit message (Collapse)AuthorAge
* - Patch #255415 by boombatower and flobruit: fixed a bug illustrated by the ↵Dries Buytaert2008-05-09
| | | | XML-RPC tests.
* - Patch #256001 by bjaspan: pgsql driver does not handle unsigned numeric ↵Dries Buytaert2008-05-09
| | | | fields.
* - Patch #200685 by boombatower, dvessel, et al: convert bluemarine theme to ↵Dries Buytaert2008-05-07
| | | | tableless layout.
* - Patch by me: rename xmlrpc.inc.test to xmlrpc.test for consistency.Dries Buytaert2008-05-07
|
* - Patch #243967 by justinrandell: first very basic test for the registry's ↵Dries Buytaert2008-05-07
| | | | file parsing.
* - Patch #221964 by justinrandall: removed left-over code.Dries Buytaert2008-05-07
|
* - Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, ↵Dries Buytaert2008-05-06
| | | | | | | | | | | flobruit et al. Can you say 'registry'? Drupal now maintains an internal registry of all functions or classes in the system, allowing it to lazy-load code files as needed (reducing the amount of code that must be parsed on each request). The list of included files is cached per menu callback for subsequent loading by the menu router. This way, a given page request will have all the code it needs but little else, minimizing time spent parsing unneeded code.
* - Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, ↵Dries Buytaert2008-05-06
| | | | | | | | | | | flobruit et al. Can you say 'registry'? Drupal now maintains an internal registry of all functions or classes in the system, allowing it to lazy-load code files as needed (reducing the amount of code that must be parsed on each request). The list of included files is cached per menu callback for subsequent loading by the menu router. This way, a given page request will have all the code it needs but little else, minimizing time spent parsing unneeded code.
* - Patch #251473 by webchick, chx, et al: one step closer to running tests in ↵Dries Buytaert2008-05-06
| | | | the includes directory. Not working yet.
* - Modified patch #230374 by killes, jakeg, Eaton et al: corrected problem ↵Dries Buytaert2008-05-05
| | | | with form API caches not being flushed. This could lead to performance issues.
* - Patch #249571 by pwoladin: primary/secondary links don't get ↵Dries Buytaert2008-05-05
| | | | 'active-trail' class.
* - Patch #227830 by JohnAlbin: link attributes added to l() incorrectly.Dries Buytaert2008-05-02
|
* - Patch #231132 by snufkin: fixed invalid XML-RPC error messages due to HTML ↵Dries Buytaert2008-04-28
| | | | tags being inserted in the message string.
* - Patch #251758 by Stefan, dvessel, quicksketch et al: clean up Garland's ↵Dries Buytaert2008-04-28
| | | | page.tpl.php.
* - Patch #249546 by pwolanin: rip menu access inheritance -- was already ↵Dries Buytaert2008-04-23
| | | | committed to D6.
* - Patch #230932 by ryanlath: file_scan_directory() didn't scan the directory ↵Dries Buytaert2008-04-23
| | | | called '0'.
* - Patch #249941 by John Morahan: fixed incorrect parameters of watchdog() calls.Dries Buytaert2008-04-23
|
* - Added a test framework to Drupal along with a first batch of tests forDries Buytaert2008-04-20
| | | | | | | | | | | | | | | | | | | | | | | | | | Drupal core! This is an important milestone for the project so enable the module and check it out ... :) Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran Lal, Moshe Weitzman, and the many other people that helped with testing over the past years and that drove this home. It all works but it is still rough around the edges (i.e. documentation is still being written, the coding style is not 100% yet, a number of tests still fail) but we spent the entire weekend working on it in Paris and made a ton of progress. The best way to help and to get up to speed, is to start writing and contributing some tests ... as well as fixing some of the failures. For those willing to help with improving the test framework, here are some next steps and issues to resolve: - How to best approach unit tests and mock functions? - How to test drupal_mail() and drupal_http_request()? - How to improve the admin UI so we have a nice progress bar? - How best to do code coverage? - See http://g.d.o/node/10099 for more ...
* - Patch #245504 by catch, David_Rothstein, Freso, et al: removed the ↵Dries Buytaert2008-04-16
| | | | throttle module from Drupal core.
* - Patch #245904 by boombatower: fixed E_NOTICE warning in the XML-RPC library.Dries Buytaert2008-04-14
|
* - Patch #88892 by darthsteven et al: improved the PHPdoc of ↵Dries Buytaert2008-04-14
| | | | form_set_value(). Great work. Much better. :)
* - Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long ↵Dries Buytaert2008-04-14
| | | | discussion we've decided to make the concatenation operator consistent with the other operators.
* - Patch #189568 by dvessel: don't include a CSS file in the aggregated CSS ↵Dries Buytaert2008-04-10
| | | | output when that file is overwritten by a theme-specific CSS file.
* - Patch #228594 by catch et al: removed access rule functionality from core.Dries Buytaert2008-04-08
| | | | | | | | | | | The access rules capability of user module has been stripped down to a simple method for blocking IP addresses. E-mail and username restrictions are now available in a contributed module. IP address range blocking is no longer supported and should be done at the server level. This patch is partly motiviated by the fact that at the usability testing, it frequently came up that users went to "access rules" when trying to configure their site settings.
* - Patch #240387 by matt2000 et al: move 'content types' to 'site building' ↵Dries Buytaert2008-04-06
| | | | per the UMN usability study results.
* - Patch #234785 by Rowanw, yoroy, flobruit, et al: usability: improve ↵Dries Buytaert2008-04-02
| | | | visibility of the 'more help' link by adding an icon.
* - Patch #234403 by Gabor, Bevan and me: drupal_mail_send() had problems with ↵Dries Buytaert2008-04-02
| | | | linebreaks headers.
* - Oops, I forgot to add this file to CVS when I committed the secure ↵Dries Buytaert2008-04-01
| | | | password hashing patch last night. Mea culpa.
* - Patch #29706 by pwolanin, solardiz, et al: more secure password hashing.Dries Buytaert2008-03-31
| | | | | | | | | | | | | | | | | | | This is a big and important patch for Drupal's security. We are switching to much stronger password hashes that are also compatible with the Portable PHP password hashing framework. The new password hashes defeat a number of attacks, including: - The ability to try candidate passwords against multiple hashes at once. - The ability to use pre-hashed lists of candidate passwords. - The ability to determine whether two users have the same (or different) password without actually having to guess one of the passwords. Also implemented a pluggable password hashing API (similar to how an alternate cache mechanism can be used) to allow developers to readily substitute an alternative hashing and authentication scheme. Thanks all!
* - Patch #239958 by Steve Dondley: make the explicit cache clearing ↵Dries Buytaert2008-03-31
| | | | functionality reload the theme's .info file. (We're back from a vacation in the French Alpes, BTW! Time to catch up with patches.)
* - Patch #234699 by hass: the active CSS class was not always added for the ↵Dries Buytaert2008-03-25
| | | | active menu item.
* - Patch #220827 by Arancaytar et al: menu system phpdoc improvements.Dries Buytaert2008-03-21
|
* - Patch #218513 by Pancho: Doxygen formatting fixes.Dries Buytaert2008-03-19
|
* - Patch #222578 by pwolanin: alter drupal_to_js() to use json_encode().Dries Buytaert2008-03-17
|
* - Patch #226555 by jvandyk, vladimir, rok, et al: remove E_NOTICE.Dries Buytaert2008-03-15
|
* - Patch #234403 by alienbrain: drupal_mail_send() should use CRLFs instead ↵Dries Buytaert2008-03-15
| | | | of LFs in e-mail headers.
* - Patch #117748 by pwolanin: made account creation work again.Dries Buytaert2008-03-15
|
* - Patch #231587 by pwolanin et al: fixed scalability issue in the menu system.Dries Buytaert2008-03-14
|
* - Patch #216813 by pwolanin et al: fixed upgrade path for primary links and ↵Dries Buytaert2008-02-23
| | | | navigation.
* - Patch #220953 by pwolanin: fixed bug in _menu_navigation_links_rebuild().Dries Buytaert2008-02-23
|
* - Patch #212918 by chx: fixed SQL queries on mysqli.Dries Buytaert2008-02-21
|
* - Patch #224142 by jvandyk: tiny performance improvement for theme().Dries Buytaert2008-02-20
|
* - Patch #189568 by dvessel et al: overriding of module CSS didn't always work.Dries Buytaert2008-02-20
|
* - Patch #181411 by Moshe: use schema API for saving and updating user records.Dries Buytaert2008-02-18
|
* - Patch #196862 by earnie et al: make drupal_lookup_path() a tad faster by ↵Dries Buytaert2008-02-18
| | | | eliminating an SQL query.
* - Patch #203846 by pwolanin: remove PHP4 compatibility code.Dries Buytaert2008-02-17
|
* - Patch #218116 by greggles: document session_save_session().Dries Buytaert2008-02-17
|
* - Patch #218915 by keith and jakeg: fixed typo in watchdog() call.Dries Buytaert2008-02-17
|
* - Patch #212918 by pwolanin: enable MySQL's ANSI-mode. We can chose to ↵Dries Buytaert2008-02-17
| | | | disable this when we ship Drupal 7, but it is really helpful during the development cycle.
* - Patch #222385 by pwolanin: removed drupal_clone() hack in favor of the ↵Dries Buytaert2008-02-17
| | | | real PHP5 clone().