summaryrefslogtreecommitdiff
path: root/modules/block
Commit message (Collapse)AuthorAge
...
* - Patch #252013 by Eaton, pwolanin, Susurrus et al: drupal_render() now ↵Dries Buytaert2008-07-16
| | | | printes #markup, not #value.
* - Patch #212608 by Gábor Hojtsy, webchick, stefgosselin: fixed E_NOTICE on ↵Dries Buytaert2008-06-25
| | | | block administration.
* - Patch #247423 by boombatower: code style fixes for the tests.Dries Buytaert2008-05-30
|
* - Patch #101543 by webchick: document all constants.Dries Buytaert2008-05-26
|
* - Patch #257634 by Senpai and catch: code clean-upDries Buytaert2008-05-15
|
* - 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 #249546 by pwolanin: rip menu access inheritance -- was already ↵Dries Buytaert2008-04-23
| | | | committed to D6.
* - 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 #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 #232037 by pwolanin and flobruit: block_list() renders all blocks ↵Dries Buytaert2008-03-21
| | | | even on 404. Refactored the code a bit so ithere is a split between loading and rendering of blocks. By doing so, we are no longer forced to render _all_ blocks if we know they won't be shown. There is more room for improvement here, I believe, but this is an incremental improvement.
* - Patch #214271 by recidive: improved schema identation.Dries Buytaert2008-03-15
|
* - Patch #30984 by webchick, keith.smith, kkaefer, Crell et al: provide ↵Dries Buytaert2008-02-20
| | | | descriptions for permissions on the permission administration page.
* - Patch #221384 by webernet: update core compatibility to Drupal 7.Dries Buytaert2008-02-18
|
* #157652 by beginner, Steven Merrill and killes: block_user() had a global ↵Gábor Hojtsy2008-02-03
| | | | user object and a user parameter colliding
* #211742 by theborg, chx: detect and solve the problem when blocks are ↵Gábor Hojtsy2008-01-25
| | | | assigned to invalid regions (happens in theme development)
* #208991 follow up by dvessel: forgot to mark the blocks table with ↵Gábor Hojtsy2008-01-16
| | | | sticky-enabled
* #203482 by Desbeers: block module HTML typo in help (outside t())Gábor Hojtsy2007-12-24
|
* #203274 by Pasqualle: remove excessive witespace from our code (minor)Gábor Hojtsy2007-12-22
|
* #202473 by keith.smith: pre-RC1 spell checking on hopefully final textGábor Hojtsy2007-12-19
|
* #202425 by keith.smith: standardize reference to block placement page as ↵Gábor Hojtsy2007-12-19
| | | | 'blocks administration page' to avoid any confusion
* #192779 follow up by Lynn: only show enabled themes on block admin page ↵Gábor Hojtsy2007-12-19
| | | | *and* the admin theme (which might not be enabled)
* #199890 by gaele, keith.smith: improve block module help text, include ↵Gábor Hojtsy2007-12-18
| | | | description of drag and drop and better help about the throttle functionality; also comes in smaller chunks which makes it easier to translate and update later
* #199832 by theborg, Pasqualle: block title defined as NOT NULL, so requires ↵Gábor Hojtsy2007-12-18
| | | | a default empty string even if not set (fixes a theme notice but also a pgsql error)
* - Patch #164532 by catch, pwolanin, David Strauss, et al.: improve table ↵Dries Buytaert2007-12-18
| | | | indicies for common queries.
* #197641 follow up by moofie: make drag and drop handle text translatable and ↵Gábor Hojtsy2007-12-16
| | | | fix smaller bugs
* #192779 by gaele: (usability) only show theme tabs on the blocks page for ↵Gábor Hojtsy2007-12-16
| | | | enabled themes, for consistency with the theme settings page
* #200069 by keith.smith: new standard for 'more information' links in module ↵Gábor Hojtsy2007-12-14
| | | | help texts, as the handbook we referred to before was renamed
* #198579 by webernet and hswong3i: a huge set of coding style fixes, including:Gábor Hojtsy2007-12-08
| | | | | | | | - whitespaces at end of lines - indentation - control structure usage - whitespace in empty lines - phpdoc comment formatting
* - Patch #163246 by keith smith, freso, O Govinda, catch, webchick et al: ↵Dries Buytaert2007-11-26
| | | | fixed minor spelling issues and fixed spacing issues.
* - Patch #181066 by quicksketch et al: drag and drop of table rows on the ↵Dries Buytaert2007-11-14
| | | | block adminsitration page.
* - Patch #191282 by quicksketch: inconsistent database region for disabled ↵Dries Buytaert2007-11-14
| | | | blocks.
* - Patch #184742 by John Morahan: fixed PHP warning.Dries Buytaert2007-11-14
|
* #190128 by bjaspan and chx: fix _block_rehash() functionality on PostgreSQLGábor Hojtsy2007-11-07
|
* #80963 by chx with multiple contributors: remove deletion and database lock ↵Gábor Hojtsy2007-11-06
| | | | based block rehash code, replace it with simpler updates
* #187881 by mooffie: fix misnamed database table names in schema documentationGábor Hojtsy2007-11-04
|
* #184867 by deekayen, catch and keith.smith: fix some spelling errors in our ↵Gábor Hojtsy2007-10-21
| | | | source code and messages printed
* #183690 by Wim Leers: (developer improvement) abstract path matching to ↵Gábor Hojtsy2007-10-16
| | | | drupal_match_path() from block listing, so this gets reusable when path based matching is required
* - Patch #182950: fieldset massaging for usability.Dries Buytaert2007-10-12
|
* #180897 by sun and dvessel: fix various XHTML validity issues in Drupal by ↵Gábor Hojtsy2007-10-11
| | | | closing unclosed tags, avoiding empty table containers, and so on
* #164983 by multiple contributors: document the core database schemasGábor Hojtsy2007-10-10
|
* #181741 by quicksketch: fix AHAH throbber/progress bar issues and generalize ↵Gábor Hojtsy2007-10-10
| | | | progress display configuration to allow module developers to choose from the throbber and progress bar
* - Patch #181177 by John Morahan: updated TODO (documentation).Dries Buytaert2007-10-06
|
* - Added missing .install files. Forgot to commit those.Dries Buytaert2007-10-05
|
* - Patch #150245 by webchick, bjaspan, ralf, Arancaytar et al: move the ↵Dries Buytaert2007-10-05
| | | | .schema files into .install files to prevent mistakes.
* #157752 follow up patch by scor: fix two form menu callbacksGábor Hojtsy2007-10-05
|
* #157752 by quicksketch: extend AHAH functionality to most types of form ↵Gábor Hojtsy2007-10-05
| | | | elements, without writing JavaScript. Also AHAH enable the blocks admin page. (part 2)
* #157752 by quicksketch: extend AHAH functionality to most types of form ↵Gábor Hojtsy2007-10-05
| | | | elements, without writing JavaScript. Also AHAH enable the blocks admin page.
* #167284 by Heine and pwolanin: proper field type placeholders in IN() ↵Gábor Hojtsy2007-09-27
| | | | queries, setting a best practice to avoid vulnerabilities
* #162432 by bjaspan and chx: serial columns need their keys defined in ↵Gábor Hojtsy2007-09-14
| | | | db_change_field() and friends in MySQL