summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* - Performance improvement: changed a LEFT JOIN to an INNER JOIN. Patch #157Dries Buytaert2003-11-19
| | | | by Gerhard.
* - Block and theme improvements. Patch by Ax.Dries Buytaert2003-11-19
| | | | | | | | | | | | | | | + block_list() (in block.module): returns an array of block objects for $region. + theme_blocks() (in theme.inc): uses block_list() and theme("block") to actually render them. Advantages: + Decouples blocks content and layout, allows block_list() to be used for non-output purposes (think "pull"). + Unifies naming in theme.inc: render_blocks()) didn't really fit there. + Puts block_list() in blocks.module where it logically belongs. - Removed some cruft from the Xtemplate theme. Patch by Ax.
* - Fixes bug #4100: First visit to site results in 'access denied' page.Kjartan Mannes2003-11-18
| | | | | - Fixed sess_write(). - Removed dead code in index.php.
* - Admin module clean-up. Patch by Kjartan. (The status function should beDries Buytaert2003-11-18
| | | | a theme_ function really.)
* - Improved module loading when serving cached pages. Moshe's bootstrap patch.Dries Buytaert2003-11-18
| | | | - Used legend and fieldset tags for the configuration page.
* - Improved form items: added <label> tags to improve accessibility and addedDries Buytaert2003-11-17
| | | | | theme_form_element() function to improve themeability. I left form_item() and the calls to form_item() intact for now.
* - Move the jabber module to the contributions repository.Dries Buytaert2003-11-15
|
* - Replaced the bloggerapi module by the blogapi module writen by James.Dries Buytaert2003-11-15
|
* - Moving the cloud module to the contributions repository.Dries Buytaert2003-11-15
|
* - Made the comment module themable. Patch by CodeMonkeyX.Dries Buytaert2003-11-15
|
* - Fixed theme glitch.Dries Buytaert2003-11-14
|
* - Fixed theme problem.Dries Buytaert2003-11-13
|
* - table(...) -> theme("table", ...)Dries Buytaert2003-11-13
|
* - Fixed bug #4080: comments shown against wrong node. Reported by chrish.Dries Buytaert2003-11-12
|
* - Made the revisions a separate page/tab.Dries Buytaert2003-11-11
|
* - Added missing break statements. Patch by Chris. Fixes bug 4055.Dries Buytaert2003-11-11
|
* User module patch by Kjartan:Dries Buytaert2003-11-10
| | | | | | | | | | | | | | | | | | | - Optimized user_external_load(), only need to fetch the data once. - Removed unused functions: user_get() user_set() theme_menu_list() - Fixed user_validate_name() to not accept \. - Modified user_validate_name() to use alnum, which varies depending on the system locale. - Optimized user_validate_name() to not use unnecessary regular expressions. - Optimized user_access() by using less logic to fetch permissions and cache. - Removed uncessary logic from user_deny(). - Fixed user_fields() to properly cache $fields. - Optimized user_set_authmaps() to not perform unnecessary queries. - Removed return value from user_set_authmaps().
* - Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.Dries Buytaert2003-11-09
|
* - Removed the "return" link from the node submission confirmation page.Dries Buytaert2003-11-09
|
* - Removed debug statement. Patch by Bart.Dries Buytaert2003-11-09
|
* - Translation fix: the date in the calendar block could not be translated. ↵Dries Buytaert2003-11-09
| | | | | | | | Patch by Goba. - Translation fix: made the word 'permission' translatable in the system module' help text. Patch by Goba. - Translation fix: the ping module's help text was translated twice. Patch by Goba.
* - Committed stage 1 of the menu callbacks improvements. Patch by Jonathan.Dries Buytaert2003-11-08
|
* - Bugfix: added missing t() function. Patch by Goba.Dries Buytaert2003-11-07
|
* - Usability improvement: replaced many selection boxes by radio buttons.Dries Buytaert2003-11-07
| | | | Patch by Stefan.
* - Usability improvement: replaced many selection boxes by radio buttons.Dries Buytaert2003-11-06
| | | | | | | | Patch by Stefan. - Usability improvement: introduced a form_group() function and updated the node and comment module to take advantage of it. Patch #149 by Eric Farris.
* - Bugfix: PostgreSQL problem with locale module. Fixed bug #3900. Patch #139Dries Buytaert2003-11-05
| | | | | | by Gerhard. - Forum module improvements. Patch #138 by Ax.
* - Bugfix: fixed typo in cloud module. Patch by Marky.Dries Buytaert2003-11-03
| | | | - Bugfix: fixed menu glitch in book module. Patch by Kjartan.
* poll.module: Fixed invalid XHTML (Patch by Gabor Hojtsy)Steven Wittens2003-11-01
|
* - Improvement: made it possible to disable the comment controls and reworded ↵Dries Buytaert2003-10-31
| | | | | | | | | | | | | | | | some of the configuration settings. - Improvement: removed a left-over from Drupal 4.2.0 (dead code). - Improvement: replaced hard-coded XHTML around the XML icons with class="xml-icon". - Improvement: removed the custom navigation menus shown at the top of the "user information page" and integrated them in the new navigation block. The "my account" link in the navigation menu will unfold. Also removed the "delete account" link/functionality (for now). - Improvement: fix for "magic quotes" settings. Patch by Steven. I also removed check_php_settings(). - Improvement: block themability improvements. Modified patch from Ax and Steve/CodeMonkeyX. - Fixed bug #2617: editing user information does not work. Patch by Kjartan.
* - Added support for "special timezones". Patch by Steven/UnConeD.Dries Buytaert2003-10-30
|
* - Bugfix: fixed problem with queue module. Fixes bug #3839.Dries Buytaert2003-10-29
|
* - Small corrections to the punctuation.Dries Buytaert2003-10-28
|
* - Bugfix: fixed usernames being shown in the "Who is online" block afterDries Buytaert2003-10-28
| | | | | | | | | you logged out. Patch by Jeremy. - Bugfix: fixed the authmap table in the MSSQL scheme. Patch by Moshe. - Bugfix: properly themes some error messages in the user module. Patch by Moshe.
* - Bugfix: fixed bug #3807.Dries Buytaert2003-10-27
|
* - Bugfix: made the bloggerapi respect the default promote setting. Patch byDries Buytaert2003-10-27
| | | | | | | | | | Remco. TODO: the same should be done for the fields "comment", "moderate" and so on. - Improvement: made posts/updates through the Blogger API show up on the admin main page. Modified patch from Remco.
* - Bugfix: 'path' -> {url_alias}. Patch by Mark Coady.Dries Buytaert2003-10-27
|
* - Properly initialized $contents and removed dead code. Patch/suggestion by ax.Dries Buytaert2003-10-26
|
* - Fixed typos in the throttle module documentation. Patch by marky.Dries Buytaert2003-10-25
|
* - Fixed typo in comment module documentation. Patch by Mark Coady.Dries Buytaert2003-10-24
|
* - Usability improvement: removed the cron setting. It was dead code.Dries Buytaert2003-10-24
|
* - Small usability improvement: add title to administration pages. Patch by Ax.Dries Buytaert2003-10-24
|
* - Documentation fix: updated context-sensitive help to match menu item changes.Dries Buytaert2003-10-24
| | | | Fixes critical bug #3453.
* - Documentation fix: updated context-sensitive help to match menu item changes.Dries Buytaert2003-10-24
| | | | Fixes critical bug #3453. (In the end someone has to do it ...)
* - Documentation improvement: updated documentation to match menu item changes.Dries Buytaert2003-10-24
| | | | Fixes critical bug #3453. (In the end, someone has to do it ...)
* - Small documentation improvements.Dries Buytaert2003-10-24
|
* - Bugfix: user->id --> user->uid. Patch by Gabor.Dries Buytaert2003-10-23
|
* Typoes.Steven Wittens2003-10-23
|
* - Bugfix: removed depricated documentation.Dries Buytaert2003-10-23
|
* - Bugfix: corrected broken HTML in the documentation.Dries Buytaert2003-10-23
|
* - Small documentation improvements.Dries Buytaert2003-10-23
|