Bug 14836

Summary: Run.sh Exits Unexpectedly
Product: Slide Reporter: Kevin Moran <gridplan>
Component: WebDAV clientAssignee: Slide Developer List <slide-dev>
Status: NEW ---    
Severity: normal CC: gridplan
Priority: P3    
Version: Nightly   
Target Milestone: ---   
Hardware: PC   
OS: Linux   
Bug Depends on:    
Bug Blocks: 31521    

Description Kevin Moran 2002-11-25 21:29:40 UTC
The command-line utility, run.sh, is exiting abruptly for me in certain 
situations and not providing an error message.  It appears to be related to the 
antlr code.  If I use an underscore ('_') in any of the commands (e.g., "mkdir 
some_dir"), it exits without warning.  I got around the problem by adding '_' 
to the CHARS section of org/apache/webdav/client/cmd/Client.g.  But I'm not 
sure if my fix is in the right place nor do I know if this is the only missing 
character.

My Environment: Red Hat 7.2, JDK 1.4.0, Slide from 11/22/2002, Tomcat 4.1.9.
Comment 1 Sung-Gu 2002-11-26 12:25:02 UTC
TODO: it's aleady desciribed as TODO in Clieng.g file
- make STRING a real string like:

STRING: '"'! (~('"'|'\n'|'\r'))* '"'! |
         (~(' '|'\n'|'\r'))+
;

For that, it's required to use a tree parser.