Re: [fossil-users] Fossil version 1.31 testing

2015-02-23 Thread Joe Prostko
On Mon, Feb 23, 2015 at 9:09 PM, Richard Hipp  wrote:
> On 2/23/15, Joe Prostko  wrote:
>> On Mon, Feb 23, 2015 at 1:16 PM, Richard Hipp  wrote:
>>> New tarball with the missing files has been uploaded.
>>
>> Are you sure about that?
>
> Uploaded yet again.  Please retry.

Confirmed working.  Thank you!

- joe
___
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] Fossil version 1.31 testing

2015-02-23 Thread Richard Hipp
On 2/23/15, Joe Prostko  wrote:
> On Mon, Feb 23, 2015 at 1:16 PM, Richard Hipp  wrote:
>> New tarball with the missing files has been uploaded.
>
> Are you sure about that?

Uploaded yet again.  Please retry.

-- 
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] Fossil version 1.31 testing

2015-02-23 Thread Joe Prostko
On Mon, Feb 23, 2015 at 8:04 PM, Joe Prostko  wrote:

> same error as previously mentioned.  This is the source tar.gz in
> question: https://www.fossil-scm.org/download/fossil-src-20150223162734.tar.gz

As an FYI, the sha1sum matches what is reported on the website at
http://www.hwaci.com/fossil_download_checksums.html .  That said, I
still see the build failure.

[jprostko@galago Downloads]$ sha1sum fossil-src-20150223162734.tar.gz
8fbde3f48f10cf128c902035aaa6aae06e869098  fossil-src-20150223162734.tar.gz


- joe
___
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] Fossil version 1.31 testing

2015-02-23 Thread Joe Prostko
On Mon, Feb 23, 2015 at 1:16 PM, Richard Hipp  wrote:
> New tarball with the missing files has been uploaded.

Are you sure about that?  I tried buliding on two separate OS's now
(Manjaro Linux and Haiku) and it fails to build with either with the
same error as previously mentioned.  This is the source tar.gz in
question: https://www.fossil-scm.org/download/fossil-src-20150223162734.tar.gz

Here is the build failure which occurs after ./configure and make:

cc -o bld/mkbuiltin ./src/mkbuiltin.c
bld/mkbuiltin --prefix ./src/ ./src/../skins/black_and_white/css.txt
./src/../skins/black_and_white/footer.txt
./src/../skins/black_and_white/header.txt
./src/../skins/default/css.txt ./src/../skins/default/footer.txt
./src/../skins/default/header.txt ./src/../skins/eagle/css.txt
./src/../skins/eagle/footer.txt ./src/../skins/eagle/header.txt
./src/../skins/enhanced1/css.txt ./src/../skins/enhanced1/footer.txt
./src/../skins/enhanced1/header.txt ./src/../skins/etienne1/css.txt
./src/../skins/etienne1/footer.txt ./src/../skins/etienne1/header.txt
./src/../skins/khaki/css.txt ./src/../skins/khaki/footer.txt
./src/../skins/khaki/header.txt ./src/../skins/plain_gray/css.txt
./src/../skins/plain_gray/footer.txt
./src/../skins/plain_gray/header.txt ./src/../skins/rounded1/css.txt
./src/../skins/rounded1/footer.txt ./src/../skins/rounded1/header.txt
./src/diff.tcl ./src/markdown.md >bld/builtin_data.h
cc -o bld/makeheaders ./src/makeheaders.c
make: *** No rule to make target 'src/../manifest.uuid', needed by
'bld/VERSION.h'.  Stop.


- joe
___
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] Fossil version 1.31 testing

2015-02-23 Thread Marcel Graf
On Mon, Feb 23, 2015 at 5:23 PM, Marcel Graf 
wrote:

>
> > This first appears with checkin 7478f9974c6320e4c942b7808ca393fa1540d871
>> >
>>
>> I was unable to recreate this problem.
>
> Maybe I was not too clear in the description. But I was able to recreate
> it with the following few lines, all using fossil version 1.31 [858dcc2c19]:
>
> fossil init -A myself repo/tree-dir-test.fossil
> mkdir tree-dir-test.fossil
> cd tree-dir-test.fossil
> fossil open ../repo/tree-dir-test.fossil
> echo foo > a.txt
> fossil add a.txt
> fossil ci --user myself -m 'foo into a.txt'
> mv a.txt b.txt
> fossil mv a.txt b.txt
> fossil ci --user myself -m 'rename a.txt to b.txt'
> Viewing this by means of CGI like
>
> #!/path/to/fossil
> directory: /abs/path/to/repo-dir/
> the "Files" Tab in the main menu links to /tree?ci=tip, once on that page
> the [Tree-View]-button links to /dir?type=tree and shows all checkins and
> files (a.txt and b.txt).
> Changing the skin to "San Francisco Modern", the "Files" Tab in the main
> menu links to /dir?ci=tip, but again, once on that page the
> [Tree-View]-button links to /dir?type=tree, missing something like &ci=tip
>
> If I use as CGI like
>
> #!/path/to/fossil
> directory: /abs/path/to/repo-dir/tree-dir-test.fossil
> I have to check for fossil ui with that repository later on ... but the
> first time I noticed the "bad" behavior was using fossil ui
> /abs/path/to/repo.fossil
>

ok, the thing appears to be rather random - sometimes it adding some dots
or slashes to the repository path in fossil ui
../path/./to/repo/repo.fossil triggers it ...

But anyway, I think I found the problem: /tree and /dir use
cgi_query_parameters_to_url (in cgi.c) to get the query_string. And in
cgi_query_parameters_to_url, parameters with cTag set are skipped. But I
found no place where cTag would get proper initialization - so it sometimes
has a random value != 0 and gets excluded ...

This trivial patch fixes it for me:
--- src/cgi.c
+++ src/cgi.c
@@ -465,10 +465,11 @@
   if( g.fHttpTrace ){
 fprintf(stderr, "# cgi: %s = [%s]\n", zName, zValue);
   }
   aParamQP[nUsedQP].seq = seqQP++;
   aParamQP[nUsedQP].isQP = isQP;
+  aParamQP[nUsedQP].cTag = 0;
   nUsedQP++;
   sortQP = 1;
 }

 /*
___
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] Fossil version 1.31 testing

2015-02-23 Thread jungle Boogie
On 17 February 2015 at 15:55, Richard Hipp  wrote:
> I'd like to release Fossil version 1.31 soon.  Before the end of
> February.  See https://www.fossil-scm.org/fossil/doc/trunk/www/changes.wiki
> for a summary of changes.
>
> Please test the latest trunk code as much as possible over the next
> week.  You'll need to recompile fossil yourself in order to do this.
> Compiling Fossil from sources is not hard.  See
> https://www.fossil-scm.org/fossil/doc/trunk/www/build.wiki for the
> details.
>

Not a bug but maybe something to consider...
https://www.fossil-scm.org/fossil/timeline?u=drh&c=2015-02-23+16%3A27%3A34&nd&n=200

Would it be worthwhile to have older here and the max # to show?
Much like on the timeline page:
https://www.fossil-scm.org/fossil/timeline?y=ci


> --
> D. Richard Hipp
> d...@sqlite.org


-- 
---
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] Fossil version 1.31 testing

2015-02-23 Thread Marcel Graf
On Mon, Feb 23, 2015 at 2:22 PM, Richard Hipp  wrote:

> On 2/22/15, Marcel Graf  wrote:
> > Hello,
> >
> > I noticed two problems in the web-ui of recent fossil versions:
> >
> > 1. On the timeline, clicking on a tag used to show all checkins related
> to
> > that tag/branch around that time - but now it only shows the checkins on
> > and after that time, but no older checkins.
> > Example from the fossil repository (svn-import link from
> c3bcab0f0505eb9a)
> > is
> >
> http://www.fossil-scm.org/index.html/timeline?r=svn-import&nd&c=2015-02-22+12%3A00%3A49&n=200
> > only shows 5 checkins, using fossil 1.30 it shows about 90 checkins. The
> > problem does not show if the selected branch is trunk or the n=200
> > parameter is removed - then the checkins before and after are shown.
> > This problem appears first with checkin
> > 45127a7236e4c34ecac670b6ee0645c1bcf77c20
>
> This problem appears to be resolved now.
>
Yes. Thank you.


>
> >
> > 2. On the "Files" page, sometimes changing from "Flat" to "Tree" view and
> > vice-versa, the references check-in/branch/tag is "lost" and "All Files"
> > (Files from all XXX checkins) are shown. It does not happen if fossil ui
> is
> > called inside a working directory or the repository is in the current
> > directory when fossil ui repo.fossil is called (and probably the same for
> > CGI). It does happen when calling fossil ui /abs/path/to/some/repo.fossil
> > (or using CGI). Then, on the "Files" page (/dir?ci=tip) the Tab for
> > Tree-View links to /dir?type=tree instead of /dir?ci=tip&type=tree
> > This first appears with checkin 7478f9974c6320e4c942b7808ca393fa1540d871
> >
>
> I was unable to recreate this problem.

Maybe I was not too clear in the description. But I was able to recreate it
with the following few lines, all using fossil version 1.31 [858dcc2c19]:

fossil init -A myself repo/tree-dir-test.fossil
mkdir tree-dir-test.fossil
cd tree-dir-test.fossil
fossil open ../repo/tree-dir-test.fossil
echo foo > a.txt
fossil add a.txt
fossil ci --user myself -m 'foo into a.txt'
mv a.txt b.txt
fossil mv a.txt b.txt
fossil ci --user myself -m 'rename a.txt to b.txt'
Viewing this by means of CGI like

#!/path/to/fossil
directory: /abs/path/to/repo-dir/
the "Files" Tab in the main menu links to /tree?ci=tip, once on that page
the [Tree-View]-button links to /dir?type=tree and shows all checkins and
files (a.txt and b.txt).
Changing the skin to "San Francisco Modern", the "Files" Tab in the main
menu links to /dir?ci=tip, but again, once on that page the
[Tree-View]-button links to /dir?type=tree, missing something like &ci=tip

If I use as CGI like

#!/path/to/fossil
directory: /abs/path/to/repo-dir/tree-dir-test.fossil
I have to check for fossil ui with that repository later on ... but the
first time I noticed the "bad" behavior was using fossil ui
/abs/path/to/repo.fossil

Marcel
--
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 mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Fossil version 1.31 testing

2015-02-23 Thread Richard Hipp
On 2/22/15, Marcel Graf  wrote:
> Hello,
>
> I noticed two problems in the web-ui of recent fossil versions:
>
> 1. On the timeline, clicking on a tag used to show all checkins related to
> that tag/branch around that time - but now it only shows the checkins on
> and after that time, but no older checkins.
> Example from the fossil repository (svn-import link from c3bcab0f0505eb9a)
> is
> http://www.fossil-scm.org/index.html/timeline?r=svn-import&nd&c=2015-02-22+12%3A00%3A49&n=200
> only shows 5 checkins, using fossil 1.30 it shows about 90 checkins. The
> problem does not show if the selected branch is trunk or the n=200
> parameter is removed - then the checkins before and after are shown.
> This problem appears first with checkin
> 45127a7236e4c34ecac670b6ee0645c1bcf77c20

This problem appears to be resolved now.

>
> 2. On the "Files" page, sometimes changing from "Flat" to "Tree" view and
> vice-versa, the references check-in/branch/tag is "lost" and "All Files"
> (Files from all XXX checkins) are shown. It does not happen if fossil ui is
> called inside a working directory or the repository is in the current
> directory when fossil ui repo.fossil is called (and probably the same for
> CGI). It does happen when calling fossil ui /abs/path/to/some/repo.fossil
> (or using CGI). Then, on the "Files" page (/dir?ci=tip) the Tab for
> Tree-View links to /dir?type=tree instead of /dir?ci=tip&type=tree
> This first appears with checkin 7478f9974c6320e4c942b7808ca393fa1540d871
>

I was unable to recreate this problem.
-- 
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] Fossil version 1.31 testing

2015-02-22 Thread jungle Boogie
Hi Marcel,
On 22 February 2015 at 13:32, Marcel Graf  wrote:
> 1. On the timeline, clicking on a tag used to show all checkins related to
> that tag/branch around that time - but now it only shows the checkins on and
> after that time, but no older checkins.


Admittedly, I didn't catch but this morning I thought more history was
previously displayed when you review a tag.

Interestingly, if you go older, you can see more checkins:
http://www.fossil-scm.org/index.html/timeline?r=svn-import_no-svn-rev&nd&c=2015-02-15+19%3A34%3A03&n=200
but then I don't know if the header is right since the 22nd isn't
really around the 15th.

Same thing seems to occur here with a much older branch with recent updates:
http://www.fossil-scm.org/index.html/timeline?r=sqlite3-compat&nd&c=2015-01-19+12%3A09%3A00&n=200



-- 
---
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] Fossil version 1.31 testing

2015-02-22 Thread Marcel Graf
Hello,

I noticed two problems in the web-ui of recent fossil versions:

1. On the timeline, clicking on a tag used to show all checkins related to
that tag/branch around that time - but now it only shows the checkins on
and after that time, but no older checkins.
Example from the fossil repository (svn-import link from c3bcab0f0505eb9a)
is
http://www.fossil-scm.org/index.html/timeline?r=svn-import&nd&c=2015-02-22+12%3A00%3A49&n=200
only shows 5 checkins, using fossil 1.30 it shows about 90 checkins. The
problem does not show if the selected branch is trunk or the n=200
parameter is removed - then the checkins before and after are shown.
This problem appears first with checkin
45127a7236e4c34ecac670b6ee0645c1bcf77c20

2. On the "Files" page, sometimes changing from "Flat" to "Tree" view and
vice-versa, the references check-in/branch/tag is "lost" and "All Files"
(Files from all XXX checkins) are shown. It does not happen if fossil ui is
called inside a working directory or the repository is in the current
directory when fossil ui repo.fossil is called (and probably the same for
CGI). It does happen when calling fossil ui /abs/path/to/some/repo.fossil
(or using CGI). Then, on the "Files" page (/dir?ci=tip) the Tab for
Tree-View links to /dir?type=tree instead of /dir?ci=tip&type=tree
This first appears with checkin 7478f9974c6320e4c942b7808ca393fa1540d871
___
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] Fossil version 1.31 testing

2015-02-17 Thread Baruch Burstein
On Wed, Feb 18, 2015 at 1:55 AM, Richard Hipp  wrote:

> I'd like to release Fossil version 1.31 soon.  Before the end of
> February.  See
> https://www.fossil-scm.org/fossil/doc/trunk/www/changes.wiki
> for a summary of changes.
>

Just wanted to say I am happy to see the fossil "official" releases look
like they will be happening more frequently than before.


-- 
˙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