diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-04-19 09:37:53 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-04-19 09:37:53 +0100 |
commit | 326bbd320dbabc075fd7e59e55a715c7d4e9d6b9 (patch) | |
tree | aa637e7287aa7088c31cb0b320241214059a6a7f /bin/mauveclient | |
parent | 89a67770e66d11740948e90a41db6cee0482cf8e (diff) |
* added sane init script for server
* mauvesend now handles options better
* jabber client has stub message receivng method
Diffstat (limited to 'bin/mauveclient')
-rwxr-xr-x | bin/mauveclient | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/bin/mauveclient b/bin/mauveclient index d513926..1c90741 100755 --- a/bin/mauveclient +++ b/bin/mauveclient @@ -101,18 +101,24 @@ message = nil verbose = 0 help = false -GetoptLong.new( - ['-h', '--help', GetoptLong::NO_ARGUMENT], - ['-o', '--source', GetoptLong::REQUIRED_ARGUMENT], +opts = GetoptLong.new( + ['-h', '--help', GetoptLong::NO_ARGUMENT], + ['-o', '--source', GetoptLong::OPTIONAL_ARGUMENT], ['-p', '--replace', GetoptLong::NO_ARGUMENT], - ['-i', '--id', GetoptLong::REQUIRED_ARGUMENT], - ['-s', '--summary', GetoptLong::REQUIRED_ARGUMENT], - ['-u', '--subject', GetoptLong::REQUIRED_ARGUMENT], - ['-c', '--clear', GetoptLong::REQUIRED_ARGUMENT], - ['-r', '--raise', GetoptLong::REQUIRED_ARGUMENT], - ['-d', '--detail', GetoptLong::REQUIRED_ARGUMENT], + ['-i', '--id', GetoptLong::OPTIONAL_ARGUMENT], + ['-s', '--summary', GetoptLong::OPTIONAL_ARGUMENT], + ['-u', '--subject', GetoptLong::OPTIONAL_ARGUMENT], + ['-c', '--clear', GetoptLong::OPTIONAL_ARGUMENT], + ['-r', '--raise', GetoptLong::OPTIONAL_ARGUMENT], + ['-d', '--detail', GetoptLong::OPTIONAL_ARGUMENT], ['-v', '--verbose', GetoptLong::NO_ARGUMENT] ).each do |opt,arg| + + # + # Can catch empty arguments better if we set the GetoptLong things to + # "optional" rather than "required" and catch the empty arg here. + error "#{opt} cannot be empty" if arg.empty? and not %w(-h -p -v).include?(opt) + case opt when '-h' help = true @@ -141,7 +147,6 @@ GetoptLong.new( end end - # CAUTION! Kwality kode. # if help |