Re: [Monotone-devel] Re: More descriptive help summary

2007-04-14 Thread Julio M. Merino Vidal
On 12/04/2007, at 22:36, Thomas Keller wrote: IMHO having multi-word commands would be more consistent and I'd happily implement that, but I guess nobody would use it actually =). I absolutely dislike command names with dashes or even underscores in it, they are long and naturally hard to

Re: [Monotone-devel] Re: More descriptive help summary

2007-04-14 Thread Richard Levitte
In message [EMAIL PROTECTED] on Thu, 12 Apr 2007 22:36:43 +0200, Thomas Keller [EMAIL PROTECTED] said: me mtn: commit resolves to multiple commands, which one did you mean? me mtn: me mtn: workspace commit Commit workspace to database me mtn: foo commit Commit foo to somewhere me

Re: [Monotone-devel] Re: More descriptive help summary

2007-04-14 Thread Thomas Keller
Richard Levitte schrieb: In message [EMAIL PROTECTED] on Thu, 12 Apr 2007 22:36:43 +0200, Thomas Keller [EMAIL PROTECTED] said: me mtn: commit resolves to multiple commands, which one did you mean? me mtn: me mtn: workspace commit Commit workspace to database me mtn: foo commit

[Monotone-devel] Using monotone via USB flash drive

2007-04-14 Thread Stephen Leake
I'm considering switching to monotone; I currently use CVS. One reason for switching is the requirement to do CM on a system that has no network access, for security reasons (this is for NASA, we worry about people taking over satellites). The basic scenario is we have several developers, and

Re: [Monotone-devel] Re: More descriptive help summary

2007-04-14 Thread Derek Scherger
Thomas Keller wrote: Uh, now that you mention that... indeed, there is. And it seems as it was added right from the start to the automation interface. Ok, one would have to type at least mtn ls heads or mtn au heads to get the correct version. Or we do something with the ALIAS

Re: [Monotone-devel] Using monotone via USB flash drive

2007-04-14 Thread Timothy Brownawell
On Sat, 2007-04-14 at 09:46 -0400, Stephen Leake wrote: I'm considering switching to monotone; I currently use CVS. One reason for switching is the requirement to do CM on a system that has no network access, for security reasons (this is for NASA, we worry about people taking over

[Monotone-devel] compiling monotone on Windows.

2007-04-14 Thread Stephen Leake
I've successfully installed the MSYS tools, and I'd just like to say thank you to the maintainers of the Monotone Wiki, especially the BuildOnWindows page. It was a pleasure following such clear, detailed instructions. I have attempted to install MinGW before for other tools, but always failed;

guitone win32 binaries Was: Re: [Monotone-devel] [ANN] guitone-0.6 released

2007-04-14 Thread Thomas Keller
Hi! It took some time, but thanks to Jean-Louis we have now win32 binaries of guitone 0.6: http://guitone.thomaskeller.biz/count.php/0.6/guitone-0.6.zip Thomas. -- ICQ: 85945241 | SIP: 1-747-027-0392 | http://www.thomaskeller.biz Guitone, a frontend for monotone:

Re: [Monotone-devel] Please review quickly [Fwd: [bug #19137] permissions on ~/.monotone/keys/ are too permissive]

2007-04-14 Thread Stephen Leake
Nathaniel Smith [EMAIL PROTECTED] writes: On Wed, Apr 11, 2007 at 08:16:38PM +0200, Markus Schiltknecht wrote: --- key_store.cc70b97a9e2a06654ec641a1709c2a875cdfa603d5 +++ key_store.ccfda46d5fa8a5b2a52421c1f83413a208e2c6401f @@ -1,4 +1,5 @@ #include sstream +#include

Re: [Monotone-devel] Please review quickly [Fwd: [bug #19137] permissions on ~/.monotone/keys/ are too permissive]

2007-04-14 Thread Nathaniel Smith
On Sat, Apr 14, 2007 at 01:27:33PM -0400, Stephen Leake wrote: This is my first time compiling monotone. Looking thru other code, it seems the correct fix might be: [...] +#ifndef WIN32 + // umask not in MinGW. We assume MinGW boxes have single users, so + // this doesn't matter. mode_t

Re: [Monotone-devel] Using monotone via USB flash drive

2007-04-14 Thread Stephen Leake
Timothy Brownawell [EMAIL PROTECTED] writes: On Sat, 2007-04-14 at 09:46 -0400, Stephen Leake wrote: To sync the central database with a non-networked target system: 1) Install the USB drive in a developer machine, and sync the developer's local database with it. 2) Install the USB

Re: [Monotone-devel] Fatal error: std::runtime_error

2007-04-14 Thread Jens Seidel
On Fri, Apr 13, 2007 at 10:34:25PM +0200, Jens Seidel wrote: On Wed, Apr 11, 2007 at 04:16:07PM +0200, Markus Schiltknecht wrote: I tried this with version 0.34 on one of my mips boxes. The error occurred multiple times after fetching approximately 60 revisions. the host before the

Re: [Monotone-devel] Please review quickly [Fwd: [bug #19137] permissions on ~/.monotone/keys/ are too permissive]

2007-04-14 Thread Zack Weinberg
On 4/14/07, Nathaniel Smith [EMAIL PROTECTED] wrote: [...] ...Except that the unix version needs a field in there to temporarily stash the old umask. After a little more looking around, it might be far smarter to use fchmod(2) (inside an appropriate platform.hh wrapper, of course) than to mess