A javascript error is reported by Firefox (with Firebug extension) while browsing association.drupal.org :
Drupal is not defined
[Break on this error] <script type="text/javascript">Drupal.extend({ settings: { "basePath": "/" } });...
It seems that something went wrong with misc/drupal.js
The lines at the beginning of the file are as follows (literally):
<<<<<<< drupal.js
// $Id: drupal.js,v 1.29 2006/10/14 02:39:48 unconed Exp $
=======
// $Id: drupal.js,v 1.22.2.4 2006/12/01 14:57:29 killes Exp $
>>>>>>> 1.22.2.4
Comments
Comment #1
lightweight commentedLooks like you've stumbled on some code that had a version conflict in it (that's what the <<<<<< or >>>>> means)... That means that two different developers were working on (and changing) the same file at the same time, and that the changes they made conflicted with each other. Normally the developers resolve these problems before releasing the code, but it might've been an oversight on the part of the developers. My suggestion is to check the module download page again and see if there's a newer version available. Alternatively, after making a backup copy of the file, you can read through the file involved and, if you understand the code, you can "merge" the changes - i.e. figure out which option of the two:
<<<<<<< drupal.js
// $Id: drupal.js,v 1.29 2006/10/14 02:39:48 unconed Exp $ <- Option One
=======
// $Id: drupal.js,v 1.22.2.4 2006/12/01 14:57:29 killes Exp $ <- Option Two
>>>>>>> 1.22.2.4
is right, and then delete the other. Also delete the "<<, ==, >>" lines and the version numbers. If it works, you can submit the fixed file back to the developers. This is what the developers themselves would normally do, but perhaps they're too busy with other things, or aren't aware of the problem.
Hope that helps.
Comment #2
killes@www.drop.org commentedthis was a problem on the association website which has been fixed.
Comment #3
(not verified) commented