{5} Assigned, Active Tickets by Owner (Full Description) (11 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

mgalloy (11 matches)

Ticket Summary Component Milestone Type Created
Description
#1 Normal IDL prompt occasionally shows up when stepping through code core 1.0 defect 01/28/10

Occasionally, when stepping though code, the standard IDL> prompt appears.


#12 Fix build on 32-bit Linux build system 1.0 defect 06/06/11
[mpiper@asimov: ridl]$ make VERBOSE=1
/usr/local/cmake-2.8.4-Linux-i386/bin/cmake -H/home/mpiper/IDL/ridl -B/home/mpiper/IDL/ridl --check-build-system CMakeFiles/Makefile.cmake 0
/usr/local/cmake-2.8.4-Linux-i386/bin/cmake -E cmake_progress_start /home/mpiper/IDL/ridl/CMakeFiles /home/mpiper/IDL/ridl/CMakeFiles/progress.marks
make -f CMakeFiles/Makefile2 all
make[1]: Entering directory `/home/mpiper/IDL/ridl'
make -f src/CMakeFiles/ridl.dir/build.make src/CMakeFiles/ridl.dir/depend
make[2]: Entering directory `/home/mpiper/IDL/ridl'
cd /home/mpiper/IDL/ridl && /usr/local/cmake-2.8.4-Linux-i386/bin/cmake -E cmake_depends "Unix Makefiles" /home/mpiper/IDL/ridl /home/mpiper/IDL/ridl/src /home/mpiper/IDL/ridl /home/mpiper/IDL/ridl/src /home/mpiper/IDL/ridl/src/CMakeFiles/ridl.dir/DependInfo.cmake --color=
Dependee "/home/mpiper/IDL/ridl/src/CMakeFiles/ridl.dir/DependInfo.cmake" is newer than depender "/home/mpiper/IDL/ridl/src/CMakeFiles/ridl.dir/depend.internal".
Dependee "/home/mpiper/IDL/ridl/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/mpiper/IDL/ridl/src/CMakeFiles/ridl.dir/depend.internal".

Scanning dependencies of target ridl
make[2]: Leaving directory `/home/mpiper/IDL/ridl'
make -f src/CMakeFiles/ridl.dir/build.make src/CMakeFiles/ridl.dir/build
make[2]: Entering directory `/home/mpiper/IDL/ridl'
/usr/local/cmake-2.8.4-Linux-i386/bin/cmake -E cmake_progress_report /home/mpiper/IDL/ridl/CMakeFiles 5

[ 14%] Building C object src/CMakeFiles/ridl.dir/ridl.c.o
cd /home/mpiper/IDL/ridl/src && /usr/bin/gcc   -I/home/mpiper/IDL/ridl/src -I/usr/local/itt/idl/idl81/external/include -I/usr/local/include   -m64 -o CMakeFiles/ridl.dir/ridl.c.o   -c /home/mpiper/IDL/ridl/src/ridl.c
In file included from /usr/include/features.h:378,

                 from /usr/include/stdio.h:28,
                 from /home/mpiper/IDL/ridl/src/ridl.c:1:
/usr/include/gnu/stubs.h:9:27: error: gnu/stubs-64.h: No such file or directory
make[2]: *** [src/CMakeFiles/ridl.dir/ridl.c.o] Error 1
make[2]: Leaving directory `/home/mpiper/IDL/ridl'

make[1]: *** [src/CMakeFiles/ridl.dir/all] Error 2
make[1]: Leaving directory `/home/mpiper/IDL/ridl'
make: *** [all] Error 2
[mpiper@asimov: ridl]$

#14 READ does not work core 1.0 defect 10/04/11

The READ command does not get input from the user and then ignores commands until the user kills the session.

  rIDL> read, var, prompt='Input a value:'

#2 Handle -arg and -args command line switches core 1.0 defect 01/28/10

Arguments specified to -arg or -args should be passed along to IDL so that they can be retrieved from within IDL with COMMAND_LINE_ARGS.

Currently, it is not known how to pass these arguments to IDL.


#3 Handle -pref=FILENAME command line switch core 1.0 defect 01/28/10

Handle the -pref=FILENAME command line switch to read in a preference file when starting IDL.


#4 Handle -PREF_NAME PREF_VALUE command line switches core 1.0 defect 02/02/10

The standard IDL command line can set a preference for the current session only by setting it with a command line switch. For example, the following will set the IDL_QUIET preference for the given session:

$ idl -IDL_QUIET 1

#17 .compile or .run with no arguments does not work core 1.0 defect 10/29/11

You should be able to type in a routine or main-level program to be run at the command line using .run or .compile with no arguments:

IDL> .run 
- for i = 0, 9 do begin
-   print, i
- endfor
- end
% Compiled module: $MAIN$.
       0
       1
       2
       3
       4
       5
       6
       7
       8
       9

#5 Allow begin-end blocks from the command line core 1.0 enhancement 02/13/10

begin-end blocks could be detected and converted into main-level programs that are .run-ed:

IDL> for i = 0L, n_elements(arr) - 1 do begin
....   arr[i] = 2 * i
.... endfor
% Compiled module: $MAIN$.
IDL> 

#10 Allow magic commands in batch files core 1.0 enhancement 02/09/11

It would be useful to allow magic commands in batch files. Then it would be possible to create batch files which create notebooks.


#15 Complete on user defined routine names completion 1.0 enhancement 10/13/11

Only previously compiled user defined routine names are completed currently. Completing on routines that haven't been compiled yet would require looking at !path or tapping into IDL's path cache somehow.


#16 Combine :help and :doc magic commands core 1.0 enhancement 10/13/11

The :help and :doc magic commands do very similar actions for IDL library and user defined routines, respectively; they should be combined into a single command.


Note: See TracReports for help on using and creating reports.