All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output
@ 2009-04-22 14:51 Wesley J. Landaker
  2009-04-22 14:51 ` [PATCH 2/2] Documentation: git-svn: fix a grammatical error without awkwardness Wesley J. Landaker
  2009-04-22 15:15 ` [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output Jeff King
  0 siblings, 2 replies; 6+ messages in thread
From: Wesley J. Landaker @ 2009-04-22 14:51 UTC (permalink / raw)
  To: Junio C Hamano, git, Eric Wong; +Cc: Wesley J. Landaker

Without this fix, the output looks like:

"Keep in mind that the  (asterisk) wildcard of the local ref (right of
the :) *must be the ..." -- with half the sentence spuriously bold.

This is probably working around an asciidoc bug, but it's better to fix
this than to leave the documentation in an unreadable state.

Signed-off-by: Wesley J. Landaker <wjl@icecavern.net>
---
 Documentation/git-svn.txt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt
index 9229d45..b03c1f0 100644
--- a/Documentation/git-svn.txt
+++ b/Documentation/git-svn.txt
@@ -694,7 +694,7 @@ listed below are allowed:
 ------------------------------------------------------------------------
 
 Keep in mind that the '*' (asterisk) wildcard of the local ref
-(right of the ':') *must* be the farthest right path component;
+(right of the ':') must be the farthest right path component;
 however the remote wildcard may be anywhere as long as it's own
 independent path component (surrounded by '/' or EOL).   This
 type of configuration is not automatically created by 'init' and
-- 
1.6.2.3

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

* [PATCH 2/2] Documentation: git-svn: fix a grammatical error without awkwardness
  2009-04-22 14:51 [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output Wesley J. Landaker
@ 2009-04-22 14:51 ` Wesley J. Landaker
  2009-04-22 15:15 ` [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output Jeff King
  1 sibling, 0 replies; 6+ messages in thread
From: Wesley J. Landaker @ 2009-04-22 14:51 UTC (permalink / raw)
  To: Junio C Hamano, git, Eric Wong; +Cc: Wesley J. Landaker

The way the sentence is currently written, there needs to be an "its",
but this leads to: "however the remote wildcard may be anywhere as long
as it's its own" which is awkward to read.

Instead, this patch fixes he grammar in a simpler way.

Signed-off-by: Wesley J. Landaker <wjl@icecavern.net>
---
 Documentation/git-svn.txt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt
index b03c1f0..1b18c19 100644
--- a/Documentation/git-svn.txt
+++ b/Documentation/git-svn.txt
@@ -695,7 +695,7 @@ listed below are allowed:
 
 Keep in mind that the '*' (asterisk) wildcard of the local ref
 (right of the ':') must be the farthest right path component;
-however the remote wildcard may be anywhere as long as it's own
+however the remote wildcard may be anywhere as long as it's an
 independent path component (surrounded by '/' or EOL).   This
 type of configuration is not automatically created by 'init' and
 should be manually entered with a text-editor or using 'git-config'.
-- 
1.6.2.3

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

* Re: [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output
  2009-04-22 14:51 [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output Wesley J. Landaker
  2009-04-22 14:51 ` [PATCH 2/2] Documentation: git-svn: fix a grammatical error without awkwardness Wesley J. Landaker
@ 2009-04-22 15:15 ` Jeff King
  2009-04-22 15:48   ` [PATCH v2 " Wesley J. Landaker
  2009-04-22 15:48   ` [PATCH v2 2/2] Documentation: git-svn: fix a grammatical error without awkwardness Wesley J. Landaker
  1 sibling, 2 replies; 6+ messages in thread
From: Jeff King @ 2009-04-22 15:15 UTC (permalink / raw)
  To: Wesley J. Landaker; +Cc: Junio C Hamano, git, Eric Wong

On Wed, Apr 22, 2009 at 08:51:46AM -0600, Wesley J. Landaker wrote:

> Without this fix, the output looks like:
> 
> "Keep in mind that the  (asterisk) wildcard of the local ref (right of
> the :) *must be the ..." -- with half the sentence spuriously bold.
> 
> This is probably working around an asciidoc bug, but it's better to fix
> this than to leave the documentation in an unreadable state.

I think it's a documentation bug; the asterisk is a special character,
so it is seeing the first one as the start of bold, instead of the one
on the left side of *must*.

>  Keep in mind that the '*' (asterisk) wildcard of the local ref
> -(right of the ':') *must* be the farthest right path component;
> +(right of the ':') must be the farthest right path component;

So the right fix is probably to quote the asterisk that is not part of
the bolding, like:

diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt
index 9229d45..3e22e40 100644
--- a/Documentation/git-svn.txt
+++ b/Documentation/git-svn.txt
@@ -693,7 +693,7 @@ listed below are allowed:
 	tags = tags/*/project-a:refs/remotes/project-a/tags/*
 ------------------------------------------------------------------------
 
-Keep in mind that the '*' (asterisk) wildcard of the local ref
+Keep in mind that the '\*' (asterisk) wildcard of the local ref
 (right of the ':') *must* be the farthest right path component;
 however the remote wildcard may be anywhere as long as it's own
 independent path component (surrounded by '/' or EOL).   This

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

* [PATCH v2 1/2] Documentation: git-svn: fix spurious bolding that mangles the output
  2009-04-22 15:15 ` [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output Jeff King
@ 2009-04-22 15:48   ` Wesley J. Landaker
  2009-04-23  4:21     ` Junio C Hamano
  2009-04-22 15:48   ` [PATCH v2 2/2] Documentation: git-svn: fix a grammatical error without awkwardness Wesley J. Landaker
  1 sibling, 1 reply; 6+ messages in thread
From: Wesley J. Landaker @ 2009-04-22 15:48 UTC (permalink / raw)
  To: Junio C Hamano, git, Eric Wong, Jeff King; +Cc: Wesley J. Landaker

Without this fix, the output looks like:

"Keep in mind that the  (asterisk) wildcard of the local ref (right of
the :) *must be the ..." -- with half the sentence spuriously bold.

This fixes the problem by simply escaping asciidoc syntax as suggested
by Jeff King <peff@peff.net>.

Signed-off-by: Wesley J. Landaker <wjl@icecavern.net>
---
 Documentation/git-svn.txt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt
index 9229d45..3e22e40 100644
--- a/Documentation/git-svn.txt
+++ b/Documentation/git-svn.txt
@@ -693,7 +693,7 @@ listed below are allowed:
 	tags = tags/*/project-a:refs/remotes/project-a/tags/*
 ------------------------------------------------------------------------
 
-Keep in mind that the '*' (asterisk) wildcard of the local ref
+Keep in mind that the '\*' (asterisk) wildcard of the local ref
 (right of the ':') *must* be the farthest right path component;
 however the remote wildcard may be anywhere as long as it's own
 independent path component (surrounded by '/' or EOL).   This
-- 
1.6.2.3

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

* [PATCH v2 2/2] Documentation: git-svn: fix a grammatical error without awkwardness
  2009-04-22 15:15 ` [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output Jeff King
  2009-04-22 15:48   ` [PATCH v2 " Wesley J. Landaker
@ 2009-04-22 15:48   ` Wesley J. Landaker
  1 sibling, 0 replies; 6+ messages in thread
From: Wesley J. Landaker @ 2009-04-22 15:48 UTC (permalink / raw)
  To: Junio C Hamano, git, Eric Wong, Jeff King; +Cc: Wesley J. Landaker

The way the sentence is currently written, there needs to be an "its",
but this leads to: "however the remote wildcard may be anywhere as long
as it's its own" which is awkward to read.

Instead, this patch fixes he grammar in a simpler way.

Signed-off-by: Wesley J. Landaker <wjl@icecavern.net>
---
 Documentation/git-svn.txt |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt
index 3e22e40..1c40894 100644
--- a/Documentation/git-svn.txt
+++ b/Documentation/git-svn.txt
@@ -695,7 +695,7 @@ listed below are allowed:
 
 Keep in mind that the '\*' (asterisk) wildcard of the local ref
 (right of the ':') *must* be the farthest right path component;
-however the remote wildcard may be anywhere as long as it's own
+however the remote wildcard may be anywhere as long as it's an
 independent path component (surrounded by '/' or EOL).   This
 type of configuration is not automatically created by 'init' and
 should be manually entered with a text-editor or using 'git-config'.
-- 
1.6.2.3

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

* Re: [PATCH v2 1/2] Documentation: git-svn: fix spurious bolding that mangles the output
  2009-04-22 15:48   ` [PATCH v2 " Wesley J. Landaker
@ 2009-04-23  4:21     ` Junio C Hamano
  0 siblings, 0 replies; 6+ messages in thread
From: Junio C Hamano @ 2009-04-23  4:21 UTC (permalink / raw)
  To: Wesley J. Landaker; +Cc: git, Eric Wong, Jeff King

"Wesley J. Landaker" <wjl@icecavern.net> writes:

> Without this fix, the output looks like:
>
> "Keep in mind that the  (asterisk) wildcard of the local ref (right of
> the :) *must be the ..." -- with half the sentence spuriously bold.
>
> This fixes the problem by simply escaping asciidoc syntax as suggested
> by Jeff King <peff@peff.net>.
>
> Signed-off-by: Wesley J. Landaker <wjl@icecavern.net>

Thanks, both.

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

end of thread, other threads:[~2009-04-23  4:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-22 14:51 [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output Wesley J. Landaker
2009-04-22 14:51 ` [PATCH 2/2] Documentation: git-svn: fix a grammatical error without awkwardness Wesley J. Landaker
2009-04-22 15:15 ` [PATCH 1/2] Documentation: git-svn: fix spurious bolding that mangles the output Jeff King
2009-04-22 15:48   ` [PATCH v2 " Wesley J. Landaker
2009-04-23  4:21     ` Junio C Hamano
2009-04-22 15:48   ` [PATCH v2 2/2] Documentation: git-svn: fix a grammatical error without awkwardness Wesley J. Landaker

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.