summaryrefslogtreecommitdiff
path: root/modules/comment
Commit message (Collapse)AuthorAge
* - Removed check_output() from the theme system layer.Dries Buytaert2003-05-26
|
* - Updated Drupal to use "on output" filters. Derived from Gerhard's patch.Dries Buytaert2003-05-24
|
* - Fixed some PostgreSQL issues. Reported by Michael.Dries Buytaert2003-05-18
| | | | - Removed some dead wood.
* - Fixed a typo in the PostgreSQL database scheme. Patch by Michael Frankowski.Dries Buytaert2003-05-13
| | | | | | | | | | | | | - Fixed a typo in the MSSQL database scheme. Patch by Michael Frankowski. - Removed dependency on "register_globals = on"! Patches by Michael Frankowski. Notes: + Updated the patches to use $foo["bar"] instead of $foo['bar']. + Updated the INSTALL and CHANGELOG files as well. - Tiny improvement to the "./scripts/code-clean.sh" script.
* *** empty log message ***Dries Buytaert2003-05-10
|
* - Patch by Marco:Dries Buytaert2003-05-10
| | | | | | | | | | + Fixed bug 1544: comment_mod_matrix() was broken. + Emit tables using the table rendering functions. + Fixed a typo in the documentation/comments. (Welcome back Marco!)
* - Applied Michael Caerwyn's "%s -> %d" patch.Dries Buytaert2003-05-07
| | | | - Changed all occurences of '%d' to %d as suggested on the mailing list.
* - Fixed bug #1545: incorrect sequence tables on PostgreSQL. Patch by Neil.Dries Buytaert2003-04-20
| | | | | In addition, I have updated update.php so it makes the corresponding changes for MySQL users.
* - Node API improvements by Moshe:Dries Buytaert2003-04-15
| | | | | | | | | | | | | | | "implemented pieces of kjartan's original nodeAPI patch. the mingling of other modules into node.module logic decreases (a good thing). for example, the string "taxonomy" now appears nowhere in node.module - moved the saving of taxonomy terms when submitting a node out of node.module and into taxonomy.module - moved the deletion of comments while deleting a node out of node.module and into comment.module - improved usability of node forms by including node type in the title of the box and page"
* - Changed 'empty()' to '!isset()' to fix a caching bug. Patch by Garry.Dries Buytaert2003-04-13
|
* - Fixed a bug in the "comment votes" _and_ "comment filters" page. ReportedDries Buytaert2003-03-29
| | | | | | | by Paul C. TODO: someone should look into 'comment_mod_matrix()' - it uses a global variable $rid that is not set anywhere..
* - Fixed some SQL query directives.Dries Buytaert2003-03-29
|
* - Fixed 3 typos.Dries Buytaert2003-03-16
|
* - All LIMIT queries must go through the pager or through db_query_range().Dries Buytaert2003-03-16
| | | | | | | | | | | | | | | The syntax for db_query_range() was enhanced so it matches db_query(). So you may pass extra arguments of the SQL statement which are checked via check_query() and then substituted into the SQL statement. After these optional arguments, you always pass $from and $count parameters which define your range. Most often, the $from is 0 and the count is the max number of records you want returned. Patch by Moshe. - The pager_query() function for PEAR was enhanced so that it adds proper GROUP BY statement counting the number of records to be paged. Patch by James Arthur. - MSSQL database scheme by Moshe.
* - Modified patch of Moshe. Enhances the tracker module so it displayes recentDries Buytaert2003-03-14
| | | | | | *nodes* in addition to comments. This will be helpful for tracking down new book nodes, blog posts, news items, and other stuff which isn't interesting enough to be promoted to the home page.
* - Fixing bug reported by Alastair Maw. My paranoia got a little bit too muchKjartan Mannes2003-03-10
| | | | apparently.
* - Moved moderation logic back into node module.Kjartan Mannes2003-03-09
| | | | | | | | | | * After having a chat with Dries we have agreed on the logics (or more specifically he told me how its supposed to work). The queue module is just a method to make moderation public, but its not necessarily the only way. This brings the power back. - Minor interface tweaks (names, case changes, etc). - Fixed error that would show when you tried to view the profile of a blocked user.
* - Changed _nodeapi("conf") to _nodeapi("settings").Kjartan Mannes2003-03-08
| | | | | - Changed node settings page to use table(). - Minor code beautification here and there.
* - Renamed "form.admin" to "form admin".Kjartan Mannes2003-03-07
| | | | | | | | | | - Added node_admin_settings() to let users set node defaults. * Added _nodeapi("conf") - Modified form_checkbox() to unset options. (Modified the patch from Ax.) - Removed the _save() hook. - Fixed a logical flaw in field_get() and field_set() which would break moderation. - Moved some admin menus around and cleaned up some typos.
* - Fixed broken URL in comment form. Patch by Ax.Dries Buytaert2003-03-06
|
* - Two small fixes.Dries Buytaert2003-03-04
|
* - Fixed bug in comment_num_replies() causing problems in the tracker moduleDries Buytaert2003-02-26
| | | | (and potentially in the forum module).
* - Fixed some typos spotted by Al Maw.Dries Buytaert2003-02-25
|
* - New menu houskeeping. Prototyped by Zbynek.Dries Buytaert2003-02-20
| | | | | | | | | | | | | | | | The following modules need updating: * glossary module * feed module (Breyten's version) * mailhandler module * notify module * project module * smileys module * admin module * style module * taxonomy_dhtml module To avoid unexpected problems menu_add() is deprecated (it will print an error message when used) and menu() should be used instead.
* - Added function node_invoke_all($hook, &$node, $op, $arg = 0).Kjartan Mannes2003-02-16
| | | | | | | | | | | | - Added a _nodeapi hook that in time will replace the _node hook. Trying to make as few changes to existing code as possible until the new api is stabilized. - Modified node_form() to add administration options from other modules using the _nodeapi hook. - Modified node_save() to fetch which fields should be saved to the node table from the _nodeapi hook. - Moved comment and queue options from node_form() and node_save() to the modules _nodeapi hooks.
* - Everything is using theme("function") now instead of $theme->function().Dries Buytaert2003-02-15
|
* - See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html.Dries Buytaert2003-02-11
|
* - Changed '%s' into '%d' such that an empty $user->uid is converted to 0. ↵Dries Buytaert2003-02-09
| | | | Required for Drupal to work on new versions of PostgreSQL. Patch by James.
* - Added some caching. Patch by Moshe.Dries Buytaert2003-02-01
|
* - Bugfix; we got redirected to the wrong URL.Dries Buytaert2003-01-29
|
* - Tidied up XHTML. Patch by Ulf.Dries Buytaert2003-01-23
| | | | - Added missing t() function. Patch by Stefan.
* - Applied Ori's format_plural() patch; see mailing list for details.Dries Buytaert2003-01-21
| | | | NOTE: some modules in the contributions repository might need to be updated.
* - A node's comment table is now being emitted by the new table renderingDries Buytaert2003-01-21
| | | | functions.
* - Small improvement to the admin menu based on feedback from Michael.Dries Buytaert2003-01-14
|
* - Removed depricated function.Dries Buytaert2003-01-12
|
* - Minor comment module improvements/fixes.Dries Buytaert2003-01-09
|
* - Clean URL patch.Dries Buytaert2003-01-06
|
* - Added an extra parameter to watchdog() which lets you specifiy an "action"Dries Buytaert2003-01-04
| | | | | | | | | or "operation" link. - Made the main page of the administration section show an overview of all watchdog entries with such action link. - Fixed typo in PostgreSQL database scheme.
* Bugfix: when we have to extract a comment's title from the comment's body,Dries Buytaert2003-01-02
| | | | first strip the body's HTML tags or we might get an empty title after all.
* - Tidied up the use of check_output(). Might make rendering pages a bitDries Buytaert2002-12-31
| | | | snappier (performance improvement).
* CHANGES:Dries Buytaert2002-12-29
| | | | | | | | | | | | | | | | | | | | | | | | | | - Usability improvement: made the comment administration pages use the new table rendering functions. - Usability improvement: new comments will also be marked as new in the administration pages. - Code improvement: changed the comment administration pages to use the default pager instead of a custom pager. - Bugfix: "yes" and "no" were not translatable. - $ diffstat comment.patch comment.module | 45 +++++++-------------------------------------- 1 files changed, 7 insertions, 38 deletions TODO: - Comment module: remove other custom pagers in the comment module. - Pager/database: it would be nice if the functions db_query_range() and pager_query() would have the same semantic as db_query(); that is, using a variable number of arguments that are automatically escaped/checked.
* - Refactored the administration pages.Dries Buytaert2002-12-24
|
* - Small usability change.Dries Buytaert2002-12-10
|
* - Removed the "comment anchors" in the themes; the anchor is emittedDries Buytaert2002-12-10
| | | | by the comment module. Patch by Ax.
* - Avoid empty fields to be displayed. Patch by Moshe.Dries Buytaert2002-12-08
|
* * Applied slightly modified version of Marco's taxonomy patch:Dries Buytaert2002-12-02
| | | | | | | | | | | | | | | | | - Fixed a bug with get_tree and multiple parents. - Fixed 3 wrong caches (this will avoid some queries). - Extension to taxonomy_term_count_nodes() (feature #159): "currently calling taxonomy_term_count_nodes() returns the amount of nodes in each term, would it be possible to extend this function so that it would only return the amount of nodes of a certain type under each term. - Confirm deleting a vocabulary or a term (requested by Moshe). - Use form_weight() in vocabulary and term forms. - After submitting a term, we end up at the term page (requested by Moshe). - Added status messages when adding, editing and deleting vocabularies and terms - Minor clean ups * Made sure all modules use the same link delimiter; "|" for now.
* - Updated the query to put $score in the parameter list.Dries Buytaert2002-11-20
|
* - Commited Moshe's comment moderation improvements.Dries Buytaert2002-11-20
|
* Patch based on work of Kjartan:Dries Buytaert2002-11-17
| | | | | | | | | | | | | | - Changed cache API. - Fixed caching bug in comment.module. Odd this hasn't been reported yet. - Fixed caching bug in forum.module. - Fixed caching bug in system.module. - Fixed caching bug in block.module. - Simplified caching support in forum.module thanks to improved cache API.
* - Fixed glitch in block module: the admin links were not composedDries Buytaert2002-11-01
| | | | | | | | | | | | | | | | | | | | | | | | | correctly. Patch by Stefan. - Added missing t() functions and improved the %x directives for better readability and to ease the process of translating your site. Patches by Stefan. - Made two small additions to the 'code-clean.sh' script; it will now remove patch related junk. NOTES: - I removed the · related bits. Let's tackle these later on in a separate patch after we got some sort of consensus. - I removed the 'module_exist("drupal")' check in the user module; I *think* it is incomplete and therefore incorrect. - Stefan, try using quotes in your translations and check whether everything still works. Example: translate the "Create account" button to "Create \"haha\" account \'hihi\'" and see if you can still create new accounts. Maybe automate this using a quick hack in the locale module ...