https://bugzilla.wikimedia.org/show_bug.cgi?id=48893
--- Comment #4 from Brad Jorsch <[email protected]> --- So VisualEditor was fixed with some manual database poking, and a number of the others seem to have been fixed too. Thanks ^demon! On the other hand, a number of others seem to be newly broken. The current list is: AutoCreateCategoryPages Bootstrap Campaigns CirrusSearch CommunityTwitter CoreEvents EImage Less OpenStreetMapSlippyMap PerPageLicense QuickResponse TimelineTable WikibaseDataModel WikibaseQueryEngine If you have a fully checked-out version of mediawiki/extensions (git pull && git submodule update --init --recursive), this bash script should tell you the submodules that aren't at master: for m in `sed -n 's/\[submodule "\(.*\)"\]/\1/p' .gitmodules | sort`; do ( cd $m; A=`git log -1 --format="%h %ci %s"`; B=`git log -1 --format="%h %ci %s" origin/master`; [ "$A" = "$B" ] || echo $m ); done Of course, that won't catch anything that hasn't had a commit since being broken, if such a state is possible. If you want to see info on the actual commits, BTW, you can change 'echo $m' in there to something like 'echo -e "$m\n $A\n $B"'. -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
