Re[1]: update: problem with wisent

2005-08-12 Thread Eric M. Ludlam
The file wisent-yourlanguagedefhere-wy.el is a generated file.  If you
did a make clean or similar in cedet or cedet/semantic, it will
delete those files.  If you follow the INSTALL instructions for
building CEDET, it should eventually construct those files for you.

Eric

 Ernst Reissner [EMAIL PROTECTED] seems to think that:
Hello,

i just updated to 2.3.5 and now jde is not loaded at all.
A look into the messages buffer shows:

Loading wisent-java-tags (source)...
eval-buffer:
Cannot open load file: wisent-java-tags-wy
Loading lazy-lock...done
Fontifying BasicTypesCompatibilityChecker.java... (regexps..)
Loading lazy-lock...done
Loading mwheel...done


a, yes, a look into 
/usr/share/emacs/cedet-1.0beta3b/semantic/wisent/wisent-java-tags.el
shows the line

(require 'wisent-java-tags-wy)

and there is no file wisent-java-tags-wy.el
only
wisent-java-tags.el  wisent-java-tags.wy  wisent-java.el   
wisent-java.wy

What's wrong here?


greetings

Ernst


-- 
  Eric Ludlam: [EMAIL PROTECTED], [EMAIL PROTECTED]
   Home: http://www.ludlam.netSiege: www.siege-engine.com
Emacs: http://cedet.sourceforge.net   GNU: www.gnu.org


Jde-help and wget

2005-08-12 Thread Nascif Abousalh-Neto
Hi,

I was trying to configure jde-help to see some javadoc directories in Jakarta 
(the commons libraries) and I had to fix a number of problems in the process. 
Here is what I did in the hopes it might help someone else:

1) Once I enabled the extra docsets pointing to the jakarta javadocs, 
jde-help-symbol started to fail with a very cryptic message, something like 
wrong type, (sequencep, 2) or something like that . I traced it down to the 
method jde-help-find-javadoc, more precisely to this code:

 (if jde-help-wget-tries
 (concat --tries= jde-help-wget-tries))

I fixed by changing it to:

 (if jde-help-wget-tries
 (concat --tries=  (format %d 
jde-help-wget-tries)))

Same thing on the line below:
 (if jde-help-wget-timeout
 (concat --timeout=  (format %d 
jde-help-wget-timeout)))

2) After that step wget was still failing on me - but then it was a local 
environment problem, since we use an http proxy at work. Adding a .wgetrc with 
the proper info solved the problem.

It seems that jde-help tries all the docsets, even if it finds the help for the 
class at point in the first one. I believe this should be optimized - it is 
already a little slow as is.

Regards,
  Nascif