summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* - Patch 9543 by JonBob: use drupal_goto() in menu administration.Dries Buytaert2004-07-25
|
* - Patch #9464 by Moshe: menu.module omitted a pair of braces when callingDries Buytaert2004-07-25
| | | | db_next_id().
* - Patch #9481 by JonBob: fixed small typo in help text.Dries Buytaert2004-07-25
|
* - Patch #9478 by JonBob: allow printf-style arguments in pager_query.Dries Buytaert2004-07-25
| | | | | | Currently pager_query() is the black sheep of the database query family, because it does not allow for printf-style arguments to be inserted in the query. This is a problem because it introduces developer confusion when moving from an unpaged query to a paged one, and it encourages substitution of variables directly into the query, which can bypass our check_query() security feature. This patch adds this ability to pager_query(). The change is backwards-compatible, but a couple calls to the function in core have been changed to use the new capability.
* - Patch #4269 and #4248 by Killes: added missing t()'s to book module.Dries Buytaert2004-07-25
|
* System.module improvements:Steven Wittens2004-07-22
| | | | | - #8193: Moving the two instances of the timezone list into a function. - #3859: Adding drupal_goto for module/theme/settings pages. Aside from general drupal_goto usability, this fixes the bug of menu items not immediately appearing after enabling a module.
* - Patch by Andy: improved help text / module description.Dries Buytaert2004-07-16
|
* - Patch #9177 by James: fixed distributed authentication.Dries Buytaert2004-07-15
|
* Removed the 'user' item in the menu which appeared when editing someone ↵Steven Wittens2004-07-14
| | | | else's account.
* - Patch #7466 by TDobes: comments module would add a link of register even ↵Dries Buytaert2004-07-14
| | | | if "user_register" was set to 0.
* - Patch #8080 by TDobes: added teaser support to the book and page module.Dries Buytaert2004-07-13
|
* - Patch #9261 by drumm: made the aggregator overview tables more consistent ↵Dries Buytaert2004-07-13
| | | | by adding a items column to the categories table which acts like the same column in the feeds table.
* - Patch #9234 by TDobes: the latest menu changes have caused custom menu ↵Dries Buytaert2004-07-13
| | | | | | | | blocks not to render any output. If I create a new menu and menu items, and then enable the block, no output from that block is visible. This commit fixes the problem: custom menus were being defined as MENU_CUSTOM_ITEM rather than MENU_CUSTOM_MENU. It also fixes a problem in which custom menus were mistakenly given the MENU_VISIBLE_IN_BREADCRUMB bit when edited. This would cause their titles to show up in the breadcrumb (which is undesirable... only menu items should be in there). Note that this will not fix any non-functioning custom menus you've defined since this bug appeared. You'll have to delete and recreate them or update the "type" column in the DB manually.
* - Patch #9253 by Morbus: fixed bug that manifested itself with a duplicate ↵Dries Buytaert2004-07-13
| | | | page when a user has submitted a comment that goes into the moderation queue. Part of the problem seemed to be that the "your comment is in the moderation queue" message was set as a theme print, as opposed to a drupal_set_message(). This patch fixes that, as well as adding a drupal_goto() to redirect the user back to where they came.
* - Patch #8942 by Morbus: when testing under devel.module, the "SELECT ↵Dries Buytaert2004-07-13
| | | | timestamp from {history}" SQL statement is executed multiple times in two different functions. This duplicated code should be placed in a function, and that's been done already with node_last_visited() - the remaining code was just never updated to use the new routine. This patch changes the old code to use node_last_visited, and also modifies node_last_visited() to cache the result of the database call.
* - Patch #8398 by TDobes: changed permissions for the blog, story, and page ↵Dries Buytaert2004-07-13
| | | | | | | | | modules (and all occurrances elsewhere) to match their 4.4.x equivalents. In the discussion when these permissions were introduced, it was decided that "edit own ..." was clearer, but "maintain personal ..." slipped into CVS HEAD anyway, while "edit own ..." landed in the 4.4.x branch. Changes are as follows: "maintain personal blog" -> "edit own blog" (aggregator.module, blog.module, blogapi.module) "maintain personal pages" -> "edit own pages" (page.module) "maintain personal stories" -> "edit own stories (story.module)
* - Small code simplifications.Dries Buytaert2004-07-13
| | | | | - Small usability improvement thanks to using drupal_goto() after deleting an alias.
* - Patch by Matt: made it possible to alias an URL multiple times.Dries Buytaert2004-07-11
|
* - Patch by JonBob: updated the comment module to take advantage of the latestDries Buytaert2004-07-10
| | | | menu system improvements.
* - 'add block' -> 'add'Dries Buytaert2004-07-10
|
* - More tab-improvements by JonBob: improved support for the default tabs!Dries Buytaert2004-07-10
|
* - Patch 8756 by Morbus:Dries Buytaert2004-07-10
| | | | | | | | | | | | | | | | | | | | | | * improves the doxygentation and help text. * deletes comment_admin and comment_page; using proper callbacks instead. * related/modified callbacks/menus/functions were tweaked to not use arg() at all. * the "settings" subtab was weighted to -10 so it'd appear first (in prep of JonBob's local default). * moderation pages weren't properly showing defined votes or thresholds; fixed. * when moderation votes or thresholds didn't exist, no error stating as such was shown; fixed. * we show "submit votes" on the moderation votes page only when votes actually exist. * fixes the (broken in CVS) comment/reply and comment/edit features. * fixes the (broken in CVS) "save settings" for comment view options and comment moderation. In addition I: * fixed a couple warnings introduced by Morbus' patch. * fixed a couple translation bugs. * fixed comment_node_url(). I also found that: * the collapsed comment views (i.e. 'threaded list - collapsed) are broken.
* Fixed a bug caused by inverting the setting for configurable timezones.Steven Wittens2004-07-09
|
* - Patch #9010 by Morbus: reorganized the order of functions in the commentDries Buytaert2004-07-08
| | | | module.
* - Patch #8509 by Killes and Steven: added support for sending compressedDries Buytaert2004-07-08
| | | | pages. Useful to reduce your site's bandwidth.
* - Marked required fields on the node (story, book, page, blog) and commentDries Buytaert2004-07-08
| | | | | | | | | forms using the $required argument of the form_ functions. - Replaced all Optional's and Required's from the taxonomy forms with proper use of the form_ functions. Please check your contributed modules too!
* - Renamed '... your ...' to '... my ...' (cfr. 'my account).Dries Buytaert2004-07-08
|
* - Fixed colspan in tracker table.Dries Buytaert2004-07-08
| | | | - Renamed '... your ...' to '... my ...' (cfr. 'my account).
* - Usability improvement: users can also separate 'list items' (i.e. favoriteDries Buytaert2004-07-08
| | | | | movies) using a comma. Only few users actually read the form description, it seems ...
* - Simplified some of the help texts.Dries Buytaert2004-07-08
| | | | | - Removed left-over instance of theme('error'): error handling is now done by the form code.
* - Made the user module's administration form mark required form fields.Dries Buytaert2004-07-08
|
* - Renamed the blog module's block for sake of clarity.Dries Buytaert2004-07-08
| | | | - Made the blog module's submission form mark required form fields.
* - Small improvement to the filter.module's help text.Dries Buytaert2004-07-08
| | | | - Revert patch that accidentically got committed. Thanks jhriggs.
* - Fixed braino. Reported by Steven.Dries Buytaert2004-07-08
|
* - Patch #9031 by Morbus: this last tracker patch was broken - for ↵Dries Buytaert2004-07-08
| | | | installations where the comment.module is turned on, $comments is never set to 0, and posts that have no comments instead get the value of the last successful comment_num_all. The attached patch corrects this ($comments is set to 0 before we do anything) and also merges the if statements.
* - Patch #9125 by Morbus: remove access users permission. Will bring it back ↵Dries Buytaert2004-07-08
| | | | later.
* - Usability improvements: reworked/simplified the timezone/date settings aDries Buytaert2004-07-07
| | | | little and made the form groups use consistent titles.
* - Usability: improved the error reporting of the file system settings on theDries Buytaert2004-07-07
| | | | 'home » administer » settings" page.
* - Moving the title.module from core to contrib as discussed on the mailing list.Dries Buytaert2004-07-07
|
* - Patch #8975 by drumm: remove block placement preview. Most themes, if not ↵Dries Buytaert2004-07-07
| | | | | | all the commonly used ones, can handle blocks on either side, and there is no way to see the preview without saving and seeing the results on the site. Anything else that can be removed? Less is more.
* - Patch #4166 by daBrado: don't show the profile fields when the user doesDries Buytaert2004-07-06
| | | | not have the 'access users' permission set.
* - Patch #8382 by jseng/junyor: allows autodiscovery of BloggerAPI via RSD.Dries Buytaert2004-07-06
|
* - Patch #9031 by Ber: if the comment module is not available comment_num_all()Dries Buytaert2004-07-06
| | | | should not be called.
* - Patch #9049 by JonBob: fixed a number of tab issues.Dries Buytaert2004-07-06
|
* - Patch #9046 by asimmonds: comment signature option was not displayed.Dries Buytaert2004-07-05
|
* Fixed broken poll results:Steven Wittens2004-07-04
| | | | | - If you are allowed to vote, results are now shown on a separate node tab "node/id/results". - Poll voting now submits to a separate URL and uses drupal_goto to go back to the poll node
* - Added revisions tab to node view (when needed)Steven Wittens2004-07-04
| | | | - Updated node.module to use drupal_goto after submission: this allows people to refresh after submission without any problems.
* - Patch by Steven and me: refactored the form handling of nodes. The node ↵Dries Buytaert2004-07-04
| | | | | | | | system is now using form_set_error() and friends like the rest of Drupal does. This makes for both a consistent user experience and consistent code. It simplifies the forms and validation code, however, it does change the node API slightly: * The _validate hook and the _nodeapi('validate') hook of the node API (1) no longer take an 'error' parameter and (2) should no longer return an error array. To set an error, call form_set_error(). * The _form hook of the node module no longer takes a form hook and should not worry about displaying errors. Ditto for _nodeapi('form_post') and _nodeapi('form_pre').
* - Made it possible to edit blog posts and made the blog module use tabs.Dries Buytaert2004-07-04
|
* - Patch #8952 by Morbus: watchdog module beautifications.Dries Buytaert2004-07-03
| | | | | | | * slightly reorders the functions in anticipation of http://drupal.org/node/view/9010. * reorders help definitions to match the alphabetical nature of the menu items. * tweaked visual appearance of menu code (whitespace, etc.) * minor tweaks to "warning" help to match style of others.