summaryrefslogtreecommitdiff
path: root/includes
Commit message (Collapse)AuthorAge
* First tab improvements by Adrian:Dries Buytaert2004-06-19
| | | | | | | | + Changed menu.inc to generate two separate lists instead of nested lists: that seems to be the only alternative to get rid of absolute positioning. + Changed the tabs code to be more sexy and put the code in misc/drupal.css so all themes are automagically updated.
* Tabs patch!Dries Buytaert2004-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 Mannes2004-06-04
| | | | and form_radios().
* - Commited patch #4878: Support file uploads via blogapi.Kjartan Mannes2004-06-04
|
* - Patch #4950 by Stefan (and Morbus): made watchdog messages translatable.Dries Buytaert2004-06-02
|
* - Removing early experimental tab code that slipped in.Kjartan Mannes2004-06-02
| | | | | - Fixing a copy paste error in file.inc. - Some double => single quote changes.
* - Fixed tablesort_sql() so it returns the proper order by sql.Kjartan Mannes2004-06-02
|
* - Patches #6863 by Kristjan and Moshe: implemented pretty tables and fixed ↵Dries Buytaert2004-06-02
| | | | some tablesort glitches.
* - Patch #8105 by mathias: made the menu system aware of path aliases.Dries Buytaert2004-06-01
|
* - Improved form handling.Dries Buytaert2004-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 #6863 by Moshe: add 'class="active"' to the table elements ofDries Buytaert2004-05-29
| | | | the active column.
* - Patch #8089 by matthias: make sure aliased links can be flagged as 'active'.Dries Buytaert2004-05-28
|
* - Patch #7967 by matthias: small patch to improve the robustness of the ↵Dries Buytaert2004-05-25
| | | | tablesorting code.
* - Patch #7725 by Marius: fixed glitch in e-mail address validation code. A ↵Dries Buytaert2004-05-24
| | | | subset of all e-mail addresses was rejected as valid.
* - Patch #7966 by Goba: The box has it's content wrapped in a paragraph now, ↵Dries Buytaert2004-05-24
| | | | which is not suitable for the purposes the box is used in. Boxes are used to wrap tables or forms with titles. The comment module uses theme(box, ...) to wrap forms into boxes for example. Therefore using a paragraph does not make the output valid XHTML and a div is needed.
* - Modified patch #7958 by Adrian: store status messages in a session so they ↵Dries Buytaert2004-05-22
| | | | can persist when redirection is used.
* - Made it possible for anonymous users to leave their name, e-mail addressDries Buytaert2004-05-18
| | | | and the URL of their homepage. Patch by Pablo.
* - Patch #6682 by jhriggs: added form_checkboxes(), much like form_radios()Dries Buytaert2004-05-15
| | | | and updated some modules to take advantage of it.
* - Added support for multiple user roles. Patch by Jim Hriggs.Dries Buytaert2004-05-10
|
* - Menu and code improvements by JonBob.Dries Buytaert2004-05-08
|
* - Patch #7575 by ax: not in global scope, making updates fail.Dries Buytaert2004-05-06
|
* - Patch #7577 by JonBob: various code style improvements to the statisticsDries Buytaert2004-05-05
| | | | | | | | | | | | | module. + Usages of to print titles have been replaced by proper drupal_set_title() calls. + Many arg() usages dropped in favor of meaningful parameters. + Doxygen comments standardized and expanded. + Some grammatical corrections to help text. + Broken /statistics page linked from page navigation restored. + Fixed small bug in menu.inc pertaining to menu callbacks without arguments.
* Adding support for <optgroup> through form_select. See the PHPdoc for usage.Steven Wittens2004-05-05
|
* Standard text/html HTTP Content-Type was not cached, causing encoding issues ↵Steven Wittens2004-05-03
| | | | on some server configurations.
* - Patch by Adrian: added support for multiple database connections.Dries Buytaert2004-04-30
|
* - Removed the menu cache. Too many problems with it.Dries Buytaert2004-04-27
|
* - Patch #6887 by drumm: fixed drupal_http_requestDries Buytaert2004-04-27
|
* - Patch #7403 by jhriggs: the required-form-items patch that hit HEAD a few ↵Dries Buytaert2004-04-26
| | | | days back has an erroneous assignment in form_radios().
* - Bugfix: strip all HTML from the feed description.Dries Buytaert2004-04-24
|
* - Patch #6791: mark required fields. Modified patch by Michelangelo.Dries Buytaert2004-04-24
|
* - Patch #6498 by jhriggs: <label> requires opening and closing tags.Dries Buytaert2004-04-21
|
* - Patch #6887 by Gerhard: fget -> fread for sake of compatibility.Dries Buytaert2004-04-21
|
* - Added support for 403 handling. Patch by JonBob. As a side benefit,Dries Buytaert2004-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.
* - Patch #7161 by jhriggs: fixed bug with 'last page' functionality.Dries Buytaert2004-04-15
|
* - Patch by JonBob/Jonathan: reworked the menu system so that menus areDries Buytaert2004-04-15
| | | | | | | | | | | | configurable! Menu items can be disabled, repositioned, added and so on. Upgrading to requires you to run update.php. This functionality depricates some of the 'navigation modules' in the contributions repository. Furthermore, modules can now 'suggest' menu items and site adminstrators can choose to enable them. Modules in the contributions repository should try to take advantage of this.
* Truncate UTF-8 patch. Introduced a new function truncate_utf8() for chopping ↵Steven Wittens2004-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 Buytaert2004-04-12
| | | | (I'm back from vacation.)
* - Partial patch 6680 by Brian: fixed invalid XHTML in search result page.Dries Buytaert2004-03-31
|
* - Patch #6774 by jhriggs: fixed tablesort sort order reversal errors.Dries Buytaert2004-03-30
|
* - Fixed bug #6697: improved the URL validation functionDries Buytaert2004-03-27
|
* - Patch #6517 by kika: drupal_http_request() fails to open feed because on ↵Dries Buytaert2004-03-24
| | | | PHP 4.1.2. Also updated file.inc.
* - Ported patch #6470 by Brian: fixed more XHTML erros related to multiple ↵Dries Buytaert2004-03-24
| | | | selects.
* - Profile module improvements: added a URL-type field to the profile module.Dries Buytaert2004-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.
* - Tracker and forum module improvements!Dries Buytaert2004-03-20
| | | | | Note: the CSS of the tracker page has changed. Some CSS files still have to be updated.
* - Patch #6402 by TDobes: removed MSSQL example from conf.php as MSSQL is no ↵Dries Buytaert2004-03-12
| | | | longer supported.
* - Patch 6345 by Chris: the 4th argument of form() is misnamed and used 0 as ↵Dries Buytaert2004-03-11
| | | | default value
* - Fixed bug #6345: drupal_attributes() adds redundant space.Dries Buytaert2004-03-10
|
* - Improved drupal_not_found()Dries Buytaert2004-03-08
|
* - Removed broken throttle.Dries Buytaert2004-03-01
|
* - Fixed constants problem.Kjartan Mannes2004-02-27
| | | | - Made filename modification more logical when there was no extension.