summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* - Added missing 'return' statement which broke username verification.Steven Wittens2002-02-18
|
* - changing <? to <?php , reported by ax.Kjartan Mannes2002-02-16
|
* - Commited some changes made by Kjartan.Dries Buytaert2002-02-14
|
* - Some more documentation updates.Dries Buytaert2002-02-07
|
* - Included the cache documentation.Dries Buytaert2002-02-07
|
* - Changed a reference to drop.org into a reference to drupal.org.Dries Buytaert2002-02-02
|
* - Made the calendar module accept a $date parameter such that youDries Buytaert2002-01-31
| | | | | | | | | | | | | | | | | | | | | | can jump directly to a certain date in the archives. Also made the calendar link to itself such that it is self-contained. - Code beautifications: quoted a lot of arrays, removed dead code and simplified a few things. - Replaced the Calendar class by one function "calendar_display": using a class (or class instance, or object) doesn't make sense in the archives' case. - Renamed "calendar.module" to "archive.module". - Fixed a /problem/ with node settings not always being saved like expected. - Reorganized the user menu: renamed a couple of links for clarity and structure. - Fixed a few typos.
* - Made the calendar module accept a $date parameter such that youDries Buytaert2002-01-31
| | | | | | | | | | | | | | | | | | | | | | can jump directly to a certain date in the archives. Also made the calendar link to itself such that it is self-contained. - Code beautifications: quoted a lot of arrays, removed dead code and simplified a few things. - Replaced the Calendar class by one function "calendar_display": using a class (or class instance, or object) doesn't make sense in the archives' case. - Renamed "calendar.module" to "archive.module". - Fixed a /problem/ with node settings not always being saved like expected. - Reorganized the user menu: renamed a couple of links for clarity and structure. - Fixed a few typos.
* - updated user_mail() to return the result from the mail() call.Kjartan Mannes2002-01-31
|
* - nodes can now be set to static which will pin them to the front page asKjartan Mannes2002-01-31
| | | | | long as they are promoted and/or static. - needs an sql update.
* - Applied Natrak's module improvements.Dries Buytaert2002-01-30
|
* - Fixed more than 30 HTML and XML well-formedness errors.Dries Buytaert2002-01-27
|
* Typo in docs: "system geenrated password " > "generated".Steven Wittens2002-01-23
|
* - moved user block from theme.inc to user.module.Kjartan Mannes2002-01-21
| | | | | | | | | | * only problem is that the admin.php link is not available until the admin enables the block. * $theme->user is obsolete, will patch the themes properly in a later patch. - moved moderation block from theme.inc to queue.module. * removed theme_moderation_results(). - updated database/database.mysql.
* - Applied Marco's patch. See mailing list for more information.Dries Buytaert2002-01-17
|
* - Removed print-statement from user_mail().Dries Buytaert2002-01-16
|
* - increased the max limit for the HTML filter config textfield to 255.Kjartan Mannes2002-01-14
|
* - Applied Marco's locale improvements / clean-ups.Dries Buytaert2002-01-12
|
* - Fixed bug #42: "Nodes end up in submission queue, even if 'queue forDries Buytaert2002-01-12
| | | | moderation' is toggeld off."
* - Added some more explanations.Dries Buytaert2002-01-12
|
* - Updated some of the descriptions.Dries Buytaert2002-01-11
|
* - Applied Marco's first "remember me" patch.Dries Buytaert2002-01-11
|
* SessionKjartan Mannes2002-01-09
| | | | | | | | | | | | | | | | | | | | - attempted to fixed crashes with the custom session handler. External SMTP library - added functionality to have Drupal not use the default PHP mail() function. For more info see: http://www.drupal.org/node.php?id=44 Note: for this to work all modules that send mails should use the Drupal function to send mail: user_mail($mail, $subject, $message, $header); Calendar - added an archive page which users can use to find archives instead of the good old block. Miscellaneous - fixed a "random" offset bug on module.inc that occurred on Windows. All of this needs more testing, and further suggestions are welcome.
* - Added about 50 title tags.Dries Buytaert2002-01-07
|
* - Small documentation updateDries Buytaert2002-01-05
|
* A first tiny change:Dries Buytaert2002-01-05
| | | | | | | - Made the "account settings"-link point to the "edit user information" page rather than the "view user information" page. - Removed the "logout" link from the user menu (user_menu() function).
* - Made updating "old" feeds a bit more fine grained.Dries Buytaert2002-01-05
|
* - Improved the feed handling which solves "almost duplicate" posts beingDries Buytaert2002-01-05
| | | | inserted when someone would update his site/feed after we imported it.
* - Integrated Marco's locale patch.Dries Buytaert2002-01-05
|
* - Fixed 2 small typos in a form field description.Dries Buytaert2002-01-05
|
* - Fixed bug with comment sorting (reported by weitzman).Dries Buytaert2002-01-03
| | | | - New comments are being marked with a small red star.
* - Fixed a typo.Dries Buytaert2002-01-01
|
* - Fixed a typo: comments_all() -> comment_all()Dries Buytaert2002-01-01
|
* - Fixed a small glitch in book_tree()Dries Buytaert2002-01-01
|
* - Added "x new comments" feature. Requires a SQL update.Dries Buytaert2001-12-31
| | | | - Tidied up some comment related code in node.module.
* - Small improvement to the exported RSS feed.Dries Buytaert2001-12-30
|
* - import.module:Dries Buytaert2001-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Improved input filtering; this should make the news items look more consistent in terms of mark-up. + Quoted all array indices: converted all instances of $foo[bar] to $foo["bar"]. Made various other changes to make the import module compliant with the coding style. - theme.inc: + Fixed small XHTML glitch - comment system: + Made it possible for users to edit their comments (when certain criteria are matched). + Renamed the SQL table field "lid" to "nid" and updated the code to reflect this change: this is a rather /annoying/ change that has been asked for a few times. It will impact the contributed BBS/forum modules and requires a tiny SQL update: sql> ALTER TABLE comments CHANGE lid nid int(10) NOT NULL; + Moved most (all?) of the comment related logic from node.php to comment.module where it belongs. This also marks a first step towards removing/reducing "node.php". + Added a delete button to the comment admin form and made it so that Drupal prompts for confirmation prior to deleting a comment from the database. This behavior is similar to that of deleting nodes. + Disabled comment moderation for now. + Some of the above changes will make it easier to integrate the upcomcing mail-to-web and web-to-mail gateways. They are part of a bigger plan. ;) - node system: + Made it so that updating nodes (like for instance updating blog entries) won't trigger the submission rate throttle. + Fixed a small glitch where a node's title wasn't always passed to the $theme->header() function. + Made "node_array()" and "node_object()" more generic and named them "object2array()" and "array2object()". + Moved most (all?) of the comment related logic from node.php to comment.module where it belongs. This also marks a first step towards removing/reducing "node.php". - misc: + Applied three patches by Foxen. One to improve performance of the book module, and two other patches to fix small glitches in common.inc. Thanks Foxen!
* - Revised the comment links: when a user does not have the requiredDries Buytaert2001-12-27
| | | | | | | | | permissions to post comments, the "reply to this comment"-link is no longer shown. Also, when a user is a "comment administrator", an "administer"-link will be displayed. - Revised the threaded_min and threaded_max code: it makes rendering pages with more than 15 comments 200% times faster.
* - "fixed" the code's indentation.Dries Buytaert2001-12-27
|
* - Small improvement.Dries Buytaert2001-12-24
|
* - Fixed a problem with the expiration of news items. Requires a SQLDries Buytaert2001-12-24
| | | | update (update.php).
* - Added "query log" functionality to Drupal. Inspired by weitzman'sDries Buytaert2001-12-23
| | | | code/patch.
* - Fixed bug where saving a user account from within the admin sectionDries Buytaert2001-12-22
| | | | | would redirect you to an empty page. - Tidied up the user_save() function a bit.
* - Made some improvements to the line break filter/formater.Dries Buytaert2001-12-22
|
* - Removed (the need for) the Comment-class: makes for cleaner code.Dries Buytaert2001-12-22
| | | | | | | | - Fixed the comment preview function: the preview shown was not being an exact preview of the comment. Along the way, I polished the comment submission code. - XMTML-ified the code, and quoted all "string"-based array indices.
* - Fixed preview glitch in node_preview() as reported by ax.Dries Buytaert2001-12-18
|
* - Back-ported Foxen/Revar's improved book_toc() function.Dries Buytaert2001-12-17
|
* - Made the Drupal sites ping less often (only once every 6 hours), addedDries Buytaert2001-12-17
| | | | | | some logic to prevent duplicate items at a best effort basis, and made the server-side watchdogs slightly less verbose (still in testing mode though).
* Fixed typo: "email addrress"Steven Wittens2001-12-16
|
* - Added new feature. Explanation will follow on the mailing list.Dries Buytaert2001-12-16
|