Re: [fossil-users] [minor] src/style.c:427 → "%

2018-07-02 Thread David Mason
It's pretty common to put classes on tags, to use CSS to conditionally choose different renderings by simply changing the class of the body tag. ../Dave On 3 July 2018 at 00:23, mario wrote: > Mon, 2 Jul 2018 17:20:17 -0600 Warren Young : > > > Under what conditions would you have two

Re: [fossil-users] [minor] src/style.c:427 → "%

2018-07-02 Thread mario
Mon, 2 Jul 2018 17:20:17 -0600 Warren Young : > Under what conditions would you have two different tags in a > single document differing only by class, and thus need a CSS selector > to differentiate them? Of course you wouldn't want two tags. But that's exactly the bug I ran into:

Re: [fossil-users] [minor] src/style.c:427 → "%

2018-07-02 Thread Warren Young
On Jul 2, 2018, at 8:11 AM, mario wrote: > > This misses anything but plain tags in the header > ↓ > if( sqlite3_strlike("%%", zHeader, 0)!=0 ){ >Th_Render(zDfltHeader); > } > > It might rather be %%, so any style attributes > like get recognized still.

Re: [fossil-users] Cannot clone sqlite docs repository

2018-07-02 Thread jungle Boogie
On 2 July 2018 at 09:05, Brian Nguyen wrote: >> $ fossil clone https://www2.sqlite.org/docsrc doc.sqlite >> Round-trips: 2 Artifacts sent: 0 received: 0 >> Error: not authorized to clone >> Round-trips: 2 Artifacts sent: 0 received: 0 >> Clone done, sent: 537 received: 582 ip: 2.0.1.187

[fossil-users] Cannot clone sqlite docs repository

2018-07-02 Thread Brian Nguyen
> > $ fossil clone https://www2.sqlite.org/docsrc doc.sqlite > Round-trips: 2 Artifacts sent: 0 received: 0 > Error: not authorized to clone > Round-trips: 2 Artifacts sent: 0 received: 0 > Clone done, sent: 537 received: 582 ip: 2.0.1.187 > server returned an error - clone aborted > $

[fossil-users] [minor] src/style.c:427 → "%

2018-07-02 Thread mario
This misses anything but plain tags in the header ↓ if( sqlite3_strlike("%%", zHeader, 0)!=0 ){ Th_Render(zDfltHeader); } It might rather be %%, so any style attributes like get recognized still. Perhaps zDfltHeader[] could even contain a short HTML comment