Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #8344 by Kjartan: drupal_http_request() did not always handle EOLs | Dries Buytaert | 2004-06-21 |
| | | | | correctly. | ||
* | - Patch #8670 by asimmonds: more spelling fixes. | Dries Buytaert | 2004-06-21 |
| | |||
* | Tabs patch! | Dries Buytaert | 2004-06-18 |
| | | | | | | | | | | | | | | | | | | CHANGES ------- + Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page. + Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'. + Grouped settings. All settings have been grouped under 'administer > settings'. TODO ---- + Update core themes: only Xtemplate default supports tabs and even those look ugly. Need help. + Update contributed modules. The menu() hook changed drastically. Updating your code adhere the new menu() function should be 90% of the work. Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x'). | ||
* | - Commiting patch #8288: Let modules pass $attributes to form_checkboxes() ↵ | Kjartan Mannes | 2004-06-04 |
| | | | | and form_radios(). | ||
* | - Patch #4950 by Stefan (and Morbus): made watchdog messages translatable. | Dries Buytaert | 2004-06-02 |
| | |||
* | - Removing early experimental tab code that slipped in. | Kjartan Mannes | 2004-06-02 |
| | | | | | - Fixing a copy paste error in file.inc. - Some double => single quote changes. | ||
* | - Patch #8105 by mathias: made the menu system aware of path aliases. | Dries Buytaert | 2004-06-01 |
| | |||
* | - Improved form handling. | Dries Buytaert | 2004-05-31 |
| | | | | | | | | | | | | | | | | | | | | | + Introduced two new functions: 1. form_set_error($name, $message): files an error against the form element with the specified $name. 2. form_has_errors(): returns true if errors has been filed against form elements. + Updated the form handling: 1. The form_ functions will add 'class="error"' when a form field has been found to be erroneous. 2. The error message is passed to theme_form_element() when the particular form field has been found to be erroneous. + I updated the user and profile module to take advantage of these new functions. + IMPORTANT: the _user() hook changed. The 'validate' case should no longer retun an error message when something goes wrong but should set it with form_set_error(). | ||
* | - Patch #8089 by matthias: make sure aliased links can be flagged as 'active'. | Dries Buytaert | 2004-05-28 |
| | |||
* | - Patch #7725 by Marius: fixed glitch in e-mail address validation code. A ↵ | Dries Buytaert | 2004-05-24 |
| | | | | subset of all e-mail addresses was rejected as valid. | ||
* | - Modified patch #7958 by Adrian: store status messages in a session so they ↵ | Dries Buytaert | 2004-05-22 |
| | | | | can persist when redirection is used. | ||
* | - Made it possible for anonymous users to leave their name, e-mail address | Dries Buytaert | 2004-05-18 |
| | | | | and the URL of their homepage. Patch by Pablo. | ||
* | - Patch #6682 by jhriggs: added form_checkboxes(), much like form_radios() | Dries Buytaert | 2004-05-15 |
| | | | | and updated some modules to take advantage of it. | ||
* | Adding support for <optgroup> through form_select. See the PHPdoc for usage. | Steven Wittens | 2004-05-05 |
| | |||
* | Standard text/html HTTP Content-Type was not cached, causing encoding issues ↵ | Steven Wittens | 2004-05-03 |
| | | | | on some server configurations. | ||
* | - Patch #6887 by drumm: fixed drupal_http_request | Dries Buytaert | 2004-04-27 |
| | |||
* | - Patch #7403 by jhriggs: the required-form-items patch that hit HEAD a few ↵ | Dries Buytaert | 2004-04-26 |
| | | | | days back has an erroneous assignment in form_radios(). | ||
* | - Bugfix: strip all HTML from the feed description. | Dries Buytaert | 2004-04-24 |
| | |||
* | - Patch #6791: mark required fields. Modified patch by Michelangelo. | Dries Buytaert | 2004-04-24 |
| | |||
* | - Patch #6887 by Gerhard: fget -> fread for sake of compatibility. | Dries Buytaert | 2004-04-21 |
| | |||
* | - Added support for 403 handling. Patch by JonBob. As a side benefit, | Dries Buytaert | 2004-04-21 |
| | | | | | | | | administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages. | ||
* | Truncate UTF-8 patch. Introduced a new function truncate_utf8() for chopping ↵ | Steven Wittens | 2004-04-15 |
| | | | | off strings at unsure locations, without risking incomplete UTF-8 data. | ||
* | - Patch #6947 by Ax: fixed a Doxygen warning, fixed some uninitialized varables. | Dries Buytaert | 2004-04-12 |
| | | | | (I'm back from vacation.) | ||
* | - Partial patch 6680 by Brian: fixed invalid XHTML in search result page. | Dries Buytaert | 2004-03-31 |
| | |||
* | - Fixed bug #6697: improved the URL validation function | Dries Buytaert | 2004-03-27 |
| | |||
* | - Patch #6517 by kika: drupal_http_request() fails to open feed because on ↵ | Dries Buytaert | 2004-03-24 |
| | | | | PHP 4.1.2. Also updated file.inc. | ||
* | - Ported patch #6470 by Brian: fixed more XHTML erros related to multiple ↵ | Dries Buytaert | 2004-03-24 |
| | | | | selects. | ||
* | - Profile module improvements: added a URL-type field to the profile module. | Dries Buytaert | 2004-03-21 |
| | | | | | We can use this for the 'URL of homepage' field on drupal.org. URL fields are rendered as links and are being validated. | ||
* | - Patch 6345 by Chris: the 4th argument of form() is misnamed and used 0 as ↵ | Dries Buytaert | 2004-03-11 |
| | | | | default value | ||
* | - Fixed bug #6345: drupal_attributes() adds redundant space. | Dries Buytaert | 2004-03-10 |
| | |||
* | - Improved drupal_not_found() | Dries Buytaert | 2004-03-08 |
| | |||
* | - Removed broken throttle. | Dries Buytaert | 2004-03-01 |
| | |||
* | Improved <label> patch: got rid of ID's by implicit association, and made ↵ | Steven Wittens | 2004-02-24 |
| | | | | radio/check labels non-bold again. | ||
* | - Patch by Steven: added <label>s to checkboxes and radio buttons. | Dries Buytaert | 2004-02-23 |
| | |||
* | - Fixed bug #5977: Date translation screwed. | Kjartan Mannes | 2004-02-21 |
| | | | | - Fixed '\n' => "\n". | ||
* | - Added a short snippet to drupal_xml_parser_create() which invokes iconv() ↵ | Steven Wittens | 2004-02-17 |
| | | | | to convert unsupported encodings. | ||
* | - Patch 5592 by Goba: introduced a new function, drupal_map_assoc(). | Dries Buytaert | 2004-02-12 |
| | |||
* | - Patch 4902 by Goba: | Dries Buytaert | 2004-02-11 |
| | | | | | | | | | | | | | + only adds an optional parameter to url() and l(), so individual links can be set to be absolute + modifies drupal_goto() to accept the parameters of url() without the $absolute parameter, so cleaner invocations can be used + rework of some code in node_feed, making it much better to look at (the current code uses foreach with an immediate brake to get the first key of the associative array, geeeeez) + added xml:base to the rss tag generated by node_feed() + set all user mail URLs to be absolute + fix a small fragmented URL in user.module | ||
* | - Modified format_date() to handle timezones properly. | Kjartan Mannes | 2004-02-08 |
| | |||
* | - Patch #5708 by Goba: moved the URL aliasing functions to a common place, so | Dries Buytaert | 2004-02-08 |
| | | | | | | they will be part of the same documentation group, as well as created a new 'formatting functions' group and added a lot of docs for them. Also fixed some small errors reported by the doxygen parser. | ||
* | - Subset of patch 5613 by Goba: fixed some translation issues. | Dries Buytaert | 2004-02-05 |
| | |||
* | - Fixed bug 5532: search broken if any subsearch returns without results. | Dries Buytaert | 2004-02-01 |
| | | | | Patch by Goba. | ||
* | - Patch #5448 by pz: removed code duplication from theme.inc. | Dries Buytaert | 2004-01-29 |
| | |||
* | - Patch 4332 by Goba: eliminate compose tips module. | Dries Buytaert | 2004-01-27 |
| | |||
* | - Patch #5393 by Goba: changes the search hook return value, and requires an ↵ | Dries Buytaert | 2004-01-26 |
| | | | | | | | | | | | array containing two elements, the first being the requested title, and the second being the result list. Advantages: * Cleaner search code in common.inc * Po extraction is possible and works fine * No hardcoded exceptions for node and comment modules, since any module can return results in order of relevance (or another order) | ||
* | - Improvement #5388: removed unnecessary SQL queries when no URL aliases are ↵ | Dries Buytaert | 2004-01-25 |
| | | | | defined. | ||
* | - Patch #5351 by Kyber: fixed bug in field_get(). | Dries Buytaert | 2004-01-23 |
| | |||
* | - Added missing permission check. Patch by Ax. | Dries Buytaert | 2004-01-21 |
| | | | | - Added a $granularity field to format_interval(). | ||
* | - Fixed bug 5247: active link marking invalidates HTML. Patch by Goba. | Dries Buytaert | 2004-01-19 |
| | |||
* | - Fixed incomplete input checking. | Dries Buytaert | 2004-01-17 |
| |