summaryrefslogtreecommitdiff
path: root/modules
Commit message (Collapse)AuthorAge
* - Patch #5942 by TDobes: fixed theme stuff after multi-site configuration patch.Dries Buytaert2004-11-25
|
* - Patch #13443 by Moshe: got rid of the semi-implemented 'page link' ↵Dries Buytaert2004-11-24
| | | | feature. All themes currently support primary and secondary links so page links are now deprecated. Check your contributed modules and update them accordingly.
* - Patch #5942 by jhriggs and Adrian:Dries Buytaert2004-11-24
| | | | | + added support for multi-site configurations. + tidied up some old cruft and added code comments.
* - Patch #10990 by TDobes: adds a "create new blog entry" link at the top of ↵Dries Buytaert2004-11-24
| | | | each user's own blog page, similar to the "post new forum topic" link displayed at the top of forum pages. This adds consistency as well as convenience for users.
* - Patch #6166 by Moshe: node preview should not display links. Push the ↵Dries Buytaert2004-11-23
| | | | | | | | links to the theme instead of the theme having to pull them in using node_link(). TODO: 1. Update theme upgrade instructions in the handbook: node_link() is gone. 2. Remove page_link() just like we removed node_link().
* - Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve ↵Dries Buytaert2004-11-23
| | | | consistency.
* - Patch #12363: fixed glitch in user_access() as pointed out by TDobes.Dries Buytaert2004-11-23
|
* - Patch #13263 and #13265 by arnab: added word-based truncation and made the ↵Dries Buytaert2004-11-21
| | | | comment module use it to extract subjects.
* - Patch 13180 by chx: renamed check_query() to db_escape_string() and ↵Dries Buytaert2004-11-21
| | | | | | implemtented it properly per database backend. Read the manual for pg_escape_string: "Use of this function is recommended instead of addslashes()." Or read sqlite_escape_string: "addslashes() should NOT be used to quote your strings for SQLite queries; it will lead to strange results when retrieving your data."
* Search.module:Steven Wittens2004-11-18
| | | | | - Caching index statistics - Minor code cleanup
* Search indexing bug: last updated timestamp needs to take last comment ↵Steven Wittens2004-11-18
| | | | timestamp into account.
* - Patch #8506 by Gerhard: added basic node_load() caching.Dries Buytaert2004-11-17
|
* - Added generic flood control mechanism to throttle certain operations per ↵Dries Buytaert2004-11-15
| | | | hostname (eg. posting comments, requesting passwords, sending e-mails). See flood_register_event() and flood_is_allowed() for details.
* - Modified patch #8552 by Gerhard: added 'add child page' link to book pages ↵Dries Buytaert2004-11-15
| | | | you can edit.
* - Patch #12353 by Stefan: usability improvement: don't show 'throttle ↵Dries Buytaert2004-11-15
| | | | fields' unless the throttle module is enabled.
* - Patch #12783 by Stefan: various small consistency/usability improvements.Dries Buytaert2004-11-15
|
* - Patch #11977 by matteo: taxonomy_term_count() did not take node-level ↵Dries Buytaert2004-11-15
| | | | permissions into account and could return an incorrect number.
* - Patch #11940 by kps: if the user is not allowed to view a newly submitted ↵Dries Buytaert2004-11-15
| | | | node, redirect him to the main page.
* - Modified patch by Jeremy: throttle module improvements and fixes:Dries Buytaert2004-11-14
| | | | | | | | + throttle module: flush cache when the throttle enables/disables + throttle module: prevent throttle being enabled by 0 users or guests when disabled + system module: remove requirement for statistics.module + block module: update help text to reflect access log is no longer required + statistics module: throttle is now enabled/disabled, not using levels 0-5
* - Patch #12713 by Goba: remove useless t() function from help module.Dries Buytaert2004-11-08
|
* - Refactored the throttle module. Patch by Jeremy and me.Dries Buytaert2004-11-07
| | | | | | | | | | | | * There are only two throttle levels instead of 5, namely 'enabled' and 'disabled'. This makes it a _lot_ easier to predict when the throttle will kick in. However, if you maintain a module that is throttle-aware, it needs to be updated! * The throttle mechanism now uses the current number of anonymous users or the current number of authenticated users to kick in. This is a _lot_ more intuitive than the old throttle mechanism. * The throttle block has been removed -- you can now use the "Who's online" block to determine the good throttle settings. * Most of the documentation has been removed because it was deprecated. * It's less code!
* - Performance improvement: made 'sid' the primary key of the sessions table.Dries Buytaert2004-11-07
| | | | | | | | | That should improve performance of session handling as well improve performance of the "Who's online"-block. Drupal.org's sessions table contains appr. 40.000 sessions on a slow day and rendering the "Who's online"-block became a performance bottleneck. This change has yet to be tested on a busy site so things might go wrong.
* - Patch #11427: added 'edit own forum topics' permission.Dries Buytaert2004-11-07
|
* - Patch #12658 by menesis: when an administrator adds a user, the ↵Dries Buytaert2004-11-07
| | | | 'authenticated user' role was not assigned to the new user.
* - Make Drupal ping Yahoo.com.Dries Buytaert2004-11-06
|
* - On popular demand, patch #10178 by jhriggs: made it possible to expand ↵Dries Buytaert2004-11-06
| | | | menu items.
* - Patch #11871 by killes: forum topics could be displayed multiple times ↵Dries Buytaert2004-11-06
| | | | when node-level permission were used.
* - Removed some dead code.Dries Buytaert2004-11-06
|
* - Patch #10632 by Gerhard: the book permissions in today's cvs are not ↵Dries Buytaert2004-11-04
| | | | consistent with the rest of Drupal. We have a "maintain books" and a "edit own book pages" permission. All other modules have a "create foo" permission. Thus the existing "maintain books" permission should be renamed to "create book pages" and a new "maintain books" permission should be introduced that allows editors to update book pages they haven't created themselves even without having "administer nodes" permission.
* - Updated forum_block() to pass comment_count's to node_title_list(). This ↵Dries Buytaert2004-11-04
| | | | eliminates up to 10 SQL queries (sometimes less) for each non-cached page view on drupal.org. Derived from ccourtne's patch.
* - Slightly modified the API of node_title_list(): it will no longer call ↵Dries Buytaert2004-11-04
| | | | | | | | comment_num_all() for each node. Instead, it checks for the availability of the node_comment field, available through the node_comment_statistics table. If updated the Doxygen comments accordingly. People were using node_title_list() without realizing it would do numereous database queries. This change greatly reduces the number of database queries required to render the node statistics block as well as to render the forum block (coming up next). If your module is using node_title_list() and you want the number of comments to be shown as title attributes, chances are you have to update your SQL query to join node_comment_statistics.
* - Modifed patch by ccourtne: made the tracker module take advantage of the ↵Dries Buytaert2004-11-04
| | | | node_comment_statistics table. Improves performance of the tracker page by facter 10 because it eliminates up to 20 SQL queries.
* - Patch #12232 by Steven: more search improvements:Dries Buytaert2004-11-04
| | | | | | | | + When a comment is posted, a node needs to be re-indexed. Luckily, we can use node_comment_statistics for this easily. + When a node is deleted, it should be deleted from the search index as well. + The search wipe didn't properly remove links to nodes from the index. + Section url was faulty in _help. + Minor code rearrangement.
* Fixing bad UTF-8.Steven Wittens2004-11-04
|
* - Patch #12502 by Axel: fixed typo in SQL query: h.hid -> h.nidDries Buytaert2004-11-03
|
* - Patch #12515 by Goba: fixed problem with cookies not being set properly, ↵Dries Buytaert2004-11-03
| | | | causing users getting logged out.
* - Patch by Steven:Dries Buytaert2004-11-03
| | | | | | | | | | | + Display 'friendly' name rather than module name in search watchdog messages. + Remove left-over from search_total table. + Add index wipe button to the admin + Moved the admin to admin/settings/search + Prevented menu bug when node modules update the breadcrumb in view (thanks JonBob). + Changed search_total table's word key to PRIMARY.
* - Patch #12455 by Steven: optimized SQL query. This problem caused Drupal.org'sDries Buytaert2004-11-02
| | | | cron runs to time out.
* #12384: Test if clean URLs work before allowing them to be turned on.Steven Wittens2004-11-02
|
* #12363: Bug in user_access() with uid 1 and $account parameter.Steven Wittens2004-11-02
|
* - Patch #11875 by Neil Drumm: block module configuration improvements.Dries Buytaert2004-10-31
| | | | | | | | | | The primary goal of this patch is to take the 'custom' and 'path' columns of the block overview page and make them into something understandable. As of Drupal 4.5 'custom' lacked an explanation which wasn't buried in help text and path required dealing with regular expressions. Every block now has a configuration page to control these options. This gives more space to make form controls which do not require a lengthy explanation. This page also gives modules a chance to put their block configuration options in a place that makes sense using new operations in the block hook. The only required changes to modules implementing hook_block() is to be careful about what is returned. Do not return anything if $op is not 'list' or 'view'. Once this change is made, modules will still be compatible with Drupal 4.5. Required changes to core modules are included in this path. An additional optional change to modules is to implement the additional $op options added. 'configure' should return a string containing the configuration form for the block with the appropriate $delta. 'configure save' will come with an additional $edit argument, which will contain the submitted form data for saving. These changes to core modules are also included in this patch.
* - Patch #12232 by Steven/UnConed: search module improvements.Dries Buytaert2004-10-31
| | | | | | | | | | | | | | | | | | | | | | 1) Clean up the text analyser: make it handle UTF-8 and all sorts of characters. The word splitter now does intelligent splitting into words and supports all Unicode characters. It has smart handling of acronyms, URLs, dates, ... 2) It now indexes the filtered output, which means it can take advantage of HTML tags. Meaningful tags (headers, strong, em, ...) are analysed and used to boost certain words scores. This has the side-effect of allowing the indexing of PHP nodes. 3) Link analyser for node links. The HTML analyser also checks for links. If they point to a node on the current site (handles path aliases) then the link's words are counted as part of the target node. This helps bring out commonly linked FAQs and answers to the top of the results. 4) Index comments along with the node. This means that the search can make a difference between a single node/comment about 'X' and a whole thread about 'X'. It also makes the search results much shorter and more relevant (before this patch, comments were even shown first). 5) We now keep track of total counts as well as a per item count for a word. This allows us to divide the word score by the total before adding up the scores for different words, and automatically makes noisewords have less influence than rare words. This dramatically improves the relevancy of multiword searches. This also makes the disadvantage of now using OR searching instead of AND searching less problematic. 6) Includes support for text preprocessors through a hook. This is required to index Chinese and Japanese, because these languages do not use spaces between words. An external utility can be used to split these into words through a simple wrapper module. Other uses could be spell checking (although it would have no UI). 7) Indexing is now regulated: only a certain amount of items will be indexed per cron run. This prevents PHP from running out of memory or timing out. This also makes the reindexing required for this patch automatic. I also added an index coverage estimate to the search admin screen. 8) Code cleanup! Moved all the search stuff from common.inc into search.module, rewired some hooks and simplified the functions used. The search form and results now also use valid XHTML and form_ functions. The search admin was moved from search/configure to admin/search for consistency. 9) Improved search output: we also show much more info per item: date, author, node type, amount of comments and a cool dynamic excerpt à la Google. The search form is now much more simpler and the help is only displayed as tips when no search results are found. 10) By moving all search logic to SQL, I was able to add a pager to the search results. This improves usability and performance dramatically.
* #12295: missing </p> in filter help.Steven Wittens2004-10-30
|
* - #12305: Blog it icon was broken due to missing parameter.Steven Wittens2004-10-29
|
* #7607: Sort node types in node/add by translated names.Steven Wittens2004-10-29
|
* #12128: Change label for comment subject settings to match behaviour;Steven Wittens2004-10-28
|
* #12186: Add xml icon to taxonomy listings.Steven Wittens2004-10-28
|
* #12146: Improve locale import/export messages (Stefan)Steven Wittens2004-10-26
|
* - Patch #11725 by mrrowe: custom menus are not wrapped in <div class="menu"> ↵Dries Buytaert2004-10-23
| | | | tags which made their appearance differ from the built-in "navigation" menu.
* - Patch #11879 by Moshe: deprecated the _content hook.Dries Buytaert2004-10-23
| | | | | | TODO: + Update Doxygen hook list (if required). + Document this in the developer's upgrade section.