[fossil-users] Problem with "fossil winsrv"

2012-06-05 Thread Richie Adler
When creating a new Fossil service, the command

  fossil winsrv create Tickets ...

doesn't create a service called "Tickets", but a service called "Fossil-DSCM".
There's no way to change the low-level service name. This is not the
documented behaviour, when the service name is supposed to be the one
specified in the command line.

Tested in Win2000 and WinXP.

-- 

   o-=< Marcelo >=-o
___
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] send mail on checkin?

2012-06-05 Thread Matt Welland
On Tue, Jun 5, 2012 at 11:39 AM, Jeremy Anderson  wrote:

> Something my team finds useful at work is a way to send "checkin mail" -
> an automated email that is fired off by our old SCM (or a companion
> process) to a specific email list address (which users can sub/unsub from
> to opt in/out) which describes the change (including the changelist number,
> the comments, and the files modified).
>
> Does fossil have anything like this that can be configured on one of the
> instances (e.g, in our topology, we have a single fossil "server" which
> runs Fossil as a service. everyone clones their individual developer repo's
> from it and syncs to it. this central Fossil instance would be the ideal
> entity to monitor changes from and to send email as a result).
>

An alternative possibility for your consideration

We thought we needed the same thing for our team, email notification on
various events such as commit. Then we took a look at the rss capability of
fossil and quickly realized that the rss feed is far superior to triggered
emails. Same data, same granularity, much better management of the
information, zero setup cost, zero maintenance of scripts etc.

If your repo is at http://host.dom/fossils/myfossil then add
http://host.dom/fossils/myfossil/timeline.rss to your rss reader (we are
using outlook which seems to work fine).


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


[fossil-users] send mail on checkin?

2012-06-05 Thread Jeremy Anderson
Something my team finds useful at work is a way to send "checkin mail" - an
automated email that is fired off by our old SCM (or a companion process)
to a specific email list address (which users can sub/unsub from to opt
in/out) which describes the change (including the changelist number, the
comments, and the files modified).

Does fossil have anything like this that can be configured on one of the
instances (e.g, in our topology, we have a single fossil "server" which
runs Fossil as a service. everyone clones their individual developer repo's
from it and syncs to it. this central Fossil instance would be the ideal
entity to monitor changes from and to send email as a result).

Thanks!

-jer
___
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] errors with configure

2012-06-05 Thread Lluís Batlle i Rossell
On Tue, Jun 05, 2012 at 05:21:48PM +0300, Baruch Burstein wrote:
> I am trying to build fossil from sources. I am using the source for version
> 1.22, on a Linux Mint 64 bit machine. I compiled and installed OpenSSL
> myself (not from the package manager). When running configure, I get an
> error that OpenSSL not found.

/usr/local/lib and /usr/local/include is not checked by default by gcc. You'll
need to pass -I/usr/local/include and -L/usr/local/lib where needed.
___
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] errors with configure

2012-06-05 Thread Baruch Burstein
On Tue, Jun 5, 2012 at 5:25 PM, Stephan Beal  wrote:

> Hi!
>
> The U flag in the output means that SSL_new is unresolved,  doesn't it?
>
I don't really know. I just assumed that if it is listed with nm, it is
there.


> On Jun 5, 2012 4:22 PM, "Baruch Burstein"  wrote:
>
>> I am trying to build fossil from sources. I am using the source for
>> version 1.22, on a Linux Mint 64 bit machine. I compiled and installed
>> OpenSSL myself (not from the package manager). When running configure, I
>> get an error that OpenSSL not found.
>> I edited auto.def to see which of the 2 checks fails ( [cc-check-includes
>> openssl/ssl.h] or [cc-check-functions SSL_new] ) and it is the second (when
>> I remove it OpenSSL is found).
>> So it seems that the function SSL_new is not found in the libs, but when
>> I run `nm /usr/local/lib/libssl.a | grep SSL_new` I do get:
>> 0680 T SSL_new
>>  U SSL_new
>>
>> So why is it failing to find it?
>>
>>
>> --
>> ˙uʍop-ǝpısdn sı ɹoʇıuoɯ ɹnoʎ 'sıɥʇ pɐǝɹ uɐɔ noʎ ɟı
>>
>>
>> ___
>> fossil-users mailing list
>> fossil-users@lists.fossil-scm.org
>> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
>>
>>
> ___
> fossil-users mailing list
> fossil-users@lists.fossil-scm.org
> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
>
>


-- 
˙uʍop-ǝpısdn sı ɹoʇıuoɯ ɹnoʎ 'sıɥʇ pɐǝɹ uɐɔ noʎ ɟı
___
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] errors with configure

2012-06-05 Thread Stephan Beal
Hi!

The U flag in the output means that SSL_new is unresolved,  doesn't it?
On Jun 5, 2012 4:22 PM, "Baruch Burstein"  wrote:

> I am trying to build fossil from sources. I am using the source for
> version 1.22, on a Linux Mint 64 bit machine. I compiled and installed
> OpenSSL myself (not from the package manager). When running configure, I
> get an error that OpenSSL not found.
> I edited auto.def to see which of the 2 checks fails ( [cc-check-includes
> openssl/ssl.h] or [cc-check-functions SSL_new] ) and it is the second (when
> I remove it OpenSSL is found).
> So it seems that the function SSL_new is not found in the libs, but when I
> run `nm /usr/local/lib/libssl.a | grep SSL_new` I do get:
> 0680 T SSL_new
>  U SSL_new
>
> So why is it failing to find it?
>
>
> --
> ˙uʍop-ǝpısdn sı ɹoʇıuoɯ ɹnoʎ 'sıɥʇ pɐǝɹ uɐɔ noʎ ɟı
>
>
> ___
> fossil-users mailing list
> fossil-users@lists.fossil-scm.org
> http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
>
>
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] errors with configure

2012-06-05 Thread Baruch Burstein
I am trying to build fossil from sources. I am using the source for version
1.22, on a Linux Mint 64 bit machine. I compiled and installed OpenSSL
myself (not from the package manager). When running configure, I get an
error that OpenSSL not found.
I edited auto.def to see which of the 2 checks fails ( [cc-check-includes
openssl/ssl.h] or [cc-check-functions SSL_new] ) and it is the second (when
I remove it OpenSSL is found).
So it seems that the function SSL_new is not found in the libs, but when I
run `nm /usr/local/lib/libssl.a | grep SSL_new` I do get:
0680 T SSL_new
 U SSL_new

So why is it failing to find it?


-- 
˙uʍop-ǝpısdn sı ɹoʇıuoɯ ɹnoʎ 'sıɥʇ pɐǝɹ uɐɔ noʎ ɟı
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users