* gitweb css - pixels?!
@ 2007-05-07 23:13 Chris Riddoch
2007-05-08 1:23 ` Allan Wind
` (2 more replies)
0 siblings, 3 replies; 16+ messages in thread
From: Chris Riddoch @ 2007-05-07 23:13 UTC (permalink / raw)
To: git
Hi, folks.
I've been gradually converting my ~/src directory full of tarballs
I've found interesting enough to download to a ~/repos/ directory
containing bare git repositories of the projects. I was thinking it
might be worth my while to set up gitweb so I can peruse my collection
of projects.
I noticed myself squinting, on my 1400x1050 laptop screen, at the 10
and 12-*pixel* font settings gitweb's CSS specifies before thinking to
myself that I should bring this to the list's attention.
I'm no CSS guru, or I'd just provide a patch. It seems that *all* the
measurements specified in the CSS file are in pixels, not ems or
percentages. There's got to be a better way. I can't be the only
person who would rather use my nice screen to render attractive,
readable fonts rather than to render the smallest possible fonts?
--
epistemological humility
Chris Riddoch
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: gitweb css - pixels?! 2007-05-07 23:13 gitweb css - pixels?! Chris Riddoch @ 2007-05-08 1:23 ` Allan Wind 2007-05-08 4:43 ` Chris Riddoch 2007-05-08 8:36 ` Jan Hudec 2007-05-09 1:41 ` [PATCH] gitweb: Do not use absolute font sizes Petr Baudis 2 siblings, 1 reply; 16+ messages in thread From: Allan Wind @ 2007-05-08 1:23 UTC (permalink / raw) To: git On 2007-05-07T17:13:42-0600, Chris Riddoch wrote: > I noticed myself squinting, on my 1400x1050 laptop screen, at the 10 > and 12-*pixel* font settings gitweb's CSS specifies before thinking to > myself that I should bring this to the list's attention. ctrl-+ (ctrl plus possible a couple of times) fixes that if you are using a browser from the Mozilla Foundation. It was perfectly readable for me, but I fortunate enough to have a large LCD. /Allan ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: gitweb css - pixels?! 2007-05-08 1:23 ` Allan Wind @ 2007-05-08 4:43 ` Chris Riddoch 0 siblings, 0 replies; 16+ messages in thread From: Chris Riddoch @ 2007-05-08 4:43 UTC (permalink / raw) To: git On 5/7/07, Allan Wind <allan_wind@lifeintegrity.com> wrote: > On 2007-05-07T17:13:42-0600, Chris Riddoch wrote: > > I noticed myself squinting, on my 1400x1050 laptop screen, at the 10 > > and 12-*pixel* font settings gitweb's CSS specifies before thinking to > > myself that I should bring this to the list's attention. > > ctrl-+ (ctrl plus possible a couple of times) fixes that if you are > using a browser from the Mozilla Foundation. It was perfectly readable > for me, but I fortunate enough to have a large LCD. Yes, I'm aware of that feature. Very handy. And entirely too necessary. Seriously, this isn't something to push on to users. Entirely too many websites don't follow sensible accessibility standards; shouldn't gitweb be fixed? -- epistemological humility Chris Riddoch ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: gitweb css - pixels?! 2007-05-07 23:13 gitweb css - pixels?! Chris Riddoch 2007-05-08 1:23 ` Allan Wind @ 2007-05-08 8:36 ` Jan Hudec 2007-05-09 1:41 ` [PATCH] gitweb: Do not use absolute font sizes Petr Baudis 2 siblings, 0 replies; 16+ messages in thread From: Jan Hudec @ 2007-05-08 8:36 UTC (permalink / raw) To: Chris Riddoch; +Cc: git [-- Attachment #1: Type: text/plain, Size: 1731 bytes --] On Mon, May 07, 2007 at 17:13:42 -0600, Chris Riddoch wrote: > Hi, folks. > > I've been gradually converting my ~/src directory full of tarballs > I've found interesting enough to download to a ~/repos/ directory > containing bare git repositories of the projects. I was thinking it > might be worth my while to set up gitweb so I can peruse my collection > of projects. > > I noticed myself squinting, on my 1400x1050 laptop screen, at the 10 > and 12-*pixel* font settings gitweb's CSS specifies before thinking to > myself that I should bring this to the list's attention. > > I'm no CSS guru, or I'd just provide a patch. It seems that *all* the > measurements specified in the CSS file are in pixels, not ems or > percentages. There's got to be a better way. I can't be the only > person who would rather use my nice screen to render attractive, > readable fonts rather than to render the smallest possible fonts? Well, there should be three ways to set font sizes: 1. Use the symbolic small, normal, large..., which are derived from user settings (normal is user setting, large is one step larger etc.). IMHO this would be the best variant. 2. Use *points* (pt) instead of *pixels* (px). Unfortunately most browsers don't know what their DPI is and will treat 1pt as 1px, even though they have more than 72dpi. I believe this applies to all Micro$oft browsers. 3. Use designation relative to previous font. One step up is 1.2em, one step down is 0.8333333em. I am not sure this actually works in Micro$oft browsers. Also rounding errors may quickly get you to completely different font size that you wanted. -- Jan 'Bulb' Hudec <bulb@ucw.cz> [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 189 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH] gitweb: Do not use absolute font sizes 2007-05-07 23:13 gitweb css - pixels?! Chris Riddoch 2007-05-08 1:23 ` Allan Wind 2007-05-08 8:36 ` Jan Hudec @ 2007-05-09 1:41 ` Petr Baudis 2007-05-09 5:54 ` Junio C Hamano ` (2 more replies) 2 siblings, 3 replies; 16+ messages in thread From: Petr Baudis @ 2007-05-09 1:41 UTC (permalink / raw) To: Junio C Hamano; +Cc: git Avoid specifying font sizes in pixels, since that is just pure evil. Pointed out by Chris Riddoch. Note that this is pretty much just a proposal; I didn't test if everything fits perfectly right, but things seem to be pretty much okay. repo.or.cz uses it now as a test drive - if you find any visual quirks, please point them out, with a patch if possible since I'm total CSS noob and debugging CSS is an extremely painful experience for me. Note that this patch actually does change visual look of gitweb in Firefox with my resolution and default settings - everything is bigger and I can't explain the joy of actually seeing gitweb text that is in _readable_ size; also, my horizontal screen real estate feels better used now. But judging from the look of most modern webpages on the 'net, most people prefer reading the web with strained eyes and/or a magnifying glass (I wonder what species of scientists should look into this mystifying phenomenon) - so, please tell us what you think. Maybe we might want to get rid of absolute sizes other than font sizes in the CSS file too in the long term. Signed-off-by: Petr Baudis <pasky@suse.cz> --- gitweb/gitweb.css | 19 +++++++++---------- 1 files changed, 9 insertions(+), 10 deletions(-) diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index 6c662a1..df12d78 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -1,6 +1,5 @@ body { font-family: sans-serif; - font-size: 12px; border: solid #d9d8d1; border-width: 1px; margin: 10px; @@ -31,7 +30,7 @@ img.logo { div.page_header { height: 25px; padding: 8px; - font-size: 18px; + font-size: 150%; font-weight: bold; background-color: #d9d8d1; } @@ -113,7 +112,7 @@ span.signoff { div.log_link { padding: 0px 8px; - font-size: 10px; + font-size: 70%; font-family: sans-serif; font-style: normal; position: relative; @@ -204,13 +203,13 @@ table.blame { table.blame td { padding: 0px 5px; - font-size: 12px; + font-size: 100%; vertical-align: top; } th { padding: 2px 5px; - font-size: 12px; + font-size: 100%; text-align: left; } @@ -232,14 +231,14 @@ tr.dark:hover { td { padding: 2px 5px; - font-size: 12px; + font-size: 100%; vertical-align: top; } td.link, td.selflink { padding: 2px 5px; font-family: sans-serif; - font-size: 10px; + font-size: 70%; } td.selflink { @@ -416,7 +415,7 @@ div.index_include { } div.search { - font-size: 12px; + font-size: 100%; font-weight: normal; margin: 4px 8px; position: absolute; @@ -444,7 +443,7 @@ a.rss_logo { background-color: #ff6600; font-weight: bold; font-family: sans-serif; - font-size: 10px; + font-size: 70%; text-align: center; text-decoration: none; } @@ -455,7 +454,7 @@ a.rss_logo:hover { span.refs span { padding: 0px 4px; - font-size: 10px; + font-size: 70%; font-weight: normal; border: 1px solid; background-color: #ffaaff; ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Do not use absolute font sizes 2007-05-09 1:41 ` [PATCH] gitweb: Do not use absolute font sizes Petr Baudis @ 2007-05-09 5:54 ` Junio C Hamano 2007-05-09 13:47 ` Petr Baudis 2007-05-09 6:48 ` Chris Riddoch 2007-05-14 16:53 ` Jakub Narebski 2 siblings, 1 reply; 16+ messages in thread From: Junio C Hamano @ 2007-05-09 5:54 UTC (permalink / raw) To: Petr Baudis; +Cc: git Petr Baudis <pasky@ucw.cz> writes: > Avoid specifying font sizes in pixels, since that is just pure evil. > Pointed out by Chris Riddoch. > > Note that this is pretty much just a proposal; I didn't test if everything > fits perfectly right, but things seem to be pretty much okay. repo.or.cz > uses it now as a test drive - if you find any visual quirks, please point > them out, with a patch if possible since I'm total CSS noob and debugging > CSS is an extremely painful experience for me. This looks like going in the right direction, but... > gitweb/gitweb.css | 19 +++++++++---------- > 1 files changed, 9 insertions(+), 10 deletions(-) > > diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css > index 6c662a1..df12d78 100644 > --- a/gitweb/gitweb.css > +++ b/gitweb/gitweb.css > @@ -1,6 +1,5 @@ > body { > font-family: sans-serif; > - font-size: 12px; > border: solid #d9d8d1; > border-width: 1px; > margin: 10px; > @@ -31,7 +30,7 @@ img.logo { > div.page_header { > height: 25px; > padding: 8px; > - font-size: 18px; > + font-size: 150%; > font-weight: bold; > background-color: #d9d8d1; > } > @@ -113,7 +112,7 @@ span.signoff { > > div.log_link { > padding: 0px 8px; > - font-size: 10px; > + font-size: 70%; > font-family: sans-serif; > font-style: normal; > position: relative; [12, 18, 10] / 12 * 100 = [100, 150, 83.33] why not use 83% for what were originally 10px? ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Do not use absolute font sizes 2007-05-09 5:54 ` Junio C Hamano @ 2007-05-09 13:47 ` Petr Baudis 0 siblings, 0 replies; 16+ messages in thread From: Petr Baudis @ 2007-05-09 13:47 UTC (permalink / raw) To: Junio C Hamano; +Cc: git On Wed, May 09, 2007 at 07:54:43AM CEST, Junio C Hamano wrote: > [12, 18, 10] / 12 * 100 = [100, 150, 83.33] > > why not use 83% for what were originally 10px? It seemed to me that the small parts were way too large then (this is also why I decided not to use 'large', 'medium' and 'small' - large was too small and small was too large, I felt), but I don't particularily care about this detail. -- Petr "Pasky" Baudis Stuff: http://pasky.or.cz/ Ever try. Ever fail. No matter. // Try again. Fail again. Fail better. -- Samuel Beckett ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Do not use absolute font sizes 2007-05-09 1:41 ` [PATCH] gitweb: Do not use absolute font sizes Petr Baudis 2007-05-09 5:54 ` Junio C Hamano @ 2007-05-09 6:48 ` Chris Riddoch 2007-05-14 16:53 ` Jakub Narebski 2 siblings, 0 replies; 16+ messages in thread From: Chris Riddoch @ 2007-05-09 6:48 UTC (permalink / raw) To: Petr Baudis; +Cc: Junio C Hamano, git On 5/8/07, Petr Baudis <pasky@ucw.cz> wrote: > Avoid specifying font sizes in pixels, since that is just pure evil. > Pointed out by Chris Riddoch. Thanks! It's definitely a step in the right direction. In my browser, the decent-sized fonts make it apparent that we're trying to fit a lot in a limited horizontal space. In particular, the links (commit | committdiff | tree | snapshot) wrap in the space provided, for me. I dropped my default font size a little, and it's just fine... but it does make me think, perhaps that's something where either icons or abbreviations (with an appropriate key) might improve the appearance of the page. Perhaps something like: C | D | T | S. It might even let us put more functionality in and improve our use of whitespace even more. I like it. -- epistemological humility Chris Riddoch ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Do not use absolute font sizes 2007-05-09 1:41 ` [PATCH] gitweb: Do not use absolute font sizes Petr Baudis 2007-05-09 5:54 ` Junio C Hamano 2007-05-09 6:48 ` Chris Riddoch @ 2007-05-14 16:53 ` Jakub Narebski 2007-05-15 1:06 ` David Kågedal 2 siblings, 1 reply; 16+ messages in thread From: Jakub Narebski @ 2007-05-14 16:53 UTC (permalink / raw) To: git Petr Baudis wrote: > Note that this patch actually does change visual look of gitweb in Firefox > with my resolution and default settings - everything is bigger and I can't > explain the joy of actually seeing gitweb text that is in _readable_ size; > also, my horizontal screen real estate feels better used now. Not everyone has those huge monitors with extreme resultion. For me new gitweb look uses much to big font, so not very much fits in screen. I'd remove > --- a/gitweb/gitweb.css > +++ b/gitweb/gitweb.css > @@ -1,6 +1,5 @@ > body { > font-family: sans-serif; > - font-size: 12px; > border: solid #d9d8d1; > border-width: 1px; > margin: 10px; chunk -- Jakub Narebski Warsaw, Poland ShadeHawk on #git ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Do not use absolute font sizes 2007-05-14 16:53 ` Jakub Narebski @ 2007-05-15 1:06 ` David Kågedal 2007-05-15 15:09 ` Jan Hudec 0 siblings, 1 reply; 16+ messages in thread From: David Kågedal @ 2007-05-15 1:06 UTC (permalink / raw) To: git; +Cc: Jakub Narebski Jakub Narebski <jnareb@gmail.com> writes: > Petr Baudis wrote: > >> Note that this patch actually does change visual look of gitweb in Firefox >> with my resolution and default settings - everything is bigger and I can't >> explain the joy of actually seeing gitweb text that is in _readable_ size; >> also, my horizontal screen real estate feels better used now. > > Not everyone has those huge monitors with extreme resultion. For me new > gitweb look uses much to big font, so not very much fits in screen. > > I'd remove > >> --- a/gitweb/gitweb.css >> +++ b/gitweb/gitweb.css >> @@ -1,6 +1,5 @@ >> body { >> font-family: sans-serif; >> - font-size: 12px; >> border: solid #d9d8d1; >> border-width: 1px; >> margin: 10px; > > chunk But then we'd be back to the brain-damaged explicit-pixel sizes. gitweb is simply using the font size you have configured your browser to use, and if you think that it too large, you are free to reconfigure it. Unfortunately, the problem is that too many web sites explicitly select extra small font sizes, which means that you have to select a "standard" font size in your browser that is a bit larger than you'd actually like. -- David Kågedal ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Do not use absolute font sizes 2007-05-15 1:06 ` David Kågedal @ 2007-05-15 15:09 ` Jan Hudec 2007-05-15 23:59 ` Jakub Narebski 2007-05-16 10:51 ` [PATCH] gitweb: Change base font size to "small" Jakub Narebski 0 siblings, 2 replies; 16+ messages in thread From: Jan Hudec @ 2007-05-15 15:09 UTC (permalink / raw) To: David Kågedal; +Cc: git, Jakub Narebski [-- Attachment #1: Type: text/plain, Size: 769 bytes --] On Mon, May 14, 2007 at 18:06:54 -0700, David Kågedal wrote: > Unfortunately, the problem is that too many web sites explicitly > select extra small font sizes, which means that you have to select a > "standard" font size in your browser that is a bit larger than you'd > actually like. IMHO gitweb should explicitely request being somewhat smaller than normal, because it has good use for long lines. Normally I want to set font so large, that more than ~120 characters won't fit on the screen, since otherwise pages that don't use margins are simply unreadable. However gitweb presents a table with several columns, so having wider line is OK for it. Therefore explicit 'font-size: small' would make sense. -- Jan 'Bulb' Hudec <bulb@ucw.cz> [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 189 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Do not use absolute font sizes 2007-05-15 15:09 ` Jan Hudec @ 2007-05-15 23:59 ` Jakub Narebski 2007-05-16 10:51 ` [PATCH] gitweb: Change base font size to "small" Jakub Narebski 1 sibling, 0 replies; 16+ messages in thread From: Jakub Narebski @ 2007-05-15 23:59 UTC (permalink / raw) To: Jan Hudec; +Cc: David Kågedal, git On Thu, 15 May 2007, Jan Hudec wrote: > On Mon, May 14, 2007 at 18:06:54 -0700, David Kågedal wrote: >> Unfortunately, the problem is that too many web sites explicitly >> select extra small font sizes, which means that you have to select a >> "standard" font size in your browser that is a bit larger than you'd >> actually like. > > IMHO gitweb should explicitely request being somewhat smaller than normal, > because it has good use for long lines. Normally I want to set font so large, > that more than ~120 characters won't fit on the screen, since otherwise pages > that don't use margins are simply unreadable. However gitweb presents a table > with several columns, so having wider line is OK for it. Therefore explicit > 'font-size: small' would make sense. And thanks to commit 63fcbe00 by Pasky "gitweb: Do not use absolute font sizes" it has to be added in only one place: diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index b57c8be..02623cb 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -1,5 +1,6 @@ body { font-family: sans-serif; + font-size: small; border: solid #d9d8d1; border-width: 1px; margin: 10px; ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH] gitweb: Change base font size to "small" 2007-05-15 15:09 ` Jan Hudec 2007-05-15 23:59 ` Jakub Narebski @ 2007-05-16 10:51 ` Jakub Narebski 2007-05-17 2:17 ` Petr Baudis 1 sibling, 1 reply; 16+ messages in thread From: Jakub Narebski @ 2007-05-16 10:51 UTC (permalink / raw) To: git; +Cc: Jan Hudec, David Kågedal, Petr Baudis Commit 63fcbe00a66d7cb7d8bce9a36120a19a809a33b8 by Peter "Pasky" Baudis "gitweb: Do not use absolute font sizes" made gitweb use default font size, the font size you have configured your browser to use, as a basis; other font sizes are given as percentage. David Kågedal noticed problem with this approach: too many web sites explicitly select extra small font sizes, which means that you have to select a "standard" font size in your browser that is a bit larger than one would actually like. Additionally, as Jan Hudec noticed, gitweb should explicitely request being somewhat smaller than normal, because it has good use for long lines. Normally one would usually want to set font so large, that more than ~120 characters won't fit on the screen, since otherwise pages that don't use margins are simply unreadable. However gitweb presents a table with several columns, so having wider line is OK for it. Jan Hudec proposed to use 'font-size: small' to take above issues into account. This avoid using "brain-damaged" explicit-pixel sizes, while taking into account nature of gitweb output. Thanks to mentioned commit by Pasky we need to add 'font-size: small' in only one place, for BODY element. See the original messages: Message-ID: <87odkmgaj5.fsf@morpheus.local> Message-ID: <20070515150912.GA3653@efreet.light.src> Proposed-by: Jan Hudec <bulb@ucw.cz> Signed-off-by: Jakub Narebski <jnareb@gmail.com> --- This is commit wich has commit message larger than patch itself, but I think the explanation is as important as patch itself, perhaps even more important. gitweb/gitweb.css | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index b57c8be..02623cb 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -1,5 +1,6 @@ body { font-family: sans-serif; + font-size: small; border: solid #d9d8d1; border-width: 1px; margin: 10px; -- 1.5.1.4 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Change base font size to "small" 2007-05-16 10:51 ` [PATCH] gitweb: Change base font size to "small" Jakub Narebski @ 2007-05-17 2:17 ` Petr Baudis 2007-05-17 4:07 ` Junio C Hamano 2007-05-17 8:31 ` Jakub Narebski 0 siblings, 2 replies; 16+ messages in thread From: Petr Baudis @ 2007-05-17 2:17 UTC (permalink / raw) To: junkio, Jakub Narebski; +Cc: git, Jan Hudec, David K??gedal On Wed, May 16, 2007 at 12:51:38PM CEST, Jakub Narebski wrote: > Proposed-by: Jan Hudec <bulb@ucw.cz> > Signed-off-by: Jakub Narebski <jnareb@gmail.com> Acked-by: Petr Baudis <pasky@suse.cz> just for the record, since it seems to be already applied anyway. By the way, I think this commit message is more optimal than what ended up for some reason (Jakub wasn't fast enough? ;-) as b211c320eb5d753a7a44a03eccb9a15cfbcc563b - especially the subject of that commit is really weird. -- Petr "Pasky" Baudis Stuff: http://pasky.or.cz/ Ever try. Ever fail. No matter. // Try again. Fail again. Fail better. -- Samuel Beckett ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Change base font size to "small" 2007-05-17 2:17 ` Petr Baudis @ 2007-05-17 4:07 ` Junio C Hamano 2007-05-17 8:31 ` Jakub Narebski 1 sibling, 0 replies; 16+ messages in thread From: Junio C Hamano @ 2007-05-17 4:07 UTC (permalink / raw) To: Petr Baudis; +Cc: junkio, Jakub Narebski, git, Jan Hudec, David Kågedal Petr Baudis <pasky@suse.cz> writes: > On Wed, May 16, 2007 at 12:51:38PM CEST, Jakub Narebski wrote: >> Proposed-by: Jan Hudec <bulb@ucw.cz> >> Signed-off-by: Jakub Narebski <jnareb@gmail.com> > > Acked-by: Petr Baudis <pasky@suse.cz> > > just for the record, since it seems to be already applied anyway. By the > way, I think this commit message is more optimal than what ended up for > some reason (Jakub wasn't fast enough? ;-) Most likely timezone difference is the largest factor. ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] gitweb: Change base font size to "small" 2007-05-17 2:17 ` Petr Baudis 2007-05-17 4:07 ` Junio C Hamano @ 2007-05-17 8:31 ` Jakub Narebski 1 sibling, 0 replies; 16+ messages in thread From: Jakub Narebski @ 2007-05-17 8:31 UTC (permalink / raw) To: Petr Baudis; +Cc: Junio C Hamano, git, Jan Hudec, David Kågedal On Thu, 17 May 2007, Petr Baudis wrote: > On Wed, May 16, 2007 at 12:51:38PM CEST, Jakub Narebski wrote: >> Proposed-by: Jan Hudec <bulb@ucw.cz> >> Signed-off-by: Jakub Narebski <jnareb@gmail.com> > > Acked-by: Petr Baudis <pasky@suse.cz> > > just for the record, since it seems to be already applied anyway. By the > way, I think this commit message is more optimal than what ended up for > some reason (Jakub wasn't fast enough? ;-) as > b211c320eb5d753a7a44a03eccb9a15cfbcc563b - especially the subject of > that commit is really weird. Second 'gitweb: Do not use absolute font sizes' commit in git.git repo is from (authordate) Wed May 16 01:59:55 2007 +0200, while this one: 'gitweb: Change base font size to "small"' commit in my repo is from Wed May 16 12:16:02 2007 +0200 So it looks like my patch without commit message in Message-ID: <200705160159.55590.jnareb@gmail.com> was taken, and commit message was added by Junio, and not ready commit from this subthread (in message you have replied to, and which you Ack) Message-ID: <200705161251.38729.jnareb@gmail.com> Gah, either I shouldn't have send bare patch, or I have should send reply that I'm working on commit message for this change. I have tagged my commit message in git/jnareb-git.git repo as gitweb/change-base-font-size: http://repo.or.cz/w/git/jnareb-git.git?a=tag;h=gitweb/change-base-font-size to protect it against rebase + prune. -- Jakub Narebski Poland ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2007-05-17 8:40 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2007-05-07 23:13 gitweb css - pixels?! Chris Riddoch 2007-05-08 1:23 ` Allan Wind 2007-05-08 4:43 ` Chris Riddoch 2007-05-08 8:36 ` Jan Hudec 2007-05-09 1:41 ` [PATCH] gitweb: Do not use absolute font sizes Petr Baudis 2007-05-09 5:54 ` Junio C Hamano 2007-05-09 13:47 ` Petr Baudis 2007-05-09 6:48 ` Chris Riddoch 2007-05-14 16:53 ` Jakub Narebski 2007-05-15 1:06 ` David Kågedal 2007-05-15 15:09 ` Jan Hudec 2007-05-15 23:59 ` Jakub Narebski 2007-05-16 10:51 ` [PATCH] gitweb: Change base font size to "small" Jakub Narebski 2007-05-17 2:17 ` Petr Baudis 2007-05-17 4:07 ` Junio C Hamano 2007-05-17 8:31 ` Jakub Narebski
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 NNTP newsgroup(s).