summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* - More profile module improvements:Dries Buytaert2004-03-21
| | | | | | | | | | | + Updated the _user() hook's "$type == 'view'" case to match the "$type == 'edit'" case. That is, both have to return an associtive array of the format array('category' => 'fields'). + Updated the profile pages to group fields by category. Made possible thanks to the above change. + Moved logic out of the theme_ functions.
* - More profile module improvements:Dries Buytaert2004-03-21
| | | | + Add a new field type: 'list'.
* - 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.
* - Profile module improvements:Dries Buytaert2004-03-20
| | | | | | | | + Made it possible to define the page title of the user listing pages. + Used form_group()s for the profile administration page. + Fixed bug in database/updates.inc.
* - Partial patch #6375 by jik: it's -> itsDries Buytaert2004-03-20
|
* - Partial patch #6375 by jik: fixed broken URL in comment help.Dries Buytaert2004-03-20
|
* - Bug #6595: made the signature's textarea less wideDries Buytaert2004-03-20
|
* Patch #5588 by bylund: XHTML improvements: <i> -> <em> and <b> -> <strong>.Dries Buytaert2004-03-20
|
* - 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 #6406 by TDobes: fixed typos in profile/user module.Dries Buytaert2004-03-15
|
* includes/theme.incDries Buytaert2004-03-15
|
* - Patch #6470 by Brian: fixed XHTML error with multiple selection boxes.Dries Buytaert2004-03-14
|
* - Added a CVS IdDries Buytaert2004-03-13
|
* - Patch #6391 by jik: after deleting a user, return to the user list, not ↵Dries Buytaert2004-03-12
| | | | the edit user form.
* - Bugfix: mark new comments when show as 'folded'Dries Buytaert2004-03-12
|
* - Rewrote the profile module:Dries Buytaert2004-03-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Added a 'created' field to the users table and renamed the 'timestamp' fied to 'changed' (cfr. node table). Update.php will try to determine a 'created' timestamp for existing users. + The profile module no longer uses serialized data but has its own set of tables. Known existing profile data is migrated by these new tables. TODO: migrate the birthday field. + The profile fields can be grouped, and within each group, profile fields can be sorted using weights. + The profile pages can be themed. + The profiles can be browsed based on certain properties/settings. + Change the _user hook: (i) 'private_view' and 'public_view' are merged into 'view' as there are no private fields and (ii) 'edit_form' has been renamed to 'edit'. + Avatar handling has been refactored and is now part of the user module. The users table has a dedicted 'picture' field. + Simplified the way themes should use display/visualize pictures or avatars. + Made it possible for administrators to replace or delete avatars. + ... I hope this make for a good base to build on collectively.
* Patch 6270 by mathias: misc. fixesDries Buytaert2004-03-10
|
* - Patch #3786 by Gerhard: removed last instance of <none>Dries Buytaert2004-03-09
|
* - Patch #4902 by Goba: fix URLs in RSS feeds.Dries Buytaert2004-03-06
| | | | | | + Make all channel links absolute. + Always set the $base_url as xml:base, thus providing a solid base for relative URLs.
* - Patch 6140 by Goba: fix the 'read more'-link behavior.Dries Buytaert2004-03-06
|
* - Modified patch by TheLibrarian: add a summary attribute to the calendar.Dries Buytaert2004-03-05
|
* - Restored the old block path behavior.Dries Buytaert2004-03-05
|
* - Removed broken throttle.Dries Buytaert2004-03-01
|
* - Patch #6129 by Goba: fixed dependencies on search module.Dries Buytaert2004-02-29
|
* - Patch #6110 by Goba: stop cheating in the Drupal site list.Dries Buytaert2004-02-28
|
* - Patch 6066 by Adrian: PostgreSQL does not return 'affected rows' when doingDries Buytaert2004-02-26
| | | | | | | | a select statement. Even though PEAR supports this functionality, it fails silently when using PostgreSQL. We use the db_num_rows() function instead to return the amount of rows returned. (According to Killes, the MySQL manual also states that it should not return affected rows on a 'select' statement.)
* - Patch by Gerhard: move the updates to database/updates.inc so packagingDries Buytaert2004-02-25
| | | | systems can by-pass update.php.
* Fixed an apparently old bug which always defaulted user-togglable blocks to ↵Steven Wittens2004-02-25
| | | | off, and clarified the explanation a bit.
* Poll.module cleanup:Steven Wittens2004-02-24
| | | | | | | * Code cleaning: simpler structures, removed some old leftovers, ... * Clean URLs everywhere (the old mechanism was broken anyway). Had to get rid of 'inline voting' (i.e. voting with the sideblock and ending up on the same page), but that was a bit confusing anyway. * Simplified submission form with form_group and streamlined choice mechanism. * Improved bar rendering in pollresults for themes with avatars, like xtemplate.
* - Patch #6000 by Goba: makes the short tip list a HTML list (as it is ↵Dries Buytaert2004-02-23
| | | | | | | | | | semantically expected) and gives proper class names to the long and short tip list, so if someone would like to reproduce the 'br' tagged version, he can do that with some CSS styles easily. Assigned a dedicated class to the more-tips link, so it can be differently stlyed (with a different bullet, different link color or anyhow, as the theme designer desires).
* - Usability improvement: made the throttle message fit in the watchdog message.Dries Buytaert2004-02-23
|
* - Slightly improved the throttle watchdog messages.Dries Buytaert2004-02-22
|
* - Sanatize title before doing LIKE matches.Kjartan Mannes2004-02-21
|
* - Fix implode() errors.Kjartan Mannes2004-02-21
|
* - Coding style fixes.Kjartan Mannes2004-02-21
| | | | - Extended tracker comments to handle project issues.
* - Patch 5969 by Chris: improved the profile module's context sensitive help textDries Buytaert2004-02-21
|
* - Patch by Gerhard: fixed incorrect regex in the taxonomy module.Dries Buytaert2004-02-21
|
* - Fixing help text. The filters DO NOT removed unclosed valid tags.Kjartan Mannes2004-02-21
|
* - Aggregator: fix for http://drupal.org/node/view/5733Steven Wittens2004-02-19
| | | | - System: the 404 setting instructions advise using 'node', this should be '' (redirecting the user to the front page without any message whatsoever is confusing)
* - Added a short note about the node-trim-length setting. Many people seem to ↵Steven Wittens2004-02-19
| | | | expect that changing it updates existing teasers too.
* - Patch 5897 by Moshe: don't consider the 'U' tag to be a block level tag.Dries Buytaert2004-02-17
|
* - Patch 5683 by JonBob: changes the multiple type delimiter from / to -.Dries Buytaert2004-02-16
|
* - Fixed forum module typo.Dries Buytaert2004-02-16
|
* - Bugfix: the forum block was showing posts that are not 'published' yet.Dries Buytaert2004-02-16
|
* - Fixed a problem editing nodes. Spotted by Steven.Dries Buytaert2004-02-15
|
* - Patch by Steven: removed redundant permission checks. These are no longerDries Buytaert2004-02-15
| | | | required thanks to the new 404 handling.
* - Patch #5111 by Bart: fixed inconsistent default values.Dries Buytaert2004-02-15
|
* - Patch #4861 by Moshe/TDobes: made the comment module use the _link hook.Dries Buytaert2004-02-15
|
* - Patch 5592 by Goba: let drupal_map_assoc() rule. :-)Dries Buytaert2004-02-15
| | | | - Renamed CHANGELOG to CHANGELOG.txt for Windows uses.
* - Code improvements by Mathias: made the path module use drupal_set_message().Dries Buytaert2004-02-14
|