| Comment | File | Size | Author |
|---|---|---|---|
| #16 | views_jqfx_galleria-1107578-16.patch | 7.61 KB | tim.plunkett |
| #13 | coding_standars_fixes-1107578_2.patch | 12.6 KB | ParisLiakos |
| #12 | coding_standars_fixes-1107578.patch | 12.18 KB | ParisLiakos |
| Comment | File | Size | Author |
|---|---|---|---|
| #16 | views_jqfx_galleria-1107578-16.patch | 7.61 KB | tim.plunkett |
| #13 | coding_standars_fixes-1107578_2.patch | 12.6 KB | ParisLiakos |
| #12 | coding_standars_fixes-1107578.patch | 12.18 KB | ParisLiakos |
Comments
Comment #1
jamesbenison commentedComment #2
dstolWe only need to review one of your modules. Please choose one of them and mark it as needs review. Thanks.
Comment #3
jamesbenison commentedComment #4
dstolI know there's a metric ton of jQuery related modules. Why not integrate with http://drupal.org/project/jquery?
Comment #5
dstolComment #6
rv0 commentedthis in not "another jquery related module" and has no place in the jquery project imo
this is a (great) add on for views under drupal 7 and i'd love to see it become an official project as i'm using it a lot on new sites.
Comment #7
jthorson commentedrv0:
James only needs to run one module through the application process, after which he will be granted the ability to promote the rest of the jQFX modules to full projects as well.
I'm marking this as closed(duplicate), in favor of the Views jQFX application already in the queue (located at http://drupal.org/node/1046018). If JamesBenison would prefer that this module be reviewed instead of the other, then please feel free to revert the status of this app back to 'needs review', and set the other application to closed "(won't fix)".
I understand that these applications have been open for a painfully long time ... we have been making a few changes lately to ensure that we can identify older applications (such as the original Views jQFX app), and are making them a priority for review purposes. Thanks in advance for your continued patience.
Comment #8
jamesbenison commentedThis is the module that I would like to have reviewed.
Views jQFX was marked closed by me here: http://drupal.org/node/1107574
Also closing this thread: http://drupal.org/node/1046018
Get this approved and I will move toward a 7.x-1.x release based on this code.
The 7.x-2.x branch is in planning stages.
Without approval it will never happen.
Please help.
Thanks
Comment #9
ParisLiakos commentedJust a note :
remove LICENSE.txt from the project.you dont need it, packaging script will add it automatically
Comment #10
ParisLiakos commentedok i had time and checked your module further.
thats what i came up with:
should be
; $Id$Thats all.
including the LICENSE.txt removal should do the job.
When these issues are addressed set it back to needs review so i will RTBC it.
Thanks for your patience
Comment #11
jamesbenison commented@rootatwc
The items that you noted have been addressed.
Thanks for taking the time.
Comment #12
ParisLiakos commentedi forgot a couple of things,
no big deal, i attached a patch that fixes 80 char limit for README.txt,
also added a space after type-casting according to drupal standars
setting to RTBC since they are minor things and you have been waiting that much
Comment #13
ParisLiakos commenteddisregard my previous patch and use this instead, since i missed .info file.
addition to the previous patch:
files[]is only for OOP classes, so removed itComment #14
jamesbenison commentedPatch committed.
Thanks again.
Comment #15
jamesbenison commentedConverting back to RTBC
Comment #16
tim.plunkettHere is another coding format patch, just some trailing whitespace.
Also, the populating of the settings array in views_jqfx_galleria.theme.inc is always ugly as I've experienced, but there a couple improvements to make.
The pattern
'carousel' => $options['carousel'] ? TRUE : FALSE,is more readable and faster as
'carousel' => (bool) $options['carousel'],Also, the entire chunk of
Why couldn't this be
Or if not that, at least make it
That all said, the rest looks good, and you're ready to publish this module. I've granted you full project creation rights. Use this ability carefully!
Thanks for your patience.
Comment #18
avpaderno