Re: [fossil-users] does fossil rstats exist?

2015-02-21 Thread jungle Boogie
Dr. Hipp,
On 21 February 2015 at 13:41, Richard Hipp d...@sqlite.org wrote:
 Note the date in the URL.  You are looking at 5-year-old
 documentation.  It's out-of-date.

No problem! Stephan pointed me to the correct command to use--dbstat
http://www.fossil-scm.org/index.html/help?cmd=dbstat

Thanks, Stephan!


-- 
---
inum: 883510009027723
sip: jungleboo...@sip2sip.info
xmpp: jungle-boo...@jit.si
___
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] does fossil rstats exist?

2015-02-21 Thread Stephan Beal
On Sat, Feb 21, 2015 at 9:34 PM, jungle Boogie jungleboog...@gmail.com
wrote:

 Link to the page regarding it is broken:
 http://www.fossil-scm.org/index.html/doc/2010-01-01/www/cmd_rstats.wiki

 and it doesn't work as a command:
 % fossil rstats
 fossil: unknown command: rstats
 fossil: use help for more information



Try 'dbstat' - that might give you the info you want.


 SQLITE_READONLY: statement aborts at 44: [CREATE TABLE IF NOT EXISTS
 vcache( vid INTEGER, -- checkin ID fname TEXT, -- filename rid
 INTEGER, -- artifact ID PRIMARY KEY(vid,fname) ) WITHOUT ROWI
 Database Error
 attempt to write a readonly database: {CREATE TABLE IF NOT EXISTS

...

 Any clues on how I can clear this up? I've cloned the entire fossil
 repo again and again but the same problem occurs.


Your db _and_ the directory it lives in must be writable to your server
process. Yours is apparently not. Make both writable to the server process
and this should go away.

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
Freedom is sloppy. But since tyranny's the only guaranteed byproduct of
those who insist on a perfect world, freedom will have to do. -- Bigby Wolf
___
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] does fossil rstats exist?

2015-02-21 Thread jungle Boogie
Hi Matt,
On 21 February 2015 at 14:50, Matt Welland mattrwell...@gmail.com wrote:
 Secondly, can you check out a specific file on a repo if you give a
 path? I knwo checkout but that requires a version number.

 The cat command might do what you want:

 fossil cat -r dev_branch src/readme.txt  readme.txt


This seems like what I would do if I have a repo checked out. What if
I'm browsing your repo and there's only a couple files I want to
download.
I think svn has something like like svn export where I can do this. Do
you know if something like this in fossil exists or would you obtain
the full repo?

Have a great weekend!


-- 
---
inum: 883510009027723
sip: jungleboo...@sip2sip.info
xmpp: jungle-boo...@jit.si
___
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] does fossil rstats exist?

2015-02-21 Thread Matt Welland
On Feb 21, 2015 1:34 PM, jungle Boogie jungleboog...@gmail.com wrote:

 Hello All,

 Came across this docs page today:
 http://www.fossil-scm.org/index.html/doc/2010-01-01/www/reference.wiki

 It references something I've never heard of, rstats:
   Deliver a report of the repository statistics for the
 current checkout.

 Link to the page regarding it is broken:
 http://www.fossil-scm.org/index.html/doc/2010-01-01/www/cmd_rstats.wiki

 and it doesn't work as a command:
 % fossil rstats
 fossil: unknown command: rstats
 fossil: use help for more information


 Secondly, can you check out a specific file on a repo if you give a
 path? I knwo checkout but that requires a version number.

The cat command might do what you want:

fossil cat -r dev_branch src/readme.txt  readme.txt


 finally, I attempting to edit www/stats.wiki but did it wrong and now
 my local repo reports:

 SQLITE_READONLY: statement aborts at 44: [CREATE TABLE IF NOT EXISTS
 vcache( vid INTEGER, -- checkin ID fname TEXT, -- filename rid
 INTEGER, -- artifact ID PRIMARY KEY(vid,fname) ) WITHOUT ROWI
 Database Error
 attempt to write a readonly database: {CREATE TABLE IF NOT EXISTS
 vcache( vid INTEGER, -- checkin ID fname TEXT, -- filename rid
 INTEGER, -- artifact ID PRIMARY KEY(vid,fname) ) WITHOUT ROWID}

 Any clues on how I can clear this up? I've cloned the entire fossil
 repo again and again but the same problem occurs.

 Thanks!


 --
 ---
 inum: 883510009027723
 sip: jungleboo...@sip2sip.info
 xmpp: jungle-boo...@jit.si
 ___
 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


Re: [fossil-users] does fossil rstats exist?

2015-02-21 Thread Matt Welland
On Feb 21, 2015 6:23 PM, jungle Boogie jungleboog...@gmail.com wrote:

 Hi Matt,
 On 21 February 2015 at 14:50, Matt Welland mattrwell...@gmail.com wrote:
  Secondly, can you check out a specific file on a repo if you give a
  path? I knwo checkout but that requires a version number.
 
  The cat command might do what you want:
 
  fossil cat -r dev_branch src/readme.txt  readme.txt


 This seems like what I would do if I have a repo checked out. What if
 I'm browsing your repo and there's only a couple files I want to
 download.
 I think svn has something like like svn export where I can do this. Do
 you know if something like this in fossil exists or would you obtain
 the full repo?

If you have the fossil cloned:

fossil cat src/readme.txt -R myfossil.fossil

Otherwise from the ui you can download files or the entire repo as a zip or
tar.

Keep digging around, you'll find it.


 Have a great weekend!


 --
 ---
 inum: 883510009027723
 sip: jungleboo...@sip2sip.info
 xmpp: jungle-boo...@jit.si
 ___
 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


Re: [fossil-users] does fossil rstats exist?

2015-02-21 Thread jungle Boogie
Hi Matt,
On 21 February 2015 at 19:56, Matt Welland mattrwell...@gmail.com wrote:
 I think svn has something like like svn export where I can do this. Do
 you know if something like this in fossil exists or would you obtain
 the full repo?

 If you have the fossil cloned:

 fossil cat src/readme.txt -R myfossil.fossil

 Otherwise from the ui you can download files or the entire repo as a zip or
 tar.

 Keep digging around, you'll find it.


Yes, indeed! Found this:
https://stackoverflow.com/questions/21027425/fossil-scm-pulling-only-a-specific-file

http://server/doc/version/path-to-file



-- 
---
inum: 883510009027723
sip: jungleboo...@sip2sip.info
xmpp: jungle-boo...@jit.si
___
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 extras files when built with mingw32-4.0-gcc-4.8.1

2015-02-21 Thread Tontyna

Switched to MinGW-w64 -- works like a charm. Thanks.

 See also:
 https://www.fossil-scm.org/index.html/tktview/18cff45a4e210430e24c

Oh my! I saw that ticket but filed it under Windows XP -- who cares?.

If I had a Fossil-Login with edit rights I'd put a warning about MinGW 
4.0 in the Wiki

https://www.fossil-scm.org/index.html/doc/trunk/www/build.wiki

___
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


Re: [fossil-users] does fossil rstats exist?

2015-02-21 Thread Richard Hipp
On 2/21/15, jungle Boogie jungleboog...@gmail.com wrote:
 Hello All,

 Came across this docs page today:
 http://www.fossil-scm.org/index.html/doc/2010-01-01/www/reference.wiki

Note the date in the URL.  You are looking at 5-year-old
documentation.  It's out-of-date.

-- 
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] does fossil rstats exist?

2015-02-21 Thread jungle Boogie
Hello All,

Came across this docs page today:
http://www.fossil-scm.org/index.html/doc/2010-01-01/www/reference.wiki

It references something I've never heard of, rstats:
  Deliver a report of the repository statistics for the
current checkout.

Link to the page regarding it is broken:
http://www.fossil-scm.org/index.html/doc/2010-01-01/www/cmd_rstats.wiki

and it doesn't work as a command:
% fossil rstats
fossil: unknown command: rstats
fossil: use help for more information


Secondly, can you check out a specific file on a repo if you give a
path? I knwo checkout but that requires a version number.

finally, I attempting to edit www/stats.wiki but did it wrong and now
my local repo reports:

SQLITE_READONLY: statement aborts at 44: [CREATE TABLE IF NOT EXISTS
vcache( vid INTEGER, -- checkin ID fname TEXT, -- filename rid
INTEGER, -- artifact ID PRIMARY KEY(vid,fname) ) WITHOUT ROWI
Database Error
attempt to write a readonly database: {CREATE TABLE IF NOT EXISTS
vcache( vid INTEGER, -- checkin ID fname TEXT, -- filename rid
INTEGER, -- artifact ID PRIMARY KEY(vid,fname) ) WITHOUT ROWID}

Any clues on how I can clear this up? I've cloned the entire fossil
repo again and again but the same problem occurs.

Thanks!


-- 
---
inum: 883510009027723
sip: jungleboo...@sip2sip.info
xmpp: jungle-boo...@jit.si
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users