From debbugs-submit-bounces@debbugs.gnu.org Tue May 30 17:06:03 2017 Received: (at submit) by debbugs.gnu.org; 30 May 2017 21:06:03 +0000 Received: from localhost ([127.0.0.1]:45761 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dFoL4-0005Yw-RL for submit@debbugs.gnu.org; Tue, 30 May 2017 17:06:03 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36380) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dFoL3-0005YI-JU for submit@debbugs.gnu.org; Tue, 30 May 2017 17:06:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dFoKx-0006cR-8S for submit@debbugs.gnu.org; Tue, 30 May 2017 17:05:56 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:50940) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dFoKx-0006cM-4F for submit@debbugs.gnu.org; Tue, 30 May 2017 17:05:55 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55569) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dFoKv-0006Ou-Tm for guix-patches@gnu.org; Tue, 30 May 2017 17:05:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dFoKs-0006ZG-Pf for guix-patches@gnu.org; Tue, 30 May 2017 17:05:53 -0400 Received: from mail.lassieur.org ([83.152.10.219]:57790) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dFoKs-0006YG-Fx for guix-patches@gnu.org; Tue, 30 May 2017 17:05:50 -0400 Received: from rodion (88.191.118.83 [88.191.118.83]) by mail.lassieur.org (OpenSMTPD) with ESMTPSA id ffa3d868 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Tue, 30 May 2017 21:03:57 +0000 (UTC) User-agent: mu4e 0.9.18; emacs 25.2.1 From: =?utf-8?Q?Cl=C3=A9ment?= Lassieur To: guix-patches@gnu.org Subject: gnu: sicp: Add the HTML version. Date: Tue, 30 May 2017 23:05:42 +0200 Message-ID: <87y3teukbd.fsf@lassieur.org> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.1 (----) Yesterday, while browsing the Info version of SICP, I came accross an incomplete figure (Figure 3.1: environments A and B are missing). I thought the HTML version might be complete and indeed it was. It's really nice by the way, see http://sarabander.github.io/sicp/. And real figures are in my opinion more pleasant to study than ASCII art figures. So I think we should add the HTML version to our package. :-) That would allow us to use it without Internet access. I find it much easier to browse the Info manual than the HTML one, so I wrote this small Elisp snippet to switch from the former to the latter: --8<---------------cut here---------------start------------->8--- (defun sicp-browse () "Ask a browser to load the HTML version of the current node." (interactive) (let* ((home (expand-file-name "~")) (dir (concat "file://" home "/.guix-profile/share/doc/sicp/html/")) (node Info-current-node) (pattern (string-join '("^\\(?1:[0-9]\\)\.\\(?2:[0-9]\\)\.\\(?3:[0-9]\\)$" ; 4-5-7 "^\\(?1:[0-9]\\)\.\\(?2:[0-9]\\)$" ; 4-5 "^Chapter \\(?1:[0-9]\\)$") ; Chapter 4 "\\|"))) (if (string-match pattern node) (let ((chapter (match-string 1 node)) ; 4 (section (match-string 2 node)) ; 5 (sub-section (match-string 3 node)) ; 7 base (anchor "")) (if section (setq base (format "%s_002e%s" chapter section)) (setq base (format "Chapter-%s" chapter))) (when sub-section (setq anchor (format "#g_t%s_002e%s" base sub-section))) (browse-url (concat dir base ".xhtml" anchor))) (error "Node not matched")))) --8<---------------cut here---------------end--------------->8--- From debbugs-submit-bounces@debbugs.gnu.org Tue May 30 17:12:10 2017 Received: (at 27153) by debbugs.gnu.org; 30 May 2017 21:12:10 +0000 Received: from localhost ([127.0.0.1]:45782 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dFoQz-0005j8-Rx for submit@debbugs.gnu.org; Tue, 30 May 2017 17:12:10 -0400 Received: from mail.lassieur.org ([83.152.10.219]:33434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dFoQx-0005iy-Fz for 27153@debbugs.gnu.org; Tue, 30 May 2017 17:12:08 -0400 Received: from localhost.localdomain (88.191.118.83 [88.191.118.83]) by mail.lassieur.org (OpenSMTPD) with ESMTPSA id e7ac3722 (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for <27153@debbugs.gnu.org>; Tue, 30 May 2017 21:10:19 +0000 (UTC) From: =?UTF-8?q?Cl=C3=A9ment=20Lassieur?= To: 27153@debbugs.gnu.org Subject: [PATCH] gnu: sicp: Add the HTML version. Date: Tue, 30 May 2017 23:11:49 +0200 Message-Id: <20170530211149.31315-1-clement@lassieur.org> X-Mailer: git-send-email 2.13.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 27153 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) * gnu/packages/scheme.scm (sicp)[arguments]: Copy the HTML directory to the output. --- gnu/packages/scheme.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index f6aee005c..eacfd733d 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2016, 2017 ng0 ;;; Copyright © 2017 John Darrington +;;; Copyright © 2017 Clément Lassieur ;;; ;;; This file is part of GNU Guix. ;;; @@ -780,7 +781,9 @@ engineering.") (let ((gzip (assoc-ref %build-inputs "gzip")) (source (assoc-ref %build-inputs "source")) (texinfo (assoc-ref %build-inputs "texinfo")) + (html-dir (string-append %output "/share/doc/" ,name "/html")) (info-dir (string-append %output "/share/info"))) + (copy-recursively (string-append source "/html") html-dir) (setenv "PATH" (string-append gzip "/bin" ":" texinfo "/bin")) (mkdir-p info-dir) -- 2.13.0 From debbugs-submit-bounces@debbugs.gnu.org Tue May 30 23:42:44 2017 Received: (at 27153) by debbugs.gnu.org; 31 May 2017 03:42:44 +0000 Received: from localhost ([127.0.0.1]:46012 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dFuWy-00058P-AW for submit@debbugs.gnu.org; Tue, 30 May 2017 23:42:44 -0400 Received: from mail-pg0-f54.google.com ([74.125.83.54]:36681) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dFuWw-00058C-Dz for 27153@debbugs.gnu.org; Tue, 30 May 2017 23:42:42 -0400 Received: by mail-pg0-f54.google.com with SMTP id x64so1506774pgd.3 for <27153@debbugs.gnu.org>; Tue, 30 May 2017 20:42:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-transfer-encoding; bh=JGy54t+XCcXB8qdWwOnQ8mhrnhagtsWweWI9Eb8CApA=; b=HwoGnD+vkD9KgVOpaj7jpgpDj2SMpqjO1pvPk6xxtGEdSgfJUXIBohhWXvQVFtKj5T 44+ZygypgGtQwEtkBwa3m6YjM7t4Ot2sg4zvmC+W3E+aFkEtMQyU0DxmzbQ6KLSFqvV2 IZQ39eCkGwYc4LnZJOxIGk9iwuGbLyQmBljOfCHUJvIH3MMOpCtw806DhCa0uEV6b9qW kWx4uRnmIKku9PPcyAGzZBKOwSqMcgTpj9StMM1UXB5j3SYilnhtl01mAgeTW30xn/JH zsdrwmiE6lWEBqA80MIJ/6sXubrpHHZrPQ+7af1mrc7P3Cm9o/fFfMhol5vUHIE5eYUn jxRQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=JGy54t+XCcXB8qdWwOnQ8mhrnhagtsWweWI9Eb8CApA=; b=kaXEN0uK9F2Y0MLKjc3FLX9NCgfBeLiSPtGxVNdvYH4NerE0fhq30BWIwQMQ5N2oxc tkIdBh0ttjBO3T/cb18kuTh56hS1LsEAdtU7+UxGgU0UUJQFR2JkYLGomg+fijzO+Eo5 7hNimLUTNHkcYjyOA7j6uAJCZ8bIR55bPezTnnz7YBpNhKFgqVGCYq9cCTwTW2dcOKmP oIW9WYaTkIQisF3UwjIiKllGHwNtwauhkJxCBP16F4HBp+KRCMq42jFueXkTolgB/sz3 T8ucyNavqhhpwoktiuHPTlKu4wq0blfK8mAR4L2mW/txugYWMIeyVhHqveOodRCErhVc 9GRQ== X-Gm-Message-State: AODbwcCTsA7APRt1s/Hj6aK+FDeLf8BZiWrTzrE16wRTBXBvStsVNyZ/ mtTOylPECyuc6w== X-Received: by 10.84.133.68 with SMTP id 62mr86150640plf.63.1496202156388; Tue, 30 May 2017 20:42:36 -0700 (PDT) Received: from apteryx ([2601:647:4a01:bacd:c2f8:daff:fe5d:2f2f]) by smtp.gmail.com with ESMTPSA id e20sm25349622pfd.34.2017.05.30.20.42.35 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 30 May 2017 20:42:35 -0700 (PDT) From: Maxim Cournoyer To: =?utf-8?Q?Cl=C3=A9ment?= Lassieur Subject: Re: bug#27153: gnu: sicp: Add the HTML version. References: <87y3teukbd.fsf@lassieur.org> Date: Tue, 30 May 2017 20:42:34 -0700 In-Reply-To: <87y3teukbd.fsf@lassieur.org> (=?utf-8?Q?=22Cl=C3=A9ment?= Lassieur"'s message of "Tue, 30 May 2017 23:05:42 +0200") Message-ID: <87d1apsndh.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 27153 Cc: 27153@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.5 (/) Hi Cl=C3=A9ment, Cl=C3=A9ment Lassieur writes: > Yesterday, while browsing the Info version of SICP, I came accross an > incomplete figure (Figure 3.1: environments A and B are missing). I > thought the HTML version might be complete and indeed it was. It's > really nice by the way, see http://sarabander.github.io/sicp/. And real > figures are in my opinion more pleasant to study than ASCII art figures. > > So I think we should add the HTML version to our package. :-) That > would allow us to use it without Internet access. > > I find it much easier to browse the Info manual than the HTML one, so I > wrote this small Elisp snippet to switch from the former to the latter: > > (defun sicp-browse () > "Ask a browser to load the HTML version of the current node." > (interactive) > (let* ((home (expand-file-name "~")) > (dir (concat "file://" home "/.guix-profile/share/doc/sicp/html/= ")) > (node Info-current-node) > (pattern > (string-join > '("^\\(?1:[0-9]\\)\.\\(?2:[0-9]\\)\.\\(?3:[0-9]\\)$" ; 4-5-7 > "^\\(?1:[0-9]\\)\.\\(?2:[0-9]\\)$" ; 4-5 > "^Chapter \\(?1:[0-9]\\)$") ; Chapter= 4 > "\\|"))) > (if (string-match pattern node) > (let ((chapter (match-string 1 node)) ; 4 > (section (match-string 2 node)) ; 5 > (sub-section (match-string 3 node)) ; 7 > base > (anchor "")) > (if section > (setq base (format "%s_002e%s" chapter section)) > (setq base (format "Chapter-%s" chapter))) > (when sub-section > (setq anchor (format "#g_t%s_002e%s" base sub-section))) > (browse-url (concat dir base ".xhtml" anchor))) > (error "Node not matched")))) Cool! Thanks for sharing. I having started my study of SICP yet, but that's something I've been meaning to do. Also, couldn't the info version contain real figures (bitmaps)? Emacs is capable of displaying images; maybe the info viewer is able to detect if yes or no images are supported, and degrade gracefully to an alternative (ascii art) when support is lacking? Just some thoughts :) Maxim From debbugs-submit-bounces@debbugs.gnu.org Wed May 31 02:44:11 2017 Received: (at 27153) by debbugs.gnu.org; 31 May 2017 06:44:11 +0000 Received: from localhost ([127.0.0.1]:46106 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dFxMZ-00011p-47 for submit@debbugs.gnu.org; Wed, 31 May 2017 02:44:11 -0400 Received: from mail.lassieur.org ([83.152.10.219]:33440) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dFxMX-00011g-IJ for 27153@debbugs.gnu.org; Wed, 31 May 2017 02:44:10 -0400 Received: from rodion (88.191.118.83 [88.191.118.83]) by mail.lassieur.org (OpenSMTPD) with ESMTPSA id 3f0fd27e (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Wed, 31 May 2017 06:42:17 +0000 (UTC) References: <87y3teukbd.fsf@lassieur.org> <87d1apsndh.fsf@gmail.com> User-agent: mu4e 0.9.18; emacs 25.2.1 From: =?utf-8?Q?Cl=C3=A9ment?= Lassieur To: Maxim Cournoyer Subject: Re: bug#27153: gnu: sicp: Add the HTML version. In-reply-to: <87d1apsndh.fsf@gmail.com> Date: Wed, 31 May 2017 08:44:06 +0200 Message-ID: <87wp8xv83t.fsf@lassieur.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 27153 Cc: 27153@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Hi Maxim, Maxim Cournoyer writes: > Also, couldn't the info version contain real figures (bitmaps)? Emacs is > capable of displaying images; maybe the info viewer is able to detect if > yes or no images are supported, and degrade gracefully to an alternative > (ascii art) when support is lacking? You're right, I think they should be displayed but for some reason they aren't. There is an 'Info-display-images-node' function in 'info.el.gz' though, but the regexp there isn't matching anything. Clément From debbugs-submit-bounces@debbugs.gnu.org Wed May 31 09:39:47 2017 Received: (at 27153) by debbugs.gnu.org; 31 May 2017 13:39:47 +0000 Received: from localhost ([127.0.0.1]:46334 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dG3ql-0007aG-57 for submit@debbugs.gnu.org; Wed, 31 May 2017 09:39:47 -0400 Received: from eggs.gnu.org ([208.118.235.92]:55107) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dG3qj-0007a0-MO for 27153@debbugs.gnu.org; Wed, 31 May 2017 09:39:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dG3qb-0005uP-Bm for 27153@debbugs.gnu.org; Wed, 31 May 2017 09:39:40 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:38684) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dG3qb-0005uK-8D; Wed, 31 May 2017 09:39:37 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:47962 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dG3qa-0000hf-IH; Wed, 31 May 2017 09:39:36 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: =?utf-8?Q?Cl=C3=A9ment?= Lassieur Subject: Re: bug#27153: gnu: sicp: Add the HTML version. References: <87y3teukbd.fsf@lassieur.org> <87d1apsndh.fsf@gmail.com> <87wp8xv83t.fsf@lassieur.org> Date: Wed, 31 May 2017 15:39:34 +0200 In-Reply-To: <87wp8xv83t.fsf@lassieur.org> (=?utf-8?Q?=22Cl=C3=A9ment?= Lassieur"'s message of "Wed, 31 May 2017 08:44:06 +0200") Message-ID: <87fufldu21.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 27153 Cc: 27153@debbugs.gnu.org, Maxim Cournoyer X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Hi, Cl=C3=A9ment Lassieur skribis: > Maxim Cournoyer writes: > >> Also, couldn't the info version contain real figures (bitmaps)? Emacs is >> capable of displaying images; maybe the info viewer is able to detect if >> yes or no images are supported, and degrade gracefully to an alternative >> (ascii art) when support is lacking? > > You're right, I think they should be displayed but for some reason they > aren't. Could it be that they=E2=80=99re not installed in the right place? The Guix manual has a couple of images (info "(guix) Invoking guix graph") and they are properly displayed by Emacs on X11. Thanks, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Wed May 31 09:40:07 2017 Received: (at 27153) by debbugs.gnu.org; 31 May 2017 13:40:07 +0000 Received: from localhost ([127.0.0.1]:46338 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dG3r5-0007bI-DO for submit@debbugs.gnu.org; Wed, 31 May 2017 09:40:07 -0400 Received: from eggs.gnu.org ([208.118.235.92]:55158) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dG3r3-0007ac-Iy for 27153@debbugs.gnu.org; Wed, 31 May 2017 09:40:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dG3qv-0005z9-8a for 27153@debbugs.gnu.org; Wed, 31 May 2017 09:40:00 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:38688) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dG3qv-0005z3-56; Wed, 31 May 2017 09:39:57 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:47964 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dG3qu-0000it-FZ; Wed, 31 May 2017 09:39:56 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: =?utf-8?Q?Cl=C3=A9ment?= Lassieur Subject: Re: bug#27153: [PATCH] gnu: sicp: Add the HTML version. References: <87y3teukbd.fsf@lassieur.org> <20170530211149.31315-1-clement@lassieur.org> Date: Wed, 31 May 2017 15:39:54 +0200 In-Reply-To: <20170530211149.31315-1-clement@lassieur.org> (=?utf-8?Q?=22C?= =?utf-8?Q?l=C3=A9ment?= Lassieur"'s message of "Tue, 30 May 2017 23:11:49 +0200") Message-ID: <87bmq9du1h.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 27153 Cc: 27153@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Cl=C3=A9ment Lassieur skribis: > * gnu/packages/scheme.scm (sicp)[arguments]: Copy the HTML directory to t= he > output. LGTM, thanks! Ludo'. From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 01 05:09:26 2017 Received: (at 27153-done) by debbugs.gnu.org; 1 Jun 2017 09:09:26 +0000 Received: from localhost ([127.0.0.1]:48425 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dGM6g-0002kq-E5 for submit@debbugs.gnu.org; Thu, 01 Jun 2017 05:09:26 -0400 Received: from mail.lassieur.org ([83.152.10.219]:33470) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dGM6f-0002kj-EH for 27153-done@debbugs.gnu.org; Thu, 01 Jun 2017 05:09:25 -0400 Received: from rodion (88.191.118.83 [88.191.118.83]) by mail.lassieur.org (OpenSMTPD) with ESMTPSA id d53c8ad1 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Thu, 1 Jun 2017 09:07:18 +0000 (UTC) References: <87y3teukbd.fsf@lassieur.org> <20170530211149.31315-1-clement@lassieur.org> <87bmq9du1h.fsf@gnu.org> User-agent: mu4e 0.9.18; emacs 25.2.1 From: =?utf-8?Q?Cl=C3=A9ment?= Lassieur To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: bug#27153: [PATCH] gnu: sicp: Add the HTML version. In-reply-to: <87bmq9du1h.fsf@gnu.org> Date: Thu, 01 Jun 2017 11:09:20 +0200 Message-ID: <87y3tcula7.fsf@lassieur.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 27153-done Cc: 27153-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Ludovic Courtès writes: > Clément Lassieur skribis: > >> * gnu/packages/scheme.scm (sicp)[arguments]: Copy the HTML directory to the >> output. > > LGTM, thanks! > > Ludo'. Pushed, thank you! From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 01 09:27:58 2017 Received: (at 27153) by debbugs.gnu.org; 1 Jun 2017 13:27:58 +0000 Received: from localhost ([127.0.0.1]:48775 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dGQ8r-00048E-Vn for submit@debbugs.gnu.org; Thu, 01 Jun 2017 09:27:58 -0400 Received: from dustycloud.org ([50.116.34.160]:60850) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dGQ8q-000487-Lg for 27153@debbugs.gnu.org; Thu, 01 Jun 2017 09:27:56 -0400 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 8FB8526677; Thu, 1 Jun 2017 09:27:55 -0400 (EDT) References: <87y3teukbd.fsf@lassieur.org> <87d1apsndh.fsf@gmail.com> <87wp8xv83t.fsf@lassieur.org> <87fufldu21.fsf@gnu.org> User-agent: mu4e 0.9.18; emacs 25.2.1 From: Christopher Allan Webber To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: bug#27153: gnu: sicp: Add the HTML version. In-reply-to: <87fufldu21.fsf@gnu.org> Date: Thu, 01 Jun 2017 08:27:51 -0500 Message-ID: <8737bjx2g8.fsf@dustycloud.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 27153 Cc: 27153@debbugs.gnu.org, =?utf-8?Q?Cl=C3=A9ment?= Lassieur X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Ludovic Courtès writes: > Hi, > > Clément Lassieur skribis: > >> Maxim Cournoyer writes: >> >>> Also, couldn't the info version contain real figures (bitmaps)? Emacs is >>> capable of displaying images; maybe the info viewer is able to detect if >>> yes or no images are supported, and degrade gracefully to an alternative >>> (ascii art) when support is lacking? >> >> You're right, I think they should be displayed but for some reason they >> aren't. > > Could it be that they’re not installed in the right place? > > The Guix manual has a couple of images (info "(guix) Invoking guix > graph") and they are properly displayed by Emacs on X11. > > Thanks, > Ludo’. I think it's because the texinfo version has the images replaced with ascii art, in most places! From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 02 20:48:23 2017 Received: (at 27153) by debbugs.gnu.org; 3 Jun 2017 00:48:23 +0000 Received: from localhost ([127.0.0.1]:52185 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dGxEt-0007PO-6l for submit@debbugs.gnu.org; Fri, 02 Jun 2017 20:48:23 -0400 Received: from mail-yw0-f170.google.com ([209.85.161.170]:34791) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dGxEr-0007PB-Lu for 27153@debbugs.gnu.org; Fri, 02 Jun 2017 20:48:21 -0400 Received: by mail-yw0-f170.google.com with SMTP id l14so38605903ywk.1 for <27153@debbugs.gnu.org>; Fri, 02 Jun 2017 17:48:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=rMpRANiX/CMOh5UgE7b4jKSKf3Ccwu4chihGpOfOHn0=; b=jBDX3Io6ftND793r49/+waXAC9ghPPKybcTbZXl+TYO+YuOVblFq35VUhXA+Mr1vm4 9bpW0u+7LOtBocegppRlhYzBwpTA4sacvW5ERPSQR5ntC5wDyprthZ2nsEoon/ObdNK3 Sjlp8LAVnDksKyIFCAjdUbVNGxMUbnKhE9Uxmj726gllm0Ir9n4U4XgmZl5yO6jJKKQp lrWuc2IlJm6uEDKp8cdm8KNgrBvKfeMXl83y74o46qZZ5RE05/VWV1MU9NsZ6c9hm0d8 SV9WD1h0bt9+F0e9f38pU4m61McCbtMkgpEAWHBSB4milT54RtdtpI40AufzoIHsn5Bs 3Y+w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=rMpRANiX/CMOh5UgE7b4jKSKf3Ccwu4chihGpOfOHn0=; b=EraG07XQK4ejBDI26+h3i3xND2Z+jb7e4F0q37hjX26dK4bpjPjAoZVQYYWbwG+ttO G2rxv2ZG1mMcqgG3wvbP+WMGgvfjqmsIX4r4HqnreAa89FElO5dy8S8gq79Pi1j6MrR5 ckYEoBVY2Zk8nzQ4FNOHR1N+VPv8A6tWkXHznOzrMFzGvRlYPTcOok/IE2vb9AR0sj07 +2hYWy9qv0qL+q7vOs2r6JyfmilWAZpJ6FZwEXPGLVHH/oDevmQUiWssm5C0KBU2JAku GbpdYI7HUvX4GWW1c3sFGCbVemxoEekM3LMqk2lMQuT7vFDDGFx0ivq+5GOZgffTH2Mb N+DA== X-Gm-Message-State: AODbwcDTQrbfSgZsPGZixcJGuGJY/k4Ml+giqlhl/CVMEOTZQnzPetGu FtSS6ZZ36/aG2GbyHdSCcuuWI7rHsQ== X-Received: by 10.129.82.195 with SMTP id g186mr8605731ywb.89.1496450895989; Fri, 02 Jun 2017 17:48:15 -0700 (PDT) MIME-Version: 1.0 Received: by 10.129.179.202 with HTTP; Fri, 2 Jun 2017 17:48:15 -0700 (PDT) In-Reply-To: <8737bjx2g8.fsf@dustycloud.org> References: <87y3teukbd.fsf@lassieur.org> <87d1apsndh.fsf@gmail.com> <87wp8xv83t.fsf@lassieur.org> <87fufldu21.fsf@gnu.org> <8737bjx2g8.fsf@dustycloud.org> From: Maxim Cournoyer Date: Fri, 2 Jun 2017 17:48:15 -0700 Message-ID: Subject: Re: bug#27153: gnu: sicp: Add the HTML version. To: Christopher Allan Webber Content-Type: multipart/alternative; boundary="001a114d946014692a055103a035" X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 27153 Cc: =?UTF-8?Q?Ludovic_Court=C3=A8s?= , 27153@debbugs.gnu.org, =?UTF-8?Q?Cl=C3=A9ment_Lassieur?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.5 (/) --001a114d946014692a055103a035 Content-Type: text/plain; charset="UTF-8" > > > I think it's because the texinfo version has the images replaced with > ascii art, in most places! > > OK. Not something we can fix at the package level then. Maxim --001a114d946014692a055103a035 Content-Type: text/html; charset="UTF-8"

I think it's because the texinfo version has the images replaced with
ascii art, in most places!


OK. Not something we can fix at the package level then.

Maxim

--001a114d946014692a055103a035-- From unknown Sat Jun 21 03:22:35 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 01 Jul 2017 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator