From nikodemus at random-state.net Fri Aug 1 08:10:17 2008 From: nikodemus at random-state.net (Nikodemus Siivola) Date: Fri, 1 Aug 2008 11:10:17 +0300 Subject: [admin] Can http://common-lisp.net/projects/foo/ be forwarded to http://common-lisp.net/project/foo/? Message-ID: <633d72b0808010110r4058a2d6od1501f0818495b72@mail.gmail.com> Any http://common-lisp.net/projects/foo/ url shows a highly confused page. It would be nice if someone knew where it came from, and even nicer if http://common-lisp.net/projects/foo/ forwarded to http://common-lisp.net/project/foo/ since when typing urls directly I at least never remember which it it... (Ok, this is *very* low priority, obviously.) Cheers, -- Nikodemus From p.r.griffioen at chello.nl Fri Aug 1 17:43:43 2008 From: p.r.griffioen at chello.nl (Paul Griffioen) Date: Fri, 01 Aug 2008 19:43:43 +0200 Subject: [admin] Project application Message-ID: <1217612623.7555.17.camel@paul-desktop> Hi, I've written a Common Lisp package I would like to host on Common-Lisp.net. The package is called clTcl and it provides an interface to Wish's GUI libraries via Tcl/Tk scripts embedded in Common Lisp. See the description below for more details. Would you consider hosting my package? I plan to release the code with an Mit license. My gpg fingerprint is: pub 1024D/0D08D694 2008-08-01 Key fingerprint = D560 66CA 8555 6B15 A02E 3695 B03B 3639 0D08 D694 uid Paul Richard Griffioen (PRG) sub 2048g/CD27B98E 2008-08-01 Below is some text I wrote for the readme file. I hope it explains what clTcl is. ? Kind regards, Paul Griffioen What does the clTcl package do? ------------------------------- Package clTcl provides an interface to Wish's GUI libraries via Tcl/Tk scripts embedded in Common Lisp. Functions are provided to launch the Wish interpreter and set up a stream for communication. Embedded Tcl/Tk scripts are read as lists of Common Lisp strings. Synchronous communication is provided to send these strings to Wish for interpretation. What is in the clTcl package? ----------------------------- A general reader function takes advantage of Tcl's uniform syntax and eases handling of Tcl scripts and values. Tcl scripts and values are strings but possibly with some list structure encoded. The reader follows Tcl's syntax rules, takes care of proper escaping and outputs one or more Common Lisp strings. This is used when reading Tcl scripts embedded in Common Lisp sources and when converting between Tcl lists and Lisp lists during communication with Wish. A thin compatibility layer sets up a stream to a Wish interpreter. Starting the Wish interpreter is the only implementation dependent part of the clTcl package. This layer takes care of that and provides functions to read and write to the stream. Parts of this layer are copied from the lisp2wish package. A primitive communication protocol on top of the compatibility layer synchronizes the control flow between Wish and Lisp. A blocking callback mechanism is added to initiate Lisp functions from the GUI. Errors on Wish's side are read and thrown at the Lisp side. What are clTcl's benefits? -------------------------- - Cross-platform GUI programming. Common Lisp and Wish both run on many systems. - Copy code snippets directly into your code. Many Tcl/Tk scripts are available and can be used without any modification. - Easy to use and adapt. The small code size (around 0.5 KLOC) makes it easy to embrace and extend the package. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: From lhealy at common-lisp.net Sat Aug 2 17:17:35 2008 From: lhealy at common-lisp.net (Liam Healy) Date: Sat, 2 Aug 2008 13:17:35 -0400 Subject: [admin] Git support? Message-ID: <654935030808021017l2601703raec23a62cd69d0de@mail.gmail.com> I have lately been learning git and recently converted the repository for my project GSLL to git, including stitching together history that was broken in the process of transferring my svn repository from my private server to cl.net. I have put this on /project/gsll/git. It works fine for me (via ssh to cl.net) but I notice that the git: protocol for read-only access to the repository does not work, git clone git://common-lisp.net/project/gsll/git gsll Initialized empty Git repository in /tmp/gsll/.git/ common-lisp.net[0: 80.68.86.115]: errno=Connection refused fatal: unable to connect a socket (Connection refused) Would it be possible to enable git so that everyone can use it? Thanks, Liam From gwking at metabang.com Sat Aug 2 20:33:16 2008 From: gwking at metabang.com (Gary King) Date: Sat, 2 Aug 2008 16:33:16 -0400 Subject: [admin] darcs on cl.net In-Reply-To: References: Message-ID: <36B6C510-7F41-41FA-B18A-0A1603E03FAD@metabang.com> Cool. Finally done. On Jul 27, 2008, at 6:55 PM, Attila Lendvai wrote: >> Hi Attila, > > hi Gary, > >> I know that Drew has been migrating to a new server and this may be >> what >> changed. If I understand you correctly, we need to restore /usr/ >> bin/darcs so >> that it is a symlink to /usr/bin/darcs-bin. Is that right? > > > almost. > > ln -s darcs-script darcs > > this way, when pushing, the script is called by the client side darcs, > which first sets the umask and only after that calls darcs-bin. i'm > not sure if this is still needed, recent darcs versions may have a fix > for that. > > without this if you push a patch that creates a new file or directory, > then other comitters won't be able to push anything that would alter > the same file until issuing a chmod -R g+w by the one who originally > pushed the patch that created the file. > > also note that there may be other alternatives to set the effective > umask a binary will run with, but i'm no linux guru. > > thanks for looking into this! > > -- > attila -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Sat Aug 2 20:40:24 2008 From: gwking at metabang.com (Gary King) Date: Sat, 2 Aug 2008 16:40:24 -0400 Subject: [admin] Project application In-Reply-To: <1217612623.7555.17.camel@paul-desktop> References: <1217612623.7555.17.camel@paul-desktop> Message-ID: <4F55926E-D8E9-4AB6-AAF9-AA3FED7B00AC@metabang.com> Hi Paul, We'd be happy to host your project. First, however, I need to set you up an account and for that I need your full public key (not just the signature). Something like gpg --armor --export should do the trick. On Aug 1, 2008, at 1:43 PM, Paul Griffioen wrote: > Hi, > > I've written a Common Lisp package I would like to host on > Common-Lisp.net. > > The package is called clTcl and it provides an interface to Wish's GUI > libraries via Tcl/Tk scripts embedded in Common Lisp. See the > description below for more details. > > Would you consider hosting my package? I plan to release the code with > an Mit license. My gpg fingerprint is: > > pub 1024D/0D08D694 2008-08-01 > Key fingerprint = D560 66CA 8555 6B15 A02E 3695 B03B 3639 0D08 > D694 > uid Paul Richard Griffioen (PRG) > > sub 2048g/CD27B98E 2008-08-01 > > Below is some text I wrote for the readme file. I hope it explains > what > clTcl is. > > > Kind regards, > > Paul Griffioen > > > > What does the clTcl package do? > ------------------------------- > > Package clTcl provides an interface to Wish's GUI libraries via Tcl/Tk > scripts embedded in Common Lisp. > > Functions are provided to launch the Wish interpreter and set up a > stream for communication. Embedded Tcl/Tk scripts are read as lists of > Common Lisp strings. Synchronous communication is provided to send > these strings to Wish for interpretation. > > > What is in the clTcl package? > ----------------------------- > > A general reader function takes advantage of Tcl's uniform syntax and > eases handling of Tcl scripts and values. Tcl scripts and values are > strings but possibly with some list structure encoded. The reader > follows Tcl's syntax rules, takes care of proper escaping and outputs > one or more Common Lisp strings. This is used when reading Tcl scripts > embedded in Common Lisp sources and when converting between Tcl lists > and Lisp lists during communication with Wish. > > A thin compatibility layer sets up a stream to a Wish > interpreter. Starting the Wish interpreter is the only implementation > dependent part of the clTcl package. This layer takes care of that and > provides functions to read and write to the stream. Parts of this > layer are copied from the lisp2wish package. > > A primitive communication protocol on top of the compatibility layer > synchronizes the control flow between Wish and Lisp. A blocking > callback mechanism is added to initiate Lisp functions from the > GUI. Errors on Wish's side are read and thrown at the Lisp side. > > > What are clTcl's benefits? > -------------------------- > > - Cross-platform GUI programming. Common Lisp and Wish both run on > many systems. > - Copy code snippets directly into your code. Many Tcl/Tk scripts are > available and can be used without any modification. > - Easy to use and adapt. The small code size (around 0.5 KLOC) makes > it easy to embrace and extend the package. > > > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Sat Aug 2 20:43:50 2008 From: gwking at metabang.com (Gary King) Date: Sat, 2 Aug 2008 16:43:50 -0400 Subject: [admin] Account Request In-Reply-To: <42c0ab790807291650j788f86f6wadd5a98895651b65@mail.gmail.com> References: <42c0ab790805022016p5b6307cnfba4b86c2cf70c7e@mail.gmail.com> <3FE86BE4-1289-4362-8DFE-F218DCDC9182@metabang.com> <42c0ab790807202127v525ee7f5h22fafb6bb9951fc@mail.gmail.com> <6F57AECD-CB31-4EBF-A08D-63C219A7CA32@metabang.com> <42c0ab790807280927l670b2ecoa9a9fb8f7885df91@mail.gmail.com> <633d72b0807290123v5144d3e9je10c0120f6782bb7@mail.gmail.com> <42c0ab790807291650j788f86f6wadd5a98895651b65@mail.gmail.com> Message-ID: Hi Eliot, (Thanks to Nikodemus for answering your questions while I've been swamped). To summarize. 1. cl.net is for hosting open-source software -- any reasonable license is fine 2. I also like the MIT license. It's simple! 3. for simpler ssh access, look for ssh-agent (on the Mac, I use sshKeyChain) 4. I don't think that using AllegroCache adds any additional licensing problems (aside from the fact that anyone without ACL won't be able to use your software). If I missed anything, please ask again. thanks, On Jul 29, 2008, at 7:50 PM, Elliott Slaughter wrote: > On Tue, Jul 29, 2008 at 1:23 AM, Nikodemus Siivola > wrote: >> On Mon, Jul 28, 2008 at 7:27 PM, Elliott Slaughter >> wrote: >> >> Huh, it seems licence requirements have vanished from the clnet >> website -- or maybe they never ended up there in the first place, not >> sure. >> >> At any rate, Common-Lisp.net has since it's inception been open to >> all >> open source / free software projects building on Common Lisp. No >> implemention specific restrictions. That said, clnet is for *public* >> code. If you use clnet to store your personal code without releasing >> it into the open, that's not in the spirit of the service provided. > > Thought so, just making sure :-) > >> My *biased* recommendation is the MIT licence >> , but whatever >> suits *your* needs is fine: in the absence of a public notice on the >> clnet site, assume that any license which fulfills DFSG >> is fine. > > Thanks for the advice. Any particular reason you like the MIT license? > (I know MIT is less restrictive than the GPL, but I really don't know > much more than that.) > > > -- > Elliott Slaughter > > "Any road followed precisely to its end leads precisely nowhere." - > Frank Herbert > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From ingvar at hexapodia.net Sat Aug 2 21:26:34 2008 From: ingvar at hexapodia.net (Ingvar) Date: Sat, 02 Aug 2008 22:26:34 +0100 Subject: [admin] Account Request In-Reply-To: <42c0ab790807291646n50fbda9bq53c2d1d9b1214150@mail.gmail.com> References: <42c0ab790805022016p5b6307cnfba4b86c2cf70c7e@mail.gmail.com> <3FE86BE4-1289-4362-8DFE-F218DCDC9182@metabang.com> <42c0ab790807202127v525ee7f5h22fafb6bb9951fc@mail.gmail.com> <6F57AECD-CB31-4EBF-A08D-63C219A7CA32@metabang.com> <42c0ab790807291646n50fbda9bq53c2d1d9b1214150@mail.gmail.com> Message-ID: Elliott Slaughter wrote: > On Sun, Jul 27, 2008 at 2:39 PM, Gary King wrote: > > You have ssh access to your account so your should be able to do "anything" > > (within some definition of reason) that you need to do. We support cvs, svn, > > git, darcs and maybe other stuff too! > > How do I make ssh work with gpg keys? The server keeps using > keyboard-interactive authentication and I assume that isn't how it is > supposed to work. > > And for that matter, what is my user name? (I don't remember either > specifying or being told what it was.) Once the account is set up, you should receive a PGP-encrypted email, stating what the name of your account is (probably "eslaughter") and the password. Once that's done, you should be able to add any and all SSH keys you need to ~/.ssh/authorized_keys and go from there. Checking, I can see that your account has been created, so there should be an email for you, somewhere. //Ingvar From gwking at metabang.com Mon Aug 4 15:55:01 2008 From: gwking at metabang.com (Gary King) Date: Mon, 4 Aug 2008 11:55:01 -0400 Subject: [admin] adding a project with a handle failed? case issues? Message-ID: When I tried to add the project cltcl using the handle clTcl, I get this error: clnet:/custom/bin# ./add-project.sh cltcl pgriffioen clTcl Creating project cltcl, using handle clTcl in 5 seconds. addgroup: Please enter a username matching the regular expression configured via the name_regex configuration variable. Use the `--force-badname' option to relax this check or reconfigure name_regex. adduser: The group `clTcl' does not exist. chown: `pgriffioen.clTcl': invalid group mkdir: failed with 1 clnet:/custom/bin# Is this expected or is something wonky somewhere? -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Mon Aug 4 16:06:33 2008 From: gwking at metabang.com (Gary King) Date: Mon, 4 Aug 2008 12:06:33 -0400 Subject: [admin] Git support? In-Reply-To: <654935030808021017l2601703raec23a62cd69d0de@mail.gmail.com> References: <654935030808021017l2601703raec23a62cd69d0de@mail.gmail.com> Message-ID: Hi Liam, git support is supposed to be up and running and I'm not sure why it isn't working for you. I'm looking into the problem with, sadly, dazzling IN-efficiency. I'll let you know what I find by tomorrow at the latest. thanks, On Aug 2, 2008, at 1:17 PM, Liam Healy wrote: > I have lately been learning git and recently converted the repository > for my project GSLL to git, including stitching together history that > was broken in the process of transferring my svn repository from my > private server to cl.net. I have put this on /project/gsll/git. It > works fine for me (via ssh to cl.net) but I notice that the git: > protocol for read-only access to the repository does not work, > git clone git://common-lisp.net/project/gsll/git gsll > Initialized empty Git repository in /tmp/gsll/.git/ > common-lisp.net[0: 80.68.86.115]: errno=Connection refused > fatal: unable to connect a socket (Connection refused) > Would it be possible to enable git so that everyone can use it? > > Thanks, > Liam > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From heller at common-lisp.net Sun Aug 10 08:43:22 2008 From: heller at common-lisp.net (Helmut Eller) Date: Sun, 10 Aug 2008 10:43:22 +0200 Subject: [admin] hg support In-Reply-To: <62048.88.73.250.177.1217265214.squirrel@mail.stardawn.org> (Leslie P. Polzer's message of "Mon, 28 Jul 2008 19:13:34 +0200 (CEST)") References: <62048.88.73.250.177.1217265214.squirrel@mail.stardawn.org> Message-ID: <867iapz2dx.fsf@aragorn.online-marketwatch.com> * Leslie P. Polzer [2008-07-28 19:13+0200] writes: > Hi, > > we at cl-weblocks would like to use Mercurial for our > unstable repository. > > Could you install the latest (1.0.1) package for us? > > Thanks! > > Leslie We would also like to use or at least try Mercurial for Slime. We are in no hurry with the conversion, though. Helmut. From ehuels at gmail.com Wed Aug 13 19:18:41 2008 From: ehuels at gmail.com (Erik Huelsmann) Date: Wed, 13 Aug 2008 21:18:41 +0200 Subject: [admin] Request for new project: Armed Bear Common Lisp (armedbear) Message-ID: I've inherited the J / ArmedBear project from Peter Graves. I'd like to move the ArmedBear part to common-lisp.net. [The J part is simply an editor, nothing lispy about that...] Could you set me up the armedbear project on c-l.net? Thanks in advance! Bye, Erik. From ehuels at gmail.com Thu Aug 14 09:27:36 2008 From: ehuels at gmail.com (Erik Huelsmann) Date: Thu, 14 Aug 2008 11:27:36 +0200 Subject: [admin] Request for new project: ANSI Conformance test suite (ansi-test) Message-ID: Hi! At the moment, the test suite by pfdietz is copied into a number of different tries of CL implementations (including ECL and CCL). I want to use the test suite for ABCL conformance testing too. Having a centralized copy - instead of several forked ones - seems to have more value; making it possible to create a shared effort. Would you please create this project on common-lisp.net for me? Thanks in advance, Erik. PS: I forgot to mention my clnet user with my last request too; it's ehuelsmann From david at lichteblau.com Mon Aug 18 13:40:37 2008 From: david at lichteblau.com (David Lichteblau) Date: Mon, 18 Aug 2008 15:40:37 +0200 Subject: [admin] Please add loliveira to clbuild Message-ID: <20080818134037.GA6267@radon> Hi, please add Luis (user name loliveira) to the clbuild project. (Note that I am not the original project maintainer for clbuild -- that is probably Luke Gorrie. I hope that's okay.) d. From rosssd at gmail.com Mon Aug 4 08:57:50 2008 From: rosssd at gmail.com (Sean Ross) Date: Mon, 4 Aug 2008 09:57:50 +0100 Subject: [admin] Embarrassing password loss Message-ID: Hi, As embarrassing is it is it ask this, would it be possible for you to reset/send me the admin passwords for each 3 mailing lists for cl- store, cl-l10n and gzip-streams. Unfortunately I have suffered a double HD failure and am unable to remember them. Sorry for the hassle, Sean. From elliottslaughter at gmail.com Sun Aug 10 04:01:28 2008 From: elliottslaughter at gmail.com (Elliott Slaughter) Date: Sat, 9 Aug 2008 21:01:28 -0700 Subject: [admin] Account Request In-Reply-To: References: <42c0ab790805022016p5b6307cnfba4b86c2cf70c7e@mail.gmail.com> <3FE86BE4-1289-4362-8DFE-F218DCDC9182@metabang.com> <42c0ab790807202127v525ee7f5h22fafb6bb9951fc@mail.gmail.com> <6F57AECD-CB31-4EBF-A08D-63C219A7CA32@metabang.com> <42c0ab790807291646n50fbda9bq53c2d1d9b1214150@mail.gmail.com> Message-ID: <42c0ab790808092101j67e1724ew92d15233f77a91@mail.gmail.com> Hi Ingvar, On Sat, Aug 2, 2008 at 2:26 PM, Ingvar wrote: > Elliott Slaughter wrote: >> On Sun, Jul 27, 2008 at 2:39 PM, Gary King wrote: >> > You have ssh access to your account so your should be able to do "anything" >> > (within some definition of reason) that you need to do. We support cvs, svn, >> > git, darcs and maybe other stuff too! >> >> What is my user name? (I don't remember either >> specifying or being told what it was.) > > Once the account is set up, you should receive a PGP-encrypted email, stating > what the name of your account is (probably "eslaughter") and the password. > > Once that's done, you should be able to add any and all SSH keys you need to > ~/.ssh/authorized_keys and go from there. Now this is starting to make sense ;-) Thanks. > Checking, I can see that your account has been created, so there should be an > email for you, somewhere. Hmmm... can't seem to find that email (it probably got caught in my spam folder and deleted a long time ago). Would it be possible to have it resent? -- Elliott Slaughter "Any road followed precisely to its end leads precisely nowhere." - Frank Herbert From lhealy at common-lisp.net Wed Aug 13 02:36:18 2008 From: lhealy at common-lisp.net (Liam Healy) Date: Tue, 12 Aug 2008 22:36:18 -0400 Subject: [admin] Git support? In-Reply-To: References: <654935030808021017l2601703raec23a62cd69d0de@mail.gmail.com> Message-ID: <654935030808121936p12fe917er9f2ce36dd9951410@mail.gmail.com> Gary, Did you find out anything about this? Liam On Mon, Aug 4, 2008 at 12:06 PM, Gary King wrote: > Hi Liam, > > git support is supposed to be up and running and I'm not sure why it isn't > working for you. I'm looking into the problem with, sadly, dazzling > IN-efficiency. I'll let you know what I find by tomorrow at the latest. > > thanks, > > On Aug 2, 2008, at 1:17 PM, Liam Healy wrote: > >> I have lately been learning git and recently converted the repository >> for my project GSLL to git, including stitching together history that >> was broken in the process of transferring my svn repository from my >> private server to cl.net. I have put this on /project/gsll/git. It >> works fine for me (via ssh to cl.net) but I notice that the git: >> protocol for read-only access to the repository does not work, >> git clone git://common-lisp.net/project/gsll/git gsll >> Initialized empty Git repository in /tmp/gsll/.git/ >> common-lisp.net[0: 80.68.86.115]: errno=Connection refused >> fatal: unable to connect a socket (Connection refused) >> Would it be possible to enable git so that everyone can use it? >> >> Thanks, >> Liam >> _______________________________________________ >> admin mailing list >> admin at common-lisp.net >> http://common-lisp.net/cgi-bin/mailman/listinfo/admin > > -- > Gary Warren King, metabang.com > Cell: (413) 559 8738 > Fax: (206) 338-4052 > gwkkwg on Skype * garethsan on AIM > > > > > From rlpowell at digitalkingdom.org Wed Aug 13 21:13:15 2008 From: rlpowell at digitalkingdom.org (Robin Lee Powell) Date: Wed, 13 Aug 2008 14:13:15 -0700 Subject: [admin] Account request Message-ID: <20080813211315.GF15013@digitalkingdom.org> I'd like a common-lisp.net account so I can edit the Trac pages for the weblocks project; the admins sent me to you guys. -Robin -- Lojban Reason #17: http://en.wikipedia.org/wiki/Buffalo_buffalo Proud Supporter of the Singularity Institute - http://singinst.org/ http://www.digitalkingdom.org/~rlpowell/ *** http://www.lojban.org/ From reddaly at gmail.com Fri Aug 22 07:33:44 2008 From: reddaly at gmail.com (Red Daly) Date: Fri, 22 Aug 2008 00:33:44 -0700 Subject: [admin] Project Request: css-sexp Message-ID: I am Red Daly (my common-lisp.net user name is `rdaly') and I am requesting a new projected called 'css-sexp' It is a small library to write cascading style sheets using S-Expression syntax. The license will be the Lisp LGPL here http://opensource.franz.com/preamble.html The code is already functional in the Suave project. Developers have found small, simple projects more appealing so I am requesting a new project for it. Thanks, Red Daly -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.3 (GNU/Linux) mQGiBEXeRBoRBACi528c6zOkOt653tX4HdEs0znPj23pGgPNRfsnE+BEeuwwiIqn XUZdevk7Wi/zLJqvDXJDyX73+cguZrPhknsZxpJkXga4tWX1vt4ZQLh91gjwiWOf mHgq567xECkUODZ8uZz3XSdx8purv0Hm3XAFO3+o52audZYFceUl51AsAwCg+OHv XOssoUKNINc4V2+50+vt/YEEAIHZs2kR6vEqn6YGv0zJY/Q7fFXBJC0TtrrMrdLQ BrX/SiqnM795j+bhAeeZUTOZZBqGUhIbF12NxMxcs4eXu2x4u/wxraSlI9+CYznK +2JDM5rmq24EH0UAWIfEywLr1aHd05qdGkjnUvlfd3PYbpAgnAsHXZJuQXn6LNOM E+gcA/4i/9qJGpQTMvPurrtTA2p8tNLDk5XUMLvvnTvWEVVKw+8hEuj7HAaf/rM6 D2835A0Z5blhrxw7S4tXS/8I6uTWNq+7vOWlPSV8wFjdSab6ckcchsKfjyDartzI sbOOr2YGZR3ooCI82kFNklBETmSOGtaUYb9JCXJa94yvqqHQkrQsUmVkIERhbHkg KGZpcnN0IGF0dGVtcHQpIDxyZWRkYWx5QGdtYWlsLmNvbT6IYAQTEQIAIAUCRd5E GgIbAwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJECDsPLRS0sFDeikAn0scN0mv vECULJNzZzPrADe0YQbbAKC+S3a6jBq61Ob8lQ4cIpYhBfDobbkCDQRF3kQkEAgA /tu4y+v2JuZvTkdvgAtRSGs9dghZZ38d4dnVuboY0UDMBlT4QPPB0D9obPiYmyIG 1g5EKIdLHqCTEjIrl0aTts9kcRP39wBjYDaC5laFK0kNwFTVq85I5OIO8xo/Ddwd nhJFMursF/fQ5DD/tw7UenLkIpq6vf5KzUKxq/8v6b22fC0Y/8//qDGBD9MkL+pE cMfZk7VxDPALEI11twPQ87MF6lm1sqba2TYu648vnuACRQHmiQhrVVo8/vRXPxrA xUlvN6bw2CaWpjUPmuI3FAcMMxS04pOIRwJ5/i7A0Dks/F92XrdRzV6IaVnUJuZh f1bifF70efcZ1wRGQfTsewADBQf+Lx7Y+LE3eeG4sISoW9zqCuduhhZRfhM4Nnjw EFP1PBJRctIGK9aPw73eugOF0kWaSIrAgaEC6g3hn/maGcooVcSOW37HrDmExsc1 i9rGeXVk7Tjo0DJYBO574VABG+ex0TPiVzTtNJ0zk+pPzEu7msnolyYQPqTCZu18 sbW2NR+/RH4I0Bm/vhtpf/Ngv8MxNW1v/kszD0CeqLktOSOkIEos7icMo/Twr5BU HzVR77sEV/nF3qwWT4cgui3ukqrvz2kttj5FJ/QbbOMTK0a4PioB4m9AIuRZc6+9 gF+3WE7VAoTsAuimwDB0pO5WG7rfT+ZMEozMDWpupmm5r3J1zIhJBBgRAgAJBQJF 3kQkAhsMAAoJECDsPLRS0sFDrpAAoO8Jp4wUireSHkk4RTlbGbP9QTpcAJ9olGv7 K3k8MDSDHrwfcfdkGs63UA== =uYtv -----END PGP PUBLIC KEY BLOCK----- From elliottslaughter at gmail.com Tue Aug 19 18:41:34 2008 From: elliottslaughter at gmail.com (Elliott Slaughter) Date: Tue, 19 Aug 2008 11:41:34 -0700 Subject: [admin] Account Request In-Reply-To: <42c0ab790808092101j67e1724ew92d15233f77a91@mail.gmail.com> References: <42c0ab790805022016p5b6307cnfba4b86c2cf70c7e@mail.gmail.com> <3FE86BE4-1289-4362-8DFE-F218DCDC9182@metabang.com> <42c0ab790807202127v525ee7f5h22fafb6bb9951fc@mail.gmail.com> <6F57AECD-CB31-4EBF-A08D-63C219A7CA32@metabang.com> <42c0ab790807291646n50fbda9bq53c2d1d9b1214150@mail.gmail.com> <42c0ab790808092101j67e1724ew92d15233f77a91@mail.gmail.com> Message-ID: <42c0ab790808191141o6d9f9d55q36961d8fb773ef01@mail.gmail.com> Hi, I'm just resending this request since it has been more than a week since I asked. On Sat, Aug 9, 2008 at 9:01 PM, Elliott Slaughter wrote: > > On Sat, Aug 2, 2008 at 2:26 PM, Ingvar wrote: > > Checking, I can see that your account has been created, so there should be an > > email for you, somewhere. > > Hmmm... can't seem to find that email (it probably got caught in my > spam folder and deleted a long time ago). Would it be possible to have > it resent? Or is there any other way I can get my password again? Thanks. -- Elliott Slaughter "Any road followed precisely to its end leads precisely nowhere." - Frank Herbert From s11 at member.fsf.org Thu Aug 21 15:22:18 2008 From: s11 at member.fsf.org (Stephen Compall) Date: Thu, 21 Aug 2008 10:22:18 -0500 Subject: [admin] getting a clnet account Message-ID: How do I request an account on clnet for pushing changes to an existing project? (If sending this email is the way, I would prefer username sirian, and here is my gpg key: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: s11.asc URL: -------------- next part -------------- Thanks in advance,) -- I write stuff at http://failex.blogspot.com/ now. But the post formatter and themes are terrible for sharing code, the primary content, so it might go away sooner or later. From achambers.home at googlemail.com Thu Aug 21 23:24:52 2008 From: achambers.home at googlemail.com (Andy Chambers) Date: Fri, 22 Aug 2008 00:24:52 +0100 Subject: [admin] openair mailing list Message-ID: Hi Gary, I've sent a few test messages to the openair-devel mailing list but nothing seems to be getting through to the archives. The archive page says that no messages have been sent to the list. Can you tell what the problem is? Also, there seem to be two links on the project index page, one that works and one that doesn't. Please could you delete the one that doesn't. Cheers, Andy -- ---- Andy Chambers From gwking at metabang.com Sat Aug 23 22:41:11 2008 From: gwking at metabang.com (Gary King) Date: Sat, 23 Aug 2008 18:41:11 -0400 Subject: [admin] Can http://common-lisp.net/projects/foo/ be forwarded to http://common-lisp.net/project/foo/? In-Reply-To: <633d72b0808010110r4058a2d6od1501f0818495b72@mail.gmail.com> References: <633d72b0808010110r4058a2d6od1501f0818495b72@mail.gmail.com> Message-ID: <8B3396F9-CCE3-4FB3-A10C-4D1AB2585526@metabang.com> Hi Nikodemus, I've at least temporarily accomplished this with a symbolic link... HTH, On Aug 1, 2008, at 4:10 AM, Nikodemus Siivola wrote: > Any > > http://common-lisp.net/projects/foo/ > > url shows a highly confused page. It would be nice if someone knew > where it came from, and even nicer if > > http://common-lisp.net/projects/foo/ > > forwarded to > > http://common-lisp.net/project/foo/ > > since when typing urls directly I at least never remember which it > it... > > (Ok, this is *very* low priority, obviously.) > > Cheers, > > -- Nikodemus > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From root at common-lisp.net Sat Aug 23 22:44:32 2008 From: root at common-lisp.net (root) Date: Sat, 23 Aug 2008 18:44:32 -0400 (EDT) Subject: [admin] added ansi-test; owned by ehuelsmann Message-ID: <20080823224432.AFE2D6D07A@common-lisp.net> Add successful at 2008.08.23.18.44. From gwking at metabang.com Sat Aug 23 22:44:43 2008 From: gwking at metabang.com (Gary King) Date: Sat, 23 Aug 2008 18:44:43 -0400 Subject: [admin] Request for new project: ANSI Conformance test suite (ansi-test) In-Reply-To: References: Message-ID: Done. On Aug 14, 2008, at 5:27 AM, Erik Huelsmann wrote: > Hi! > > At the moment, the test suite by pfdietz is copied into a number of > different tries of CL implementations (including ECL and CCL). I want > to use the test suite for ABCL conformance testing too. > > Having a centralized copy - instead of several forked ones - seems to > have more value; making it possible to create a shared effort. > > Would you please create this project on common-lisp.net for me? > > > > Thanks in advance, > > > Erik. > PS: I forgot to mention my clnet user with my last request too; it's > ehuelsmann > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Sat Aug 23 22:45:25 2008 From: gwking at metabang.com (Gary King) Date: Sat, 23 Aug 2008 18:45:25 -0400 Subject: [admin] Request for new project: Armed Bear Common Lisp (armedbear) In-Reply-To: References: Message-ID: <2C8414A6-CD50-4F23-BAE5-600708987748@metabang.com> Done. (Sorry for the _long_ delay). On Aug 13, 2008, at 3:18 PM, Erik Huelsmann wrote: > I've inherited the J / ArmedBear project from Peter Graves. I'd like > to move the ArmedBear part to common-lisp.net. [The J part is simply > an editor, nothing lispy about that...] > > Could you set me up the armedbear project on c-l.net? > > Thanks in advance! > > Bye, > > Erik. > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From root at common-lisp.net Sat Aug 23 22:47:21 2008 From: root at common-lisp.net (root) Date: Sat, 23 Aug 2008 18:47:21 -0400 (EDT) Subject: [admin] added armedbear; owned by ehuelsmann Message-ID: <20080823224721.4BAEA50B6@common-lisp.net> Add successful at 2008.08.23.18.47. From gwking at metabang.com Sat Aug 23 22:52:18 2008 From: gwking at metabang.com (Gary King) Date: Sat, 23 Aug 2008 18:52:18 -0400 Subject: [admin] Embarrassing password loss In-Reply-To: References: Message-ID: <6565085A-FCB8-4BBE-ADBB-464570E8CF9A@metabang.com> > As embarrassing is it is it ask this, would it be possible for you > to reset/send me the admin passwords for each 3 mailing lists for cl- > store, cl-l10n and gzip-streams. Unfortunately I have suffered a > double HD failure and am unable to remember them. > > Sorry for the hassle, > Sean. Hi Sean, Double HD failure! Ouch. It's no hassle; thanks for your work on these projects. I've changed all the passwords to "happilyyes" -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Sat Aug 23 22:53:32 2008 From: gwking at metabang.com (Gary King) Date: Sat, 23 Aug 2008 18:53:32 -0400 Subject: [admin] Project Request: css-sexp In-Reply-To: References: Message-ID: <08365622-A53B-4430-AD78-EE8112CD17B1@metabang.com> Done. On Aug 22, 2008, at 3:33 AM, Red Daly wrote: > I am Red Daly (my common-lisp.net user name is `rdaly') and I am > requesting a new projected called 'css-sexp' > > It is a small library to write cascading style sheets using > S-Expression syntax. > > The license will be the Lisp LGPL here http://opensource.franz.com/preamble.html > > The code is already functional in the Suave project. Developers have > found small, simple projects more appealing so I am requesting a new > project for it. > > Thanks, > Red Daly > > > > -----BEGIN PGP PUBLIC KEY BLOCK----- > Version: GnuPG v1.4.3 (GNU/Linux) > > mQGiBEXeRBoRBACi528c6zOkOt653tX4HdEs0znPj23pGgPNRfsnE+BEeuwwiIqn > XUZdevk7Wi/zLJqvDXJDyX73+cguZrPhknsZxpJkXga4tWX1vt4ZQLh91gjwiWOf > mHgq567xECkUODZ8uZz3XSdx8purv0Hm3XAFO3+o52audZYFceUl51AsAwCg+OHv > XOssoUKNINc4V2+50+vt/YEEAIHZs2kR6vEqn6YGv0zJY/Q7fFXBJC0TtrrMrdLQ > BrX/SiqnM795j+bhAeeZUTOZZBqGUhIbF12NxMxcs4eXu2x4u/wxraSlI9+CYznK > +2JDM5rmq24EH0UAWIfEywLr1aHd05qdGkjnUvlfd3PYbpAgnAsHXZJuQXn6LNOM > E+gcA/4i/9qJGpQTMvPurrtTA2p8tNLDk5XUMLvvnTvWEVVKw+8hEuj7HAaf/rM6 > D2835A0Z5blhrxw7S4tXS/8I6uTWNq+7vOWlPSV8wFjdSab6ckcchsKfjyDartzI > sbOOr2YGZR3ooCI82kFNklBETmSOGtaUYb9JCXJa94yvqqHQkrQsUmVkIERhbHkg > KGZpcnN0IGF0dGVtcHQpIDxyZWRkYWx5QGdtYWlsLmNvbT6IYAQTEQIAIAUCRd5E > GgIbAwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJECDsPLRS0sFDeikAn0scN0mv > vECULJNzZzPrADe0YQbbAKC+S3a6jBq61Ob8lQ4cIpYhBfDobbkCDQRF3kQkEAgA > /tu4y+v2JuZvTkdvgAtRSGs9dghZZ38d4dnVuboY0UDMBlT4QPPB0D9obPiYmyIG > 1g5EKIdLHqCTEjIrl0aTts9kcRP39wBjYDaC5laFK0kNwFTVq85I5OIO8xo/Ddwd > nhJFMursF/fQ5DD/tw7UenLkIpq6vf5KzUKxq/8v6b22fC0Y/8//qDGBD9MkL+pE > cMfZk7VxDPALEI11twPQ87MF6lm1sqba2TYu648vnuACRQHmiQhrVVo8/vRXPxrA > xUlvN6bw2CaWpjUPmuI3FAcMMxS04pOIRwJ5/i7A0Dks/F92XrdRzV6IaVnUJuZh > f1bifF70efcZ1wRGQfTsewADBQf+Lx7Y+LE3eeG4sISoW9zqCuduhhZRfhM4Nnjw > EFP1PBJRctIGK9aPw73eugOF0kWaSIrAgaEC6g3hn/maGcooVcSOW37HrDmExsc1 > i9rGeXVk7Tjo0DJYBO574VABG+ex0TPiVzTtNJ0zk+pPzEu7msnolyYQPqTCZu18 > sbW2NR+/RH4I0Bm/vhtpf/Ngv8MxNW1v/kszD0CeqLktOSOkIEos7icMo/Twr5BU > HzVR77sEV/nF3qwWT4cgui3ukqrvz2kttj5FJ/QbbOMTK0a4PioB4m9AIuRZc6+9 > gF+3WE7VAoTsAuimwDB0pO5WG7rfT+ZMEozMDWpupmm5r3J1zIhJBBgRAgAJBQJF > 3kQkAhsMAAoJECDsPLRS0sFDrpAAoO8Jp4wUireSHkk4RTlbGbP9QTpcAJ9olGv7 > K3k8MDSDHrwfcfdkGs63UA== > =uYtv > -----END PGP PUBLIC KEY BLOCK----- > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From root at common-lisp.net Sat Aug 23 22:54:21 2008 From: root at common-lisp.net (root) Date: Sat, 23 Aug 2008 18:54:21 -0400 (EDT) Subject: [admin] added css-sexp; owned by rdaly Message-ID: <20080823225421.71E436F311@common-lisp.net> Add successful at 2008.08.23.18.54. From gwking at metabang.com Sat Aug 23 22:55:48 2008 From: gwking at metabang.com (Gary King) Date: Sat, 23 Aug 2008 18:55:48 -0400 Subject: [admin] Account Request In-Reply-To: <42c0ab790808191141o6d9f9d55q36961d8fb773ef01@mail.gmail.com> References: <42c0ab790805022016p5b6307cnfba4b86c2cf70c7e@mail.gmail.com> <3FE86BE4-1289-4362-8DFE-F218DCDC9182@metabang.com> <42c0ab790807202127v525ee7f5h22fafb6bb9951fc@mail.gmail.com> <6F57AECD-CB31-4EBF-A08D-63C219A7CA32@metabang.com> <42c0ab790807291646n50fbda9bq53c2d1d9b1214150@mail.gmail.com> <42c0ab790808092101j67e1724ew92d15233f77a91@mail.gmail.com> <42c0ab790808191141o6d9f9d55q36961d8fb773ef01@mail.gmail.com> Message-ID: <02302097-6997-4266-8A27-8D6D207B3418@metabang.com> Hi Eliot, My apologies for the delay; I've just reset your password. Let me know if this goes awry. On Aug 19, 2008, at 2:41 PM, Elliott Slaughter wrote: > Hi, > > I'm just resending this request since it has been more than a week > since I asked. > > On Sat, Aug 9, 2008 at 9:01 PM, Elliott Slaughter > wrote: >> >> On Sat, Aug 2, 2008 at 2:26 PM, Ingvar wrote: >>> Checking, I can see that your account has been created, so there >>> should be an >>> email for you, somewhere. >> >> Hmmm... can't seem to find that email (it probably got caught in my >> spam folder and deleted a long time ago). Would it be possible to >> have >> it resent? > > Or is there any other way I can get my password again? > > Thanks. > > -- > Elliott Slaughter > > "Any road followed precisely to its end leads precisely nowhere." - > Frank Herbert > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Sat Aug 23 22:59:00 2008 From: gwking at metabang.com (Gary King) Date: Sat, 23 Aug 2008 18:59:00 -0400 Subject: [admin] getting a clnet account In-Reply-To: References: Message-ID: <05423356-DC42-46C8-A845-71E2D7BF24D5@metabang.com> Hi Stephen, This is the way; you'll need to get permission from the project maintainer (i.e., they need to e-mail "admin" requesting that you be added to the project) before you can make commits. I'll set your account up now. You'll receive an encrypted e-mail from cl.net with your password Your user name with be scompall (cl.net policy is first initial + last name). On Aug 21, 2008, at 11:22 AM, Stephen Compall wrote: > How do I request an account on clnet for pushing changes to an > existing > project? > > (If sending this email is the way, I would prefer username sirian, and > here is my gpg key: > > -----BEGIN PGP PUBLIC KEY BLOCK----- > Version: GnuPG v1.4.6 (GNU/Linux) > > mQGiBEEyQyARBADgfwbvpPQ+wiffG2XSc4Aaab6NWOwLG3wt3ojOgiNxQvRx4E50 > vElA/xIRhcJtZXtCVpexi8nLd/Ru1qgOVKsu4MaYf/UKTFRXxRDDQqV0hGBMMf6i > yAc904rWD18RE8K9FR6kF0hlTLT4wbVMivvsAHmLHCWwxKKsfRGRR09iPwCgv2oZ > GNCXLyIyFgflZTYqEv6TzB0D/AgPbQwVVvrZjmvVgT7CXBu0vvECdjPaTvTdZU9v > AITZqPtZpWa9NqY4KaQ8hau55okQI5cvaxrpiugN2soZ6hIDPvyinY+hmG9sTK4D > rjJdMJJqyyE8wWg12ssSvp8WzlIjbEJQE93hLRGG9atOeQpuZBgIEI946W4VeOJG > GWFKA/9I7WL5WzjxG9xn+ICtWzLXt+G5+CiWt00u8uSda9twVVXCN+m0vkThEbHU > j6M4sWc9VYES8MHFQ4XnTt3I0SA+2MpGSxpN/lT0daml6S4hyHPLU+j/QBzOUnl2 > oNjKfv4cXQa+dG64FJ9Pam8vDnnl6+N/nQ+kivfflfD7XPNa8bQuU3RlcGhlbiBD > b21wYWxsIDxzY29tcGFsbEBub2NhbmR5c29mdHdhcmUuY29tPohhBBMRAgAhAhsD > BgsJCAcDAgMVAgMDFgIBAh4BAheABQJBMkYCAhkBAAoJEGFow9+T6dMCsE4An0ro > 4ltk5hcOVV8gNrRYTlrlnNVIAKCIi/MzwwruWdRfNTq9RgOYuYjWdbQkU3RlcGhl > biBDb21wYWxsIDxzMTFAbWVtYmVyLmZzZi5vcmc+iF4EExECAB4FAkEyRdICGwMG > CwkIBwMCAxUCAwMWAgECHgECF4AACgkQYWjD35Pp0wIvAACfY+Bc/e0U83ytUI37 > VjjnuaQ34PYAn3FkuGHpwLJ0foz1YFUjV0EAw/mYtChTdGVwaGVuIENvbXBhbGwg > PHNjb21wYWxsQG5vY2FuZHlzdy5jb20+iGAEExECACAFAkij3zQCGwMGCwkIBwMC > BBUCCAMEFgIDAQIeAQIXgAAKCRBhaMPfk+nTAmzEAJ4412WY/8i8FhWNiDMK8qt0 > FMpRXQCgspXCetGJILwjOqUH+osC/nBQrNK0PVN0ZXBoZW4gQ29tcGFsbCAoRERJ > KSA8c3RlcGhlbi5jb21wYWxsQGRlc2t0b3Bkb2N0b3JzaW5jLmNvbT6IYAQTEQIA > IAUCSKkDHAIbAwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEGFow9+T6dMChQMA > oJ4GRJibgI3wjEsGJjwI/O8l6llzAJ4u3eEAQflQs7Qp1igh0PgM5wyvfrkBDQRB > MkMgEAQAxfMjh/1WwP2DNGhRV6QauT464hK6bNmD5Nuvks0mQe/NqBje3wHTRwAh > FdmXNFOaoDgp/MBIcUsF71mLoaRQgosEP3JWkFsTrk7C61nQ73EtFacdQAcexodB > 9h2uVwLJwOCyEQClLmGPs1vK9H9qs0W/3+bNnmF1gB+WP1/2phMAAwUD/0hCqfYu > oMKjg3T8qgXpTOhmXPMIz3pOU4+Xgj2VBO8v8wVqySOR6/a3uh7FoCcvJftLhzi3 > jndDwKpC9xq+YORGNCMbaCkxIaIfOBYdGJksA+fmbpbS/mUgzlkceTzsWDgS2V+c > 8tvGTZfkwrZVsxXbt0xgWW617oVsKbmch46+iEkEGBECAAkFAkEyQyACGwwACgkQ > YWjD35Pp0wI8JACgjV1/IB1vBcFGeYpaSPXdLhws+DUAoJgVJLZXzXZTewA7Mrq6 > fLa5uqC8 > =mYJ1 > -----END PGP PUBLIC KEY BLOCK----- > > Thanks in advance,) > > -- > I write stuff at http://failex.blogspot.com/ now. But the post > formatter and themes are terrible for sharing code, the primary > content, so it might go away sooner or later. > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Sat Aug 23 23:05:24 2008 From: gwking at metabang.com (Gary King) Date: Sat, 23 Aug 2008 19:05:24 -0400 Subject: [admin] openair mailing list In-Reply-To: References: Message-ID: Hi Andy, The settings for archiving look OK (though I'm not a mailman expect (or even a novice!)). Are messages getting to the list (i.e., is it just the archiving that isn't working?). I'll remove the openAIR project in a few moments. On Aug 21, 2008, at 7:24 PM, Andy Chambers wrote: > Hi Gary, > > I've sent a few test messages to the openair-devel mailing list but > nothing seems to be getting through to the archives. The archive page > says that no messages have been sent to the list. Can you tell what > the problem is? > > Also, there seem to be two links on the project index page, one that > works and one that doesn't. Please could you delete the one that > doesn't. > > Cheers, > Andy > > -- > ---- > Andy Chambers > _______________________________________________ > admin mailing list > admin at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/admin -- Gary Warren King, metabang.com Cell: (413) 559 8738 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From rlpowell at digitalkingdom.org Sun Aug 24 23:12:37 2008 From: rlpowell at digitalkingdom.org (Robin Lee Powell) Date: Sun, 24 Aug 2008 16:12:37 -0700 Subject: [admin] Re: Account request In-Reply-To: <20080813211315.GF15013@digitalkingdom.org> References: <20080813211315.GF15013@digitalkingdom.org> Message-ID: <20080824231237.GT15953@digitalkingdom.org> On Wed, Aug 13, 2008 at 02:13:15PM -0700, Robin Lee Powell wrote: > > I'd like a common-lisp.net account so I can edit the Trac pages > for the weblocks project; the admins sent me to you guys. Anybody out there? -Robin -- Lojban Reason #17: http://en.wikipedia.org/wiki/Buffalo_buffalo Proud Supporter of the Singularity Institute - http://singinst.org/ http://www.digitalkingdom.org/~rlpowell/ *** http://www.lojban.org/ From elliottslaughter at gmail.com Sun Aug 24 23:27:15 2008 From: elliottslaughter at gmail.com (Elliott Slaughter) Date: Sun, 24 Aug 2008 16:27:15 -0700 Subject: [admin] Account Request In-Reply-To: <02302097-6997-4266-8A27-8D6D207B3418@metabang.com> References: <42c0ab790805022016p5b6307cnfba4b86c2cf70c7e@mail.gmail.com> <3FE86BE4-1289-4362-8DFE-F218DCDC9182@metabang.com> <42c0ab790807202127v525ee7f5h22fafb6bb9951fc@mail.gmail.com> <6F57AECD-CB31-4EBF-A08D-63C219A7CA32@metabang.com> <42c0ab790807291646n50fbda9bq53c2d1d9b1214150@mail.gmail.com> <42c0ab790808092101j67e1724ew92d15233f77a91@mail.gmail.com> <42c0ab790808191141o6d9f9d55q36961d8fb773ef01@mail.gmail.com> <02302097-6997-4266-8A27-8D6D207B3418@metabang.com> Message-ID: <42c0ab790808241627x514715f5ye7063683a40baee6@mail.gmail.com> Hi Gary, On Sat, Aug 23, 2008 at 3:55 PM, Gary King wrote: > > Hi Eliot, > > My apologies for the delay; I've just reset your password. Thanks, I managed to log in. (The message didn't include my username, but I managed to guess what it was in a couple of tries.) Now, I'm not sure how to actually upload my project to common-lisp.net. I thought it would be enough to tar and upload my local darcs repository, but darcs on common-lisp.net complains that it is not a repository when I try darcs changes or darcs show files, and complains that it is when I try darcs init. Is there a better way to do this? And once I have my repository up, how do I make it publicly available? Thanks again! -- Elliott Slaughter "Any road followed precisely to its end leads precisely nowhere." - Frank Herbert From creelman.david at gmail.com Thu Aug 28 04:33:03 2008 From: creelman.david at gmail.com (David Creelman) Date: Thu, 28 Aug 2008 14:33:03 +1000 Subject: [admin] Requesting project space for a lisp based database stored procedure generator (and some other questions) Message-ID: <29a536b40808272133i52dcb717y14718901748fb6a3@mail.gmail.com> Hi, My name is David Creelman and I've been working on a personal lisp project (which I'm having trouble giving a name...) that I'd like to open source. Could you perhaps recommend a lisp friendly open source licence to me? The project is not quite finished, but can already produce some useful outputs. So, what does it do? At the moment I can type the following in lisp :- (defproc mysqlproc () (setv j 23.2) (sprint j) (if (< j 0) (print j))) Which will 'compile' to the following MSSQL :- create procedure mysqlproc as begin declare @j decimal(3,2) set @j = 23.2 print @j if @j < 0 print @j end So, as you can see, it's in it's early days and it is also a learning test bed on lisp for me. My plan is firstly to support most of the important data manipulation commands (select/insert/update) and then maybe some data definition concepts (create/alter/drop table), though I may look at how to integrate this into clsql, which I think does this kind of thing. I'm also going to get it to work with Oracle stored procs. If I'm feeling very ambitious I may end up making it work on sqlite (by making it generate executable code rather than stored procs) and a simple lisp based database as well. Could you let me know if/when it would be possible to set up a place for this on common-lisp.net? Thanks for your time. Regards David GPG 7d779ca5 -------------- next part -------------- An HTML attachment was scrubbed... URL: From ehuels at gmail.com Sun Aug 31 23:14:38 2008 From: ehuels at gmail.com (Erik Huelsmann) Date: Mon, 1 Sep 2008 01:14:38 +0200 Subject: [admin] Trac for armedbear project Message-ID: While I'm in the process of moving the armedbear repository to c-l.net, I'd also like to request a Trac facility: I'm gathering information about ABCL internals and I think the Trac Wiki would be a great place to store it. Thanks in advance! Erik.