Posted by douggreen on August 30, 2008 at 6:55am
| Download | Size | md5 hash |
|---|---|---|
| coder-5.x-2.8.tar.gz | 55.75 KB | 96410632e3215850f7521761ec1e9c69 |
| coder-5.x-2.8.zip | 66.59 KB | e1f42f4f9e4a97b9e801658904203fac |
Last updated: December 24, 2010 - 22:38
Another "way" overdue release. This "might" be the final 5.x release...
Changes since DRUPAL-5--2-7:
- Added back in the trailing spaces to the test line that is there to be flagged
during reviews. - #223162 - arguments to form prerender functions changed in D6
- #222425 - coder wasn't checking for instances of "CREATE TABLE" and "DROP TABLE"
- the new schema API should be used instead. - #223877 - parameters to user_authenticate() changed in D6
- #223892 - parameters to hook_access() changed in D6
- #224970 - fixed issue with detecting file_save_upload() parameter change
- #223908 - added in check for menu_get_object() change
- #226403 - add a simple help to the admin/settings/coder page
- #226403 - add a simple help to the admin/settings/coder page - slight change to the text
- #212388 by webchick - review .test files
- #212388 - remove processing of .schema files
- #212388 - restore processing of .schema files
- #212400 - better $Id$ checks
- fix $Id$ rule
- add support for drush
- fix include of coder.drush.inc
- add severity settings to drush command line, add drush command line help
- #225831 by Freso - add links to a couple fapi warnings
- show errors/status messages in drush
- implement summary option for drush
- change drush ignore syntax
- add check for missing modules, standardize theme_cols
- remove author attribution (see http://www.youtube.com/watch?v=ZSFDm3UYkeE)
- #231621 - fix check for vars in sql
- #223168 - added check/test for form submit functions returning values.
- #257499 - fix for false positive on db placeholders
- #226965 - added patch for checking for translation directory change, original
patch by Doug. - #212804 - coder now checks for @file blocks.
- #212407 - added in test for proper hook_X doxygen formatting.
- #212405 - added in rule/test for t() usage on menu items' titles and
descriptions. - #241886 - fix for concatenation false positive for (.01) type usage.
- #188975 - patch to alert on usage of back ticks in SQL code, which isn't
compatible with all dbs. - #179270 - added check for unquoted %s placeholders in sql queries
- #257956 - added in coder_47 rule regarding substr vs drupal_substr, etc, to
coding standards. - #222672 - added in Doug's patch to allow coder run the trailing space check on
blank lines. - #180226 - added Doug's patch for warning about accessing array elements without
the quotes. - The Drupal coding standards (http://drupal.org/coding-standards) says that all
pre-defined PHP constants (e.g. null, true, false) should be in uppercase. I've
added a check for this to coder_style.inc and fixed instances of it in the coder
code. - #272903 - fix for warning on using db placeholders - was appearing for all sql
queries, but it should only be applied to db_query() ones, not update_sql(). - added db_query_range() into list of functions that db_query placeholders should
be used with. - add check in menu system based on DrupalCon talk by chx and pwolanin