Aw: Re: [PATCH] Move api-command.txt to the end of API list in api-index.txt

2012-12-17 Thread Thomas Ackermann
 
OK; I would also prefer to have it in ./howto.
So please drop this patch; I will provide a new one.

- Original Nachricht 
Von: Junio C Hamano 
An:  Thomas Ackermann 
Datum:   16.12.2012 21:01
Betreff: Re: [PATCH] Move api-command.txt to the end of API list in
 api-index.txt

> Thomas Ackermann  writes:
> 
> > - because it describes a different form of API than the other api-*
> documents
> 
> It makes me wonder if a more correct "fix" is to move this document
> to the ../howto/ hierarchy.
> 


---
Thomas
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] Move api-command.txt to the end of API list in api-index.txt

2012-12-16 Thread Junio C Hamano
Thomas Ackermann  writes:

> - because it describes a different form of API than the other api-* documents

Drop that "- "; it is not like you are enumerating many reasons.

It makes me wonder if a more correct "fix" is to move this document
to the ../howto/ hierarchy.

>
> Signed-off-by: Thomas Ackermann 
> ---
>  Documentation/technical/api-index.sh | 6 +-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/technical/api-index.sh 
> b/Documentation/technical/api-index.sh
> index 9c3f413..c2c68ed 100755
> --- a/Documentation/technical/api-index.sh
> +++ b/Documentation/technical/api-index.sh
> @@ -10,12 +10,16 @@
>   while read filename
>   do
>   case "$filename" in
> - api-index-skel.txt | api-index.txt) continue ;;
> + api-index-skel.txt | api-index.txt | api-command.txt) continue 
> ;;
>   esac
>   title=$(sed -e 1q "$filename")
>   html=${filename%.txt}.html
>   echo "* link:$html[$title]"
>   done
> + filename=api-command.txt
> + title=$(sed -e 1q "$filename")
> + html=${filename%.txt}.html
> + echo "* link:$html[$title]"
>   echo "$c"
>   sed -n -e '/^\/\/ table of contents end/,$p' "$skel"
>  ) >api-index.txt+
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html