Closed (fixed)
Project:
FeedAPI
Version:
6.x-1.x-dev
Component:
Code feedapi (core module)
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
23 Jun 2009 at 13:21 UTC
Updated:
16 Jul 2009 at 16:30 UTC
Jump to comment: Most recent file
Comments
Comment #1
alex_b commentedGood cleanup. I fixed some minor issues:
- Use imparative instead of third person for comments - i. e. "Create new content type." instead of "Creates new content type."
- @file comments should be more generic in install files - I limited them all to a very generic "Install file for..." which I feel is in line with the comments for hook implementations.
- Cleaned up some language.
- Simplified drush @file comments.
Open question: there are three occasions where regexes have been changed? Was this on purpose? E. g.:
Comment #2
aron novak#1: The content of the regexes have not been changed, it's code style question.
"string concatenation should be formatted without a space separating the operators (dot .) and a quote" - coder module
According to this: "." - this is the good :)
However this is changed in these days: http://drupal.org/coding-standards
"Always use a space between the dot and the concatenated parts to improve readability." - as I know this is for D7
However this is a really marginal question.
Comment #3
alex_b commented#2 : stupid me :) haven't read the string properly, didn't notice that these " where actually delimiting the very regex string. But it's weird how this is being used to excape quotes. Shouldn't we use the proper escaple character for this?
Comment #4
aron novakRerolled.
In fact those different style quotes were really amigous :)
Comment #5
aron novakOne of the regular expressions was skipped from the update.
Comment #6
alex_b commentedReady to be committed.
Comment #7
aron novakCommitted.