1. 1daa91b FELIX-2441: Restore backward compatibility on gogo by Guillaume Nodet · 14 years ago
  2. 20b8884 FELIX-2433 allow "$(...)" expansion by Derek Baum · 14 years ago
  3. 218ef9b fix NPE/coercion error when passing null first argument FELIX-2432 by Derek Baum · 14 years ago
  4. c28f795 fixed lock contention in piped writer when reader doesn't read all input (FELIX-2380) by Derek Baum · 14 years ago
  5. c79bf83 better message/exception when arguments can't be coerced (FELIX-2375) by Derek Baum · 14 years ago
  6. 8f1df2f Removed description from Parameter and use Descriptor instead. (FELIX-2363) by Richard S. Hall · 15 years ago
  7. 5f9b306 Use org.apache.felix package namespace instead of org.osgi. (FELIX-2367) by Richard S. Hall · 15 years ago
  8. 31fedb7 don't automatically convert return values that are arrays to ArrayList (FELIX-2337) by Derek Baum · 15 years ago
  9. e52146d Add support for parameter aliases. (FELIX-2363) by Richard S. Hall · 15 years ago
  10. 11fd469 Merge @Flag and @Option annotations into a single @Parameter annotation. (FELIX-2363) by Richard S. Hall · 15 years ago
  11. e612684 avoid possible IllegalStateException if framework is stopped during CommandProxy method execution. by Derek Baum · 15 years ago
  12. d4031a4 Closure and CommandProxy unnecessarily extend Reflective, just so they can access its 'method()' method. (FELIX-2328). by Derek Baum · 15 years ago
  13. 487a65e moved gogo.runtime.shell sub-package in Runtime bundle up into gogo.runtime package to avoid possible confusion with the gogo.shell package in the new Shell bundle (FELIX-2328). by Derek Baum · 15 years ago
  14. 1cddac4 removed legacy felix command adaptor. (FELIX-2342) by Derek Baum · 15 years ago
  15. 9f2f8f2 convert tokens that evaluate to CharSequence to String, to avoid variables by Derek Baum · 15 years ago
  16. 2fa59da make getCommands() public (again) by Derek Baum · 15 years ago
  17. 9944670 added scripting support (FELIX-2339). by Derek Baum · 15 years ago
  18. 9967f8c fix ConcurrentModificationException caused by bad refactoring :-( by Derek Baum · 15 years ago
  19. 39f856a Align bundle formatter with "lb" command. (FELIX-2042) by Richard S. Hall · 15 years ago
  20. abe87b9 disable packageadmin and other coomands to avoid conflict with bundlecontext commands by Derek Baum · 15 years ago
  21. f95b767 continue tidy-up: move SCOPE path handling into CommandProcessorImpl. FELIX-2328 by Derek Baum · 15 years ago
  22. cb297be fix to FELIX-1487 to report correct error location for defaulted commands. by Derek Baum · 15 years ago
  23. b86cd1c fix NPE in session.execute("a = $b x") when $b evaluates to null; by Derek Baum · 15 years ago
  24. c8d570d Stop registering the bundle object as a command since it interferes by Richard S. Hall · 15 years ago
  25. e9a8257 clean up runtime code. FELIX-2328 by Derek Baum · 15 years ago
  26. 5700633 fix setLocation to always map EOFError by Derek Baum · 15 years ago
  27. 01aa0a8 fix wrong exception: OperationNotSupportedException -> UnsupportedOperationException by Derek Baum · 15 years ago
  28. c768352 refactor Parser - create explicit Tokenizer to enable fix for: by Derek Baum · 15 years ago
  29. b412dfc Add some basic support for descriptive info; this will likely need to by Richard S. Hall · 15 years ago
  30. 887ba2c Initial porting of some Felix shell commands to Gogo; a lot of this is still by Richard S. Hall · 15 years ago
  31. b965d52 Reformat code according to style guide. by Richard S. Hall · 15 years ago
  32. a8fd227 Fix processing of flags; options not tested yet. by Richard S. Hall · 15 years ago
  33. 966730a Touching the heart: coercing by Peter Kriens · 15 years ago
  34. 02a52da Annotations for parameters by Peter Kriens · 15 years ago
  35. d916b15 FELIX-2247: Gogo badly prints empty maps and dictionaries by Guillaume Nodet · 15 years ago
  36. 2ee6cba reformat code using felix eclipse template. FELIX-1953. by Derek Baum · 15 years ago
  37. 7950bb7 change priority of ; and | to match bash. resolves FELIX-1500. by Derek Baum · 15 years ago
  38. e5b391a make closure arguments start at $1 (rather than $0). FELIX-1494. by Derek Baum · 15 years ago
  39. f272e8b FELIX-1858 - Remote commands via ssh only work once per restart by Chris Custine · 15 years ago
  40. e37f08d add felix command adaptor (FELIX-1671) by Derek Baum · 15 years ago
  41. 8ac477f Make sure we use the same AFS header everywhere by Guillaume Nodet · 15 years ago
  42. 918063a FELIX-1526: rename <> operators to (), as this is more like bash. by Derek Baum · 15 years ago
  43. 82fe3f6 FELIX-1536: The ThreadIO should use inheritable thread locals in case a command spawns a thread by Guillaume Nodet · 15 years ago
  44. 9b93171 stop duplicate error message for bad command. FELIX-1405 by Derek Baum · 15 years ago
  45. 04be1aa FELIX-1325: gogo doesn't report a command not found error unless an argument is supplied by Guillaume Nodet · 15 years ago
  46. c03ed98 FELIX-1520: <> evaluated the command too many times by Guillaume Nodet · 15 years ago
  47. f6f71e0 removed redundant constructions from test cases. applied patch in FELIX-1505. by Derek Baum · 15 years ago
  48. 8d000e1 FELIX-1506 by Derek Baum · 15 years ago
  49. 22f4ffe use session.err rather than System.err to write message added in FELIX-1405. by Derek Baum · 15 years ago
  50. bac16ff fix FELIX-1408 by Derek Baum · 15 years ago
  51. e4eadb5 fix for FELIX-1405 by Derek Baum · 15 years ago
  52. 193e7cf fix for FELIX-1403 by Derek Baum · 15 years ago
  53. e9ebf29 Allow retrieving the command lazily by Guillaume Nodet · 15 years ago
  54. b8b9756 Fix expansion by Guillaume Nodet · 15 years ago
  55. ecaeef2 Make sure to delegate all methods to the underlying print stream to avoid deadlocks (as the print stream classes are synchronized, but we only use a single instance for all threads) by Guillaume Nodet · 15 years ago
  56. b6e42f7 Fix small evaluation problems in gogo by Guillaume Nodet · 15 years ago
  57. 2449375 Better formatting, fix special values (true, false, null), fix -bash, ... parsing by Guillaume Nodet · 15 years ago
  58. bfed6bd FELIX-1304: Better support for variables evaluation in arguments by Guillaume Nodet · 15 years ago
  59. d6b0443 Renamed modules to remove redundancy in directory names. by Richard S. Hall · 15 years ago