System module page *seriously* broken
dmitrig01 - March 2, 2008 - 19:09
| Project: | Drupal |
| Version: | 7.x-dev |
| Component: | system.module |
| Category: | bug report |
| Priority: | critical |
| Assigned: | dmitrig01 |
| Status: | patch (code needs work) |
Description
Here's a little patch...
| Attachment | Size |
|---|---|
| system_modules_cleanup.patch | 11.12 KB |

#1
So the goal here is to clean up the underlying form array structure on that page, right? Sounds nice. I tried it and a couple issues came up:
Looks like a promising start, though...!
#2
This should work properly.
#3
The help links are no more?
#4
Oops...
#5
Helps is indeed gone
#6
Here are the "more help" links.
This patch will greatly help me do my install-profiles-as-modules, which I don't really even want to mess with until this gets in.
#7
This seems to break the theming/grouping at admin/build/testing for some reason.
Also looks like tests need updating: Module list functionality: 40 passes, 25 fails, 1 exception
And I get the following notice after tests run: warning: Invalid argument supplied for foreach() in /modules/simpletest/drupal_web_test_case.php on line 862.
#8
Yep, I got those too, I jsut noticed. This was a bug in the patch itself. However, it deosn't seem to break the theming/grouping for me. Try this new patch
#9
#10
theming seems to have been a cache issue, I thought saving the modules page rebuilt the theme registry, but maybe not. Either way it works with the new patch.
System tests pass as well now (and no new failures anywhere else).
Only took a very quick look at the code, but
3 files changed, 209 insertions(+), 278 deletions(-), very nice.#11
I have cvs_deploy and since it's not part of a package, I get a notice:
notice: Undefined index: package in modules/system/system.admin.inc on line 667.Before the patch, such modules were grouped under "Other"
#12
Try this.
#13
Oops, Other was getting run through t() twice.
#14
Maybe it would be better to modify module_rebuild_cache, such as:
Index: includes/module.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/module.inc,v
retrieving revision 1.120
diff -u -p -u -5 -r1.120 module.inc
--- includes/module.inc 13 May 2008 17:38:42 -0000 1.120
+++ includes/module.inc 5 Jul 2008 01:42:21 -0000
@@ -99,10 +99,11 @@ function module_rebuild_cache() {
// Set defaults for module info
$defaults = array(
'dependencies' => array(),
'dependents' => array(),
'description' => '',
+ 'package' => 'Other',
'version' => NULL,
'php' => DRUPAL_MINIMUM_PHP,
);
foreach ($files as $filename => $file) {
#15
Ok, here's a patch which does this.
#16
As per chx: rename
_system_modules_build_extrato_system_modules_build_row, and add lots of comments.#17
I very much like this. It's quite a bit cleaner than the current code (for which I am partially responsible for).
#18
Per litwol: move #headers into the form definition itself, so altering the form becomes easier.
#19
Oops, in-consitiency between #header and #headers, went with #header.
#20
(bump)
#21
No longer applies.
#22
crap, re-rolled
#23
Even after this patch, this is still some ugly code IMO. The dependency checking ought to be split off into helper functions so it isn't tied into form building. That would be a big help to drush.module and any upcoming 'auto-install via php' module. That can wait for a follow-up patch though.
#24
I had another look at this patch and it looks a reasonably good clean-up indeed. The reason it took this long to commit this patch is for reasons outlined by Moshe -- although it is a clean-up, it is still reasonably messy. Moshe's comment triggered me to look at it again, and to push it over the edge. Hopefully we'll see more clean-up patches.
Thanks dmitri. Good job.
#25
Edit: Rewrote report more accurately.
1.) This patch causes notices for modules which do not declare a package. That is true for a lot of contrib currently. If Drupal 7 intends to make package a required value, remember to update the docs accordingly.
2.) The patch removes core compatibility warnings. If a module is incompatible with the core version, the checkbox will correctly be replaced with a stop sign, but the sentence
This version is incompatible with the 7.0-dev version of Drupal core.fails to appear. Related to that, the concatenation in system.admin.inc:776 (which appends this message) causes a notice because it appends to an undeclared variable.This could have been avoided with some more thorough testing.
#26
Replace the key #value with #markup in system.admin.inc:776. Easy change, fixes the notice and the missing compatibility warning. The other one will probably need some isset() or other.
#27
Note that this was also brought up in #11.
#28
I accidentally posted a new issue about the undefined index notices. As I was about to post another I searched a little deeper, and thought I should post them in here. Other issue: http://drupal.org/node/286351
#29
No you shouldn't have, your issue is unrelated to this one, even though it is a similar mistake. This patch affects only system.admin.inc, not user.admin.inc or filter.admin.inc.
#30
Problem identified.
1.) Dries committed only part of the patch in #22. modules/system/* was committed, but includes/module.inc was not. Once this file is committed, the "package" notice will vanish.
2.) #value was mistakenly used instead of #markup in system.admin.inc. The patch I am uploading now fixes this. After that, the other notice will vanish and version incompatibility warnings will reappear.
My patch includes the fix to both files.
#31
On top of the two bugs outlined in #30, the system module page is now *seriously* broken:
Looks like this was not tested enough. Granted, that form is really messy.
#32
subscribing
#33
Let fix this and submit tests with it. That will learn us to test it better.
#34
2 more things:
1) if your .info file does not have the files[] line, registry throws a php notice and warning, see http://drupal.org/node/274232 I think we should add this to the compatibility check just like we check for the core line.
2) system.admin.inc, line 783 has a #value, should be #markup. This throws a php notice also.