summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Patch #38611 by Neil: redo book administration.Dries Buytaert2005-11-23
| | | | The book module's current administration is actually a patchwork of one form per book page crammed into a table with another form at the bottom. This simply didn't work.
* - Patch #29151 by fgm: simplified SQL query in taxonomy_node_form().Dries Buytaert2005-11-23
|
* - Patch #38575 by Neil: fixed infinite loop in comment.module.Dries Buytaert2005-11-23
|
* - Patch #38349 by chx: form API bugfixes.Dries Buytaert2005-11-23
|
* - Patch by Neil: removed left-over css.Dries Buytaert2005-11-23
|
* - Patch #38349 by hunmonk:Dries Buytaert2005-11-22
| | | | | | | | 1. hook_form_validate_alter and hook_form_execute_alter have been eliminated. there usage was limiting and a bit confusing. now, only hook_form_alter remains 2. replacing those hooks are the #validate and #execute attributes. these can be used either when building the form in a module, or via hook_form_alter. these attributes are built in array form, to allow for flexibility in how they are called. for example, a module could simply add an element to the #validate array via hook_form_alter if it wished to perform additional validation, or it could redeclare the entire #validate array if it wanted to override any existing validation 3. attributes #validation_arguments and #execution_arguments have been added to allow args to be used w/ custom validation and execution functions. this are also declared in array format 4. renamed #valid attribute to #validation. this doesn't cause any conflicts, and makes the naming convention more consistent 5. renamed the existing #execute attribute associated w/ submit buttons to #submit
* - Patch #38412 by m3avrck: fixed problem with creating first account.Dries Buytaert2005-11-22
|
* - Patch #38491 by Neil: refactor comment viewing controls to _execute model.Dries Buytaert2005-11-22
|
* - Patch #35726 by asimmonds: post_process -> build_afterDries Buytaert2005-11-22
|
* - Patch #38296 by Ber: generate rel-tags for book pages. Makes it easier to ↵Dries Buytaert2005-11-22
| | | | browse in some browsers.
* - Patch #37766 by Thomas Ilsche: fixed date handling in XML-RPC backend.Dries Buytaert2005-11-21
|
* - Patch #35725 by drumm: improved conf_init() documentation.Dries Buytaert2005-11-21
|
* - Patch #37416 by Zen: make auto-completion of usernames work with short names.Dries Buytaert2005-11-21
|
* - Patch #35863 by chx: add link to forms API documentationDries Buytaert2005-11-21
|
* - Patch #37752 by chx and Richard: renamed #post_process to #after_build.Dries Buytaert2005-11-21
|
* #35725: Make site.com:80 work like site.comSteven Wittens2005-11-21
|
* - Patch #35724 by asimmonds: fixed handling of empty form fields.Dries Buytaert2005-11-21
|
* #36352: Don't prefix temporary table names after all.Steven Wittens2005-11-21
| | | | #36658: Make search query pgsql compatible.
* - Patch #35121 by m3avrck: fixed problem with list and description values ↵Dries Buytaert2005-11-21
| | | | aren't saved for uploaded files.
* - Patch #37401 by webchick: fixed dependency of date selection form element ↵Dries Buytaert2005-11-21
| | | | on profile module.
* - Making chx the forms API maintainer.Dries Buytaert2005-11-21
|
* - Patch #38248 by hunkmonk: updated the user login form to the forms API's ↵Dries Buytaert2005-11-21
| | | | _execute model.
* - Patch #35726 by asimmonds/chx: converted the comment module to the forms ↵Dries Buytaert2005-11-21
| | | | API's _execute model.
* - Patch #37926 by asimmonds/chx: fixed previewing nodes.Dries Buytaert2005-11-18
|
* - Patch #37824 by zen: added missing {} to SQL queries in updates.inc.Dries Buytaert2005-11-18
|
* - Patch #36828 by m3avrck: some MySQLi fixes and some PHP5 fixes.Dries Buytaert2005-11-18
|
* - Patch #37327 by Richard Archer: improved menu item 'create content' ↵Dries Buytaert2005-11-18
| | | | | | indications. Improves usability of the admin/menu page.
* - Patch #37915 by chx: improved readability of forms API.Dries Buytaert2005-11-18
|
* - Patch #37777 by asimmonds: form_id missing from rendered admin/node form.Dries Buytaert2005-11-17
|
* - Patch #37327 by Richard Archer: made the menu edit screen slightly less ↵Dries Buytaert2005-11-17
| | | | confusing.
* - Patch #37714 by asimmonds: fixed saving of blocks.Dries Buytaert2005-11-16
|
* - Patch #37738 by Junyor: fixed problem with Drupal not properly unsetting ↵Dries Buytaert2005-11-15
| | | | $user on logout.
* - Patch #34295 by assimonds: added missing defines to comment.module. ImprovesDries Buytaert2005-11-15
| | | | readability of the code.
* - Patch #28062 by Souvent22: make it possible to assign weights to contact ↵Dries Buytaert2005-11-14
| | | | form categories and fixed some small glitches.
* - Patch #36333 by Tobias Maier: make sure to enable the default theme.Dries Buytaert2005-11-14
|
* - Patch #37589 by Cvgbe: make prefix.sh work with PostgreSQL: prefix indices ↵Dries Buytaert2005-11-14
| | | | properly.
* - Patch #32669 by DriesK: split blocking users from 'adminsiter access'.Dries Buytaert2005-11-14
|
* - Patch #34295 by DrupalJapan and chx:Dries Buytaert2005-11-13
| | | | | + Fixed problem with configuration of comment display options. + Introduced defines for the various comment settings.
* - Patch #34514 by darius: fixed forms API glitches.Dries Buytaert2005-11-13
|
* - Patch #35524 by asimmonds / drewish: converted the custom block forms code ↵Dries Buytaert2005-11-13
| | | | to the forms API's execute model.
* - Patch #37400 by vwX/chx: fixed problem with methodHelpDries Buytaert2005-11-13
|
* - Patch #35575 by Richard, chx and Ber: system module no longer saves the ↵Dries Buytaert2005-11-13
| | | | files and tmp dir.:
* - Rollback an accidentical commit.Dries Buytaert2005-11-13
|
* #37390: Make welcome text link to admin/settingsSteven Wittens2005-11-13
|
* #36936 / #36937: PgSQL fixes for statisticsSteven Wittens2005-11-13
|
* - Add missing url()s around form actions (these would break without clean URLs)Steven Wittens2005-11-13
|
* #37378: Missing for _form_builder() in js uploadSteven Wittens2005-11-13
|
* - Patch #35644 by webchick: forms API simplificiations.Dries Buytaert2005-11-12
|
* - Patch #26249 by Morbus: improved handling of temporary files/directory.Dries Buytaert2005-11-12
| | | | | | | | If your module uses variable_get('file_directory_temp', ...) or variable_get('file_directory_path', ...) please update it to use the new API. A list of affected modules is available at http://drupal.org/node/26249#comment-54194.
* - SQL query maintenance: '%d' -> %d.Dries Buytaert2005-11-12
|