git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] gitweb.perl: fix %highlight_ext
@ 2012-10-29 16:42 rh
  2012-11-02 14:54 ` Jeff King
  0 siblings, 1 reply; 6+ messages in thread
From: rh @ 2012-10-29 16:42 UTC (permalink / raw)
  To: git

I also consolidated exts where applicable.
i.e. c and h maps to c


-- 

diff --git a/a/gitweb.cgi b/b/gitweb.cgi
index 060db27..155b238 100755
--- a/a/gitweb.cgi
+++ b/b/gitweb.cgi
@@ -246,19 +246,19 @@ our %highlight_basename = (
        'Makefile' => 'make',
 );
 # match by extension
+
 our %highlight_ext = (
        # main extensions, defining name of syntax;
        # see files in /usr/share/highlight/langDefs/ directory
-       map { $_ => $_ }
-               qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl sql make),
+       (map { $_ => $_ } qw(py rb java css js tex bib xml awk bat ini spec tcl sql)),
        # alternate extensions, see /etc/highlight/filetypes.conf
-       'h' => 'c',
-       map { $_ => 'sh'  } qw(bash zsh ksh),
-       map { $_ => 'cpp' } qw(cxx c++ cc),
-       map { $_ => 'php' } qw(php3 php4 php5 phps),
-       map { $_ => 'pl'  } qw(perl pm), # perhaps also 'cgi'
-       map { $_ => 'make'} qw(mak mk),
-       map { $_ => 'xml' } qw(xhtml html htm),
+       (map { $_ => 'c'   } qw(c h)),
+       (map { $_ => 'sh'  } qw(sh bash zsh ksh)),
+       (map { $_ => 'cpp' } qw(cpp cxx c++ cc)),
+       (map { $_ => 'php' } qw(php php3 php4 php5 phps)),
+       (map { $_ => 'pl'  } qw(pl perl pm)), # perhaps also 'cgi'
+       (map { $_ => 'make'} qw(make mak mk)),
+       (map { $_ => 'xml' } qw(xml xhtml html htm)),
 );
 
 # You define site-wide feature defaults here; override them with

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

* Re: [PATCH] gitweb.perl: fix %highlight_ext
  2012-10-29 16:42 [PATCH] gitweb.perl: fix %highlight_ext rh
@ 2012-11-02 14:54 ` Jeff King
  2012-11-02 17:41   ` rh
  2012-11-02 21:18   ` rh
  0 siblings, 2 replies; 6+ messages in thread
From: Jeff King @ 2012-11-02 14:54 UTC (permalink / raw)
  To: rh; +Cc: git

On Mon, Oct 29, 2012 at 09:42:07AM -0700, rh wrote:

> I also consolidated exts where applicable.
> i.e. c and h maps to c
> 
> 
> -- 
> 
> diff --git a/a/gitweb.cgi b/b/gitweb.cgi
> index 060db27..155b238 100755
> --- a/a/gitweb.cgi
> +++ b/b/gitweb.cgi
> @@ -246,19 +246,19 @@ our %highlight_basename = (
>         'Makefile' => 'make',
>  );
>  # match by extension
> +
>  our %highlight_ext = (
>         # main extensions, defining name of syntax;
>         # see files in /usr/share/highlight/langDefs/ directory
> -       map { $_ => $_ }
> -               qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl sql make),
> +       (map { $_ => $_ } qw(py rb java css js tex bib xml awk bat ini spec tcl sql)),
>         # alternate extensions, see /etc/highlight/filetypes.conf
> -       'h' => 'c',
> -       map { $_ => 'sh'  } qw(bash zsh ksh),
> -       map { $_ => 'cpp' } qw(cxx c++ cc),
> -       map { $_ => 'php' } qw(php3 php4 php5 phps),
> -       map { $_ => 'pl'  } qw(perl pm), # perhaps also 'cgi'
> -       map { $_ => 'make'} qw(mak mk),
> -       map { $_ => 'xml' } qw(xhtml html htm),
> +       (map { $_ => 'c'   } qw(c h)),
> +       (map { $_ => 'sh'  } qw(sh bash zsh ksh)),
> +       (map { $_ => 'cpp' } qw(cpp cxx c++ cc)),
> +       (map { $_ => 'php' } qw(php php3 php4 php5 phps)),
> +       (map { $_ => 'pl'  } qw(pl perl pm)), # perhaps also 'cgi'
> +       (map { $_ => 'make'} qw(make mak mk)),
> +       (map { $_ => 'xml' } qw(xml xhtml html htm)),

I think the patch itself looks OK, but:

  1. It isn't formatted to apply with git-am. Please use
     git-format-patch.

  2. The commit message does not explain the reason for the change.

  3. It isn't signed-off.

The first two are things I can fix up (though it is inconvenient for me
to do so), but the third is a show-stopper.  Please look through
Documentation/SubmittingPatches, especially the bit about the
Developer's Certificate of Origin, and re-send.

-Peff

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

* Re: [PATCH] gitweb.perl: fix %highlight_ext
  2012-11-02 14:54 ` Jeff King
@ 2012-11-02 17:41   ` rh
  2012-11-02 21:18   ` rh
  1 sibling, 0 replies; 6+ messages in thread
From: rh @ 2012-11-02 17:41 UTC (permalink / raw)
  To: git

On Fri, 2 Nov 2012 10:54:25 -0400
Jeff King <peff@peff.net> wrote:

> On Mon, Oct 29, 2012 at 09:42:07AM -0700, rh wrote:
> 
> > I also consolidated exts where applicable.
> > i.e. c and h maps to c
> > 
> > 
> > -- 
> > 
> > diff --git a/a/gitweb.cgi b/b/gitweb.cgi
> > index 060db27..155b238 100755
> > --- a/a/gitweb.cgi
> > +++ b/b/gitweb.cgi
> > @@ -246,19 +246,19 @@ our %highlight_basename = (
> >         'Makefile' => 'make',
> >  );
> >  # match by extension
> > +
> >  our %highlight_ext = (
> >         # main extensions, defining name of syntax;
> >         # see files in /usr/share/highlight/langDefs/ directory
> > -       map { $_ => $_ }
> > -               qw(py c cpp rb java css php sh pl js tex bib xml
> > awk bat ini spec tcl sql make),
> > +       (map { $_ => $_ } qw(py rb java css js tex bib xml awk bat
> > ini spec tcl sql)),
> >         # alternate extensions, see /etc/highlight/filetypes.conf
> > -       'h' => 'c',
> > -       map { $_ => 'sh'  } qw(bash zsh ksh),
> > -       map { $_ => 'cpp' } qw(cxx c++ cc),
> > -       map { $_ => 'php' } qw(php3 php4 php5 phps),
> > -       map { $_ => 'pl'  } qw(perl pm), # perhaps also 'cgi'
> > -       map { $_ => 'make'} qw(mak mk),
> > -       map { $_ => 'xml' } qw(xhtml html htm),
> > +       (map { $_ => 'c'   } qw(c h)),
> > +       (map { $_ => 'sh'  } qw(sh bash zsh ksh)),
> > +       (map { $_ => 'cpp' } qw(cpp cxx c++ cc)),
> > +       (map { $_ => 'php' } qw(php php3 php4 php5 phps)),
> > +       (map { $_ => 'pl'  } qw(pl perl pm)), # perhaps also 'cgi'
> > +       (map { $_ => 'make'} qw(make mak mk)),
> > +       (map { $_ => 'xml' } qw(xml xhtml html htm)),
> 
> I think the patch itself looks OK, but:
> 
>   1. It isn't formatted to apply with git-am. Please use
>      git-format-patch.
> 
>   2. The commit message does not explain the reason for the change.
> 
>   3. It isn't signed-off.
> 
> The first two are things I can fix up (though it is inconvenient for
> me to do so), but the third is a show-stopper.  Please look through
> Documentation/SubmittingPatches, especially the bit about the
> Developer's Certificate of Origin, and re-send.
> 
> -Peff

Thanks for taking the time to explain the workflow. If I can figure all this
out I will try to do what's needed.  This is feeling like a strange cult
that I've bumped into!

-- 
"...she's got smarts and never farts and owns a chain of liquor stores."


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

* Re: [PATCH] gitweb.perl: fix %highlight_ext
  2012-11-02 14:54 ` Jeff King
  2012-11-02 17:41   ` rh
@ 2012-11-02 21:18   ` rh
  2012-11-04 13:45     ` Jeff King
  1 sibling, 1 reply; 6+ messages in thread
From: rh @ 2012-11-02 21:18 UTC (permalink / raw)
  To: git

Peff and the Final Arbiter,

On Fri, 2 Nov 2012 10:54:25 -0400
Jeff King <peff@peff.net> wrote:

> On Mon, Oct 29, 2012 at 09:42:07AM -0700, rh wrote:
> 
> > I also consolidated exts where applicable.
> > i.e. c and h maps to c
> > 
> > 
> > -- 
> > 
> > diff --git a/a/gitweb.cgi b/b/gitweb.cgi
> > index 060db27..155b238 100755
> > --- a/a/gitweb.cgi
> > +++ b/b/gitweb.cgi
> > @@ -246,19 +246,19 @@ our %highlight_basename = (
> >         'Makefile' => 'make',
> >  );
> >  # match by extension
> > +
> >  our %highlight_ext = (
> >         # main extensions, defining name of syntax;
> >         # see files in /usr/share/highlight/langDefs/ directory
> > -       map { $_ => $_ }
> > -               qw(py c cpp rb java css php sh pl js tex bib xml
> > awk bat ini spec tcl sql make),
> > +       (map { $_ => $_ } qw(py rb java css js tex bib xml awk bat
> > ini spec tcl sql)),
> >         # alternate extensions, see /etc/highlight/filetypes.conf
> > -       'h' => 'c',
> > -       map { $_ => 'sh'  } qw(bash zsh ksh),
> > -       map { $_ => 'cpp' } qw(cxx c++ cc),
> > -       map { $_ => 'php' } qw(php3 php4 php5 phps),
> > -       map { $_ => 'pl'  } qw(perl pm), # perhaps also 'cgi'
> > -       map { $_ => 'make'} qw(mak mk),
> > -       map { $_ => 'xml' } qw(xhtml html htm),
> > +       (map { $_ => 'c'   } qw(c h)),
> > +       (map { $_ => 'sh'  } qw(sh bash zsh ksh)),
> > +       (map { $_ => 'cpp' } qw(cpp cxx c++ cc)),
> > +       (map { $_ => 'php' } qw(php php3 php4 php5 phps)),
> > +       (map { $_ => 'pl'  } qw(pl perl pm)), # perhaps also 'cgi'
> > +       (map { $_ => 'make'} qw(make mak mk)),
> > +       (map { $_ => 'xml' } qw(xml xhtml html htm)),
> 
> I think the patch itself looks OK, but:
> 
>   1. It isn't formatted to apply with git-am. Please use
>      git-format-patch.

git format-patch command wouldn't work for me. I can see that you
don't need more stuff to do but not knowing git I couldn't find the
correct incantation to do this part. A problem with the files not
being in a git repo I think. I'll spare you details.

> 
>   2. The commit message does not explain the reason for the change.
> 
>   3. It isn't signed-off.

These I've done and submitted the patch again. (even though format
is probably not going to work with git-am.

> 
> The first two are things I can fix up (though it is inconvenient for
> me to do so), but the third is a show-stopper.  Please look through
> Documentation/SubmittingPatches, especially the bit about the
> Developer's Certificate of Origin, and re-send.
> 
> -Peff

Thanks for your patience and help.


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

* Re: [PATCH] gitweb.perl: fix %highlight_ext
  2012-11-02 21:18   ` rh
@ 2012-11-04 13:45     ` Jeff King
  2012-11-04 17:43       ` rh
  0 siblings, 1 reply; 6+ messages in thread
From: Jeff King @ 2012-11-04 13:45 UTC (permalink / raw)
  To: rh; +Cc: git

On Fri, Nov 02, 2012 at 02:18:09PM -0700, rh wrote:

> > I think the patch itself looks OK, but:
> > 
> >   1. It isn't formatted to apply with git-am. Please use
> >      git-format-patch.
> 
> git format-patch command wouldn't work for me. I can see that you
> don't need more stuff to do but not knowing git I couldn't find the
> correct incantation to do this part. A problem with the files not
> being in a git repo I think. I'll spare you details.

The usual procedure is:

  1. hack hack hack

  2. git commit

  3. git format-patch

And if you are not in a git repo, step 0 is "git init". :)

-Peff

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

* Re: [PATCH] gitweb.perl: fix %highlight_ext
  2012-11-04 13:45     ` Jeff King
@ 2012-11-04 17:43       ` rh
  0 siblings, 0 replies; 6+ messages in thread
From: rh @ 2012-11-04 17:43 UTC (permalink / raw)
  To: git

On Sun, 4 Nov 2012 08:45:03 -0500
Jeff King <peff@peff.net> wrote:

> On Fri, Nov 02, 2012 at 02:18:09PM -0700, rh wrote:
> 
> > > I think the patch itself looks OK, but:
> > > 
> > >   1. It isn't formatted to apply with git-am. Please use
> > >      git-format-patch.
> > 
> > git format-patch command wouldn't work for me. I can see that you
> > don't need more stuff to do but not knowing git I couldn't find the
> > correct incantation to do this part. A problem with the files not
> > being in a git repo I think. I'll spare you details.
> 
> The usual procedure is:
> 
>   1. hack hack hack
> 
>   2. git commit
> 
>   3. git format-patch

Roger wilco.

> 
> And if you are not in a git repo, step 0 is "git init". :)

I had an inkling but nothing more.

Thanks again for the help!

> 
> -Peff


-- 



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

end of thread, other threads:[~2012-11-04 17:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-29 16:42 [PATCH] gitweb.perl: fix %highlight_ext rh
2012-11-02 14:54 ` Jeff King
2012-11-02 17:41   ` rh
2012-11-02 21:18   ` rh
2012-11-04 13:45     ` Jeff King
2012-11-04 17:43       ` rh

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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).