Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (547 - 549 of 1030)

Ticket Resolution Summary Owner Reporter
#517 fixed error in CCL-DIRECTORY or USER-HOMEDIR-PATHNAME Gary Byers hrapof
Description

First of all, there is a thread on lispforum about CCL CGI woes: http://www.lispforum.com/viewtopic.php?f=2&t=342

Not quite related, but in the same vein, when Clozure CL CGI is executed under certain configurations of IIS on Windows, it dies with the following error:

Error: value NIL is not of the expected type (OR STRING PATHNAME STREAM). > While executing: PATHNAME-DIRECTORY, in process Initial(0). > Type :GO to continue, :POP to abort, :R for a list of available restarts. > If continued: Skip (possibly crucial) startup function CCL::INIT-LOGICAL-DIRECTORIES. > Type :? for other options. 1 > > Error: Unbound variable: -----------------------------7D9140680DE0 > While executing: CCL::TOPLEVEL-EVAL, in process Initial(0). > Type :GO to continue, :POP to abort, :R for a list of available restarts. > If continued: Retry getting the value of -----------------------------7D9140680DE0. > Type :? for other options. 2 > > Error: Unbound variable: ------7D9140680DE0 > While executing: CCL::TOPLEVEL-EVAL, in process Initial(0). > Type :GO to continue, :POP to abort, :R for a list of available restarts. > If continued: Retry getting the value of ------7D9140680DE0. > Type :? for other options. 3 > > Error: Reader error on #, within "position: form-data;": > Reference to unknown package "TENT-DISPOSITION". > While executing: CCL::SIGNAL-READER-ERROR, in process Initial(0). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 4 > > Error: Unbound variable: FORM-DATA > While executing: CCL::TOPLEVEL-EVAL, in process Initial(0). > Type :GO to continue, :POP to abort, :R for a list of available restarts. > If continued: Retry getting the value of FORM-DATA. > Type :? for other options. 5 > "thefile" 5 > > Error: Reader error on #, within "ent-Type: image/pjpe": > Reference to unknown package "CONTENT-TYPE". > While executing: CCL::SIGNAL-READER-ERROR, in process Initial(0). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 6 > > Error: Unbound variable: JFIF > While executing: CCL::TOPLEVEL-EVAL, in process Initial(0).

Commenting the contents of INIT-LOGICAL-DIRECTORIES out solves the problem.

#599 fixed io encoding in RUN-PROGRAM Gary Byers hrapof
Description

With "Version 1.3-r12839M (LinuxPPC32)" and Ubuntu 7.10, the following

(with-output-to-string

(stream) (ccl:run-program

"sh" `("-c"

,(format

nil "echo ~a | aspell -a --encoding=utf-8 --lang=~a" "dpg" "en"))

:output stream))

works as expected, while

(with-output-to-string

(stream) (ccl:run-program

"sh" `("-c"

,(format

nil "echo ~a | aspell -a --encoding=utf-8 --lang=~a" "сабака" "ru"))

:output stream))

does not (no suggestions are showed). Both worked five years ago on MacOS X, and in shell aspell works correctly. Some investigation showed that the problem is in the encoding RUN-PROGRAM uses for io. CCL is started with

-K utf-8 --eval '(setf *default-file-character-encoding* :utf-8)'

but it seems it's not enough...

#677 fixed saving an application hangs Gary Byers hrapof
Description

CCL 1.5, Windows XP, x86 Given a source file danderoli.lisp,

(ccl:save-application
   "danderoli.cgi"
   :error-handler :quit :prepend-kernel t))

hangs (danderoli.cgi gets created, but is only 1731 Kb), while

(ccl:save-application
   "dand.cgi"
   :error-handler :quit :prepend-kernel t))

doesn't. The documentation doesn't seem to mention it. Is it a bug or am I missing something?

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.