Re: [fossil-users] looking for interesting new fossil skins

2014-02-18 Thread Samuel Debionne
Hello Stephan, Yep adding data-* is not that straightforward… If you want I can try to create a patch with that functionality alone (a subset of the diff I send you earlier). Yes, please. Here you go ! For the records, this patch enables the use of data-* attributes in the

Re: [fossil-users] looking for interesting new fossil skins

2014-02-17 Thread Samuel Debionne
Hello Stephan, Here is a short patch that removes the use of the nobr element which has never been part of the standard. I have found that it is used solely in stat.c to display the URL stats. The fix is to replace nobr by span class=nobr and add span.nobr { white-space: nowrap; } to the default

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Samuel Debionne
Hi Stephen, I have made a skin using Twitter Bootstrap CSS that looks quite good IMHO (responsive layout and all). Actually this is a bit more involving than just using the skin, it requires patching the markup that is generated by fossil a bit, something that I maintain in my private branch (but

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Remigiusz Modrzejewski
On 11 Feb 2014, at 19:42, Martijn Coppoolse li...@martijn.coppoolse.com wrote: Remigiusz Modrzejewski schreef op 11-2-2014 15:54: On 11 Feb 2014, at 15:42, Stephan Beal sgb...@googlemail.com wrote: i'm looking to clone someone's interesting fossil skin to snazz up my fossil repos a bit.

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Thomas Bilk
Am 14.02.2014 11:02, schrieb Samuel Debionne: Hi Stephen, I have made a skin using Twitter Bootstrap CSS that looks quite good IMHO (responsive layout and all). Actually this is a bit more involving than just using the skin, it requires patching the markup that is generated by fossil a bit,

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Samuel Debionne
The Skin looks really great. But ... That is the problem with Twitter Bootstrap, you have to change the markup to fit to the CSS. And that is plain wrong. There are solutions that help with responsive and grid layouts like Neat (http://neat.bourbon.io/) where the CSS is generated for the

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Stephan Beal
On Fri, Feb 14, 2014 at 2:27 PM, Samuel Debionne samuel.debio...@ujf-grenoble.fr wrote: The setup page has a toggle to enable plain HTML. Yes but my mod enables plain HTML on a page basis just like you have Fossil Wiki, Markdown and Plain Text. This option bypass the wiki format code

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Stephan Beal
On Fri, Feb 14, 2014 at 2:52 PM, Stephan Beal sgb...@googlemail.com wrote: article, aside, footer, header, nav, section elements are valid. That sounds good to me. i'll clear this with Richard before changing it. Here you go: http://www.fossil-scm.org/index.html/info/93dffb9147 i

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Samuel Debionne
That was fast ! i couldn't add data-* attributes (despite Richard's OK) because the internal structure of the parser needs to know all full attribute names and their integer IDs at compile-time (this makes it very fast, but useless for dynamic data-* name lookups). But the requested

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Stephan Beal
On Fri, Feb 14, 2014 at 4:43 PM, Samuel Debionne samuel.debio...@ujf-grenoble.fr wrote: Yep adding data-* is not that straightforward... If you want I can try to create a patch with that functionality alone (a subset of the diff I send you earlier). Yes, please. Something I noticed while

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Ron Wilson
On Fri, Feb 14, 2014 at 10:43 AM, Samuel Debionne samuel.debio...@ujf-grenoble.fr wrote: Something I noticed while hacking the wikiformat code is the use of div id='foo'/div id='foo' which is not valid HTML AFAIK. Closing tags should not have attributes right ? Technically, closing tags do

Re: [fossil-users] looking for interesting new fossil skins

2014-02-14 Thread Samuel Debionne
Technically, closing tags do not have attributes, but HTML parsers are supposed to tolerate and ignore them. Practically, certain attributes, like id, can increase readability when placed in closing tags. Much like putting comments after }, #else and #endif to help identify the the

Re: [fossil-users] looking for interesting new fossil skins

2014-02-13 Thread Matt Welland
Hmmm I thought I could just do a fossil config pull skin to get these but that seems not to be sufficient. What are the steps to clone a skin? On Wed, Feb 12, 2014 at 12:40 AM, Baptiste Daroussin baptiste.darous...@gmail.com wrote: I have also stolen long ago the google code like theme

Re: [fossil-users] looking for interesting new fossil skins

2014-02-13 Thread Stephan Beal
On Thu, Feb 13, 2014 at 6:07 PM, Matt Welland estifo...@gmail.com wrote: Hmmm I thought I could just do a fossil config pull skin to get these but that seems not to be sufficient. What are the steps to clone a skin? conf pull skin pulls not only the CSS but also the index page name, so

Re: [fossil-users] looking for interesting new fossil skins

2014-02-13 Thread Richard Hipp
On Thu, Feb 13, 2014 at 12:09 PM, Stephan Beal sgb...@googlemail.comwrote: On Thu, Feb 13, 2014 at 6:07 PM, Matt Welland estifo...@gmail.com wrote: Hmmm I thought I could just do a fossil config pull skin to get these but that seems not to be sufficient. What are the steps to clone a

Re: [fossil-users] looking for interesting new fossil skins

2014-02-13 Thread Richard Hipp
On Thu, Feb 13, 2014 at 2:18 PM, Stephan Beal sgb...@googlemail.com wrote: On Thu, Feb 13, 2014 at 7:52 PM, Richard Hipp d...@sqlite.org wrote: Do we need to change config pull skin so that it omits the index page name? i'd vote for that, or a flag for it. Huh. Apparently you can

Re: [fossil-users] looking for interesting new fossil skins

2014-02-13 Thread Stephan Beal
On Thu, Feb 13, 2014 at 8:24 PM, Richard Hipp d...@sqlite.org wrote: Huh. Apparently you can already do config pull css. What else other than the CSS file needs to be brought over to move a look from one repo to another? Didn't know that. In my case i pulled (css,header,footer), but i

Re: [fossil-users] looking for interesting new fossil skins

2014-02-12 Thread Stephan Beal
On Wed, Feb 12, 2014 at 8:40 AM, Baptiste Daroussin baptiste.darous...@gmail.com wrote: I have also stolen long ago the google code like theme and has adapted it a bit: - timeline is showing raw logs (because we do multiline commit logs - btw I can't get the cli timeline respecting multiline

Re: [fossil-users] looking for interesting new fossil skins

2014-02-12 Thread Baptiste Daroussin
The timeline does not support multi-line commit message, I sent the patch for the web version of the time line as well as the info page that you integrated, but I was never able to figure out how to do the same with the the timeline cli. For the command line I always messed up in the way I count

Re: [fossil-users] looking for interesting new fossil skins

2014-02-12 Thread Andy Bradford
Thus said Baptiste Daroussin on Wed, 12 Feb 2014 08:40:37 +0100: I have also stolen long ago the google code like theme and has adapted it a bit: Is it intentional for all these ``google code'' look alikes to leave out a background color? Andy -- TAI64 timestamp: 400052fc4dbf

[fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Stephan Beal
Hi, all, i'm looking to clone someone's interesting fossil skin to snazz up my fossil repos a bit. Can any suggest a fossil repo with a nice skin? -- - stephan beal http://wanderinghorse.net/home/stephan/ http://gplus.to/sgbeal Freedom is sloppy. But since tyranny's the only guaranteed

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Remigiusz Modrzejewski
On 11 Feb 2014, at 15:42, Stephan Beal sgb...@googlemail.com wrote: i'm looking to clone someone's interesting fossil skin to snazz up my fossil repos a bit. Can any suggest a fossil repo with a nice skin? I once stole a skin I like, see here: http://dev.lrem.net/p2pvsim2/timeline Kind

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Stephan Beal
On Tue, Feb 11, 2014 at 3:54 PM, Remigiusz Modrzejewski l...@maxnet.org.plwrote: I once stole a skin I like, see here: http://dev.lrem.net/p2pvsim2/timeline Very googlecode-ish! How's it look on me? http://fossil.wanderinghorse.net/repos/libfossil/ (i need to change the /reports colors,

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Richard Hipp
On Tue, Feb 11, 2014 at 10:06 AM, Stephan Beal sgb...@googlemail.comwrote: On Tue, Feb 11, 2014 at 3:54 PM, Remigiusz Modrzejewski l...@maxnet.org.pl wrote: I once stole a skin I like, see here: http://dev.lrem.net/p2pvsim2/timeline Very googlecode-ish! How's it look on me?

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Stephan Beal
On Tue, Feb 11, 2014 at 4:06 PM, Stephan Beal sgb...@googlemail.com wrote: On Tue, Feb 11, 2014 at 3:54 PM, Remigiusz Modrzejewski l...@maxnet.org.pl wrote: I once stole a skin I like, see here: http://dev.lrem.net/p2pvsim2/timeline Very googlecode-ish! How's it look on me?

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Stephan Beal
On Tue, Feb 11, 2014 at 4:28 PM, Richard Hipp d...@sqlite.org wrote: The tree-view ( http://fossil.wanderinghorse.net/repos/libfossil/index.cgi/dir?ci=tiptype=tree) doesn't look quite right. i don't notice anything wrong with that particular link (but i'm new to the new tree view), but i did

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Michai Ramakers
On 11 February 2014 16:35, Stephan Beal sgb...@googlemail.com wrote: On Tue, Feb 11, 2014 at 4:28 PM, Richard Hipp d...@sqlite.org wrote: (http://fossil.wanderinghorse.net/repos/libfossil/index.cgi/dir?ci=tiptype=tree) i don't notice anything wrong with that particular link (but i'm new to

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Joel Bruick
Richard Hipp wrote: The tree-view (http://fossil.wanderinghorse.net/repos/libfossil/index.cgi/dir?ci=tiptype=tree http://fossil.wanderinghorse.net/repos/libfossil/index.cgi/dir?ci=tiptype=tree) doesn't look quite right. That skin sets top and bottom margins on all LI elements, which the

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Stephan Beal
On Tue, Feb 11, 2014 at 4:58 PM, Michai Ramakers m.ramak...@gmail.comwrote: Hmm, Works For Me (Firefox 22.0 NetBSD), i.e. tree-view remains tree-view. i see what's happening: clicking on a dir is modifying the URL (watch the URL bar), removing the type=tree flag and the checkin ID. Then

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Stephan Beal
On Tue, Feb 11, 2014 at 5:08 PM, Joel Bruick j...@joelface.com wrote: Richard Hipp wrote: The tree-view (http://fossil.wanderinghorse. net/repos/libfossil/index.cgi/dir?ci=tiptype=tree http://fossil.wanderinghorse.net/repos/libfossil/index.cgi/ dir?ci=tiptype=tree) doesn't look quite

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Andreas Kupries
There is also http://fossil.include-once.org/fossil-skins/index which seems to collect skins. Has not changed for a bit over a year now. On Tue, Feb 11, 2014 at 8:13 AM, Stephan Beal sgb...@googlemail.com wrote: On Tue, Feb 11, 2014 at 5:08 PM, Joel Bruick j...@joelface.com wrote:

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Martijn Coppoolse
Remigiusz Modrzejewski schreef op 11-2-2014 15:54: On 11 Feb 2014, at 15:42, Stephan Beal sgb...@googlemail.com wrote: i'm looking to clone someone's interesting fossil skin to snazz up my fossil repos a bit. Can any suggest a fossil repo with a nice skin? I once stole a skin I like, see

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Stephan Beal
On Tue, Feb 11, 2014 at 7:42 PM, Martijn Coppoolse li...@martijn.coppoolse.com wrote: Another one I liked is this one: http://projects.depar.is/divers/ It's based on GitHub's style, as the one above is based on Google Code's style. :-) Oooo, i like that one, too, but Google Code sits

Re: [fossil-users] looking for interesting new fossil skins

2014-02-11 Thread Baptiste Daroussin
I have also stolen long ago the google code like theme and has adapted it a bit: - timeline is showing raw logs (because we do multiline commit logs - btw I can't get the cli timeline respecting multiline commits log :() - the tree view is default and has icons (stolen from openclipart as well)