From mickael.remond@REDACTED Tue Apr 4 18:45:35 2006 From: mickael.remond@REDACTED (Mickael Remond) Date: Tue, 4 Apr 2006 18:45:35 +0200 Subject: make.erl functions to generate edoc Message-ID: <20060404164535.GB24839@memphis.ilius.fr> Hello, Here is make.erl functions we have added to easily generate edoc documentation on the file listed in an Emakefile: doc() -> doc("doc"). doc(DocPath) -> {ok, Makefiles} = file:consult("Emakefile"), Files = lists:map(fun({F, _Opts}) -> F end, Makefiles), edoc:files(Files, [{dir,DocPath}]). We generate the doc with the following command: erl -noshell -s make doc -s init stop Maybe it will be usefull to someone else. Cheers, -- Micka?l R?mond http://www.process-one.net/ From kna@REDACTED Thu Apr 27 14:07:07 2006 From: kna@REDACTED (=?ISO-8859-15?Q?Knut-H=E5vard_Aksnes?=) Date: Thu, 27 Apr 2006 14:07:07 +0200 Subject: Fix to make run_erl.c work on fedora Message-ID: <4450B3EB.2020600@tirsdagsklubben.nu> The mail stored in http://www.erlang.org/ml-archive/erlang-questions/200510/msg00088.html contains a patch needed to make run_erl work on newer Fedora and RedHat linux versions. The patch or something similar should be included in the otp distribution. -------------- next part -------------- A non-text attachment was scrubbed... Name: kna.vcf Type: text/x-vcard Size: 359 bytes Desc: not available URL: From klacke@REDACTED Thu Apr 27 19:38:37 2006 From: klacke@REDACTED (Claes Wikstrom) Date: Thu, 27 Apr 2006 19:38:37 +0200 Subject: patches for crypto, erl_interface and ssh Message-ID: <4451019D.2080902@tail-f.com> 3 different patches, One for lib/crypto which checks that the driver is properly loaded. One for erl_interface which - adds support for 64bit ints - allows for dotted pairs in the erl_interface encoder - add ~b as a modifier to erl_format - better printouts of binaries One for ssh which - removes all io:formats and generally cleans up - correct {stop ... return values from the different gen_servers. It's not an error if the remote end close - Adds customized authorization, whereby the the user of the ssh server can pass in an Auth fun which is used to authenticate the user. Typically this woud be radius client or some proprietary stuff - Fixes a severe bug whereby we use our local ChannelId instead of the remote ends. The bug doesn't show up when openssh is the client which start with channelid = 0. paramiko, a python client starts at 1, and the bug shows up. -- Claes Wikstrom -- Caps lock is nowhere and http://www.tail-f.com -- everything is under control cellphone: +46 70 2097763 -------------- next part -------------- A non-text attachment was scrubbed... Name: crypto.patch Type: text/x-patch Size: 1223 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: erl_interface.patch Type: text/x-patch Size: 12730 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ssh.patch Type: text/x-patch Size: 23936 bytes Desc: not available URL: