Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | - Patch #6425 by TDobes: made avatars work with private download method. Added | Dries Buytaert | 2004-03-27 |
| | | | | user_file_download() function to communicate with the file system layer. | ||
* | Patch 6523 by Steven: | Dries Buytaert | 2004-03-25 |
| | | | | | | | | - Strips the leading / from URLs to match with block paths. The reason is that everywhere else in Drupal, we use URLs without leading slash (e.g. URL aliasing). For consistency we should keep this behaviour everywhere. The replacement uses ereg_replace instead of str_replace, but the expression now only match the beginning of the URI so in fact it's faster, esp. for longer URIs. - Updates the block docs about path matching: gets rid of leading slash, adds initial matching operator '^' and emphasises the slash behaviour (which was not mentioned anywhere before) - Replaces the example expression for a negative match. It was horribly broken and odd, the replacement in this patch is correct and simpler. | ||
* | - Patch #6480 by eap: news items were displayed in the wrong order. | Dries Buytaert | 2004-03-25 |
| | |||
* | - 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. | ||
* | - Patch #3987 by jhriggs: changed the location of the logout link. | Dries Buytaert | 2004-03-24 |
| | |||
* | - Patch #6543 by Michelangelo: block path matching breaks when clean URLs ↵ | Dries Buytaert | 2004-03-21 |
| | | | | are disabled. | ||
* | - Fixed braino | Dries Buytaert | 2004-03-21 |
| | |||
* | - More profile module improvements: | Dries Buytaert | 2004-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 Buytaert | 2004-03-21 |
| | | | | + Add a new field type: 'list'. | ||
* | - Small CSS change | Dries Buytaert | 2004-03-21 |
| | |||
* | - 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. | ||
* | - Profile module improvements: | Dries Buytaert | 2004-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. | ||
* | - Small visual improvement to the profile pages. I'm still not happy with | Dries Buytaert | 2004-03-20 |
| | | | | it and looking forward for some help. | ||
* | - Partial patch #6375 by jik: it's -> its | Dries Buytaert | 2004-03-20 |
| | |||
* | - Partial patch #6375 by jik: fixed broken URL in comment help. | Dries Buytaert | 2004-03-20 |
| | |||
* | - Bug #6595: made the signature's textarea less wide | Dries Buytaert | 2004-03-20 |
| | |||
* | Patch #5588 by bylund: XHTML improvements: <i> -> <em> and <b> -> <strong>. | Dries Buytaert | 2004-03-20 |
| | |||
* | - Tracker and forum module improvements! | Dries Buytaert | 2004-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 Buytaert | 2004-03-15 |
| | |||
* | includes/theme.inc | Dries Buytaert | 2004-03-15 |
| | |||
* | - Patch #6470 by Brian: fixed XHTML error with multiple selection boxes. | Dries Buytaert | 2004-03-14 |
| | |||
* | - Added a CVS Id | Dries Buytaert | 2004-03-13 |
| | |||
* | - Patch 6421 by TDobes: In the recent user.module and profile.module update, a | Dries Buytaert | 2004-03-12 |
| | | | | | typo was introduced into xtemplate.theme which prevents the use (specifically, the ability to enable) comment pictures (formerly known as avatars). | ||
* | - We have a new maintainer for the Debian package. | Dries Buytaert | 2004-03-12 |
| | |||
* | - Patch #6391 by jik: after deleting a user, return to the user list, not ↵ | Dries Buytaert | 2004-03-12 |
| | | | | the edit user form. | ||
* | - Fix #6393 by TDobes: fixed users table after. It was not updated properly ↵ | Dries Buytaert | 2004-03-12 |
| | | | | after the recent profile module changes. | ||
* | - Patch #6402 by TDobes: removed MSSQL example from conf.php as MSSQL is no ↵ | Dries Buytaert | 2004-03-12 |
| | | | | longer supported. | ||
* | - Bugfix: mark new comments when show as 'folded' | Dries Buytaert | 2004-03-12 |
| | |||
* | - Rewrote the profile module: | Dries Buytaert | 2004-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 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 |
| | |||
* | Patch 6270 by mathias: misc. fixes | Dries Buytaert | 2004-03-10 |
| | |||
* | - Patch #3786 by Gerhard: removed last instance of <none> | Dries Buytaert | 2004-03-09 |
| | |||
* | - Improved drupal_not_found() | Dries Buytaert | 2004-03-08 |
| | |||
* | - Removed the MSSQL port as discussed with Moshe. | Dries Buytaert | 2004-03-06 |
| | |||
* | - Patch #4902 by Goba: fix URLs in RSS feeds. | Dries Buytaert | 2004-03-06 |
| | | | | | | + Make all channel links absolute. + Always set the $base_url as xml:base, thus providing a solid base for relative URLs. | ||
* | - Patch #6260 by TDobes: fixed incorrect alt-attribute for avatar images in | Dries Buytaert | 2004-03-06 |
| | | | | the Xtemplate theme. | ||
* | - Patch 6140 by Goba: fix the 'read more'-link behavior. | Dries Buytaert | 2004-03-06 |
| | |||
* | - Modified patch by TheLibrarian: add a summary attribute to the calendar. | Dries Buytaert | 2004-03-05 |
| | |||
* | - Restored the old block path behavior. | Dries Buytaert | 2004-03-05 |
| | |||
* | - Set the version number. | Dries Buytaert | 2004-03-01 |
| | |||
* | - Removed broken throttle. | Dries Buytaert | 2004-03-01 |
| | |||
* | - Patch 6138 by MegaGrunt: this patch creates a repeated background behind | Dries Buytaert | 2004-03-01 |
| | | | | | the header logo image, so that multiple lines of text can be added to Primary menu without breaking the design. | ||
* | - Patch #6129 by Goba: fixed dependencies on search module. | Dries Buytaert | 2004-02-29 |
| | |||
* | - Patch #6110 by Goba: stop cheating in the Drupal site list. | Dries Buytaert | 2004-02-28 |
| | |||
* | - Fixed constants problem. | Kjartan Mannes | 2004-02-27 |
| | | | | - Made filename modification more logical when there was no extension. | ||
* | - Patch 6066 by Adrian: PostgreSQL does not return 'affected rows' when doing | Dries Buytaert | 2004-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.) | ||
* | - Fixed bug #6048: display footer in theme chameleon. | Dries Buytaert | 2004-02-25 |
| | |||
* | - Patch by Gerhard: move the updates to database/updates.inc so packaging | Dries Buytaert | 2004-02-25 |
| | | | | systems can by-pass update.php. |