From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Malte Spiess Newsgroups: gmane.emacs.help Subject: Re: trouble generating Javadoc with JDEE Date: Fri, 23 Mar 2007 13:44:32 +0100 Organization: Arcor Message-ID: <87lkhouo27.fsf@paeike.mathematik.uni-ulm.de> References: <87mz255h1b.fsf@paeike.mathematik.uni-ulm.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1174657143 13132 80.91.229.12 (23 Mar 2007 13:39:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 23 Mar 2007 13:39:03 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Mar 23 14:38:47 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HUjyd-0007Az-Ry for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Mar 2007 14:38:44 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUk0X-00072S-SR for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Mar 2007 08:40:41 -0500 Original-Path: shelby.stanford.edu!newshub.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news-fra1.dfn.de!news-stu1.dfn.de!news.belwue.de!newsfeed.arcor.de!newsspool1.arcor-online.net!news.arcor.de.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.95 (gnu/linux) Cancel-Lock: sha1:Lh3ceZqEcPexlhuE7f6ww/tFqGA= Original-Lines: 78 Original-NNTP-Posting-Date: 23 Mar 2007 13:44:32 CET Original-NNTP-Posting-Host: 4a22bb10.newsspool3.arcor-online.net Original-X-Trace: DXC=1K8McF=Q^Z^V384Fo<]lROoR1Fl8W>\BH3Y2Pb6d3>67d45Ci5\IglHM56136N\MInBL2M:bm[d6nM01 Original-X-Complaints-To: usenet-abuse@arcor.de Original-Xref: shelby.stanford.edu gnu.emacs.help:146523 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:42129 Archived-At: Matthew Flaschen writes: > Malte Spiess wrote: >> Hi fellas, >> >> I'm having some trouble generating the docu with jde(e) here on my >> Debian system with the Emacs snapshot and Sun Java6. >> >> I have updated the alternatives, that means that I can enter javadoc as >> any user and it will use the appropriate version (in case this matters) >> as supposed by the guide on the JDEE homepage. More precisely speaking >> the link /usr/bin/javadoc is set as it should be. Thus using javadoc on >> a terminal works fine. >> >> Still when I do `M-x jde-javadoc-make` in a buffer showing a .java file >> all I get is >> apply: Symbol's value as variable is void: compilation-nomessage-regexp-alist >> . >> >> Has anyone an idea why this happens? > > It works for me, using jde version 2.3.5.1 (C-h v jde-version) and gjdoc > (installed java-gcj-compat-dev , which is also in Debian testing). Yeah, forgot the most important version number. It's JDE 2.3.5.1 here, too. > I have the below customizations on javadoc, neither of which should > matter here: > > '(jde-javadoc-checker-level (quote private)) > '(jde-javadoc-gen-args (quote ("-validhtml"))) Hm, I don't think so either. > Do any features of JDE work? Yes, actually most features that I have used so far work nicely. I haven't explored all of the nifty stuff yet, but what definitely works is: -compiling (C-c C-v C-c / jde-compile) -running the application (C-c C-v C-r / jde-run) I've had some trouble with Sun Java version 6, as this is apparently not yet officially supported, but cheating with the version seems to do the trick. Just not to mess my configuration up manually, I have completely used the customize stuff so far. Here is what I've got in my .emacs: ,---- | '(jde-checkstyle-classpath (quote ("/usr/share/java/checkstyle.jar:/usr/share/java/commons-cli.jar:/usr/share/java/commons-beanutils.jar:/usr/share/java/commons-logging.jar:/usr/share/java/antlrall.jar"))) | '(jde-checkstyle-style "/home/mspiess/java/checkstyle/sun_checks.xml") | '(jde-compile-enable-kill-buffer t) | '(jde-compile-finish-hook (quote (jde-compile-finish-kill-buffer jde-compile-finish-update-class-info))) | '(jde-compile-option-deprecation t) | '(jde-compile-option-directory "/home/mspiess/java/bin") | '(jde-compile-option-sourcepath (quote ("/home/mspiess/java/src"))) | '(jde-compiler (quote ("javac" "/usr/bin/javac"))) | '(jde-global-classpath (quote ("/home/mspiess/java/bin"))) | '(jde-help-docsets (quote (("JDK API" "/usr/share/doc/sun-java6-doc/html/api/" nil)))) | '(jde-javadoc-gen-destination-directory "~/java/doc/") | '(jde-javadoc-gen-packages (quote ("~/java/src/"))) | '(jde-jdk (quote ("1.5"))) | '(jde-jdk-registry (quote (("1.5" . "/usr/lib/jvm/java-6-sun/")))) | '(jde-run-option-boot-classpath (quote ("append" "/home/mspiess/java/bin/"))) | '(jde-run-option-classpath "global") | '(jde-vm-path "/usr/bin/java") `---- The JDE help seems not to be available either btw. I always get: jde-show-help: Cannot find JDE help file. I don't know if the two problems have something to do with each other, but... > Matt Flaschen Thanks so far Malte