[axel-commits] r119 - in /trunk: CHANGES gui/kapt/axel-kapt

phihag-guest at users.alioth.debian.org phihag-guest at users.alioth.debian.org
Wed Jan 6 12:48:52 UTC 2010


Author: phihag-guest
Date: Wed Jan  6 12:48:51 2010
New Revision: 119

URL: http://svn.debian.org/wsvn/axel/?sc=1&rev=119
Log:
Restore kapt meanings (Closes: #311811), thanks Daniel Gimpelevich

Modified:
    trunk/CHANGES
    trunk/gui/kapt/axel-kapt

Modified: trunk/CHANGES
URL: http://svn.debian.org/wsvn/axel/trunk/CHANGES?rev=119&op=diff
==============================================================================
--- trunk/CHANGES (original)
+++ trunk/CHANGES Wed Jan  6 12:48:51 2010
@@ -1,7 +1,8 @@
 UNRELEASED:
 
 - Make axel build on HP-UX, thanks Ciro Iriarte
-- Fix Solaris support, thanks Sebastian Kayser
+- Fix Solaris support (Closes: #312092), thanks Sebastian Kayser
+- Restore kapt meanings (Closes: #311811), thanks Daniel Gimpelevich
 
 Version 2.4
 

Modified: trunk/gui/kapt/axel-kapt
URL: http://svn.debian.org/wsvn/axel/trunk/gui/kapt/axel-kapt?rev=119&op=diff
==============================================================================
--- trunk/gui/kapt/axel-kapt (original)
+++ trunk/gui/kapt/axel-kapt Wed Jan  6 12:48:51 2010
@@ -40,20 +40,21 @@
 
 b = '''";
 config :horizontal "OPTIONS" -> checks term max connex search;
-    checks  :horizontal -> proxy verb quiet;
-        proxy "No Proxy" -> @|" -N ";
-        verb "Verbose" -> @|" --verbose ";
-        quiet "Quiet" -> @|" -q ";
+    checks  :horizontal -> proxy verb quiet altern;
+        proxy "No Proxy" -> "-N " | ! @ ;
+        verb "Verbose" -> "--verbose " | ! @;
+        quiet "Quiet" -> "-q " | ! @ ;
+        altern "Alt Progress" -> "-a " | @;
 
-    term "Terminal Type" -> @string()="xterm";
+    term "Terminal Type" -> @string()="x-terminal-emulator";
     max "Max bps"-> @integer()=0;
     connex :horizontal "Connections" -> @integer()=4;
     search :framed "ftp Search" -> numsites | ! @ ;
-        numsites -> " --search=" @integer()=3;
+        numsites -> "--search=" @integer()=3 " ";
 
 
 local -> file | ! @ ;
-    file "Save as (optional). Choose a directory and type a filename..." -> " --output=" @directory();
+    file "Save as (optional). Choose a directory and type a filename..." -> "--output=\\"" @directory() "\\" ";
 
 buttons :horizontal "Actions" -> help mail doit quit;
     help -> @preview(helpstr,"Close")="Help";
@@ -71,7 +72,7 @@
 
 bug -> "Please visit http://axel.alioth.debian.org/ to report bugs on axel-kapt";
 
-axel -> term " -e axel -s " max " -n "connex proxy verb quiet search " " local " " url;
+axel -> term " -e axel -s " max " -n "connex " " proxy verb quiet altern search local url;
 '''
 try:
     c = string.join(sys.argv[1:])




More information about the axel-commits mailing list