Bug 14836 - Run.sh Exits Unexpectedly
Summary: Run.sh Exits Unexpectedly
Status: NEW
Alias: None
Product: Slide
Classification: Unclassified
Component: WebDAV client (show other bugs)
Version: Nightly
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---
Assignee: Slide Developer List
URL:
Keywords:
Depends on:
Blocks: 31521
  Show dependency tree
 
Reported: 2002-11-25 21:29 UTC by Kevin Moran
Modified: 2004-11-16 19:05 UTC (History)
1 user (show)



Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.