Parent Directory
|
Revision Log
|
Revision Graph
| Links to HEAD: | (view) (download) (as text) (annotate) |
| Sticky Tag: |
#635900 by batigolix and arianek: Update Tracker module to new help documentation standard.
#637930 by yoroy and jhodgdon: Remove the word 'post' from Tracker module.
Roll-back of #595084; type-hinting parameters at stdClass makes it so you can't ever pass in another type of class.
- Patch #595084 by c960657: use type hinting for .
#615526 by Crell: Use slave servers for tracker module.
- Patch #122098 by Damien Tournoud, catch, mdixoncm: split comment.timestamp into 'created' and 'changed' columns, just like for nodes.
#564394 by Berdir and Crell: Removed database BC layer. nah nah nah nah... hey hey hey... gooood byeeee...
- Patch #105639 by David Strauss, catch, Berdir, drewish: tracker performance improvements.
#497118 by chx, catch, pwolanin, JoshuaRogers, and Jacob Singh: Remove the function registry. While the hope was that this would result in improved performance for low-end hosts, it comes at the expense of critical development experience problems and less benefit than something like APC. Class registry remains intact to facilitate autoloading.
Of all the patches to accidentally commit without a message. :( Rolling back registry rip. Let's try that again.
*** empty log message ***
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.
- Patch #221964 by chx, dopry, webernet, moshe, webchick, justinrandall, flobruit et al. Can you say 'registry'? Drupal now maintains an internal registry of all functions or classes in the system, allowing it to lazy-load code files as needed (reducing the amount of code that must be parsed on each request). The list of included files is cached per menu callback for subsequent loading by the menu router. This way, a given page request will have all the code it needs but little else, minimizing time spent parsing unneeded code.
- Patch #249546 by pwolanin: rip menu access inheritance -- was already committed to D6.
- Patch #245115 by kkaefer, John Morahan, JohnAlbin et al: after a long discussion we've decided to make the concatenation operator consistent with the other operators.
Drupal 6.2
#200069 by keith.smith: new standard for 'more information' links in module help texts, as the handbook we referred to before was renamed
#197297 by DanW (as GHOP 17), and keith.smith: clean up lots of help texts, update to drag and drop functionality, drupal.module removal, etc
#186903 by marcingy, Rob Loach and chx: (regression) restore my recent posts functionality in tracker
- Patch #169426 by Crell: split tracker module.
Drupal 5.2
#156392 by G?bor Hojtsy. Add comment module depenedency to tracker.
#156392 by iacopopecchi, patch by myself: tracker module depends on comment module (uses its tables and constants without checking for the module being present), so this dependency should be codified in the .info file
#154064 by pwolanin: get hook_help() up to speed to menu changes, allowing router path based lookups, and also full path argument lookup with a passed argument array
- Patch #137767 by chx and pwolanin: multiple menu support.
- Patch #128082 by Goba et al: Allow localization of built-in menu items.
- Patch #111347 by Steven: refactor url() and l().
- Patch #113603 by chx: first crack at re-implementing tabs.
- Patch #34755 by chx et al: faster menu system. HEAD is temporary broken and there is no upgrade path yet.
- Always check the username.
#44276 by dww. Include updated posts in tracker calculations.
#100516: CSS preprocessor to cache and compress all .css files. Benchmarks show up to 40% faster page loads.
- Patch #8716 by webchick et al: small usability improvement: don't show empty tables.
#100563: Conditional loading of (some) module.css files
- Patch #92992 by webchick and neclimdul: clean up documentation that is superseded by the new 'by module' administration dashboard.
#84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc
- Patch #80952 by earl, webchick, neclimdul et al: .info files
#79601: module_exist() -> module_exists()
#76802: Introduce placeholder magic into t() See: http://drupal.org/node/64279#t-placeholders
#77183 by m3avrck and timcn, split up drupal.css by module.
#62340 by chx, webchick, Jaza, Eaton, mathieu, and myself. Configurable node types.
- Patch #72079 by Earl et al: give Drupal an overall administration page ... :-)
#61802 by Zen, Double spaced sentences clean up
- Removing trailing whitespace.
#14591, User.module links for blocked/non-existant accounts + menu 403/404 issue, patch by Steven and merlinofchaos
- Patch #49912: www.drupal.org -> drupal.org. (Today's critical bugfix #5.)
- Patch #48042 by markus: removed unused variable.
- Patch #33128 by Morbus: %num -> %count to make format_plural() work.
- #33128: Format plural for %n new
- Patch #26139 by webchick / Kieran / documentation team: improved admin help of core modules! /
- Patch #28786 by Neil: move pagers out of table.
- Patch #29785 by Chx: multiple node types were broken so we refactored
part of the node system! If you have a module that implements node
types, you'll have to udpate its CVS HEAD version.
We replaced _node_name() and _node_types() by _node(). The new _node()
hook let's you define one or more node types, including their names.
The implementation of the _node() hook needs to:
return array($type1 => array('name' => $name1, 'base' => $base1),
$type2 => array('name' => $name2, 'base' => $base2));
where $type is the node type, $name is the human readable name of the type
and $base is used instead of <hook> for <hook>_load, <hook>_view, etc.
For example, the story module's node hook looks like this:
function story_node() {
return array('story' => array('name' => t('story'), 'base' => 'story'));
}
The page module's node hook module like:
function page_node() {
return array('page' => array('name' => t('page'), 'base' => 'page'));
}
However, more complex node modules like the project module and the
flexinode module can use the 'base' parameter to specify a different base.
The project module implements two node types, proejcts and issues, so it
can do:
function project_node() {
return array(
array('project_project' => array('name' => t('project'), 'base' => 'project'),
array('project_issue' => array('name' => t('issue'), 'base' => 'project_issue'));
}
In the flexinode module's case there can only one base ...
This hook will simplify the CCK, and will make it easy (or easier) to merge
the story and page module.
In addition, node_list() became node_get_types(). In addition, we created
the following functions: node_get_name($type) and node_get_base($type).
- Patch #29385 by chx: no ?> add end of files.
- Patch #27737 by Gerhard: format_name($object) -> theme('username', $object).
Usernames can now be themed; eg. an icon/avatar could be added.
TODO: update contributed modules + update the migration docs.
- Patch #22857 by mathias: removed redundant DISTINCT().
- Patch #22857 by mathias: removed redundant DISTINCT().
- Patch #21221 by Robert: make status values in comment.module defined constants for readability.
- Bug #21452 reported by njivy: added missing return to tracker_user_page(). It did not return nor print its output.
- Patch 20910 by chx: centralize print theme page.
- Patch #17208 by asimmonds: help text fixes:
- permissions menu link updates in a number of modules help
- anchor link fix in distributed auth help
- "my account" link fix in user help
- spelling correction in tracker.module help
- I also changed 'admin/access/perms' to 'admin/access/permissions'.
- Patch #16253 by Goba: incremental improvements to the new content markers. Goba: it would be nice if one of the core themes would showcase this functionality. ;-)
- Added a missing DISTINCT() to the pager query. Spotted by Steven.
- I had to use DISTINCT for the tracker.module's SQL queries.
- Patch #16111 by chx: generalized node_rewrite_query to db_rewrite_query.
- Patch #16253 by Goba: this simple and straightforward patch adds the ability to define different types of markers (while retaining the old default behaviour of the new and required markers to look the same). Someone with enough time on his hands might be able to partition the new marker to a real new marker and a changed marker (since node_is_new() returns TRUE even if nodes changed, and not only when they are new). This is the base on which the new patch can be worked though.
- Fix tracker pager count query being wrong (it did not return a count but a set, and it counted nodes with more than 1 comment as multiple nodes). - Clean up various SQL queries: removing literally inserted data (db_escape_string is evil!), fixing single "%" which should be "%%", fixing integers being compared as strings.
- #15500: Fix tracker not showing nodes without comments. - Tiny code style fix
#15500: Fix tracker not showing nodes without comments.
- The real code fixes ;)
- Patch #14731 by chx: made it possible to rewrite node queries.
- Patch #15500 by Morbus: ignore unpublished comments when determining last_post. (This matches the behavior in HEAD.)
- Patch #14262 by Richard: help text improvements for the tracker module.
- Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve consistency.
- Patch #12783 by Stefan: various small consistency/usability improvements.
- Modifed patch by ccourtne: made the tracker module take advantage of the node_comment_statistics table. Improves performance of the tracker page by facter 10 because it eliminates up to 20 SQL queries.
- Patch #11577 by drumm: changed t('ago') -> t('%time ago', ...) to make it
translatable in languages such as Spanish.
- Small refinement with regard to the page title.
- Rewored 'track posts' to 'track'.
- Usability improvement: the 'recent posts' feature on the user pages lead to a page with a confusing (wrong) title so I shuffled things around a bit and tab-ified it as 'track'.
- Patch #8179 by JonBob: reintroduced menu caching.
- Patch by JonBob: for consistency and readability, add brief descriptions of each source file inside the @file comment block at the head of the file. This helps with Doxygen indexing, and also allows neophytes to see what a file does immediately on opening the source, regardless of the organization of the hooks.
- Code improvements by Stefan: use capital letters for header titles (and added some missing t() functions).
- Patch #9330: ucfirst() gives problem when used with multibyte charset. Replaced the use of ucfirst() with a CSS-based solution.
- Patch #9543 by JonBob: added node-level access control!
- Patch #9478 by JonBob: allow printf-style arguments in pager_query. 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 by Matt: made it possible to alias an URL multiple times.
- Fixed colspan in tracker table. - Renamed '... your ...' to '... my ...' (cfr. 'my account).
- Patch #9031 by Morbus: this last tracker patch was broken - for 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 #9031 by Ber: if the comment module is not available comment_num_all() should not be called.
- Patch #8681 by stefan: fixed some broken URLs and help texts.
Tabs patch!
CHANGES
-------
+ Introduced tabs. First, we extended the menu system to support tabs. Next, a tab was added for every link that was (1) an administrative action other than the implicit 'view' (2) relevant to that particular page only. This is illustrated by the fact that all tabs are verbs and that clicking a page's tab leads you to a subpage of that page.
+ Flattened the administration menu. The tabs helped simplify the navigation menu as I could separate 'actions' from 'navigation'. In addition, I removed the 'administer > configuration'-menu, renamed 'blocks' to 'sidebars' which I hope is a bit more descriptive, and made a couple more changes. Earlier, we already renamed 'taxonomy' to 'categorization' and we move 'statistics' under 'logs'.
+ Grouped settings. All settings have been grouped under 'administer > settings'.
TODO
----
+ Update core themes: only Xtemplate default supports tabs and even those look ugly. Need help.
+ Update contributed modules. The menu() hook changed drastically. Updating your code adhere the new menu() function should be 90% of the work. Moreover, ensure that your modue's admin links are still valid and that URLs to node get updated to the new scheme ('node/view/x' -> 'node/x').
- More code improvements by JonBob.
- Added support for 403 handling. Patch by JonBob. As a side benefit, administrators will be able to define a custom 403 page, just as they can define 404 pages now. This needs to be documented in the "Changes since / migrating to ..." pages.
- Patch #7045 by Goba: the tracker links in the 4.4.0 CVS branch are broken, since they don't try to separate the fragment from the URL, and so URL aliasing is not possible.
- Remove redundant line. Patch by killes.
- Tiny usability improvement for translators. Patch by Gerhard.
- More profile module improvements:
+ 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.
Patch #5588 by bylund: XHTML improvements: <i> -> <em> and <b> -> <strong>.
- Tracker and forum module improvements! Note: the CSS of the tracker page has changed. Some CSS files still have to be updated.
- Patch #6484 by Goba:
+ A small typo on tracker module, which prevented the help from displaying.
+ For for a HTML tag closing buglet which made Opera completely mess up
the page.
+ Translation fixes in story.module.
- Rewrote the profile module:
+ 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.
- Coding style fixes. - Extended tracker comments to handle project issues.
- Patch by Steven: removed redundant permission checks. These are no longer required thanks to the new 404 handling.
- Patch #5501: fixed invalid HTML in the comment and tracker module.
- Fixed tracker bug: tracker module has a line of faulty code which tries to get the node name in the old way. Patch by JonBob.
- Fixed capitalization.
- Improvements by Goba:
+ removes the lots of pagers and indirect pager themeing
+ add the theme_pager() function, which should be called as
theme("pager", ...) to get a pager.
- Committed phase 4 of JonBob's menu system changes.
- Committed phase 3 of JonBob's menu changes. Adds an API for modules to define titles and breadcrumbs for their pages, and updates the theme system to display them.
- Patch by JonBob: Phase 2 of the menu system integration project. This unifies the interface used by admin and non-admin pages, and deprecates the _page hook in favor of explicit callbacks from menu(). Breadcrumbs, titles, and help text go away as a result of this patch; they will return in the phase 3 patch, printed by the theme.
- table(...) -> theme("table", ...)
- Committed stage 2 of the theme system improvements! Patch by CodeMonkeyX.
- Committed stage 1 of the menu callbacks improvements. Patch by Jonathan.
- Fixed some link titles that were no longer correct due to the menu changes. - Made sure that the link titles match the page titles.
- Committed part 3 of Michael's help system improvements: removed the $help parameter from the menu() function.
- Help system improvements: eliminated the _system hook. Patch by Michael. - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael.
- Help improvements and translation improvements from Michael. Thanks!
- Url aliasing improvements. Patch by Matt. See mailing list for more information.
- Associate a callback with the menu links! (This callback is not yet being called but will be as soon the remaining links have been transformed to use the menu system.) - Made sure the menu does not render links with no callback and no children. Like this, the 'create content' link is not being shown when the user has no permission to add any content.
- Committed Al's new admin link texts. Remarks:
1) As explained by Al, there is still a glitch with the 'create content'
menu.
2) The user module part of the patch did not apply due to Kjartan's earlier
patch.
- Committed the admin menu integration patch. Thanks Adrian, Stefan and others.
- Gerhard's uid 0 patches. These patches bring various performance improvements. Requires a database update.
- Fixed the tracker author sort. Patch by Moshe.
Patches from Moshe: - Tracker module: adds a missing call to tablesort_pager(). - Tablesort: + add 'title' attributes + let arbitrary querystring params flow through to pager links + removed ugly border around the arrow
- Applied Moshe's tablesort patch! Note that I changed the arrow images because those of Moshe where not identical.
- Updated the tracker module to the new help system scheme.
- Bugfix: changed 'INNER JOIN' back to 'LEFT JOIN'.
- Commited the URL aliasing patch. Thanks Matt. This update requires you to run update.php!
- Changed some INNER JOINs back to LEFT JOINs. Patch by Gerhard. Not tested by me.
- Performance improvement: changed a fair amount of "left joins" to "inner joins". Patch by Gerhard.
- Committed a slightly modified version of Slavica's table prefix patch.
- Made the tracker module link to your own posts. Patch 79 from Gerhard. - Added a permalink to the Xtemplate theme. Requested by Scott. - Added pager support to the locale module.
- Made it easier to translate some text on the tracker page. Patch #71 by Stefan.
- Bugfix: made request_uri() rewrite ( and ) with their entity equivalents to avoid XSS attacks! Patch by Al, Moshe, Marco, Kjartan and me. - Bugfix: the admin module does now import drupal.css prior to admin.css. Patch by me. - Bugfix: the admin module was still emitting a <base href=""> tag. I removed this as it is been taken care of by theme_head(); Patch by me. - Bugfix: made the tracker module's pager only consider published pages. Patch by Moshe. - Bugfix: cured some typos in the comment module's help function. Patch by Marco. - Bugfix: fixed a typo in the pager_display() that caused optional attributes to be discarded. - Bugfix: made the Xtemplate emit empty boxes like any other theme does. Patch by Al. - Bugfix: fixed broken link on the statistics module's log page. Reported by Kjartan. - CSS improvements: made the HTML output emitted by the tracker module look nicer. Patch by Moshe and Al. - CSS improvements: added CSS classes for form elements. Patch by Al. - CSS improvements: added a vertical gap between the last form item and the submit button. Patch by Al. Note that Opera 6 is not picking up this CSS but apparently others browsers such as Konqueror do. - Xtemplate improvements: changed the color of the selected day in the archive module's calendar. Patch by Al. - Usability improvements: made the "birthday" field of the profile module look nicer. Patch by Al. ------ - TODO: it might be a good idea to emit the following meta tag in the theme_head() function: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> Currently, some themes (and modules!) emit this while others don't. This would also make it possible to change the charset site-wide. - TODO: now we added support for td.dark and td.light to drupal.css, maybe it can be removed from admin.css as well as xtemplate.css?
- Applied Michael Caerwyn's "%s -> %d" patch. - Changed all occurences of '%d' to %d as suggested on the mailing list.
- Fixed typo.
- Fixed critical bug #1539; incorrect use of pager_query().
- Fixed some PHP "notices".
- Added a pager to the tracker page.
- Some visual improvements. More suggestions welcome.
- Modified patch of Moshe. Enhances the tracker module so it displayes recent *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.
- Everything is using theme("function") now instead of $theme->function().
- See http://lists.drupal.org/pipermail/drupal-devel/2003-February/021824.html.
- Fixed bug #1133: disabled comments are no longer shown. Thanks Gerhard.
- Fixed bug #1133: disabled comments are no longer shown. Thanks Gerhard.
- Tidied up XHTML. Patch by Ulf. - Added missing t() function. Patch by Stefan.
- Applied Ori's format_plural() patch; see mailing list for details. NOTE: some modules in the contributions repository might need to be updated.
- Clean URL patch.
- Tidied up the use of check_output(). Might make rendering pages a bit snappier (performance improvement).
- Wrapped some hardcoded colors in "theme_invoke()"s; we can still create a drupal_error() later on but I think we better get used to theme_invoke(). - Fixed translation bug. Patch by Moshe. - Fixed PHP warning. Patch by ax.
- Made sure the tracker module does not list discarded comments. Patch by Moshe.
- removing the DESC on group by.
- improved module descriptions. - removed admin options for queue and comment module if the modules are not loaded. - nodes are now auto promoted when queue module isn't enabled. - moderation result block is now visible by the node author.
- adding descriptions to modules (thanks Joe + Scott).
- fixed comment flat list view missing 1 comment.
- changed update.php around a bit.
* security check isn't in effect if the db hasn't been updated.
* instructions re-organized.
* fixed some minor updates.
- updated database.mysql done by UnConeD.
- changelog update.
- Added missing translations and the like.
- Bugfix: the tracker module was using an incorrect time interval to show
recent/new comments. Patch by Gerhard.
- fixing bug #179
- using format_name instead of some local hack.
- fixed links. - added link to a users recent comments on their info page.
- applied Stevens link patch. - fixed block permissions. - fixed user admin page errors: http://www.drupal.org/node.php?id=173. - cleaned up common.inc a bit: removed format_info, path_img, field_merge.
- bug fixes:
* fixed mails not being parsed properly.
* tracker now shows user name when you view your own recent
comments.
* link to submission queue now points to the right place.
* fixed jabber module.
* theme is now activated when changed.
- applied Gerhards coding style patch.
- Applied Marco's big patch, including contributions from Moshe:
+ Changed the db_query() API.
+ Wrapped all links in l(), lm(), la(), ..., drupal_url() functions.
+ XHTML-ified some HTML.
+ Wrapped a lot of text in the administrative pages in a t()
function.
+ Replaced all $REQUEST_URI/$PATH_INFOs by request_uri().
+ Small bugfixes (eg. bug in book_export_html() and clean-ups (eg.
RSS code).
+ Fixed some bugs in the taxonomy module (eg. tree making bug), added
new functionality (eg. new APIs for use by other modules), included
Moshe's taxonomy extensions, and some documentation udpates.
+ ...
- made the user information block into two different blocks. One for login and one for user information. - added link to help in book module (post-patch, see below). - applied various patches: Patch by Greg Tyrelle <greg@tyrelle.net> - tracker module now shows usernames next to comments. Patch by Moshe Weitzman <moshe@wallaware.com> - book module has a more complete help. - added administrative link to export book to html - fixed non book nodes not showing up in trees. Patch by moshe weitzman <weitzman@tejasa.com> - links can be defined in the configuration file.
- Added documentation contributed by Moshe.
- Made the calendar module accept a $date parameter such that you can jump directly to a certain date in the archives. Also made the calendar link to itself such that it is self-contained. - Code beautifications: quoted a lot of arrays, removed dead code and simplified a few things. - Replaced the Calendar class by one function "calendar_display": using a class (or class instance, or object) doesn't make sense in the archives' case. - Renamed "calendar.module" to "archive.module". - Fixed a /problem/ with node settings not always being saved like expected. - Reorganized the user menu: renamed a couple of links for clarity and structure. - Fixed a few typos.
- Applied Natrak's module improvements.
- Fixed more than 30 HTML and XML well-formedness errors.
- Added some more explanations.
- import.module:
+ Improved input filtering; this should make the news items look
more consistent in terms of mark-up.
+ Quoted all array indices: converted all instances of $foo[bar]
to $foo["bar"]. Made various other changes to make the import
module compliant with the coding style.
- theme.inc:
+ Fixed small XHTML glitch
- comment system:
+ Made it possible for users to edit their comments (when certain
criteria are matched).
+ Renamed the SQL table field "lid" to "nid" and updated the code
to reflect this change: this is a rather /annoying/ change that
has been asked for a few times. It will impact the contributed
BBS/forum modules and requires a tiny SQL update:
sql> ALTER TABLE comments CHANGE lid nid int(10) NOT NULL;
+ Moved most (all?) of the comment related logic from node.php to
comment.module where it belongs. This also marks a first step
towards removing/reducing "node.php".
+ Added a delete button to the comment admin form and made it so
that Drupal prompts for confirmation prior to deleting a comment
from the database. This behavior is similar to that of deleting
nodes.
+ Disabled comment moderation for now.
+ Some of the above changes will make it easier to integrate the
upcomcing mail-to-web and web-to-mail gateways. They are part
of a bigger plan. ;)
- node system:
+ Made it so that updating nodes (like for instance updating blog
entries) won't trigger the submission rate throttle.
+ Fixed a small glitch where a node's title wasn't always passed
to the $theme->header() function.
+ Made "node_array()" and "node_object()" more generic and named
them "object2array()" and "array2object()".
+ Moved most (all?) of the comment related logic from node.php to
comment.module where it belongs. This also marks a first step
towards removing/reducing "node.php".
- misc:
+ Applied three patches by Foxen. One to improve performance of
the book module, and two other patches to fix small glitches in
common.inc. Thanks Foxen!
- Made a few improvements to the tracker module; the problems were reported by ax.
- A large batch of updates, amongst them a rewritten node system. More information available on the mailing list.
- added the CVS keyword $Id$ to all files to make future version tracking easier. Also changed the <? tag to <?php in some cases.
- Removed a node's link ID (lid) as discussed on the mailing list. See 'updates/3.00-to.x.xx.mysql' for the required MySQL updates. - Renamed some "author" fields to "uid" fields for sake of consistency. - Fixed the coding style of some PHP files. - Fixed the moderation queue (fairly untested though). - Re-introduced the temporary SQL table in _node_get(). - Added a missing 'auto_increment' to 'updates/3.00-to-x.xx.mysql'.
- improved the node sorting
- PEAR-ification of Drupal by claw: you can now host Drupal on a wide range of databases including MySQL, PostgreSQL, MSSQL, and others. For additional information and an 'how to upgrade', check the mails sent to the mailing list.
- improved the tracker.module so that it shows all the recent comments instead of all recent comments to recent nodes.
- a batch of updates, including some experimental changes to the moderation of comments and nodes.
- added a new tracker.module (everybody kept nagging about the missing "your drupal" feature). Tracker.module will be improved and expanded during the process. - renamed a link in user.module
This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |