unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* remove ascii images from pdf
@ 2009-09-29 17:14 David Arroyo Menéndez
  2009-09-30 22:12 ` Neil Jerram
  0 siblings, 1 reply; 5+ messages in thread
From: David Arroyo Menéndez @ 2009-09-29 17:14 UTC (permalink / raw)
  To: guile-devel; +Cc: Brian Gough


[-- Attachment #1.1: Type: text/plain, Size: 190 bytes --]

Hi!

I've done a patch to include images instead of ascii images in the manual
reference and other minor modifications.

Regards.

-- 
David Arroyo Menéndez
http://www.davidam.com

[-- Attachment #1.2: Type: text/html, Size: 264 bytes --]

[-- Attachment #2: scheme.txt --]
[-- Type: text/plain, Size: 199 bytes --]

            scheme
               ^
               |
         .-----+-----.
         |           |
     cmuscheme    xscheme
         ^
         |
   .-----+-----.
   |           |
 Quack        GDS

[-- Attachment #3: guile.patch --]
[-- Type: text/x-patch, Size: 3071 bytes --]

diff --git a/doc/ref/intro.texi b/doc/ref/intro.texi
index 7e248e0..55cb4a3 100644
--- a/doc/ref/intro.texi
+++ b/doc/ref/intro.texi
@@ -72,7 +72,7 @@ Guile can be obtained from the main GNU archive site
 guile-version.tar.gz.  The current version is @value{VERSION}, so the
 file you should grab is:
 
-@url{ftp://ftp.gnu.org/pub/gnu/guile-@value{VERSION}.tar.gz}
+@url{ftp://ftp.gnu.org/pub/gnu/guile/guile-@value{VERSION}.tar.gz}
 
 To unbundle Guile use the instruction
 
diff --git a/doc/ref/scheme-scripts.texi b/doc/ref/scheme-scripts.texi
index 249bc34..f47ecf7 100644
--- a/doc/ref/scheme-scripts.texi
+++ b/doc/ref/scheme-scripts.texi
@@ -458,7 +458,7 @@ Here is a script which prints the factorial of its argument:
 @end example
 In action:
 @example
-$ fact 5
+$ ./fact 5
 120
 $
 @end example
@@ -487,7 +487,7 @@ definitions, without any extraneous computation taking place.  Then we
 used the meta switch @code{\} and the entry point switch @code{-e} to
 tell Guile to call @code{main} after loading the script.
 @example
-$ fact 50
+$ ./fact 50
 30414093201713378043612608166064768844377641568960512000000000000
 @end example
 
@@ -515,17 +515,17 @@ The command-line arguments here tell Guile to first load the file
 point.  In other words, the @code{choose} script can use definitions
 made in the @code{fact} script.  Here are some sample runs:
 @example
-$ choose 0 4
+$ ./choose 0 4
 1
-$ choose 1 4
+$ ./choose 1 4
 4
-$ choose 2 4
+$ ./choose 2 4
 6
-$ choose 3 4
+$ ./choose 3 4
 4
-$ choose 4 4
+$ ./choose 4 4
 1
-$ choose 50 100
+$ ./choose 50 100
 100891344545564193334812497256
 @end example
 
diff --git a/doc/ref/scheme-using.texi b/doc/ref/scheme-using.texi
index a8a2568..1ef02d8 100644
--- a/doc/ref/scheme-using.texi
+++ b/doc/ref/scheme-using.texi
@@ -372,17 +372,7 @@ to each other, with the arrows indicating ``builds on'' or
 which in turn builds on the standard scheme mode.
 
 @example
-            scheme
-               ^
-               |
-         .-----+-----.
-         |           |
-     cmuscheme    xscheme
-         ^
-         |
-   .-----+-----.
-   |           |
- Quack        GDS
+@image{scheme}
 @end example
 
 @dfn{scheme}, written by Bill Rozas and Dave Love, is Emacs's standard
@@ -551,23 +541,7 @@ The following diagram shows how these components are connected to each
 other.
 
 @example
-+----------------+
-| Program #1     |
-|                |
-| +------------+ |
-| | GDS Client |-_
-| +------------+ |-_                       +-------------------+
-+----------------+  -_TCP                  | Emacs             |
-                      -_                   |                   |
-                        -_+------------+   | +---------------+ |
-                         _| GDS Server |-----| GDS Interface | |
-+----------------+     _- +------------+   | +---------------+ |
-| Program #2     |   _-                    +-------------------+
-|                | _- TCP
-| +------------+ _-
-| | GDS Client |-|
-| +------------+ |
-+----------------+
+@image{gds}
 @end example
 
 @cindex TCP, use of

[-- Attachment #4: scheme.png --]
[-- Type: image/png, Size: 4642 bytes --]

[-- Attachment #5: scheme.dia --]
[-- Type: application/x-dia-diagram, Size: 1602 bytes --]

[-- Attachment #6: gds.dia --]
[-- Type: application/x-dia-diagram, Size: 1536 bytes --]

[-- Attachment #7: gds.png --]
[-- Type: image/png, Size: 6166 bytes --]

[-- Attachment #8: gds.txt --]
[-- Type: text/plain, Size: 653 bytes --]

+----------------+
| Program #1     |
|                |
| +------------+ |
| | GDS Client |-_
| +------------+ |-_                       +-------------------+
+----------------+  -_TCP                  | Emacs             |
                      -_                   |                   |
                        -_+------------+   | +---------------+ |
                         _| GDS Server |-----| GDS Interface | |
+----------------+     _- +------------+   | +---------------+ |
| Program #2     |   _-                    +-------------------+
|                | _- TCP
| +------------+ _-
| | GDS Client |-|
| +------------+ |
+----------------+

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: remove ascii images from pdf
  2009-09-29 17:14 remove ascii images from pdf David Arroyo Menéndez
@ 2009-09-30 22:12 ` Neil Jerram
  2009-10-01 12:02   ` David Arroyo Menéndez
  0 siblings, 1 reply; 5+ messages in thread
From: Neil Jerram @ 2009-09-30 22:12 UTC (permalink / raw)
  To: David Arroyo Menéndez; +Cc: Brian Gough, guile-devel

David Arroyo Menéndez <davidam@gmail.com> writes:

> Hi!
>
> I've done a patch to include images instead of ascii images in the manual
> reference and other minor modifications.

Hi David,

This looks great, but I'm afraid the GNU project needs copyright
assignment papers from you before we can incorporate these images into
the manual.  Would you be willing to do that?

Thanks,
        Neil




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: remove ascii images from pdf
  2009-09-30 22:12 ` Neil Jerram
@ 2009-10-01 12:02   ` David Arroyo Menéndez
  2009-10-05 16:44     ` David Arroyo Menéndez
  0 siblings, 1 reply; 5+ messages in thread
From: David Arroyo Menéndez @ 2009-10-01 12:02 UTC (permalink / raw)
  To: Neil Jerram; +Cc: Brian Gough, guile-devel

[-- Attachment #1: Type: text/plain, Size: 714 bytes --]

I've generated this images to be incorporated in the book, the images will
have the copyright required to do it. Could you give me information about
this subject?

2009/10/1 Neil Jerram <neil@ossau.uklinux.net>

> David Arroyo Menéndez <davidam@gmail.com> writes:
>
> > Hi!
> >
> > I've done a patch to include images instead of ascii images in the manual
> > reference and other minor modifications.
>
> Hi David,
>
> This looks great, but I'm afraid the GNU project needs copyright
> assignment papers from you before we can incorporate these images into
> the manual.  Would you be willing to do that?
>
> Thanks,
>         Neil
>



-- 
David Arroyo Menéndez
http://www.davidam.com

[-- Attachment #2: Type: text/html, Size: 1180 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: remove ascii images from pdf
  2009-10-01 12:02   ` David Arroyo Menéndez
@ 2009-10-05 16:44     ` David Arroyo Menéndez
  2009-10-06 20:49       ` Neil Jerram
  0 siblings, 1 reply; 5+ messages in thread
From: David Arroyo Menéndez @ 2009-10-05 16:44 UTC (permalink / raw)
  To: Neil Jerram; +Cc: Brian Gough, guile-devel


[-- Attachment #1.1: Type: text/plain, Size: 926 bytes --]

I've filled the form ...

El 1 de octubre de 2009 14:02, David Arroyo Menéndez
<davidam@gmail.com>escribió:

> I've generated this images to be incorporated in the book, the images will
> have the copyright required to do it. Could you give me information about
> this subject?
>
> 2009/10/1 Neil Jerram <neil@ossau.uklinux.net>
>
> David Arroyo Menéndez <davidam@gmail.com> writes:
>>
>> > Hi!
>> >
>> > I've done a patch to include images instead of ascii images in the
>> manual
>> > reference and other minor modifications.
>>
>> Hi David,
>>
>> This looks great, but I'm afraid the GNU project needs copyright
>> assignment papers from you before we can incorporate these images into
>> the manual.  Would you be willing to do that?
>>
>> Thanks,
>>         Neil
>>
>
>
>
> --
> David Arroyo Menéndez
> http://www.davidam.com
>



-- 
David Arroyo Menéndez
http://www.davidam.com

[-- Attachment #1.2: Type: text/html, Size: 1795 bytes --]

[-- Attachment #2: request-assign.future --]
[-- Type: application/octet-stream, Size: 1152 bytes --]

Please email the following information to assign@gnu.org, and we
will send you the assignment form for your past and future changes.

Please use your full legal name (in ASCII characters) as the subject
line of the message.
----------------------------------------------------------------------
REQUEST: SEND FORM FOR PAST AND FUTURE CHANGES

[What is the name of the program or package you're contributing to?]

guile

[Did you copy any files or text written by someone else in these changes?
Even if that material is free software, we need to know about it.]

No, I didn't.

[Do you have an employer who might have a basis to claim to own
your changes?  Do you attend a school which might make such a claim?]

No I don't.

[For the copyright registration, what country are you a citizen of?]

Spain

[What year were you born?]

1979

[Please write your email address here.]

davidam@gmail.com

[Please write your postal address here.]

C/ Rafael Salazar Alonso, nº 17. Madrid. Spain


[Which files have you changed so far, and which new files have you written
so far?]


/doc/ref/intro.texi
/doc/ref/scheme-scripts.texi
/doc/ref/scheme-using.texi




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: remove ascii images from pdf
  2009-10-05 16:44     ` David Arroyo Menéndez
@ 2009-10-06 20:49       ` Neil Jerram
  0 siblings, 0 replies; 5+ messages in thread
From: Neil Jerram @ 2009-10-06 20:49 UTC (permalink / raw)
  To: David Arroyo Menéndez; +Cc: Brian Gough, guile-devel

David Arroyo Menéndez <davidam@gmail.com> writes:

> I've filled the form ...

That's great; have you also sent it off to the FSF?  Which form of
assignment did you choose?

> El 1 de octubre de 2009 14:02, David Arroyo Menéndez <davidam@gmail.com>
> escribió:
>
>     I've generated this images to be incorporated in the book, the images will
>     have the copyright required to do it. Could you give me information about
>     this subject?

Sorry for not replying to this more promptly.  I guess you found the
right documents; the latest ones are at
http://git.savannah.gnu.org/cgit/gnulib.git/tree/doc/Copyright, but I
imagine that recent versions similar to these would be fine.

To answer your point about your images being intended for the book
publication: we ideally wouldn't want there to be any difference, in
licensing and copyright terms, between the published book material and
the ongoing, soft Guile Reference Manual.  Hence, unless there is a
strong case for accepting a contribution for the published book only,
the copyright assignment requirement is the same as for normal manual
contributions.

Finally, just to be clear about the mechanics here: the FSF will let me
know once they've received and recorded your assignment, and I will
incorporate your patch at that time.

Thanks once again for doing this!

       Neil




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-10-06 20:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-29 17:14 remove ascii images from pdf David Arroyo Menéndez
2009-09-30 22:12 ` Neil Jerram
2009-10-01 12:02   ` David Arroyo Menéndez
2009-10-05 16:44     ` David Arroyo Menéndez
2009-10-06 20:49       ` Neil Jerram

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).