[fossil-users] fossil all clean

2013-10-18 Thread j. van den hoff
regarding this new command: as the help page correctly states Extreme caution should be exercised with this command because its effects cannot be undone. ...: this could cause real trouble for inexperienced users presuming clean is some sort of innocuous tidy up like make clean. would it

Re: [fossil-users] fossil all clean

2013-10-18 Thread Joe Mistachkin
j. van den hoff wrote: would it not be wise to change the default behavior to executing a dry-run while delegating the actual action to something like fossil clean --force? this also would bring the syntax more in line with `fossil clean'. The only thing 'fossil all clean' really

Re: [fossil-users] fossil all clean

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 09:26:59 +0200, Joe Mistachkin sql...@mistachkin.com wrote: j. van den hoff wrote: would it not be wise to change the default behavior to executing a dry-run while delegating the actual action to something like fossil clean --force? this also would bring the syntax

[fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
in my view the timeline view in the web gui wastes quite some vertical real estate by reserving horizontal stripes for the date boxes. this is especially true for medium or low traffic projects (for one checkin per day there's about a factor of 5 more space required vertically per checkin

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 11:09 AM, j. van den hoff veedeeh...@googlemail.com wrote: question 1: I understand that some customization (font size colors) is possible but don't know anything specific of CSS adjustment. is it possible to integrate the date with the time info for each checkin

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 11:29 AM, Stephan Beal sgb...@googlemail.comwrote: content, IIRC), but applying a CSS class (e.g. timeline-date) to those fields (which currently don't have such a CSS tag) would allow one to It turns out i just happened to look at the one DOM element which didn't have

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stestagg
A very simple, low-budget way of improving the display would be to change the CSS to make the dates more compact. If you find the following section of the CSS and remove the font-size and margin-top statements: /* The Date that occurs on the left hand side of timelines */ div.divider {

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 11:40:44 +0200, Stephan Beal sgb...@googlemail.com wrote: On Fri, Oct 18, 2013 at 11:29 AM, Stephan Beal sgb...@googlemail.comwrote: content, IIRC), but applying a CSS class (e.g. timeline-date) to those fields (which currently don't have such a CSS tag) would allow

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 11:48 AM, Stestagg stest...@gmail.com wrote: /* The Date that occurs on the left hand side of timelines */ div.divider { As of a few moments ago you can also use .timelineDate instead (which has a clearer meaning). That's assuming, of course, that you use the trunk

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 11:48:20 +0200, Stestagg stest...@gmail.com wrote: A very simple, low-budget way of improving the display would be to change the CSS to make the dates more compact. If you find the following section of the CSS and remove the font-size and margin-top statements: /* The Date

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 11:48 AM, j. van den hoff veedeeh...@googlemail.com wrote: of course I would prefer having this functionality just provided by the UI if possible at all. not necessarily fancy configuration but just the switch between current layout and an inlined date variant would

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stestagg
This is slightly more hackish, and only tested in Chrome, but should work with modern browsers. Try adding: .timelineTable td{ position:relative; } .timelineTable .divider{ position:absolute; left: -8em; } to the end of the CSS (updating to use the new CSS classes if needed) Thanks Steve

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 11:57 AM, Stestagg stest...@gmail.com wrote: to the end of the CSS (updating to use the new CSS classes if needed) .divider is still there - just added the timelineDate to it. -- - stephan beal http://wanderinghorse.net/home/stephan/ http://gplus.to/sgbeal Since

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 11:53:12 +0200, Stephan Beal sgb...@googlemail.com wrote: On Fri, Oct 18, 2013 at 11:48 AM, Stestagg stest...@gmail.com wrote: /* The Date that occurs on the left hand side of timelines */ div.divider { As of a few moments ago you can also use .timelineDate instead

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 11:57:13 +0200, Stestagg stest...@gmail.com wrote: This is slightly more hackish, and only tested in Chrome, but should work with modern browsers. Try adding: .timelineTable td{ position:relative; } .timelineTable .divider{ position:absolute; left: -8em; } this

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stestagg
No, I since realised that this only really works well with the 'Shadow boxes Rounded Corners' skin. With the Shadow skin, and the following addition to the CSS: .timelineTable .divider { position: absolute; border-top: 1px solid #aaa; padding-right: 5em; margin-left: -10em;

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Richard Hipp
A new option in the Admin/Timeline setup menu allows you to change the formatting of dates and times on the timeline to show the date with the time on every entry, rather than showing the date in separate timelineDate boxes. -- D. Richard Hipp d...@sqlite.org

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 1:53 PM, Richard Hipp d...@sqlite.org wrote: A new option in the Admin/Timeline setup menu allows you to change the formatting of dates and times on the timeline to show the date with the time on every entry, rather than showing the date in separate timelineDate boxes.

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 13:53:07 +0200, Richard Hipp d...@sqlite.org wrote: A new option in the Admin/Timeline setup menu allows you to change the formatting of dates and times on the timeline to show the date with the time on every entry, rather than showing the date in separate timelineDate

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 2:50 PM, j. van den hoff veedeeh...@googlemail.comwrote: incidentally, I feel the CLI timeline would profit from a similar change and user selectable setting for the behaviour (and also from a setting for the line length used for wrapping which is rather small right

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 14:56:49 +0200, Stephan Beal sgb...@googlemail.com wrote: On Fri, Oct 18, 2013 at 2:50 PM, j. van den hoff veedeeh...@googlemail.comwrote: incidentally, I feel the CLI timeline would profit from a similar change and user selectable setting for the behaviour (and also

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 14:11:05 +0200, Stephan Beal sgb...@googlemail.com wrote: On Fri, Oct 18, 2013 at 1:53 PM, Richard Hipp d...@sqlite.org wrote: A new option in the Admin/Timeline setup menu allows you to change the formatting of dates and times on the timeline to show the date with the

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 3:32 PM, j. van den hoff veedeeh...@googlemail.comwrote: w.r.t. to minor hair-splitting: it seems that the timeline squares have a baseline that is slightly too low compared to the time displayed on the left hand side of the box (and compared to the first line of the

Re: [fossil-users] CGI and REQUEST_URI

2013-10-18 Thread Ben Summers
On 17 Oct 2013, at 18:40, Richard Hipp d...@sqlite.org wrote: On Thu, Oct 17, 2013 at 1:21 PM, Stephan Beal sgb...@googlemail.com wrote: On Thu, Oct 17, 2013 at 7:17 PM, Richard Hipp d...@sqlite.org wrote: Currently, Fossil requires REQUEST_URI and SCRIPT_NAME at a minimum, and will

Re: [fossil-users] CGI and REQUEST_URI

2013-10-18 Thread Richard Hipp
On Fri, Oct 18, 2013 at 11:11 AM, Ben Summers b...@fluffy.co.uk wrote: Since it looks like 1.28 is going to be out soon, I'll wait for that before updating the server. Why wait? If you look at the bottom of the page for the self-hosting Fossil server at

Re: [fossil-users] CGI and REQUEST_URI

2013-10-18 Thread j. van den hoff
On Fri, 18 Oct 2013 17:19:55 +0200, Richard Hipp d...@sqlite.org wrote: On Fri, Oct 18, 2013 at 11:11 AM, Ben Summers b...@fluffy.co.uk wrote: Since it looks like 1.28 is going to be out soon, I'll wait for that before updating the server. Why wait? If you look at the bottom of the page

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 5:38 PM, sky5w...@gmail.com wrote: I prefer: YYMMDD HH:MM instead of: -MM-DD HH:MM @Richard: i'll get that option added if you haven't done it by the time this hits the list. And, is there a CSS way to shove the vertical timeline leftmost? And have the

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 5:47 PM, Stephan Beal sgb...@googlemail.com wrote: On Fri, Oct 18, 2013 at 5:38 PM, sky5w...@gmail.com wrote: I prefer: YYMMDD HH:MM instead of: -MM-DD HH:MM @Richard: i'll get that option added if you haven't done it by the time this hits the list. Added:

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
On Fri, Oct 18, 2013 at 6:17 PM, sky5w...@gmail.com wrote: Thanks! Haha, I'll make every effort to be around when 2 digit years are a problem. Consider it designed in persistence vs obsolescence. :) If you use that option on the core TCL tree you'll see wrapparound, as its timeline goes back

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread sky5walk
Thanks! Haha, I'll make every effort to be around when 2 digit years are a problem. Consider it designed in persistence vs obsolescence. :) On Fri, Oct 18, 2013 at 12:09 PM, Stephan Beal sgb...@googlemail.comwrote: On Fri, Oct 18, 2013 at 5:47 PM, Stephan Beal sgb...@googlemail.comwrote: On

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
follow up: a colleague has tested it with firefox and chromium under ubuntu: only the latter showed the inlined date as expected. firefox put the time right adjusted under the date in -MM-DD HH:MM(:SS?) format. no idea way, just wanted to point this out. On Fri, 18 Oct 2013 13:53:07

Re: [fossil-users] how to edit All Tickets presentation

2013-10-18 Thread Ron Wilson
On Thu, Oct 17, 2013 at 9:19 PM, Will Parsons varro@nodomain.invalidwrote: I'm sorry, but I am completely at a loss to understand this. You *use* the subsystem field, but create a summary report without it? Why? And how? I did not want to change the All Tickets report, so I created a new

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Ron Wilson
On Fri, Oct 18, 2013 at 1:06 PM, j. van den hoff veedeeh...@googlemail.comwrote: follow up: a colleague has tested it with firefox and chromium under ubuntu: only the latter showed the inlined date as expected. firefox put the time right adjusted under the date in -MM-DD HH:MM(:SS?)

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
That can be done in css. In chrome, be SURE to forcibly empty the cache or it may hold the old CSS for ages. Chrome's cache is annoyingly aggressive. (sent from a mobile device - please excuse brevity, typos, and top-posting) - stephan beal http://wanderinghorse.net On Oct 18, 2013 7:17 PM,

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread j. van den hoff
update: the wrap-around happens/can happen when resizing the browser window (reversible: it appears and goes away, depending on window width). this is thus not firefox specific (at least I know see it myself in the above described way with opera). so the suggestion to enter an unbreakable

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Ron Wilson
On Fri, Oct 18, 2013 at 3:39 PM, j. van den hoff veedeeh...@googlemail.comwrote: update: the wrap-around happens/can happen when resizing the browser window (reversible: it appears and goes away, depending on window width). this is thus not firefox specific (at least I know see it myself in

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
You can do this without code changes - some people will want wrapping behavior (trust me - you guys have proven this point often enough!). Change the css. Will post an example in the morning if nobody beats me to it - google for css no wrap or similar. (sent from a mobile device - please excuse

Re: [fossil-users] timeline cosmetics

2013-10-18 Thread Stephan Beal
Here: http://www.w3schools.com/cssref/pr_text_white-space.asp See nowrap and apply it to the .divider selector. Please do not hard-code the non-wrap behaviour because in a month someone is going to ask how they can work around it because it doesn't look good on their tiny screen or some such.