Re: [fossil-users] fossil-users Digest, Vol 38, Issue 32

2011-03-13 Thread Kees Nuyt

On Sun, 13 Mar 2011 08:31:22 +0800, quanguizeng wrote:

 Hello, I am a newer of SQLite, I have a problem,
 how can I learn the source of SQLite?

The source is available in a fossil repository.
Hyperlinks to it are at the bottom of the download page.
http://www.sqlite.org/download.html

SQLite has its own mailing list.
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


 When replying, please edit your Subject line so it is more specific
 than Re: Contents of fossil-users digest...

... and please remove any text you are not replying to.
-- 
  (  Kees Nuyt
  )
c[_]
___
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] Multiple Repos: single sign on

2011-03-13 Thread Ron Wilson
On Sat, Mar 12, 2011 at 9:36 PM, Nathaniel R. Reindl n...@corvidae.org wrote:
 The only problem with this is that an HTTP client will implement
 internal session handling inconsistently from another HTTP client.
 The implication of this is that, while you can log in using basic or
 digest HTTP authentication -- whether over SSL or otherwise -- you
 lack the ability to log out.

If clients are violating the rules of HTTP Digest Authentication, then
I suppose it would be necessary to implement an alternate
authentication extension for the webserver.

Either that or enhance Fossil to provide a means for multiple
repositories on the same server to share authentication credentials.
___
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] Howto construct a download url for the latest file in a repository?

2011-03-13 Thread David Bovill
The zip file is for the entire checkout - any way to download the latest
version of a single file without referring to a particular version with a
sha1?

If not how can I deduce the sha1 of the latest commit of a given file based
on parsing the output of fossil shell commands?

On 12 March 2011 22:57, Richard Hipp d...@sqlite.org wrote:

 Hi Richard - the above style url, or  
 http://.../raw/libOPN_IRC.livecode?name=tip
 leads to an http download of the manifest file, not that actual file the
 manifest refers to. Any other thoughts?



 http://.../zip/checkout.zip?name=trunk

___
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] Howto construct a download url for the latest file in a repository?

2011-03-13 Thread Mark Janssen
To get the trunk version of file webui.wiki, you can use (in bash):

$ fossil artifact `fossil artifact $(fossil info trunk | grep uuid | tr -s 
 | cut -d  -f2) | grep webui.wiki | cut -d  -f3`

What it does is:
Get uuid of the last trunk commit. Then get the manifest for that commit.
Then check the uuid of the file we are interested in. Then get that file.
Note that this might break in case of delta manifests. That will require
more work, but the principle will stay the same.

Mark

On Sun, Mar 13, 2011 at 1:24 PM, David Bovill da...@architex.tv wrote:

 The zip file is for the entire checkout - any way to download the latest
 version of a single file without referring to a particular version with a
 sha1?

 If not how can I deduce the sha1 of the latest commit of a given file based
 on parsing the output of fossil shell commands?


 On 12 March 2011 22:57, Richard Hipp d...@sqlite.org wrote:

 Hi Richard - the above style url, or  
 http://.../raw/libOPN_IRC.livecode?name=tip
 leads to an http download of the manifest file, not that actual file the
 manifest refers to. Any other thoughts?



 http://.../zip/checkout.zip?name=trunk


 ___
 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] do I need a fossil server?

2011-03-13 Thread trash
Hi,

I have a general question about fossil and maybe even scm.

I’d like to setup fossil for a very small in-house team (1 to 3 people). 
There’s no need ever for having outside access, everything is private, 
firewalled and trusted. So I was wondering if I can create a repository on a 
file server, e.g //server/test.fossil

user1 is then doing: fossil open //server/test.fossil
same for user2: fossil open //server/test.fossil

Nobody ever does ‘clone’ and there’s no repository server involved, not ports 
and URL and what not.
I tried it with a few files and it seems to work fine, but I’m not sure if I’m 
missing something. 

I guess what I’m giving up is for every user to having his own private local 
repository, but does that matter ?

I’d like to hear from experienced scm people, a little bit philosophy maybe, a 
little bit of advice.

Thank you very much.
ds
___
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] do I need a fossil server?

2011-03-13 Thread Richard Hipp
On Sun, Mar 13, 2011 at 5:46 PM, tr...@tekwissusa.com wrote:

   Hi,

 I have a general question about fossil and maybe even scm.

 I’d like to setup fossil for a very small in-house team (1 to 3 people).
 There’s no need ever for having outside access, everything is private,
 firewalled and trusted. So I was wondering if I can create a repository on a
 file server, e.g //server/test.fossil

 user1 is then doing: fossil open //server/test.fossil
 same for user2: fossil open //server/test.fossil

 Nobody ever does ‘clone’ and there’s no repository server involved, not
 ports and URL and what not.
 I tried it with a few files and it seems to work fine, but I’m not sure if
 I’m missing something.


This will work fine with Fossil, since Fossil allows multiple checkouts from
the same repository.   With other DVCSes, your mileage may vary.



 I guess what I’m giving up is for every user to having his own private
 local repository, but does that matter ?


It might matter to you if the central repository file gets accidently erased
or destroyed due to (for example) a disk crash.  With each person having
their own repository, if one repository gets trashed by a system
malfunction, you can easily replace it with any of the others.

On the SQLite project (and on Fossil itself) we keep three separate
automatically synchronizing Fossil repositories, each on geographically
distributed data centers managed by different hosting companies.  This gives
us a high level of confident that the code will survive a catastrophe.  If
all your data is on the disk drive of the file server down the hall, you
don't have that same level of survivability.  I do not know if that is
important to you or not




 I’d like to hear from experienced scm people, a little bit philosophy
 maybe, a little bit of advice.

 Thank you very much.
 ds


 ___
 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] Client certificate for https?

2011-03-13 Thread Jan Danielsson
Hello,

   How does one specify which client certificate fossil should use when
connecting to a https server?

-- 
Kind regards,
Jan Danielsson




signature.asc
Description: OpenPGP digital signature
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users