Small bug in JDE 2.2.9beta2 - fix provided

2001-09-30 Thread Shawn McGovern

Thanks for this wonderful product. I have using it for years with great joy,
and much awe. I some trouble with this latest version getting it to compile,
or even load. If this is not the right way to file a bug report please accept
my apologies, I didn't see anything on the web site.

in lisp\jde-compile.el I had to make a one line change to the following
class to bring success:

(defclass jde-compile-compiler ()
   ((name :initarg :name
  :type string
  :documentation
  "Name of compiler")
(version  :initarg :version
  :version string
  :documentation ;; inserted this line ;;;
  "Compiler version.")
(path :initarg :path
  :type string
  :documentation
  "Path of the compiler executable.")
(buffer   :initarg :buffer
  :type buffer
  :documentation
  "Compilation buffer")
(window   :initarg :window
  :type window
  :documentation
  "Window that displays the compilation buffer.")
(interactive-args :initarg :interactive-args
  :type list
  :documentation
  "Arguments entered in the minibuffer.")
(use-server-p :initarg :use-server-p
  :type boolean
  :documentation
  "Run as a compile server in the Beanshell."))
   "Class of Java compilers.")

End of jde code **

My environment is Xemacs-21.4.3 on Win2000, binary version from
the Xemacs ftp site.

I have not yet tried it under emacs, nor on linux, although I could
do both if that would help.

Thanks for you all you hard work. Hope this is helpfull.

Cheers,
Shawn


At 06:57 AM 9/30/2001, you wrote:
>http://jde.sunsite.dk/rootpage.html#Downloading
>
>JDE 2.2.9beta2
>
>***
>* PLEASE READ *
>***
>* *
>* This release requires semantic 1.4beta10 (or later),*
>* speedbar 0.13 (or later), and eieio-0.16 (or later, *
>* except eieio-0.17beta1). You can obtain all three   *
>* packages at http://cedet.sourceforge.net*
>* *
>* This release requires version 1.2.2 (or later) of the   *
>* JDK.*
>* *
>* Note: This release does not work with eieio-0.17beta1, but  *
>* it does work with eieio-0.17beta2.  *
>* *
>* This release also requires avltree.el, which is part of the *
>* elib 1.0 package. You can obtain elib at the JDE web site   *
>* in compressed tar (http://sunsite.dk/jde/elib.tar.gz)   *
>* or zip (http://sunsite.dk/jde/elib.zip) format. *
>* *
>* JDEbug runs on Windows 2000 only if Service Pack 2 (or  *
>* later) is installed.*
>* *
>* If syntax-coloring does not work, download and install  *
>* overlay-fix.el from the semantic web site.  *
>* *
>***
>
>* The jde-build-ant-command now quotes all path arguments to
>   accommodate Windows. This change was submitted by
>   "Kevin Jones" <[EMAIL PROTECTED]>. I don't use Ant so I've
>not tested this change.
>
>* Replaced the customization variable jde-db-debugger with
>   jde-debugger to be consistent with jde-compiler.
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]




Re: Can't use env variable in global classpath

2001-09-30 Thread IBrandt


Okay, found this in the docs...

"Note: do not use environment variables in the paths that you set via
jde-global-classpath."

...so nevermind my question.

Thanks,

Ian

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, September 30, 2001 12:52 AM
Subject: Can't use env variable in global classpath


>
> Hi,
>
> Running latest cygwin on Win2K, pre-compiled NTEmacs 20.7.1, and JDE2.2.8.
> I have set the global classpath to include entries that use environment
> variables per the users guide, but when I try to Run App I get
"Substituting
> nonexistent environment variable "MY_ENV_VAR".  I am using unix format for
> the variable (e.g. $MY_ENV_VAR).  The variable is set in my .bashrc for
> Cygwin (e.g. export MY_ENV_VAR="/foo/bar").  I launch emacs from that same
> bash shell (so in other words I am assuming emacs gets the env of that
> shell).  What am I missing?
>
> Thanks,
>
> Ian
>
>
> .
>

.




Re: ANN: JDE 2.2.9beta2 available... (correct URL)

2001-09-30 Thread Eric D. Friedman


I got two errors while compiling this release:

1.

While compiling toplevel forms in file /home/eric/emacs/jde/lisp/jde-bug.el:
  !! error (("Given parent class jde-db-debugger is not a class"))

and 2.

While compiling toplevel forms in file /home/eric/emacs/jde/lisp/jde.el:
  !! Malformed property list (((:initarg :version :version string "Compiler version.") 
("Compiler version.")))

In message <[EMAIL PROTECTED]>, Paul Kinnucan writes:
: http://jde.sunsite.dk/rootpage.html#Downloading
: 
: JDE 2.2.9beta2
: 
: ***
: * PLEASE READ *
: ***
: * *
: * This release requires semantic 1.4beta10 (or later),*
: * speedbar 0.13 (or later), and eieio-0.16 (or later, *
: * except eieio-0.17beta1). You can obtain all three   *
: * packages at http://cedet.sourceforge.net*
: * *
: * This release requires version 1.2.2 (or later) of the   *
: * JDK.*
: * *
: * Note: This release does not work with eieio-0.17beta1, but  *
: * it does work with eieio-0.17beta2.  *
: * *
: * This release also requires avltree.el, which is part of the *
: * elib 1.0 package. You can obtain elib at the JDE web site   *
: * in compressed tar (http://sunsite.dk/jde/elib.tar.gz)   *
: * or zip (http://sunsite.dk/jde/elib.zip) format. *
: * *
: * JDEbug runs on Windows 2000 only if Service Pack 2 (or  *
: * later) is installed.*
: * *
: * If syntax-coloring does not work, download and install  *
: * overlay-fix.el from the semantic web site.  *
: * *
: ***
: 
: * The jde-build-ant-command now quotes all path arguments to 
:   accommodate Windows. This change was submitted by 
:   "Kevin Jones" <[EMAIL PROTECTED]>. I don't use Ant so I've
:not tested this change.
: 
: * Replaced the customization variable jde-db-debugger with
:   jde-debugger to be consistent with jde-compiler.
: 
: 



ANN: JDE 2.2.9beta2 available... (correct URL)

2001-09-30 Thread Paul Kinnucan

http://jde.sunsite.dk/rootpage.html#Downloading

JDE 2.2.9beta2

***
* PLEASE READ *
***
* *
* This release requires semantic 1.4beta10 (or later),*
* speedbar 0.13 (or later), and eieio-0.16 (or later, *
* except eieio-0.17beta1). You can obtain all three   *
* packages at http://cedet.sourceforge.net*
* *
* This release requires version 1.2.2 (or later) of the   *
* JDK.*
* *
* Note: This release does not work with eieio-0.17beta1, but  *
* it does work with eieio-0.17beta2.  *
* *
* This release also requires avltree.el, which is part of the *
* elib 1.0 package. You can obtain elib at the JDE web site   *
* in compressed tar (http://sunsite.dk/jde/elib.tar.gz)   *
* or zip (http://sunsite.dk/jde/elib.zip) format. *
* *
* JDEbug runs on Windows 2000 only if Service Pack 2 (or  *
* later) is installed.*
* *
* If syntax-coloring does not work, download and install  *
* overlay-fix.el from the semantic web site.  *
* *
***

* The jde-build-ant-command now quotes all path arguments to 
  accommodate Windows. This change was submitted by 
  "Kevin Jones" <[EMAIL PROTECTED]>. I don't use Ant so I've
   not tested this change.

* Replaced the customization variable jde-db-debugger with
  jde-debugger to be consistent with jde-compiler.