Re: [fossil-users] How to ignore UNIX executables?

2013-08-17 Thread Michael Richter
On 15 August 2013 21:23, John Long codeb...@inbox.lv wrote:

 Hi, is it possible to ignore UNIX executables? I want to do an addr on a
 directory tree but I don't know how to tell fossil not to track the
 binaries
 since they have no naming pattern. Until now I've been living with it but
 it
 is very annoying and time for me to ask. Help!


You can always use Marc Simpson's fsl
http://fossil.0branch.com/fsl/homewrapper script around fossil to do
whatever workflow you like.  If you need
help writing a script for this, drop me a line and I'll gladly work one out
with you.

-- 
Perhaps people don't believe this, but throughout all of the discussions
of entering China our focus has really been what's best for the Chinese
people. It's not been about our revenue or profit or whatnot.
--Sergey Brin, demonstrating the emptiness of the don't be evil mantra.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] How to ignore UNIX executables?

2013-08-17 Thread Michael Richter
On 15 August 2013 21:23, John Long codeb...@inbox.lv wrote:

 Hi, is it possible to ignore UNIX executables? I want to do an addr on a
 directory tree but I don't know how to tell fossil not to track the
 binaries
 since they have no naming pattern. Until now I've been living with it but
 it
 is very annoying and time for me to ask. Help!


You can always use Marc Simpson's fsl
http://fossil.0branch.com/fsl/homewrapper script around fossil to do
whatever workflow you like.  If you need
help writing a script for this, drop me a line and I'll gladly work one out
with you.

-- 
Perhaps people don't believe this, but throughout all of the discussions
of entering China our focus has really been what's best for the Chinese
people. It's not been about our revenue or profit or whatnot.
--Sergey Brin, demonstrating the emptiness of the don't be evil mantra.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] no rule to make manifest.uuid

2013-08-17 Thread Stephan Beal
Hi, all,

i haven't seen this error in years and don't quite know what triggered it,
but i'm looking for a workaround:

When building fossil:

make: *** No rule to make target `src/../manifest.uuid', needed by
`bld/VERSION.h'.  Stop.

The gag is, i can no longer check out because i did a clean rebuild and
have only 1 copy of the binary.

i'm using (i have determined only with the help of the sqlite shell)
76d901ddb9 (from yesterday).

i thought this only happened when manifest generation is enabled, but:

sqlite .h on
sqlite select * from config where name like 'mani%';
name|value|mtime
manifest|0|1376582005

Time to go download the pre-build binary :/.

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] no rule to make manifest.uuid

2013-08-17 Thread Richard Hipp
On Sat, Aug 17, 2013 at 8:03 AM, Stephan Beal sgb...@googlemail.com wrote:

 Hi, all,

 i haven't seen this error in years and don't quite know what triggered it,
 but i'm looking for a workaround:

 When building fossil:

 make: *** No rule to make target `src/../manifest.uuid', needed by
 `bld/VERSION.h'.  Stop.



fossil setting manifest on




 The gag is, i can no longer check out because i did a clean rebuild and
 have only 1 copy of the binary.

 i'm using (i have determined only with the help of the sqlite shell)
 76d901ddb9 (from yesterday).

 i thought this only happened when manifest generation is enabled, but:

 sqlite .h on
 sqlite select * from config where name like 'mani%';
 name|value|mtime
 manifest|0|1376582005

 Time to go download the pre-build binary :/.

 --
 - stephan beal
 http://wanderinghorse.net/home/stephan/
 http://gplus.to/sgbeal

 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users




-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] Config import doesn't update ticket schema

2013-08-17 Thread David Given
I've finally gotten around to tracking down a problem I ran across a while
back but never, er, tracked down.

What happens is that if I export a config from a repo with a customised
ticket schema, then when the config is imported into another repo, the
schema does not take effect. (But any ticket report formats which use that
schema do take effect, which leads to errors.)

Looking at the code, when the schema is updated from the web UI, what seems
to happen is:

(a) the ticket-table variable is changed to the new value
(b) ticket_build() is called to actually change the db schema and do any
processing necessary to update the tickets.

However, when the config is imported, only the variables are updated;
ticket_build() is not (or, at least, does not *appear* to be) called.

I have tried the naive thing of adding a call to ticket_build() just after
the call to configure_receive_all(), but that just errors out with
SQLITE_SCHEMA errors --- which is weird, because the sqlite docs say firmly
that this shouldn't happen if you use sqlite_prepare_v2(), which fossil
does.

So what's the appropriate thing to do here? This is all getting into
infrastructure and policy stuff that's hard to figure out from looking at
the code.

-- 
┌─── dg@cowlark.com ─ http://www.cowlark.com ─
│ USER'S MANUAL VERSION 1.0: The information presented in this
│ publication has been carefully for reliability. --- anonymous
│ computer hardware manual
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] how to find a delta manifest?

2013-08-17 Thread Stephan Beal
Hi, all,

i'm looking for food for a test app and i'm trying to find a way to
discover which manifests are delta manifests (i need some for testing). i
naively assumed that most manifests would be deltas, but searching through
my timeline i have yet to find a manifest link with a B card.

Is there a query i can use to discover the RIDs or UUIDs of delta manifest
blobs?

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] how to find a delta manifest?

2013-08-17 Thread Richard Hipp
On Sat, Aug 17, 2013 at 12:06 PM, Stephan Beal sgb...@googlemail.comwrote:

 Hi, all,

 i'm looking for food for a test app and i'm trying to find a way to
 discover which manifests are delta manifests (i need some for testing). i
 naively assumed that most manifests would be deltas, but searching through
 my timeline i have yet to find a manifest link with a B card.

 Is there a query i can use to discover the RIDs or UUIDs of delta manifest
 blobs?



I think the Tcl/Tk repositories at http://core.tcl.tk/ are full of delta
manifests.

-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] how to find a delta manifest?

2013-08-17 Thread Stephan Beal
On Sat, Aug 17, 2013 at 6:34 PM, Richard Hipp d...@sqlite.org wrote:

 I think the Tcl/Tk repositories at http://core.tcl.tk/ are full of delta
 manifests.


Thanks :). Cloning started, but this one will take a while (i need the
clone because i'm testing the traversal of baseline manifests).

They've got a pretty timeline:

http://core.tcl.tk/tcl/timeline?y=ci

You were right - i hit one on the first try!

http://core.tcl.tk/tcl/artifact/5f37dcc36468eaa8

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] how to find a delta manifest?

2013-08-17 Thread Stephan Beal
On Sat, Aug 17, 2013 at 6:50 PM, Stephan Beal sgb...@googlemail.com wrote:

 http://core.tcl.tk/tcl/artifact/5f37dcc36468eaa8


i deconstructed the fossil repo and found not a single B card(!). i aborted
the deconstruct of the tcl repo at 11% and already had 9521 one of them.

What makes tcl so special in this regard?

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] How to ignore UNIX executables?

2013-08-17 Thread John Long
On Sat, Aug 17, 2013 at 03:11:34PM +0800, Michael Richter wrote:
 On 15 August 2013 21:23, John Long codeb...@inbox.lv wrote:
 
  Hi, is it possible to ignore UNIX executables? I want to do an addr on a
  directory tree but I don't know how to tell fossil not to track the
  binaries
  since they have no naming pattern. Until now I've been living with it but
  it
  is very annoying and time for me to ask. Help!
 
 
 You can always use Marc Simpson's fsl
 http://fossil.0branch.com/fsl/homewrapper script around fossil to do
 whatever workflow you like.  If you need
 help writing a script for this, drop me a line and I'll gladly work one out
 with you.

I'll look at this link and thanks for the offer :-)

/jl

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] no rule to make manifest.uuid

2013-08-17 Thread Andy Bradford
Thus said Stephan Beal on Sat, 17 Aug 2013 14:03:45 +0200:

 When building fossil:
 
 make: *** No rule to make target `src/../manifest.uuid', needed by
 `bld/VERSION.h'.  Stop.

I  usually encounter  this when  I move  the manifest*  files to  open a
different repository in  the same directory and then forget  to put them
back.

Andy
-- 
TAI64 timestamp: 4000521007b8


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] SSH milestone: streamlined SSH connection and compatibility

2013-08-17 Thread Andy Bradford
Hello,

I've just  committed code that will  cause the SSH client  and server to
use a single  SSH connection, rather than spawning a  new connection for
each Round-trip. This makes it significantly more performant as it is no
longer required to open up  multiple connections. It will obviously only
work if  the fossil binaries  both support it,  but it will  fallback to
single connection per Round-trip if necessary.

I  also added  some  backwards compatibility  handling  for old  Fossil 
SSH  clients  that still  use  the  Shell  probing mechanism.  The  new 
fossil  SSH  server code  will  detect  the  ``echo test''  and  ``echo 
probe-'' messages  and move  the client 
along until it can  get to speaking HTTP. 

I think this pretty much wraps up  what I wanted to accomplish. If there
are any additional suggestions, please feel free to make them.

http://www.fossil-scm.org/index.html/info/f0bb3c9b5a

Andy

-- 
TAI64 timestamp: 400052100db1


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] how to find a delta manifest?

2013-08-17 Thread Kevin Kenny

On 08/17/2013 02:36 PM, Stephan Beal wrote:
On Sat, Aug 17, 2013 at 6:50 PM, Stephan Beal sgb...@googlemail.com 
mailto:sgb...@googlemail.com wrote:


http://core.tcl.tk/tcl/artifact/5f37dcc36468eaa8


i deconstructed the fossil repo and found not a single B card(!). i 
aborted the deconstruct of the tcl repo at 11% and already had 9521 
one of them.


What makes tcl so special in this regard?

--
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal


___
The effects of cvs2fossil, perhaps? Tcl's history goes back long before 
its use of Fossil.


--
73 de ke9tv/2, Kevin

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users