All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] Correct some language in fast-import documentation.
@ 2007-02-08  7:58 Shawn O. Pearce
  2007-02-08  8:28 ` Uwe Kleine-König
  0 siblings, 1 reply; 9+ messages in thread
From: Shawn O. Pearce @ 2007-02-08  7:58 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Minor documentation improvements, as suggested on the Git mailing
list by Horst H. von Brand and Karl Hasselström.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
---
 Documentation/git-fast-import.txt |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/Documentation/git-fast-import.txt b/Documentation/git-fast-import.txt
index 0c44761..01f4c8a 100644
--- a/Documentation/git-fast-import.txt
+++ b/Documentation/git-fast-import.txt
@@ -181,7 +181,7 @@ If the local offset is not available in the source material, use
 ``+0000'', or the most common local offset.  For example many
 organizations have a CVS repository which has only ever been accessed
 by users who are located in the same location and timezone.  In this
-case the offset from UTC can be easily assumed.
+case a reasonable offset from UTC could be assumed.
 +
 Unlike the `rfc2822` format, this format is very strict.  Any
 variation in formatting will cause gfi to reject the value.
@@ -190,7 +190,7 @@ variation in formatting will cause gfi to reject the value.
 	This is the standard email format as described by RFC 2822.
 +
 An example value is ``Tue Feb 6 11:22:18 2007 -0500''.  The Git
-parser is accurate, but a little on the lenient side.  Its the
+parser is accurate, but a little on the lenient side.  It is the
 same parser used by gitlink:git-am[1] when applying patches
 received from email.
 +
@@ -205,14 +205,15 @@ contained in an RFC 2822 date string is used to adjust the date
 value to UTC prior to storage.  Therefore it is important that
 this information be as accurate as possible.
 +
-If the source material is formatted in RFC 2822 style dates,
+If the source material uses RFC 2822 style dates,
 the frontend should let gfi handle the parsing and conversion
 (rather than attempting to do it itself) as the Git parser has
 been well tested in the wild.
 +
 Frontends should prefer the `raw` format if the source material
-is already in UNIX-epoch format, or is easily convertible to
-that format, as there is no ambiguity in parsing.
+already uses UNIX-epoch format, can be coaxed to give dates in that
+format, or its format is easiliy convertible to it, as there is no
+ambiguity in parsing.
 
 `now`::
 	Always use the current time and timezone.  The literal
-- 
1.5.0.rc3.175.g6506

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

* Re: [PATCH 2/2] Correct some language in fast-import documentation.
  2007-02-08  7:58 [PATCH 2/2] Correct some language in fast-import documentation Shawn O. Pearce
@ 2007-02-08  8:28 ` Uwe Kleine-König
  2007-02-08  8:50   ` Junio C Hamano
  0 siblings, 1 reply; 9+ messages in thread
From: Uwe Kleine-König @ 2007-02-08  8:28 UTC (permalink / raw)
  To: Shawn O. Pearce; +Cc: Junio C Hamano, git

Hello Shawn,

Shawn O. Pearce wrote:
> Minor documentation improvements, as suggested on the Git mailing
> list by Horst H. von Brand and Karl Hasselström.
you have an encoding problem here     ---------^

That "o umlaut" seems to be UTF-8 encoded, but the headers of you mail
claim iso-8859-1.

I had this kind of problem, too.  You have to assert that the
environment variable LANG (or LC_CTYPE) match your terminal and the mutt
config variable "charset" matches that, too.  (Not to set charset seems
to do the right thing.)

Best regards
Uwe

-- 
Uwe Kleine-König

http://www.google.com/search?q=1+electron+mass%3D

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

* Re: [PATCH 2/2] Correct some language in fast-import documentation.
  2007-02-08  8:28 ` Uwe Kleine-König
@ 2007-02-08  8:50   ` Junio C Hamano
  2007-02-08 18:32     ` Shawn O. Pearce
  0 siblings, 1 reply; 9+ messages in thread
From: Junio C Hamano @ 2007-02-08  8:50 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: Shawn O. Pearce, git

Uwe Kleine-König  <ukleinek@informatik.uni-freiburg.de> writes:

> Shawn O. Pearce wrote:
>> Minor documentation improvements, as suggested on the Git mailing
>> list by Horst H. von Brand and Karl Hasselstr~A(P)m.
> you have an encoding problem here     ---------^
>
> That "o umlaut" seems to be UTF-8 encoded, but the headers of you mail
> claim iso-8859-1.

I noticed it, too.  This seems to be purely between the
format-patch output and the mailing list.  In Shawn's tree, the
corresponding commit f842fdb0 does not have the encoding
problem.

As Shawn's tree currently has only these two commits on top of
what my tree already has, I do not mind pulling from it.  It
would make life easier for people who are following his tree.

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

* Re: [PATCH 2/2] Correct some language in fast-import documentation.
  2007-02-08  8:50   ` Junio C Hamano
@ 2007-02-08 18:32     ` Shawn O. Pearce
  2007-02-08 18:39       ` Johannes Schindelin
  0 siblings, 1 reply; 9+ messages in thread
From: Shawn O. Pearce @ 2007-02-08 18:32 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Uwe Kleine-König, git

Junio C Hamano <junkio@cox.net> wrote:
> Uwe Kleine-König  <ukleinek@informatik.uni-freiburg.de> writes:
> 
> > Shawn O. Pearce wrote:
> >> Minor documentation improvements, as suggested on the Git mailing
> >> list by Horst H. von Brand and Karl Hasselstr~A(P)m.
> > you have an encoding problem here     ---------^
> >
> > That "o umlaut" seems to be UTF-8 encoded, but the headers of you mail
> > claim iso-8859-1.
> 
> I noticed it, too.  This seems to be purely between the
> format-patch output and the mailing list.  In Shawn's tree, the
> corresponding commit f842fdb0 does not have the encoding
> problem.

Yes, correct.  I took great care to copy Uwe's name from a prior
commit of his in git.git, to make sure I got it spelled correctly
in the commit message.  :)

Unfortunately mutt set the wrong charset on the message.
Uwe thoughtly sent some notes on how to correct that, so I'll try
to fix my mutt.
 
> As Shawn's tree currently has only these two commits on top of
> what my tree already has, I do not mind pulling from it.  It
> would make life easier for people who are following his tree.

Those are built upon a commit you already merged, but not the tip
of `master` at the time they were written (kernel.org mirror lag
strikes again).  Please feel free to rebase them into the current
tip of master (instead of merging them in) if you want.

-- 
Shawn.

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

* Re: [PATCH 2/2] Correct some language in fast-import documentation.
  2007-02-08 18:32     ` Shawn O. Pearce
@ 2007-02-08 18:39       ` Johannes Schindelin
  2007-02-08 20:31         ` Uwe Kleine-König
  0 siblings, 1 reply; 9+ messages in thread
From: Johannes Schindelin @ 2007-02-08 18:39 UTC (permalink / raw)
  To: Shawn O. Pearce; +Cc: Junio C Hamano, Uwe Kleine-König, git

[-- Attachment #1: Type: TEXT/PLAIN, Size: 988 bytes --]

Hi,

On Thu, 8 Feb 2007, Shawn O. Pearce wrote:

> Junio C Hamano <junkio@cox.net> wrote:
> > Uwe Kleine-König  <ukleinek@informatik.uni-freiburg.de> writes:
> > 
> > > Shawn O. Pearce wrote:
> > >> Minor documentation improvements, as suggested on the Git mailing
> > >> list by Horst H. von Brand and Karl Hasselstr~A(P)m.
> > > you have an encoding problem here     ---------^
> > >
> > > That "o umlaut" seems to be UTF-8 encoded, but the headers of you mail
> > > claim iso-8859-1.
> > 
> > I noticed it, too.  This seems to be purely between the
> > format-patch output and the mailing list.  In Shawn's tree, the
> > corresponding commit f842fdb0 does not have the encoding
> > problem.
> 
> Yes, correct.  I took great care to copy Uwe's name from a prior
> commit of his in git.git, to make sure I got it spelled correctly
> in the commit message.  :)

Sometimes I think Uwe just took on another name for the sake of being an 
Umlaut-PITA ;-)

Ciao,
Jöhännës "Dschö" Schindëlin


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

* Re: [PATCH 2/2] Correct some language in fast-import documentation.
  2007-02-08 18:39       ` Johannes Schindelin
@ 2007-02-08 20:31         ` Uwe Kleine-König
  2007-02-08 20:53           ` Johannes Schindelin
  0 siblings, 1 reply; 9+ messages in thread
From: Uwe Kleine-König @ 2007-02-08 20:31 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: Shawn O. Pearce, Junio C Hamano, git

Johannes Schindelin wrote:
> > Junio C Hamano <junkio@cox.net> wrote:
> > > Uwe Kleine-König  <ukleinek@informatik.uni-freiburg.de> writes:
> > > 
> > > > Shawn O. Pearce wrote:
> > > >> Minor documentation improvements, as suggested on the Git mailing
> > > >> list by Horst H. von Brand and Karl Hasselstr~A(P)m.
> > > > you have an encoding problem here     ---------^
> > > >
> > > > That "o umlaut" seems to be UTF-8 encoded, but the headers of you mail
> > > > claim iso-8859-1.
> > > 
> > > I noticed it, too.  This seems to be purely between the
> > > format-patch output and the mailing list.  In Shawn's tree, the
> > > corresponding commit f842fdb0 does not have the encoding
> > > problem.
> > 
> > Yes, correct.  I took great care to copy Uwe's name from a prior
> > commit of his in git.git, to make sure I got it spelled correctly
> > in the commit message.  :)
> 
> Sometimes I think Uwe just took on another name for the sake of being an 
> Umlaut-PITA ;-)
I just want to point out, that it's Karl Hasselström whose name got
misencoded here.  But I admit I'm kind of sensible for that.
> 
> Ciao,
> Jöhännës "Dschö" Schindëlin
So what about:
----- 8< ----
Subject: [PATCH] add Johannes proper name to .mailmap.

Up to now he kept secret how to spell his name properly, but now he revealed
himself :-)
---
 .mailmap |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/.mailmap b/.mailmap
index c7a3a75..d6fcecb 100644
--- a/.mailmap
+++ b/.mailmap
@@ -15,6 +15,7 @@ H. Peter Anvin <hpa@tazenda.sc.orionmulti.com>
 H. Peter Anvin <hpa@trantor.hos.anvin.org>
 Horst H. von Brand <vonbrand@inf.utfsm.cl>
 Joachim Berdal Haga <cjhaga@fys.uio.no>
+Jöhännës "Dschö" Schindëlin <Johannes.Schindelin@gmx.de>
 Jon Loeliger <jdl@freescale.com>
 Jon Seymour <jon@blackcubes.dyndns.org>
 Karl Hasselström <kha@treskal.com>
-- 
1.5.0.rc2.gd1af2d

Best regards
Uwe

-- 
Uwe Kleine-König

$ dc << EOF
[d1-d1<a]sa99d1<a1[rdn555760928P*pz1<a]salax
EOF

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

* Re: [PATCH 2/2] Correct some language in fast-import documentation.
  2007-02-08 20:31         ` Uwe Kleine-König
@ 2007-02-08 20:53           ` Johannes Schindelin
  2007-02-08 22:07             ` Jakub Narebski
  0 siblings, 1 reply; 9+ messages in thread
From: Johannes Schindelin @ 2007-02-08 20:53 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: Shawn O. Pearce, Junio C Hamano, git

[-- Attachment #1: Type: TEXT/PLAIN, Size: 199 bytes --]

Hi,

On Thu, 8 Feb 2007, Uwe Kleine-König wrote:

> > Jöhännës "Dschö" Schindëlin
> So what about:
> ----- 8< ----
> Subject: [PATCH] add Johannes proper name to .mailmap.

*LOLROTF*!!!!

Ciao,
Dscho

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

* Re: [PATCH 2/2] Correct some language in fast-import documentation.
  2007-02-08 20:53           ` Johannes Schindelin
@ 2007-02-08 22:07             ` Jakub Narebski
  2007-02-08 22:11               ` Shawn O. Pearce
  0 siblings, 1 reply; 9+ messages in thread
From: Jakub Narebski @ 2007-02-08 22:07 UTC (permalink / raw)
  To: git

Johannes Schindelin wrote:

> On Thu, 8 Feb 2007, Uwe Kleine-König wrote:
> 
>>> Jöhännës "Dschö" Schindëlin
>>>
>> So what about:
>> ----- 8< ----
>> Subject: [PATCH] add Johannes proper name to .mailmap.
> 
> *LOLROTF*!!!!

By the way, how this .mailmap thingy work? Is it corrected
using email to find proper entry?
-- 
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git

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

* Re: [PATCH 2/2] Correct some language in fast-import documentation.
  2007-02-08 22:07             ` Jakub Narebski
@ 2007-02-08 22:11               ` Shawn O. Pearce
  0 siblings, 0 replies; 9+ messages in thread
From: Shawn O. Pearce @ 2007-02-08 22:11 UTC (permalink / raw)
  To: Jakub Narebski; +Cc: git

Jakub Narebski <jnareb@gmail.com> wrote:
> By the way, how this .mailmap thingy work? Is it corrected
> using email to find proper entry?

Its used by git-shortlog to put all commits by the same person
under a single heading.  It uses email address as key.

-- 
Shawn.

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

end of thread, other threads:[~2007-02-08 22:11 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-08  7:58 [PATCH 2/2] Correct some language in fast-import documentation Shawn O. Pearce
2007-02-08  8:28 ` Uwe Kleine-König
2007-02-08  8:50   ` Junio C Hamano
2007-02-08 18:32     ` Shawn O. Pearce
2007-02-08 18:39       ` Johannes Schindelin
2007-02-08 20:31         ` Uwe Kleine-König
2007-02-08 20:53           ` Johannes Schindelin
2007-02-08 22:07             ` Jakub Narebski
2007-02-08 22:11               ` Shawn O. Pearce

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.