Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (703 - 705 of 1030)

Ticket Resolution Summary Owner Reporter
#668 worksforme public svn off-line Scott Michel
Description

The following are not operative:

$ svn up
svn: OPTIONS of 'http://svn.clozure.com/publicsvn/openmcl/trunk/darwinx86/ccl': could not connect to server (http://svn.clozure.com)
$ svn co http://svn.clozure.com/publicsvn/openmcl/release/1.4/darwinx86/ccl
svn: OPTIONS of 'http://svn.clozure.com/publicsvn/openmcl/release/1.4/darwinx86/ccl': could not connect to server (http://svn.clozure.com)

Why? Telnet-ing to svn.clozure.com's port 80 and manually doing a GET reveals:

$ telnet svn.clozure.com 80
Trying 74.50.56.8...
Connected to setf.clozure.com.
Escape character is '^]'.
GET /publicsvn/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /publicsvn/ was not found on this server.</p>
<hr>
<address>Apache/2.2.8 (Ubuntu) DAV/2 SVN/1.5.1 mod_python/3.3.1 Python/2.5.2 PHP/5.2.4-2ubuntu5.10 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g mod_perl/2.0.3 Perl/v5.8.8 Server at setf.clozure.com Port 80</address>
</body></html>
Connection closed by foreign host.

Basically, the web server doesn't have a /publicsvn page. Is a handler off-line?

#1374 worksforme Feature request: Export unix signals Elias Pipping
Description

Since the numerical value of a signal depends on the version of the posix standard and is thus different on different operating systems (e.g. SIGCONT is 19 on macOS but 18 on Linux (it might even be more complicated than that)), it's nice to be able to query the lisp compiler/interpreter for the number behind a name.

Allegro CL, CMU CL, ECL, and SBCL each provide such a mechanism (through constants or functions). It would be nice if so did Clozure CL.

#790 invalid Something strange with lisp-to-objc-message Pascal Bourguignon
Description

When I load my code, it seems to break lisp-to-objc-message:

1 > (ccl::compute-lisp-to-objc-message '(:INIT-WITH-FRAME))

"initWithFrame:" 1 > (ccl::lisp-to-objc-message '(:INIT-WITH-FRAME))

"initWithFrame" ; <--- no colon! 1 >

However, apart from importing/exporting this symbol (and others from objc and ccl) to my own oclo package, I don't touch it and don't redefine it, nor any other symbol from ccl or objc. From the source or the disassembly, I can't understand how it's possible to get this result.

I provide all my code, and ccl-bug-p--*.txt files giving the *inferior-lisp* and *slime-repl-ccl* buffers.

I'm working on a reader macro to read an Objective-C -like syntax.

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