summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* - Renaming parameter to hook_filter_tips()Steven Wittens2004-08-10
| | | | - Removing some leftover dead code
* - Patch #8155 by JonBob: removed legacy _system() hook.Dries Buytaert2004-08-10
|
* - #9927: Filter.module doxygen fixes by JonBobSteven Wittens2004-08-10
|
* - Patch #9663 by jvandyk: the $i counter variable in tablesort_get_order() ↵Dries Buytaert2004-08-10
| | | | is unused and should therefore be removed.
* Added note about filter patch.Steven Wittens2004-08-10
|
* The Input formats - filter patch has landed. I still need to make update ↵Steven Wittens2004-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instructions for modules and update the hook docs. Here's an overview of the changes: 1) Multiple Input formats: they are complete filter configurations (what filters to use, in what order and with which settings). Input formats are admin-definable, and usage of them is role-dependant. For example, you can set it up so that regular users can only use limited HTML, while admins can free HTML without any tag limitations. The input format can be chosen per content item (nodes, comments, blocks, ...) when you add/edit them. If only a single format is available, there is no choice, and nothing changes with before. The default install (and the upgrade) contains a basic set of formats which should satisfy the average user's needs. 2) Filters have toggles Because now you might want to enable a filter only on some input formats, an explicit toggle is provided by the filter system. Modules do not need to worry about it and filters that still have their own on/off switch should get rid of it. 3) Multiple filters per module This was necessary to accomodate the next change, and it's also a logical extension of the filter system. 4) Embedded PHP is now a filter Thanks to the multiple input formats, I was able to move the 'embedded PHP' feature from block.module, page.module and book.module into a simple filter which executes PHP code. This filter is part of filter.module, and by default there is an input format 'PHP', restricted to the administrator only, which contains this filter. This change means that block.module now passes custom block contents through the filter system. As well as from reducing code duplication and avoiding two type selectors for page/book nodes, you can now combine PHP code with other filters. 5) User-supplied PHP code now requires <?php ?> tags. This is required for teasers to work with PHP code. Because PHP evaluation is now just another step in the filter process, we can't do this. Also, because teasers are generated before filtering, this would result in errors when the teaser generation would cut off a piece of PHP code. Also, regular PHP syntax explicitly includes the <?php ?> tags for PHP files, so it makes sense to use the same convention for embedded PHP in Drupal. 6) Filter caching was added. Benchmarking shows that even for a simple setup (basic html filtering + legacy URL rewriting), filtercache can offer speedups. Unlike the old filtercache, this uses the normal cache table. 7) Filtertips were moved from help into a hook_filter_tips(). This was required to accomodate the fact that there are multiple filters per module, and that filter settings are format dependant. Shoehorning filter tips into _help was ugly and silly. The display of the filter tips is done through the input format selector, so filter_tips_short() no longer exists. 8) A more intelligent linebreak convertor was added, which doesn't stop working if you use block-level tags and which adds <p> tags.
* - #9148 and #8766: Fix problem with using '%' in term names.Steven Wittens2004-08-10
|
* Getting rid of parameters which were never passed.Steven Wittens2004-08-10
|
* - Left-over debug statementSteven Wittens2004-08-10
|
* - #4266: When editing a book page, hide the page and its children from the ↵Steven Wittens2004-08-10
| | | | "Parent" selector to prevent circular relationships in the book hierarchy.
* - Patch by Al: improved the admin/help pages (first step).Dries Buytaert2004-08-10
|
* Added a note about the use of drupal_goto()/redirects.Steven Wittens2004-08-10
|
* Clarifying the comment.module change a bit.Steven Wittens2004-08-10
|
* #7646 and more:Steven Wittens2004-08-10
| | | | | - Users who have not edited their account yet would be reset to GMT rather than the sitewide timezone. - Users who chose GMT (zero timezone) on a site with a non-zero timezone as default would have incorrect timezone.
* - Patch #9884 by Bart Jansens:Dries Buytaert2004-08-09
| | | | | | | + The 'previous topic' / 'next topic' links skipped topic without comments (changed one inner join back to a left join). + The default order setting in admin/settings/forum had no effect. + The 'first new topic' link jumped to the first unread topic ever instead of the first unread topic since NODE_NEW_LIMIT. + This also removes the unused $offset param from theme_forum_display and theme_forum_topic_list, so any themes using these functions should be updated (i checked the core themes but none of them used these functions).
* - Patch #9865 by njivy: avoid mangling %'s in the profile SQL query.Dries Buytaert2004-08-09
|
* - Patch #9875 by njivy: call to taxonomy_overview() is missing in admin view.Dries Buytaert2004-08-09
|
* Tiny code cleanup in user.module.Steven Wittens2004-08-08
|
* - Patch #9866 by njivy: when the links are generated for each item in a ↵Dries Buytaert2004-08-08
| | | | list-type profile field, double quotes in the item name can break the link. To fix this, this patch gives drupal_specialchars() the ENT_QUOTES parameter to convert quotes into HTML entities. This fix is also applied to selection-type profile fields which can have the same problem.
* - Adding an update to convert old taxonomy URL aliases to new ones.Steven Wittens2004-08-07
|
* - Adding $id$Steven Wittens2004-08-07
|
* Cron.phpSteven Wittens2004-08-07
| | | | | - #1322: Adding a warning if the cron fails to complete. - Simplifying odd commenting syntax
* - #3606: Missing translations for user.module watchdogSteven Wittens2004-08-07
|
* - Patch #6760 by JonBob: refactored the taxonomy module URLs to be nicer, ↵Dries Buytaert2004-08-07
| | | | | | | | | | improved the code/Doxygen comments. As discussed before, the path "taxonomy/page/or/1,2" becomes "taxonomy/term/1+2" and the path "taxonomy/page/and/1,2" becomes "taxonomy/term/1,2". The most common case of listing nodes attached to a single term becomes simpler, since it doesn't require a meaningless "or" or "and". A depth of "0" is assumed, but a positive integer or "all" can be used. Feeds are available at "taxonomy/term/1+2/all/feed" and the like. This iteration of the patch also changes the structure of taxonomy_select_nodes(), since it was not following Drupal conventions. A handful of contrib modules call this function, and will need to be updated. Instead of passing in a $taxonomy object containing parameters for the function, the parameters are passed independently. This simplifies the code quite a bit. The queries were changed to only return node IDs for speed; all results from this function are passed through node_load() anyway, so the extra information returned was discarded. The AND query was also changed to avoid the strange trick and remove an extra query, at the expense of a table join per root term in the AND. This cleans up the code substantially while at the same time enabling the use of AND with a depth parameter. TODO: update contribution modules.
* - Made the taxonomy module use drupal_goto() to fix up the interaction behavior.Dries Buytaert2004-08-07
|
* Added an upgrade path for old URL aliases to node/view, book/view and ↵Steven Wittens2004-08-06
| | | | user/view. This is amongst other things required for old node aliases to appear in the node form.
* - Patch #9812 by Adrian: fixed some PostgreSQL/ANSI SQL compabitibilityDries Buytaert2004-08-06
| | | | problems created by the new comment and node access permissions code.
* - Patch #7968 by Adrian: use the complete URL as the cache ID to make Drupal'sDries Buytaert2004-08-06
| | | | caching work on virtual hosts.
* - Patch #9819 by JonBob: fixed XHTML bug - make sure the <div> is always closed.Dries Buytaert2004-08-06
|
* - Patch #9330: ucfirst() gives problem when used with multibyte charset.Dries Buytaert2004-08-06
| | | | Replaced the use of ucfirst() with a CSS-based solution.
* - Oopsie when committing.Steven Wittens2004-08-06
|
* - Cleaning up the rediculously long 'if' statement for checking block ↵Steven Wittens2004-08-06
| | | | | | visibility. - #9811: Remove session ID before matching block path
* #9810: PostgreSQL updates by Adrian.Steven Wittens2004-08-06
|
* #8154 - Default user timezone to site timezoneSteven Wittens2004-08-06
|
* - Patch #8523 by killes: avoid profile data being deleted when requesting a newDries Buytaert2004-08-05
| | | | password.
* - Patch by Jeremy: usability improvements for the statistics.module's GUI.Dries Buytaert2004-08-05
|
* - Patch #9794 by JonBob: a bug introduced late in the review process makes ↵Dries Buytaert2004-08-05
| | | | individual node views inaccessible to users who should have permission. This does not affect node listings, so was missed.
* - Patch #9775 by TDobes: consistency operation. Changed to "edit foo," ↵Dries Buytaert2004-08-05
| | | | "delete foo," and "view foo" links into simply "edit," "delete," and "view".
* - #6400 - Nicer arrows for pushbutton templateSteven Wittens2004-08-05
| | | | - Removing gAMA chunk from xtemplate logo.png for less to avoid more gamma issues.
* - Patch #9770 by killes: fixed typo in queue module.Dries Buytaert2004-08-04
|
* - Patch #9497 by gordon: made <!--break--> work even when the teaser lengthDries Buytaert2004-08-04
| | | | is set to unlimited and fixed up some code comments.
* - Patch #9768 by killes: admin/user/edit/$uid is no more, removed some ↵Dries Buytaert2004-08-04
| | | | left-overs.
* - Patch #9657: more intelligent theme() function. Hopefully, Adrian will beDries Buytaert2004-08-04
| | | | able to use this patch too.
* - Patch #7458 by killes: conditionally include xmlrpc.inc.Dries Buytaert2004-08-04
|
* Making the xtemplate logo background transparent to make the Safari gamma ↵Steven Wittens2004-08-04
| | | | bug less obvious.
* - Patch #9757 by Al: improved the aggregator help. Help texts should be to ↵Dries Buytaert2004-08-04
| | | | the point.
* - Patch #9740 by Bart: added missing {} for table prefixing.Dries Buytaert2004-08-04
|
* - Patch #7336 by TDobes: in various parts of Drupal, we use the title ↵Dries Buytaert2004-08-03
| | | | attribute for links to provide a slightly more detailed explanation as to the purpose of a link or where it goes.
* - Partial patch #9643 by Bart:Dries Buytaert2004-08-03
| | | | | + the confirmation before deleting a comment was missing a check_output. + after editing a comment, two pages were shown (two calls to theme('page',..)), replaced this by a drupal_goto.
* - Patch by Jeremy: statistics module improvements.Dries Buytaert2004-08-03
|